 :root {
   --primary: #2563eb;
   --secondary: #287742;
   --accent: #f97316;
   --light: #f8fafc;
   --dark: #1e293b;
   --text: #334155;
 }

 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 body {

   line-height: 1.6;
   overflow-x: hidden;

 }

 body p {
   font-size: 17px;
 }

 /* Custom Navigation */
 .navbar {
   padding: 1rem 0;
   background-color: white !important;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .navbar-brand {
   font-weight: 700;
   color: var(--primary) !important;
   font-size: 1.8rem;
   display: flex;
   align-items: center;
 }

 .navbar-brand i {
   margin-right: 10px;
   color: var(--accent);
 }

 /* Mobile Navigation */
 .mobile-menu-btn {
   display: none;
   background: transparent;
   border: none;
   font-size: 1.8rem;
   color: var(--primary);
   z-index: 1001;
 }

 .mobile-nav {
   position: fixed;
   top: 28px;
   left: -300px;
   width: 280px;
   height: 100vh;
   background: white;
   box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
   z-index: 1000;
   transition: all 0.4s ease;
   padding-top: 70px;
   overflow-y: auto;
 }

 .mobile-nav.active {
   left: 0;
 }

 .mobile-nav ul {
   list-style: none;
   padding: 0;
 }

 .mobile-nav ul li {
   border-bottom: 1px solid #eee;
 }

 .mobile-nav ul li a {
   display: block;
   padding: 15px 20px;
   text-decoration: none;
   color: var(--dark);
   font-weight: 500;
   transition: all 0.3s;
 }

 .mobile-nav ul li a:hover {
   background: #f8f9fa;
   color: var(--primary);
   padding-left: 25px;
 }

 .mobile-nav ul li a i {
   margin-right: 10px;
   width: 20px;
   text-align: center;
 }

 .navbar .nav-link {
   font-size: 18px;
   font-weight: 500;
 }

 .mobile-nav .btn {
   margin: 20px;
   width: calc(100% - 40px);
 }

 /* Overlay for mobile menu */
 .overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   z-index: 999;
   opacity: 0;
   visibility: hidden;
   transition: all 0.4s;
 }

 .overlay.active {
   opacity: 1;
   visibility: visible;
 }

 .qte-btn {
   background-color: var(--primary) !important;
   color: #fff !important;
   border: none !important;
   padding: 0.6rem 1.5rem !important;
   font-weight: 500 !important;
   font-size: 1rem !important;
   border-radius: 6px !important;
   transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
 }

 .qte-btn:hover {
   background-color: var(--secondary) !important;
   transform: translateY(-2px) !important;
   box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1) !important;
   transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
 }


 .hero {
   position: relative;
   background: url('../images/slider/slider1.jpg') center/cover no-repeat;
   padding: 7rem 0;
   color: white;
   z-index: 1;
   overflow: hidden;
 }

 .hero::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.5);
   z-index: -1;
 }


 .hero h1 {
   font-size: 3.5rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
 }

 .hero p {
   font-size: 1.3rem;
   margin-bottom: 2rem;
   max-width: 600px;
 }

 .section {
   padding: 5rem 0;
 }

 .section-title {
   position: relative;
   margin-bottom: 3rem;
   text-align: center;
 }

 .section-title h2 {
   font-weight: 700;
   color: var(--dark);
   margin-bottom: 1rem;
 }

 .section-title::after {
   content: '';
   position: absolute;
   width: 80px;
   height: 4px;
   background: var(--accent);
   bottom: -10px;
   left: 50%;
   transform: translateX(-50%);
   border-radius: 2px;
 }

 .card {
   border: none;
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
   height: 100%;
 }

 .card:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .card-icon {
   width: 70px;
   height: 70px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 1.5rem;
   color: var(--primary);
   font-size: 1.8rem;
 }

 .stats {
   background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
   color: white;
   padding: 4rem 0;
 }

 .stat-number {
   font-size: 3rem;
   font-weight: 700;
   margin-bottom: 0.5rem;
 }

 .portfolio-item {
   position: relative;
   overflow: hidden;
   border-radius: 10px;
   margin-bottom: 1.5rem;
   height: 300px;
 }

 .portfolio-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: all 0.5s ease;
 }

 .portfolio-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(37, 99, 235, 0.8);
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   color: white;
   opacity: 0;
   transition: all 0.4s ease;
   padding: 2rem;
   text-align: center;
 }

 .portfolio-item:hover .portfolio-overlay {
   opacity: 1;
 }

 .portfolio-item:hover .portfolio-img {
   transform: scale(1.1);
 }

 .testimonial-card {
   padding: 2rem;
   border-radius: 10px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   margin: 1rem;
   position: relative;
   background: white;
 }

 .testimonial-card::before {
   content: '"';
   position: absolute;
   top: 20px;
   left: 20px;
   font-size: 5rem;
   color: rgba(37, 99, 235, 0.1);
   font-family: Georgia, serif;
   line-height: 1;
 }

 .client-img {
   width: 70px;
   height: 70px;
   border-radius: 50%;
   object-fit: cover;
   margin-right: 1rem;
 }

 .contact-form .form-control {
   padding: 0.8rem 1rem;
   border-radius: 8px;
   border: 1px solid #e2e8f0;
   margin-bottom: 1.5rem;
 }

 .contact-form .form-control:focus {
   border-color: var(--primary);
   box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
 }

 footer {
   background: var(--dark);
   color: white;
   padding: 4rem 0 2rem;
 }

 .footer-title {
   font-weight: 600;
   margin-bottom: 1.5rem;
   position: relative;
   padding-bottom: 0.5rem;
 }

 .footer-title::after {
   content: '';
   position: absolute;
   width: 40px;
   height: 3px;
   background: var(--accent);
   bottom: 0;
   left: 0;
 }

 .footer-links a {
   display: block;
   color: #cbd5e1;
   margin-bottom: 0.8rem;
   text-decoration: none;
   transition: all 0.3s ease;
 }

 .footer-links a:hover {
   color: white;
   padding-left: 5px;
 }

 .social-icon {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.1);
   color: rgb(17, 133, 228);
   margin-right: 0.5rem;
   transition: all 0.3s ease;
   text-decoration: none;
 }

 .social-icon:hover {
   background: var(--primary);
   transform: translateY(-5px);
 }

 .copyright {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 1.5rem;
   margin-top: 3rem;
   text-align: center;
   color: #94a3b8;
 }

 /* Responsive Adjustments */
 @media (max-width: 992px) {
   .hero h1 {
     font-size: 2.8rem;
   }

   .desktop-nav {
     display: none;
   }

   .mobile-menu-btn {
     display: block;
   }
 }

 @media (max-width: 768px) {
   .hero {
     padding: 5rem 0;
   }

   .hero h1 {
     font-size: 2.3rem;
   }

   .section {
     padding: 4rem 0;
   }
 }

 @media (max-width: 576px) {
   .navbar-brand {
     font-size: 1.5rem;
   }

   .hero h1 {
     font-size: 2rem;
   }

   .hero p {
     font-size: 1.1rem;
   }
 }


 .section-heading {
   font-size: 2rem;
   font-weight: bold;
   color: var(--primary);
   text-align: center;
 }

 .sub-heading {
   color: var(--secondary);
   font-size: 1.25rem;
   font-weight: 600;
 }

 .list-style-custom {
   padding-left: 1.2rem;
   list-style: none;
 }

 .list-style-custom li {
   position: relative;
   margin-bottom: 0.75rem;
   padding-left: 1.5rem;
 }

 .list-style-custom li::before {
   content: "✔";
   color: var(--primary);
   position: absolute;
   left: 0;
   font-weight: bold;
 }

 .site-breadcrumb {
   background-color: #2563eb;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   padding: 80px 0;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   color: #fff;
   position: relative;
 }

 .site-breadcrumb::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.4);
   /* dark overlay */
   z-index: 0;
 }

 .site-breadcrumb .container {
   position: relative;
   z-index: 1;
 }

 .breadcrumb-title {
   font-size: 36px;
   font-weight: bold;
   color: #fff;
   margin-bottom: 10px;
 }

 .breadcrumb-menu {
   list-style: none;
   padding: 0;
   margin: 0;
   color: #fff;
 }

 .breadcrumb-menu li {
   display: inline-block;
   font-size: 16px;
   color: #fff;
 }

 .breadcrumb-menu li::after {
   content: ">";
   margin: 0 8px;
   color: #fff;
 }

 .breadcrumb-menu li:last-child::after {
   content: "";
 }

 .breadcrumb-menu a {
   color: #fff;
   text-decoration: none;
 }

 .breadcrumb-menu a:hover {
   text-decoration: underline;
 }

 .our-services {
   background-color: #f9fafb;
 }

 .section-title {
   font-size: 36px;
   font-weight: bold;
   color: #2563eb;
 }

 .section-subtitle {
   font-size: 18px;
   color: #555;
 }

 .service-card {
   background: #ffffff;
   border-radius: 12px;
   overflow: hidden;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .service-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 .service-img {
   width: 100%;
   height: 200px;
   object-fit: cover;
 }

 .service-content {
   padding: 20px;
   text-align: center;
 }

 .service-title {
   font-size: 20px;
   font-weight: 600;
   color: #287742;
   margin-bottom: 10px;
 }

 .section-header {
   max-width: 800px;
   margin-left: auto;
   margin-right: auto;
 }

 .section-subtitle {
   display: block;
   color: #2c7be5;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
   font-size: 0.875rem;
   margin-bottom: 0.5rem;
 }

 .section-title {
   color: #12263f;
   font-weight: 700;
   margin-bottom: 1rem;
   font-size: 2rem;
 }

 .section-description {
   color: #6e84a3;
   font-size: 1.1rem;
   line-height: 1.6;
 }

 .service-card {
   background: #fff;
   border-radius: 8px;
   overflow: hidden;
   transition: all 0.3s ease;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
   height: 100%;
   display: flex;
   flex-direction: column;
 }

 .service-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 25px rgba(44, 123, 229, 0.15);
 }

 .service-img {
   height: 200px;
   overflow: hidden;
 }

 .service-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s ease;
 }

 .service-card:hover .service-img img {
   transform: scale(1.05);
 }

 .service-content {
   padding: 25px;
   flex-grow: 1;
   display: flex;
   flex-direction: column;
 }

 .service-icon {
   width: 50px;
   height: 50px;
   background: linear-gradient(135deg, #2c7be5 0%, #1a4d8c 100%);
   color: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.25rem;
   margin-bottom: 1rem;
 }

 .service-card h3 {
   color: #12263f;
   font-weight: 700;
   font-size: 1.25rem;
   margin-bottom: 0.75rem;
 }

 .service-card p {
   color: #6e84a3;
   margin-bottom: 1rem;
   line-height: 1.5;
   flex-grow: 1;
 }

 .service-features {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .service-features li {
   position: relative;
   padding-left: 25px;
   margin-bottom: 0.5rem;
   color: #12263f;
   font-size: 1rem;
   line-height: 1.5;
 }

 .service-features li i {
   position: absolute;
   left: 0;
   top: 5px;
   color: #00d97e;
   font-size: 0.8rem;
 }

 @media (max-width: 767.98px) {
   .section-title {
     font-size: 1.75rem;
   }

   .service-img {
     height: 180px;
   }
 }

 .custom-form {
   transition: all 0.3s ease;
   border: 1px solid #e0e0e0;
 }

 .custom-form .form-control {
   border-radius: 10px;
   padding: 12px 15px;
   font-size: 15px;
   border: 1px solid #ced4da;
 }

 .custom-form .form-label {
   font-weight: 500;
   font-size: 14px;
 }

 /* Icon Boxes */
 .icon-box {
   width: 70px;
   height: 70px;
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }

 /* Team Cards */
 .team-card img {
   border: 3px solid var(--primary-blue);
   transition: all 0.3s ease;
 }

 .team-card:hover img {
   transform: scale(1.05);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
 }

 /* Counter Boxes */
 .counter-box {
   padding: 20px;
   position: relative;
 }

 .counter-box h3 {
   font-weight: 700;
 }

 /* Text Colors */
 .text-primary-blue {
   color: var(--primary-blue);
 }

 .text-primary-green {
   color: var(--primary-green);
 }


 
 /* Responsive Adjustments */
 @media (max-width: 768px) {
   .hero-section {
     padding: 60px 0;
   }

   .display-4 {
     font-size: 2.5rem;
   }
 }