     :root {
      --primary: #184A3F;
      --secondary: #6baa3f;
      --dark: #4F8B4D;
      --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;      
      background-size: cover;      
      background-repeat: no-repeat;
      position: relative;
      display: flex;
      align-items: center; 
      */

      position: relative;
      height: auto;
      min-height: unset;
      overflow: hidden;

    }

    .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)); */
      background: linear-gradient(160deg, rgb(68, 127, 74), 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: 30px 0;
      position: relative;
    }

    .section-tag {
      display: inline-block;
      color: #fbfcfb;
      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%); */
      background: linear-gradient(135deg, #215541, #54903f 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: 105px;
        padding-top: 0 !important;
      }
    
      .hero-slide {
        height: auto !important;
        min-height: unset !important;
      }
    
      .hero-img {
        width: 100%;
        height: auto;
        display: block;
      }
    
      .hero-slide .container {
        position: absolute;
        inset: 0;
        z-index: 2;
      }
    
      .hero-slide .min-vh-100 {
        min-height: unset !important;
        height: 100% !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) {
      .services-hero h1 {
        font-size: clamp(1.5rem, 2vw, 2rem) !important;
      }
      .project-page-hero h1 {
        font-size: clamp(1.5rem, 2vw, 2rem) !important;
      }
      .contact-hero h1 {
        font-size: clamp(1.5rem, 2vw, 2rem) !important;
      }
      .top-marquee {
        padding: 7px 0;
      }

      .navbar {
        top: 38px;
      }

      .hero {
        margin-top: 98px;
      }

      .hero-img {
        width: auto;
        height: 250px !important;
        object-fit: unset;
      }
      /*
      .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); */
  background: linear-gradient(135deg, #437d4a, #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;
    }
  }

  /* project page css starts */
  .project-page-hero {
    margin-top: 126px;
    padding: 40px 0;
    background:
    linear-gradient(rgb(75, 142, 33), rgba(226, 229, 232, 0.1)), url('/assets/images/banners/services/services.png');
    
    background-size: cover;
    background-position: center;
    color: #fff;
  }
  
  .project-page-hero h1 {
    font-size: clamp(3rem, 3vw, 3rem);
    font-weight: 800;
    max-width: 850px;
  }
  
  .project-page-hero p {
    max-width: 720px;
    color: rgba(255,255,255,0.82);
    line-height: 1.9;
    font-size: 1.08rem;
  }
  
  .cw-project-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(10,58,107,0.08);
    box-shadow: 0 20px 60px rgba(10,58,107,0.10);
    transition: 0.35s ease;
  }
  
  .cw-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 75px rgba(10,58,107,0.18);
  }
  
  .cw-project-img {
    height: 250px;
    position: relative;
    overflow: hidden;
  }
  
  .cw-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
  }
  
  .cw-project-card:hover .cw-project-img img {
    transform: scale(1.08);
  }
  
  .cw-status-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.95);
    color: var(--dark);
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
  }
  
  .cw-project-body {
    padding: 26px;
  }
  
  .cw-location {
    color: var(--secondary);
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    gap: 7px;
    align-items: center;
    margin-bottom: 12px;
  }
  
  .cw-project-body h3 {
    color: var(--dark);
    font-weight: 800;
    font-size: 1.45rem;
    margin-bottom: 12px;
  }
  
  .cw-project-body p {
    color: var(--muted);
    line-height: 1.8;
  }
  
  .cw-project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 22px 0;
  }
  
  .cw-project-stats div {
    background: #f5fbff;
    border-radius: 18px;
    padding: 14px 10px;
    text-align: center;
  }
  
  .cw-project-stats strong {
    color: var(--dark);
    display: block;
    font-size: 18px;
    font-weight: 800;
  }
  
  .cw-project-stats span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
  }
  
  .cw-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
  }
  
  .cw-project-tags span {
    background: rgba(107,170,63,0.12);
    color: var(--dark);
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
  }
  
  .cw-project-btn {
    width: 100%;
    justify-content: center;
  }
  
  .project-detail-hero {
    margin-top: 126px;
    min-height: 460px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
  }
  
  .project-detail-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    font-weight: 800;
    max-width: 900px;
  }
  
  .project-detail-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
  }
  
  .detail-badge {
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.22);
    padding: 10px 18px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 18px;
    font-weight: 800;
  }
  
  .cw-detail-card,
  .cw-side-card {
    background: #fff;
    border-radius: 28px;
    padding: 32px;
    border: 1px solid rgba(10,58,107,0.08);
    box-shadow: 0 20px 60px rgba(10,58,107,0.10);
  }
  
  .cw-detail-card h2,
  .cw-detail-card h3,
  .cw-side-card h3 {
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 16px;
  }
  
  .cw-detail-card p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 26px;
  }
  
  .cw-desc-img {
    margin: 28px 0;
    border-radius: 24px;
    overflow: hidden;
  }
  
  .cw-desc-img img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .cw-detail-list {
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
  }
  
  .cw-detail-list li {
    color: var(--text);
    font-weight: 700;
    display: flex;
    gap: 10px;
  }
  
  .cw-detail-list i {
    color: var(--secondary);
    margin-top: 4px;
  }
  
  .cw-info-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(10,58,107,0.08);
  }
  
  .cw-info-row span {
    color: var(--muted);
    font-weight: 700;
  }
  
  .cw-info-row strong {
    color: var(--dark);
    text-align: right;
  }
  
  @media (max-width: 767px) {
    .project-page-hero,
    .project-detail-hero {
      margin-top: 112px;
      padding: 80px 0;
    }
  
    .cw-project-stats {
      grid-template-columns: 1fr;
    }
  
    .cw-detail-card,
    .cw-side-card {
      padding: 24px;
    }
  }

  /* gallery page css */
  .gallery-hero {
    margin-top: 126px;
    padding: 40px 0;
    background:
    linear-gradient(rgb(75, 142, 33), rgba(226, 229, 232, 0.1)), url('/assets/images/banners/services/services.png');
    
    background-size: cover;
    background-position: center;
    color: #fff;
  }
  
  .gallery-hero h1 {
    font-size: clamp(3rem, 3vw, 3rem);
    font-weight: 800;
    max-width: 850px;
    margin-bottom: 18px;
  }
  
  .gallery-hero p {
    max-width: 720px;
    color: rgba(255,255,255,0.84);
    line-height: 1.9;
    font-size: 1.08rem;
  }
  
  .gallery-filter-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 42px;
  }
  
  .gallery-filter-btn {
    border: 1px solid rgba(10,58,107,0.14);
    background: #fff;
    color: var(--dark);
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(10,58,107,0.06);
    transition: 0.3s ease;
  }
  
  .gallery-filter-btn:hover,
  .gallery-filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37,150,190,0.25);
  }
  
  .cw-gallery-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(10,58,107,0.08);
    box-shadow: 0 20px 60px rgba(10,58,107,0.10);
    transition: 0.35s ease;
  }
  
  .cw-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 75px rgba(10,58,107,0.18);
  }
  
  .cw-gallery-img {
    height: 270px;
    position: relative;
    overflow: hidden;
  }
  
  .cw-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
  }
  
  .cw-gallery-card:hover .cw-gallery-img img {
    transform: scale(1.08);
  }
  
  .cw-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,58,107,0.05), rgba(10,58,107,0.65));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.35s ease;
  }
  
  .cw-gallery-card:hover .cw-gallery-overlay {
    opacity: 1;
  }
  
  .cw-gallery-overlay span {
    width: 62px;
    height: 62px;
    background: #fff;
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
  }
  
  .cw-gallery-content {
    padding: 24px;
  }
  
  .cw-gallery-content h3 {
    color: var(--dark);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 8px;
  }
  
  .cw-gallery-content p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0;
  }
  
  .cw-gallery-empty {
    background: #fff;
    border-radius: 28px;
    padding: 50px 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(10,58,107,0.10);
  }
  
  .cw-gallery-empty img {
    max-width: 180px;
    margin-bottom: 20px;
  }
  
  .cw-gallery-empty h3 {
    color: var(--dark);
    font-weight: 800;
  }
  
  .cw-gallery-empty p {
    color: var(--muted);
  }
  
  @media (max-width: 767px) {
    .gallery-hero {
      margin-top: 112px;
      padding: 80px 0;
    }

    .gallery-hero h1 {
      font-size: clamp(1.5rem, 2vw, 2rem) !important;
    }
  
    .cw-gallery-img {
      height: 230px;
    }
  
    .gallery-filter-btn {
      padding: 10px 17px;
      font-size: 14px;
    }
  }

  /* conatct page */
  .contact-hero {
    margin-top: 126px;
    padding: 40px 0;
    background:
    linear-gradient(rgb(75, 142, 33), rgba(226, 229, 232, 0.1)), url('/assets/images/banners/services/services.png');
    background-size: cover;
    background-position: center;
    color: #fff;
  }
  
  .contact-hero h1 {
    font-size: clamp(3rem, 3vw, 3rem);
    font-weight: 800;
    max-width: 850px;
    margin-bottom: 18px;
  }
  
  .contact-hero p {
    max-width: 720px;
    color: rgba(255,255,255,0.84);
    line-height: 1.9;
    font-size: 1.08rem;
  }
  
  .contact-info-card,
  .contact-form-card,
  .contact-map-card {
    background: #fff;
    border-radius: 32px;
    border: 1px solid rgba(10,58,107,0.08);
    box-shadow: 0 25px 75px rgba(10,58,107,0.12);
  }
  
  .contact-info-card {
    padding: 36px;
    height: 100%;
    background:
      radial-gradient(circle at top right, rgba(37,150,190,0.13), transparent 38%),
      linear-gradient(135deg, #ffffff, #f7fcff);
  }
  
  .contact-info-card h2,
  .contact-form-card h2,
  .contact-map-card h2 {
    color: var(--dark);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  
  .contact-info-card p,
  .contact-map-card p {
    color: var(--muted);
    line-height: 1.9;
  }
  
  .contact-info-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
  }
  
  .contact-info-item {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    border: 1px solid rgba(10,58,107,0.08);
    box-shadow: 0 12px 35px rgba(10,58,107,0.06);
    transition: 0.3s ease;
    color: inherit;
  }
  
  .contact-info-item:hover {
    transform: translateY(-4px);
    color: inherit;
  }
  
  .contact-info-item span {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(37,150,190,0.14), rgba(107,170,63,0.16));
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  
  .contact-info-item small {
    display: block;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 4px;
  }
  
  .contact-info-item strong {
    color: var(--dark);
    font-weight: 800;
  }
  
  .contact-trust-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
  }
  
  .contact-trust-box div {
    background: linear-gradient(135deg, var(--dark), var(--primary));
    border-radius: 22px;
    padding: 22px 16px;
    text-align: center;
    color: #fff;
  }
  
  .contact-trust-box h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
  }
  
  .contact-trust-box p {
    color: rgba(255,255,255,0.82);
    margin: 0;
    font-size: 14px;
  }
  
  .contact-form-card {
    padding: 36px;
    height: 100%;
  }
  
  .contact-form-card label {
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 8px;
  }
  
  .premium-input {
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(10,58,107,0.13);
    background: #f8fcff;
    color: var(--text);
    box-shadow: none !important;
    padding: 12px 16px;
  }
  
  .premium-input:focus {
    border-color: var(--primary);
    background: #fff;
  }
  
  .premium-textarea {
    min-height: 140px;
    resize: none;
  }
  
  .contact-submit-btn {
    border: 0;
    margin-top: 12px;
  }
  
  .contact-map-card {
    padding: 34px;
    background:
      linear-gradient(135deg, rgba(10,58,107,0.04), rgba(37,150,190,0.08));
  }
  
  @media (max-width: 767px) {
    .contact-hero {
      margin-top: 112px;
      padding: 80px 0;
    }
  
    .contact-info-card,
    .contact-form-card,
    .contact-map-card {
      padding: 24px;
      border-radius: 24px;
    }
  
    .contact-trust-box {
      grid-template-columns: 1fr;
    }
  }

  /* service page */
  .services-hero {
    margin-top: 126px;
    padding: 40px 0;
    background:
    linear-gradient(rgb(75, 142, 33), rgba(226, 229, 232, 0.1)),
      url('/assets/images/banners/services/services.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    height: 400px;
  }
  
  .services-hero h1 {
    font-size: clamp(3rem, 3vw, 3rem);
    font-weight: 800;
    max-width: 880px;
    margin-bottom: 18px;
  }
  
  .services-hero p {
    max-width: 760px;
    color: rgba(255,255,255,0.84);
    line-height: 1.9;
    font-size: 1.08rem;
  }
  
  .premium-service-card {
    height: 100%;
    background:
      radial-gradient(circle at top right, rgba(37,150,190,0.10), transparent 35%),
      #fff;
    border-radius: 30px;
    padding: 32px;
    border: 1px solid rgba(10,58,107,0.08);
    box-shadow: 0 22px 65px rgba(10,58,107,0.10);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
  }
  
  .premium-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 80px rgba(10,58,107,0.18);
  }
  
  .premium-service-card.featured {
    background:
    linear-gradient(135deg, rgb(54, 110, 71), rgb(65, 121, 63));
    color: #fff;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37,150,190,0.14), rgba(107,170,63,0.18));
    color: var(--dark);
    font-size: 28px;
    margin-bottom: 24px;
  }
  
  .premium-service-card.featured .service-icon {
    background: rgba(255,255,255,0.14);
    color: #fff;
  }
  
  .premium-service-card h3 {
    color: var(--dark);
    font-weight: 800;
    font-size: 1.45rem;
    margin-bottom: 14px;
  }
  
  .premium-service-card.featured h3 {
    color: #fff;
  }
  
  .premium-service-card p {
    color: var(--muted);
    line-height: 1.8;
  }
  
  .premium-service-card.featured p {
    color: rgba(255,255,255,0.82);
  }
  
  .premium-service-card ul {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: grid;
    gap: 12px;
  }
  
  .premium-service-card li {
    display: flex;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
  }
  
  .premium-service-card.featured li {
    color: rgba(255,255,255,0.9);
  }
  
  .premium-service-card li i {
    color: var(--secondary);
    margin-top: 4px;
  }
  
  .service-process-section {
    background:
      linear-gradient(135deg, rgba(10,58,107,0.04), rgba(37,150,190,0.08));
  }
  
  .process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .process-card {
    background: #fff;
    border-radius: 28px;
    padding: 28px;
    border: 1px solid rgba(10,58,107,0.08);
    box-shadow: 0 18px 55px rgba(10,58,107,0.09);
  }
  
  .process-card span {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 18px;
  }
  
  .process-card h4 {
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 10px;
  }
  
  .process-card p {
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
  }
  
  .services-cta-box {
    background:
      radial-gradient(circle at top right, rgba(107,170,63,0.18), transparent 35%),
      linear-gradient(135deg, var(--dark), var(--primary));
    border-radius: 34px;
    padding: 42px;
    color: #fff;
    box-shadow: 0 25px 75px rgba(10,58,107,0.20);
  }
  
  .services-cta-box h2 {
    font-weight: 800;
    margin-bottom: 12px;
  }
  
  .services-cta-box p {
    color: rgba(255,255,255,0.82);
    margin: 0;
    line-height: 1.8;
  }
  
  @media (max-width: 767px) {
    .services-hero {
      margin-top: 112px;
      padding: 80px 0;
    }
  
    .premium-service-card,
    .process-card,
    .services-cta-box {
      padding: 24px;
      border-radius: 24px;
    }
  
    .process-grid {
      grid-template-columns: 1fr;
    }
  
    .services-cta-box {
      text-align: center;
    }
  }

  .hero-slide {
  position: relative;
  /* height: 550px; */
  /* min-height: 500px; */
  overflow: hidden;
}

/* ✅ Main Image */
.hero-img {
  /* width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; */

  width: 100%;
  height: auto;
  display: block;
  position: relative;
  object-fit: unset;
  z-index: 1;
}

/* ✅ Content above image */
.hero-slide .container {
  /* position: relative;
  z-index: 2; */

  position: absolute;
  inset: 0;
  z-index: 2;

}
/* ===============================
   NEW PROJECT CARD (UNIQUE)
=============================== */

.estate-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.estate-card {
  display: flex;
  flex-direction: column;
  height: 100%; /* ✅ equal height fix */
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  transition: 0.35s ease;
}

.estate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* IMAGE */
.estate-card-img {
  height: 230px;
  overflow: hidden;
}

.estate-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.estate-card:hover img {
  transform: scale(1.07);
}

/* CONTENT */
.estate-card-content {
  flex: 1; /* ✅ equal height stretch */
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: #fff;
  padding: 22px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* TITLE */
.estate-card-content h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
}

/* DIVIDER */
.estate-divider {
  width: 60%;
  height: 2px;
  background: rgba(255,255,255,0.6);
  margin: 12px auto;
}

/* STATS */
.estate-stats {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 0 15px;
}

.estate-stats div {
  flex: 1;
}

.estate-stats strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
}

.estate-stats span {
  font-size: 12px;
  opacity: 0.85;
}

/* BUTTON */
.estate-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
}

.estate-card:hover .estate-btn {
  background: #fff;
  color: var(--primary);
}

/* MOBILE */
@media (max-width: 767px) {
  .estate-card-img {
    height: 200px;
  }

  .estate-card-content h3 {
    font-size: 18px;
  }

  .estate-stats {
    flex-direction: column;
    gap: 6px;
  }
}