   :root {
       --blue: #0B5ED7;
       --blue-dark: #084298;
       --green: #2BB673;
       --green-light: #EAF7F1;
       --yellow: #FFC107;
       --dark: #1e1e1e;
       --white: #ffffff;
   }

   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       font-family: 'Poppins', sans-serif;
   }

   body {
       background: var(--white);
       color: var(--dark);
   }

   /* ================= TOP BAR ================= */
   .topbar {
       background: linear-gradient(90deg,var(--green) ,var(--blue) );
       color: var(--white);
       font-size: 14px;
       padding: 8px 40px;
       display: flex;
       justify-content: space-between;
   }

   @media (max-width: 991px) {
       .topbar {
           display: none;
       }
   }

   /* ================= NAVBAR ================= */
   .navbar {
       background: var(--white);

   }

   /* Gradient menu text */
   .navbar .nav-link {
       font-weight: 500;
       padding: 8px 14px;
       position: relative;
       background: linear-gradient(90deg, var(--blue), var(--green));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       transition: all 0.3s ease;
   }

   /* Hover underline gradient */
   .navbar .nav-link:hover::after {
       content: "";
       position: absolute;
       width: 100%;
       height: 2px;
       background: linear-gradient(90deg, var(--blue), var(--green));
       left: 0;
       bottom: 0;
   }

   /* Active menu */
   .navbar .nav-link.active {
       font-weight: 600;
   }

   .navbar .nav-link.active::after {
       content: "";
       position: absolute;
       width: 100%;
       height: 3px;
       background: linear-gradient(90deg, var(--blue), var(--green));
       left: 0;
       bottom: 0;
   }

   /* ================= GRADIENT BUTTON ================= */
   .btn-gradient {
       background: linear-gradient(135deg, #2BB673,#0B5ED7);
       color: #ffffff;
       border: none;
       padding: 12px 30px;
       font-weight: 600;
       transition: 0.3s ease;
   }

   .btn-gradient:hover {
       opacity: 0.9;
       color: #fff;
       background: #084298;
   }


   /* ================= OFFCANVAS (MOBILE) ================= */
   .offcanvas {
       background: var(--green-light);
   }

   .offcanvas .nav-link {
       font-weight: 500;
       padding: 10px 0;
       background: linear-gradient(90deg, var(--blue), var(--green));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
   }

   .offcanvas .nav-link.active {
       font-weight: 600;
   }

   /* ================= HERO ================= */
   .hero {
       background: linear-gradient(135deg, var(--blue), var(--blue-dark));
       color: var(--white);
       padding: 100px 40px;
       text-align: center;
   }

   .hero h1 {
       font-size: 42px;
       font-weight: 700;
   }

   .hero p {
       max-width: 720px;
       margin: 15px auto 30px;
       font-size: 17px;
       opacity: 0.95;
   }

   /* ================= FOOTER ================= */
   .copyright {
       background: #052c65;
       color: #cfe2ff;
       text-align: center;
       padding: 14px;
       font-size: 14px;
   }

   /* ================= HERO CAROUSEL ================= */
   .hero-carousel {
       position: relative;
       overflow: hidden;
   }

   .hero-slide {
       min-height: 90vh;
       background-size: cover;
       background-position: center;
       position: relative;
       display: flex;
       align-items: center;
   }

   /* Dark + Gradient Overlay */
   .hero-overlay {
       position: absolute;
       inset: 0;
      background: rgba(0, 0, 0, 0.55);
       z-index: 1;
   }

   /* Content */
   .hero-content {
       position: relative;
       z-index: 2;
       color: #ffffff;
       max-width: 720px;
   }

   .hero-content h1 {
       font-size: 46px;
       font-weight: 700;
   }

   .hero-content p {
       margin: 18px 0 30px;
       font-size: 18px;
       opacity: 0.95;
   }

   /* Mobile Responsive */
   @media (max-width: 768px) {
       .hero-slide {
           min-height: 80vh;
           text-align: center;
       }

       .hero-content h1 {
           font-size: 32px;
       }

       .hero-content p {
           font-size: 16px;
       }
   }

   /* ================= KEY BENEFITS ================= */
.key-benefits {
  position: relative;
  margin-top: -90px; /* Hero overlap */
  z-index: 10;
}

.benefit-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
}

/* Gradient Icon Circle */
.benefit-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2BB673,#0B5ED7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  font-size: 26px;
  color: #ffffff;
}

.benefit-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #084298;
}

.benefit-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}

/* Mobile fix */
@media (max-width: 768px) {
  .key-benefits {
    margin-top: -40px;
  }
}

/* ================= ABOUT US ================= */
.about-us {
  padding: 90px 0;
  background: #ffffff;
  overflow: hidden; /* 🔥 MOST IMPORTANT */
}

.section-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(90deg, #2BB673, #0B5ED7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-us h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #084298;
}

.about-us p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Feature list */
.about-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.about-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

.about-list i {
  color: #2BB673;
  margin-right: 8px;
}

/* Image Design */
.about-image-wrapper {
  position: relative;
  padding-right: 0;     /* remove extra push */
  max-width: 100%;
  overflow: hidden;     /* 🔥 prevents right slide */
}

.about-image-wrapper img {
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  display: block;
}


/* Gradient Shape */
.about-shape {
  position: absolute;
  right: -40px;         /* controlled overlap */
  bottom: -30px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #0B5ED7, #2BB673);
  border-radius: 30px;
  z-index: 1;
}


/* Mobile Responsive */
@media (max-width: 991px) {
  .about-us {
    padding: 70px 0;
  }

  .about-us h2 {
    font-size: 30px;
  }

  .about-image-wrapper {
    padding-right: 0;
  }

  .about-shape {
    width: 160px;
    height: 160px;
    bottom: -20px;
  }
}

/* ================= CIRCULAR PROCESS ================= */
.process-circle-section {
  padding: 90px 0;
  background: #ffffff;
}

.process-circle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Step */
.process-step {
  max-width: 260px;
  text-align: center;
}

/* Circle with gradient ring */
.process-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #0B5ED7, #2BB673) border-box;
  border: 5px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-circle i {
  font-size: 36px;
  background: linear-gradient(135deg, #0B5ED7, #2BB673);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Arrow */
.process-arrow {
  font-size: 28px;
  color: #2BB673;
}

/* Text */
.process-step h5 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #084298;
}

.process-step p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .process-circle-wrapper {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }
}
/* ================= IMAGE SECTION ================= */
/* ================= IMAGE SECTION ================= */
.image-section {
  width: 100%;
	 padding: 20px; 
  overflow: visible;   /* hidden hata do */
}

.image-wrapper {
  width: 100%;
  max-width: 1200px;   /* OPTIONAL – design ke hisaab se */
  margin: 0 auto;      /* center align */
}

.image-wrapper img {
  width: 100%;
  height: auto;
  max-width: 100%;     /* IMPORTANT */
  object-fit: contain; /* no crop */
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .image-wrapper img {
    width: 100%;
    height: auto;
  }
}

/* ================= TECHNOLOGY SECTION ================= */
.technology-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #052c65, #031633);
  color: #ffffff;
  overflow: hidden;
}

/* Image */
.technology-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* Light tag */
.section-tag.light {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #9adbc8;
}

/* Heading */
.technology-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* Text */
.technology-section p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #dbe7ff;
  margin-bottom: 14px;
}

/* Feature list */
.technology-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.technology-list li {
  margin-bottom: 12px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.technology-list i {
  color: #2BB673;
  font-size: 16px;
}

/* Mobile */
@media (max-width: 991px) {
  .technology-section {
    padding: 70px 0;
    text-align: center;
  }

  .technology-list li {
    justify-content: center;
  }
}

/* ================= COUNTER SECTION ================= */
.counter-section {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    #0f3d2e,   /* deep theme green */
    #0b5f4b    /* AU green tone */
  );
  color: #ffffff;
}

/* Box */
.counter-box {
  padding: 25px 15px;
}

/* Icon */
.counter-box i {
  font-size: 34px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #2BB673, #8fe3c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Number */
.counter-box h2 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #2BB673, #b7f0d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Label */
.counter-box p {
  font-size: 15px;
  margin-top: 6px;
  color: #d6f3e8;
  font-weight: 500;
}

/* Mobile */
@media (max-width: 768px) {
  .counter-box h2 {
    font-size: 32px;
  }
}


/* ================= WHY CHOOSE US ================= */
.why-choose-us {
  padding: 90px 0;
  background: #F4F9FC;
}

.why-card {
  background: #ffffff;
  padding: 35px 28px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
}

/* Icon */
.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0B5ED7, #2BB673);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i {
  color: #ffffff;
  font-size: 26px;
}

.why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #084298;
}

.why-card p {
  font-size: 14.8px;
  color: #555;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
  .why-choose-us {
    padding: 70px 0;
  }
}

/* ================= CONTACT SECTION ================= */
/* ================= CONTACT SECTION ================= */

.contact-section {
  padding: 90px 0;
  background: #F4F9FC;
  overflow-x: hidden; /* 🔥 Prevent horizontal scroll */
}

/* Fix Bootstrap row overflow */
.contact-section .row {
  margin-left: 0;
  margin-right: 0;
}

/* Column padding safe */
.contact-section .col-lg-5,
.contact-section .col-lg-7 {
  padding-left: 12px;
  padding-right: 12px;
}

/* Section subtitle */
.section-subtitle {
  max-width: 650px;
  margin: 12px auto 0;
  font-size: 15.5px;
  color: #555;
text-align:center;
}

/* ================= INFO BOX ================= */

.contact-info {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 22px;
}

.info-item i {
  font-size: 20px;
  color: #2BB673;
  margin-top: 4px;
}

.info-item h6 {
  font-weight: 600;
  margin-bottom: 4px;
  color: #084298;
}

.info-item p {
  font-size: 14.5px;
  color: #555;
  margin: 0;
}

/* ================= FORM ================= */

.contact-form {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
  border-radius: 10px;
  font-size: 14.5px;
  padding: 12px 14px;
}

.contact-form .form-control:focus {
  border-color: #2BB673;
  box-shadow: none;
}

/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-info,
  .contact-form {
    padding: 28px 22px;
  }
}

/* ================= CTA SECTION ================= */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #052c65, #031633); /* dark blue */
  color: #ffffff;
}

.cta-wrapper h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-wrapper p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 16.5px;
  color: #dbe7ff;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-outline-light {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 30px;
}

/* Mobile */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 0;
  }

  .cta-wrapper h2 {
    font-size: 28px;
  }

  .cta-wrapper p {
    font-size: 15px;
  }
}
/* ================= FOOTER ================= */
.footer-section {
  background: linear-gradient(135deg, #0B5ED7, #2BB673);
  color: #ffffff;
  padding-top: 70px;
}

/* Brand */
.footer-logo {
  max-width: 160px;
  height: 90px;              /* rectangle height */
  object-fit: cover;
  border-radius: 45px;       /* makes rectangular circle */
  margin-bottom: 15px;
}


.footer-brand p {
  font-size: 14.5px;
  line-height: 1.7;
  opacity: 0.95;
}

/* Social */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  margin-right: 8px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #ffffff;
  color: #0B5ED7;
}

/* Titles */
.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ffffff;
  font-size: 14.5px;
  opacity: 0.9;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 5px;
}

/* Contact */
.footer-contact li {
  font-size: 14.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: #E9FFB3;
}

/* Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.15);
  padding: 15px 0;
  margin-top: 30px;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }
}

/* ================= PURE JS CLIENT SLIDER ================= */
.clients-js-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #031633, #052c65);
}

.clients-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.clients-slider-track {
  display: flex;
  gap: 60px;
  width: max-content;
}

.client-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo img {
  max-width: 300px;
  max-height: 200px;
 
  transition: 0.3s ease;
}

.client-logo img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
  .client-logo img {
    max-width: 110px;
  }
}

.policy-section {
  padding: 80px 0;
  background: #f8fbff;
}

.policy-header h1 {
  font-weight: 700;
  margin-bottom: 10px;
}

.policy-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

.policy-content h3 {
  margin-top: 30px;
  font-weight: 600;
}

.policy-content ul {
  padding-left: 18px;
}

.policy-content ul li {
  margin-bottom: 10px;
  color: #444;
  line-height: 1.6;
}
