     :root {
      --primary: #2596be;
      --secondary: #6baa3f;
      --dark: #0a3a6b;
      --white: #ffffff;
      --text: #29445a;
      --muted: #6d8193;
      --soft-bg: #f5fbff;
      --card-shadow: 0 20px 60px rgba(10, 58, 107, 0.12);
      --card-shadow-hover: 0 25px 70px rgba(10, 58, 107, 0.18);
      --radius-xl: 28px;
      --radius-lg: 20px;
    }

    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: 'Manrope', sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #f8fdff 0%, #ffffff 45%, #f6fbf2 100%);
      overflow-x: hidden;
    }

    a { text-decoration: none; }

    .top-marquee {
      background: linear-gradient(90deg, var(--dark), var(--primary), var(--secondary));
      color: #fff;
      overflow: hidden;
      white-space: nowrap;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1055;
      padding: 10px 0;
      box-shadow: 0 10px 25px rgba(10,58,107,0.12);
    }

    /* .marquee-track {
      display: inline-flex;
      gap: 42px;
      min-width: max-content;
      animation: marqueeMove 40s linear infinite;
      font-weight: 700;
      font-size: 0.95rem;
      align-items: center;
    } */

    .marquee-track {
      display: flex;
      width: max-content;
      animation: marqueeMove 35s linear infinite;
    }

    .marquee-content {
      display: flex;
      gap: 42px;
    }


    .marquee-track span {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      opacity: 0.98;
    }

    /* @keyframes marqueeMove {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    } */

    @keyframes marqueeMove {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .navbar {
      /* padding: 18px 0; */
      padding: 0px 0;
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(14px);
      box-shadow: 0 8px 30px rgba(10,58,107,0.06);
      position: fixed;
      top: 44px;
      left: 0;
      width: 100%;
      z-index: 1050;
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(14px);
      box-shadow: 0 8px 30px rgba(10,58,107,0.06);
    }

    .navbar-brand {
      font-size: 1.55rem;
      font-weight: 800;
      color: var(--dark) !important;
      letter-spacing: -0.5px;
    }

    .navbar-brand span { color: var(--secondary); }

    .navbar-nav .nav-link {
      color: var(--dark);
      font-weight: 700;
      margin: 0 8px;
      position: relative;
      transition: 0.3s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--primary);
    }

    .nav-cta {
      background: linear-gradient(135deg, var(--primary), var(--dark));
      color: var(--white);
      font-weight: 700;
      padding: 12px 22px;
      border-radius: 999px;
      box-shadow: 0 10px 30px rgba(37,150,190,0.28);
      transition: 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      color: var(--white);
    }

    .project-highlight-visual {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      min-height: 230px;
      margin-bottom: 22px;
      box-shadow: 0 18px 45px rgba(10,58,107,0.16);
    }

    .project-highlight-visual img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .project-card:hover .project-highlight-visual img {
      transform: scale(1.06);
    }

    .project-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: rgba(255,255,255,0.92);
      color: var(--dark);
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 0.82rem;
      font-weight: 800;
      box-shadow: 0 10px 25px rgba(10,58,107,0.15);
    }

    .project-info-list {
      list-style: none;
      padding: 0;
      margin: 18px 0 0;
      display: grid;
      gap: 10px;
    }

    .project-info-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      font-weight: 600;
      font-size: 0.96rem;
    }

    .project-info-list i {
      color: var(--secondary);
    }

    .hero {
      position: relative;
      padding: 0 0 0px;
      margin-top: 126px;
      overflow: hidden;
    }

    .hero-slide {
      height: 550px;              /* FIXED HEIGHT */
      /* min-height: 500px; */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      display: flex;
      align-items: center; 
    }

    .hero::before,
    .hero::after {
      display: none;
    }

    .carousel-indicators {
      bottom: 22px;
    }

    .carousel-indicators button {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: none;
      margin: 0 6px;
      opacity: 0.7;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 6%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: rgba(255,255,255,0.18);
      border-radius: 50%;
      padding: 22px;
      background-size: 45% 45%;
    }

    .hero p {
      font-size: 1.08rem;
      line-height: 1.9;
      color: var(--muted);
      max-width: 620px;
      margin-bottom: 32px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 34px;
    }

    .btn-main, .btn-outline-main {
      padding: 15px 26px;
      border-radius: 999px;
      font-weight: 800;
      transition: 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-main {
      background: linear-gradient(135deg, var(--primary), var(--dark));
      color: var(--white);
      box-shadow: 0 15px 35px rgba(37,150,190,0.24);
    }

    .btn-main:hover {
      color: var(--white);
      transform: translateY(-3px);
    }

    .btn-outline-main {
      border: 1.5px solid rgba(10,58,107,0.16);
      color: var(--dark);
      background: var(--white);
    }

    .btn-outline-main.text-white {
      background: transparent;
      color: #fff !important;
      border-color: rgba(255,255,255,0.75) !important;
    }

    .btn-outline-main:hover {
      border-color: var(--primary);
      color: var(--primary);
      transform: translateY(-3px);
    }

    .btn-outline-main.text-white:hover {
      border-color: #fff !important;
      color: #fff !important;
      background: rgba(255,255,255,0.08);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 10px;
    }

    .stat-card {
      background: rgba(255,255,255,0.85);
      border: 1px solid rgba(37,150,190,0.08);
      border-radius: 22px;
      padding: 22px;
      box-shadow: var(--card-shadow);
    }

    .stat-card h3 {
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .stat-card p {
      margin: 0;
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.5;
    }

    .hero-visual {
      position: relative;
      z-index: 1;
    }

    .hero-main-card {
      background: linear-gradient(160deg, rgba(10,58,107,0.96), rgba(37,150,190,0.9));
      border-radius: 34px;
      padding: 30px;
      color: var(--white);
      box-shadow: 0 30px 70px rgba(10,58,107,0.28);
      position: relative;
      overflow: hidden;
      height: 320px;
      /* min-height: 530px; */
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .hero-main-card::before {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      top: -80px;
      right: -50px;
      background: rgba(255,255,255,0.08);
    }

    .hero-main-card::after {
      content: "";
      position: absolute;
      width: 170px;
      height: 170px;
      border-radius: 50%;
      bottom: -60px;
      left: -40px;
      background: rgba(107,170,63,0.18);
    }

    .mini-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.16);
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 0.9rem;
      font-weight: 700;
    }

    .hero-card-title {
      font-size: 2rem;
      font-weight: 800;
      line-height: 1.2;
      margin: 22px 0 14px;
      max-width: 420px;
    }

    .hero-card-text {
      color: rgba(255,255,255,0.82);
      line-height: 1.8;
      max-width: 420px;
    }

    .listing-box {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 24px;
      padding: 20px;
      backdrop-filter: blur(8px);
    }

    .listing-box .top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .listing-box .price {
      font-weight: 800;
      font-size: 1.45rem;
    }

    .listing-box ul {
      list-style: none;
      padding: 0;
      margin: 14px 0 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      font-size: 0.95rem;
    }

    .listing-box li {
      display: flex;
      gap: 10px;
      align-items: center;
      color: rgba(255,255,255,0.9);
    }

    .section {
      padding: 60px 0;
      position: relative;
    }

    .section-tag {
      display: inline-block;
      color: var(--secondary);
      font-weight: 800;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      margin-bottom: 14px;
      font-size: 0.85rem;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      color: var(--dark);
      line-height: 1.15;
      margin-bottom: 18px;
      letter-spacing: -1px;
    }

    .section-text {
      color: var(--muted);
      line-height: 1.9;
      font-size: 1.02rem;
    }

    .about-wrap,
    .project-grid,
    .why-grid {
      margin-top: 28px;
    }

    .about-card,
    .project-card,
    .why-card {
      background: rgba(255,255,255,0.96);
      border-radius: var(--radius-xl);
      padding: 30px;
      box-shadow: var(--card-shadow);
      border: 1px solid rgba(10,58,107,0.06);
      height: 100%;
      transition: 0.35s ease;
    }

    .about-card:hover,
    .project-card:hover,
    .why-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--card-shadow-hover);
    }

    .about-icon,
    .project-icon,
    .why-icon {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 18px;
      background: linear-gradient(135deg, rgba(37,150,190,0.12), rgba(107,170,63,0.16));
      color: var(--dark);
    }

    .about-card h4,
    .project-card h4,
    .why-card h4 {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .about-card p,
    .project-card p,
    .why-card p {
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 0;
    }

    .project-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .project-meta span {
      background: #f2f8fc;
      color: var(--dark);
      border-radius: 999px;
      padding: 9px 14px;
      font-size: 0.88rem;
      font-weight: 700;
    }

    .why-card {
      position: relative;
      overflow: hidden;
    }

    .why-card::after {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      right: -35px;
      bottom: -35px;
      background: radial-gradient(circle, rgba(107,170,63,0.16), transparent 70%);
      border-radius: 50%;
    }

    .cta-strip {
      margin-top: 30px;
      background: linear-gradient(135deg, var(--dark), var(--primary));
      border-radius: 30px;
      padding: 32px;
      color: var(--white);
      box-shadow: 0 25px 60px rgba(10,58,107,0.2);
    }

    .cta-strip h3 {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .cta-strip p {
      margin: 0;
      color: rgba(255,255,255,0.82);
      line-height: 1.8;
    }

    .footer {
      background: linear-gradient(135deg, #072c51, #0a3a6b 60%, #0f4f86 100%);
      color: rgba(255,255,255,0.86);
      padding: 80px 0 26px;
      margin-top: 20px;
      position: relative;
      overflow: hidden;
    }

    .footer::before {
      content: "";
      position: absolute;
      top: -80px;
      right: -80px;
      width: 240px;
      height: 240px;
      background: rgba(37,150,190,0.12);
      border-radius: 50%;
    }

    .footer-logo {
      font-size: 1.7rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 16px;
      display: inline-block;
    }

    .footer-logo span { color: #9dd56f; }

    .footer p,
    .footer li,
    .footer a {
      color: rgba(255,255,255,0.78);
      line-height: 1.9;
    }

    .footer h5 {
      color: var(--white);
      font-weight: 800;
      margin-bottom: 18px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li { margin-bottom: 8px; }

    .footer-links a:hover { color: #9dd56f; }

    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.12);
      padding-top: 20px;
      margin-top: 36px;
      font-size: 0.95rem;
    }

    @media (max-width: 991.98px) {
      .navbar {
        top: 40px;
      }

      .hero {
        margin-top: 118px;
      }

      .hero-slide .min-vh-100 {
        min-height: 780px !important;
      }

      .top-marquee {
        padding: 8px 0;
      }

      .marquee-track {
        gap: 26px;
        font-size: 0.88rem;
      }

      .navbar-collapse {
        background: #ffffff;
        padding: 18px;
        border-radius: 18px;
        box-shadow: 0 18px 50px rgba(10,58,107,0.12);
        margin-top: 14px;
      }

      .hero {
        padding-top: 100px;
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .hero-main-card {
        margin-top: 40px;
        min-height: auto;
      }
    }

    @media (max-width: 767.98px) {
      .top-marquee {
        padding: 7px 0;
      }

      .navbar {
        top: 38px;
      }

      .hero {
        margin-top: 112px;
      }

      .hero-slide .min-vh-100 {
        min-height: 700px !important;
      }

      .carousel-control-prev,
      .carousel-control-next {
        width: 12%;
      }

      .section {
        padding: 70px 0;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn-main, .btn-outline-main {
        justify-content: center;
      }

      .listing-box ul {
        grid-template-columns: 1fr;
      }

      .cta-strip {
        text-align: center;
      }
    }

    .hero-badge{
      color:#fff;
    }

    .video-card,
.testimonial-video-card,
.video-promo-box,
.landing-cta-box,
.cta-stat-box,
.testimonial-side-cta {
  background: #fff;
  border: 1px solid rgba(10, 58, 107, 0.08);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(10, 58, 107, 0.08);
}

.video-card,
.testimonial-video-card {
  overflow: hidden;
  height: 100%;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card-body,
.testimonial-content {
  padding: 24px;
}

.video-card-body h4,
.testimonial-content h4,
.video-promo-box h3,
.testimonial-side-cta h3,
.landing-cta-box h2 {
  color: #0a3a6b;
  font-weight: 800;
}

.video-card-body p,
.testimonial-content p,
.video-promo-box p,
.testimonial-side-cta p,
.landing-cta-box p {
  color: #5f6f82;
  line-height: 1.8;
}

.video-promo-box,
.testimonial-side-cta {
  padding: 32px;
  height: 100%;
  background: linear-gradient(135deg, rgba(37,150,190,0.06), rgba(107,170,63,0.08));
}

.btn-sm-custom {
  padding: 12px 20px;
  font-size: 14px;
  margin-top: 10px;
}

.dark-outline {
  color: #0a3a6b !important;
  border: 1px solid rgba(10, 58, 107, 0.16) !important;
}

.dark-outline:hover {
  background: #0a3a6b;
  color: #fff !important;
  border-color: #0a3a6b !important;
}

.landing-cta-box {
  padding: 40px;
  background: linear-gradient(135deg, rgba(10,58,107,0.04), rgba(37,150,190,0.08));
}

.cta-stat-box {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.cta-stat-item {
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(10, 58, 107, 0.08);
  text-align: center;
}

.cta-stat-item h3 {
  margin-bottom: 4px;
  color: #2596be;
  font-size: 28px;
  font-weight: 800;
}

.cta-stat-item p {
  margin: 0;
  color: #5f6f82;
  font-size: 14px;
}

.consultation-modal .modal-content {
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(10, 58, 107, 0.18);
}

.modal-left-panel {
  background: linear-gradient(135deg, #0a3a6b, #2596be);
  color: #fff;
}

.modal-left-inner {
  padding: 36px;
  height: 100%;
}

.modal-left-inner h3 {
  font-weight: 800;
  margin: 18px 0 14px;
}

.modal-left-inner p,
.modal-left-inner li {
  color: rgba(255,255,255,0.86);
}

.consultation-form-wrap {
  padding: 36px;
  background: #fff;
}

.custom-form-control {
  border-radius: 14px;
  min-height: 52px;
  border: 1px solid rgba(10, 58, 107, 0.12);
  box-shadow: none !important;
}

textarea.custom-form-control {
  min-height: 120px;
  resize: none;
}

@media (max-width: 991px) {
  .landing-cta-box,
  .video-promo-box,
  .testimonial-side-cta,
  .consultation-form-wrap,
  .modal-left-inner {
    padding: 24px;
  }
}

.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 25px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    z-index: 9999;
    transition: 0.3s ease;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.08);
    color: #fff;
  }
  
  @media (max-width: 767px) {
    .whatsapp-float {
      left: 15px;
      bottom: 20px;
      width: 52px;
      height: 52px;
      font-size: 24px;
    }
  }

  .logo {
    width: 120px;
    max-width: 100%;
    height: auto;
  }
  
  @media (max-width: 767px) {
    .logo {
      width: 85px;
    }
  }