/********** Template CSS **********/
:root {
    --primary: #5B8C51;
    --secondary: #EDDD5E;
    --light: #F7F7F7;
    --dark: #404A3D;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: white;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    /* background: rgba(0, 0, 0, .1); */
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    /* width: 3rem;
    height: 3rem; */
    border-radius: 3rem;
    background-color: #161f37;
    border: 10px solid #161f37;
 }
@media (max-width: 576px) {
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        margin-top: -315px;
    }
}
@media (max-width: 768px) {
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        margin-top: -310px;
    }
}

/* @media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
} */


 


.page-header {
    background: url(../img/banner.png) center center no-repeat;
    background-size: cover;
    /* margin-top: -520px;; */
    /* margin-top: -145px; */
}
/* Large Desktop */
@media (min-width: 1200px) {
    .page-header {
        margin-top: -520px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .page-header {
        margin-top: -300px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .page-header {
        margin-top: -445px;
    }
}
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-titlex {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

.section-titlex::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-titlex::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-titlex.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-titlex.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** About ***/
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/*** Service ***/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    z-index: 1;
}

.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s ease-out;
    z-index: 2;
}

.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}

.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    padding: 15px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 140px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}

.service-item .service-text h5,
.service-item .service-text p {
    transition: .5s;
}

.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #FFFFFF;
}

.service-item .service-text .btn {
    color: var(--secondary);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .25);
}

.service-item .service-text .btn:hover {
    color: var(--dark);
    background: var(--secondary);
}


/*** Product ***/
.product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.product-item:hover .product-overlay {
    opacity: 1;
    padding-top: 0;
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .btn {
    border-color: transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
}

.testimonial-img::after {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 200px;
    color: #EEEEEE;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonial-img img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-img img:nth-child(1) {
    top: 0;
    left: 0;
}

.testimonial-img img:nth-child(2) {
    top: 60%;
    left: 20%;
}

.testimonial-img img:nth-child(3) {
    top: 20%;
    left: 60%;
}

.testimonial-img img:nth-child(4) {
    bottom: 0;
    right: 0;
}

.testimonial-img img .animated.pulse {
    animation-duration: 2s;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 45px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
    color: var(--dark);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}


.logo-img {
  height: 100px;        /* default desktop height */
  width: auto;         /* keeps aspect ratio */
  max-width: 100%;
  margin-top:-20px;
  margin-bottom: -30px;
}

/* Tablet */
@media (max-width: 992px) {
  .logo-img {
    height: 45px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .logo-img {
    height: 120px;
  }
}


.py-41{
        padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}



.services-section {
  /* background: #21223f; */
  padding: 70px 20px;
  color: #fff;
}

.containerx {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-tag {
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.service-card {
  background: #fff;
  color: #333;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

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

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #000;
}

.service-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button */
.btnn {
  display: inline-block;
  padding: 10px 25px;
  background: #dbb264;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.btnn:hover {
  background: #dbb264;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 22px;
  }
}
/* .ok2{
    background-image: url(../img/bg1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    opacity: 1px;
    margin-top: -50px;
  } */


  .ok2 {
    position: relative;
    width: 100%;
    margin-top: -50px;
    overflow: hidden;
}

.ok2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.04;    
    z-index: -1;
}


  .ok3 {
    position: relative;
    width: 100%;
    margin-top: -70px;
    overflow: hidden;
}

.ok3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: linear-gradient(rgb(32 33 63), /* overlay color + opacity */ rgb(32 33 63 / 87%)), url(../img/demo.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
}



  .ok4 {
    position: relative;
    width: 100%;
    /* margin-top: -50px; */
    overflow: hidden;
}

.ok4::before {
   content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/testimonials.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.04;
    z-index: -1;
}


.ok5{
    position: relative;
    width: 100%;
    /* margin-top: -50px; */
    overflow: hidden;
}

.ok5::before {
   content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg-shape-1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 1;
    z-index: -1;
}


 

:root {
            --primary: #1a472a;
            --primary-dark: #0d2b1a;
            --primary-light: #2e7d32;
            --secondary: #d4af37;
            --secondary-light: #e6c158;
            --accent: #c62828;
            --light: #f8f9fa;
            --dark: #121212;
            --gray: #6c757d;
            --light-gray: #f5f5f5;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.15);
            --radius: 12px;
        }
        
        /* Reset & Base */
      
        
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #1f203e;
            margin-bottom: 15px;
            display: inline-block;
            position: relative;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70%;
            height: 4px;
            background: linear-gradient(to right, transparent, var(--secondary), transparent);
            bottom: -10px;
            left: 15%;
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Buttons */
        /* .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            background-color: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
            z-index: -1;
        }
        
        .btn:hover:before {
            left: 100%;
        }
        
        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .btn i {
            margin-right: 10px;
            font-size: 1.1rem;
        } */
        
        /* .btn-secondary {
            background-color: var(--secondary);
            color: var(--dark);
        }
        
        .btn-secondary:hover {
            background-color: var(--secondary-light);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        } */
        
        #mobileMenuBtn{
            display: none;
        }
        
        /* Project Highlight */
        .project-highlight {
            position: relative;
            overflow: hidden;
        }
        
        .project-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 71, 42, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
            z-index: -1;
        }
        
        .project-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .project-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 40px;
        }
        
        .stat-item {
            background-color: white;
            padding: 25px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1f203e;
            margin-bottom: 5px;
        }
        
        .project-image {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
        }
        
        .project-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .project-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--accent);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(198, 40, 40, 0.3);
        }
        
        /* Configurations */
        .configurations-section {
            /* background-color: var(--light-gray); */
        }
        
        .config-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
        }
        
        .tab-btn {
            padding: 15px 30px;
            background-color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .tab-btn.active {
            background-color:#1f203e;
            color: white;
            transform: translateY(-5px);
        }
        
        .config-content {
            display: none;
            animation: fadeIn 0.8s ease;
        }
        
        .config-content.active {
            display: block;
        }
        
        .config-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .config-card {
            background-color: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .config-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-heavy);
        }
        
        .config-card-header {
            background: linear-gradient(135deg, #1f203e, #1f203eb3);
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .config-card-header:after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100px;
            height: 200px;
            background-color: rgba(255,255,255,0.1);
            transform: rotate(30deg);
        }
        
        .config-card-body {
            padding: 30px;
        }
        
        .spec-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .spec-list li {
            margin-bottom: 12px;
            padding-left: 30px;
            position: relative;
        }
        
        .spec-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .price-tag {
            display: block;
            text-align: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* Amenities */
        .amenities-section {
            position: relative;
            overflow: hidden;
         }
        
        .amenities-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--light);
            z-index: -1;
        }
        
        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .amenity-card {
            background-color: white;
            padding: 40px 25px;
            text-align: center;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .amenity-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #20213f, var(--secondary));
        }
        
        .amenity-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }
        
        .amenity-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(26, 71, 42, 0.1), rgba(212, 175, 55, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color:#1f203f;
            transition: var(--transition);
        }
        
        .amenity-card:hover .amenity-icon {
            background: #20213f;
            color: white;
            transform: rotateY(180deg);
        }
        
        /* Location */
        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .location-list {
            list-style: none;
        }
        
        .location-list li {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background-color: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .location-list li:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-heavy);
        }
        
        .location-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(26, 71, 42, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        
        .location-map {
            height: 500px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
            position: relative;
        }
        
        .map-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            padding: 30px;
        }
        
        /* Quality */
        .quality-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .quality-card {
            background-color: white;
            padding: 40px 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .quality-card:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            transform: scaleX(0);
            transition: var(--transition);
            transform-origin: left;
        }
        
        .quality-card:hover:after {
            transform: scaleX(1);
        }
        
        .quality-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }
        
        .quality-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 25px;
        }
        
        /* Why Choose */
        .why-choose-section {
           /* background: linear-gradient(135deg, #1f203f 0%, #1f203f 100%); */
            color: white;
        }
        
        .why-choose-section .section-title h2 {
            color: white;
        }
        
        .why-choose-section .section-subtitle {
            color: rgba(255,255,255,0.8);
        }
        
        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .reason-card {
            background-color: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 40px 30px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition);
        }
        
        .reason-card:hover {
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-10px);
        }
        
        .reason-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--secondary);
        }
        
        .rera-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: white;
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 700;
            margin-top: 50px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
     
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 3.2rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .about-content,
            .project-content,
            .location-content {
                grid-template-columns: 1fr;
            }
            
            .about-image,
            .project-image {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
           
         
            
            
            section {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .config-tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .tab-btn {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 576px) {
         
            .project-stats {
                grid-template-columns: 1fr;
            }
        }

        .amenities-grid h4{
            font-size: 18px;
        }


        .counter-section {
   background: linear-gradient(rgb(32 33 63), rgb(32 34 64 / 86%)), url(https://images.unsplash.com/photo-1503387762-592deb58ef4e) center / cover no-repeat;
    padding: 80px 20px;
       background-attachment: fixed;
    color: #fff;
}

.counter-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-box h2 {
    font-size: 48px;
    color: #f4c430;
    margin-bottom: 10px;
    font-weight: 700;
}

.counter-box p {
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .counter-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .counter-container {
        grid-template-columns: 1fr;
    }

    .counter-box h2 {
        font-size: 40px;
    }
}



.faq-section {
  padding: 60px 20px;
  /* background-color: #f8f8f5; */
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ---------- LEFT ---------- */
.faq-left h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #003d3d;
}

.faq-item {
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e2f1ec;
}

.faq-question {
  width: 100%;
  padding: 16px 18px;
padding: 16px 18px;
    background: #222340;
    color:white;
      border: none;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* ---------- ANSWER ---------- */
.faq-answer {
  height: 0;
  overflow: hidden;
  background: #f9fefe;
  transition: height 0.35s ease;
}

.faq-answer p {
  padding: 15px 18px;
  margin: 0;
  font-size: 15px;
  color: #444;
}

/* ACTIVE */
.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* ---------- RIGHT IMAGE ---------- */
.faq-right img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-left h2 {
    font-size: 26px;
  }
}
  
 
/* .video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh; 
    overflow: hidden;
}

 
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

 
@media (max-width: 768px) {
    .video-wrapper {
        height: 60vh;  
    }
} */



/* Main Section */
.about-section{
    padding:70px 20px;
    background:#fbf9f4;
}

/* Container */
.about-container{
    max-width:1200px;
    margin:auto;
}

/* Stats Row */
.about-stats{
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

/* Stat Box */
.stat-box{
    flex:1 1 250px;
    background:#fff;
    padding:30px 20px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 0 15px rgba(0,0,0,0.06);
}

.stat-box h2{
    font-size:40px;
    color:#c28b36;
    margin-bottom:10px;
}

.stat-box p{
    font-size:15px;
    color:#555;
    line-height:1.6;
}

/* Middle Paragraph */
.middle-text{
    /* max-width:900px; */
    margin:-40px auto;
    text-align:center;
    font-size:17px;
    line-height:1.8;
    color:#333;
    padding:0 15px;
}


.middle-text h3{
     font-size:45px !important;
     margin-bottom: 30px;;
}
/* Bottom Content */
.about-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.about-content h3{
    font-size:30px;
    margin-bottom:20px;
    color:#222;
}

.about-content p{
    font-size:16px;
    line-height:1.7;
    color:#444;
    margin-bottom:20px;
}

/* Responsive */
@media(max-width:768px){

    .about-stats{
        flex-direction:column;
    }

    .stat-box h2{
        font-size:32px;
    }

    .middle-text{
        font-size:16px;
        margin:25px auto;
    }

    .about-content h3{
        font-size:24px;
    }

}



        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(10, 61, 98, 0.9)), url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 100px;
            text-align: center;
        }

        .hero h1 {
            color: white;
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .btnn {
            display: inline-block;
            background-color: var(--secondary);
            color: #ffffff;
            padding: 14px 32px;
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: var(--transition);
            border: 2px solid var(--secondary);
            cursor: pointer;
        }

        .btnn:hover {
            background-color: transparent;
            color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Vision & Mission Section */
        .vision-mission {
            background-color: #f8f9fa;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .card {
            background: white;
            border-radius: var(--radius);
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border-top: 5px solid var(--secondary);
        }

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

        .card-icon {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
        }

        .card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

      

        /* Values Section */
        .values {
            background-color: #ffffff;
        }

        .values-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .value-item {
            background: white;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
        }

        .value-item:hover {
            transform: translateY(-5px);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: #20213f;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
        }

        .value-item h4 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(to right, var(--primary), var(--accent));
            color: white;
            text-align: center;
        }

        .cta h2 {
            color: white;
        }

        .cta h2:after {
            background: var(--secondary);
            left: 50%;
            transform: translateX(-50%);
        }

        .cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            color: rgba(255, 255, 255, 0.9);
        }
/* 
        .cta .btn {
            background-color: var(--secondary);
            color: var(--dark);
        } */

        .cta .btn:hover {
            background-color: white;
            color: var(--primary);
        }
 

        /* Responsive Styles */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
        
            
            .cards-container {
                grid-template-columns: 1fr;
            }
            
            section {
                padding: 60px 0;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
        
            .card {
                padding: 30px 20px;
            }
        }


        .op-projects-section{
    padding:70px 20px 90px;
    background-color: #f8f8f5;

}

/* Heading */
.op-projects-heading{
    text-align:center;
    font-size:38px;
    font-weight:600;
    letter-spacing:3px;
    color:#0a2540;
    margin-bottom:55px;
}

/* Container */
.op-projects-grid{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top: 40px;
}

/* Card */
.op-project-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.3s ease;
}

.op-project-card:hover{
    transform:translateY(-8px);
}

/* Image */
.op-project-image{
    width:100%;
    height:240px;
    object-fit:cover;
}

/* Content */
.op-project-content{
    padding:28px 25px 32px;
    text-align:center;
}

.op-project-title{
    font-size: 26px;
    font-weight: 600;
    color: #353751;
    margin-bottom: 15px;
}

.op-project-text{
    font-size:14.5px;
    line-height:1.7;
    color:#444;
    margin-bottom:22px;
        font-weight: 400;
}

/* Button */
.op-project-btn{
    display:inline-block;
    background:#ff6a00;
    color:#fff;
    font-size:14px;
    font-weight:500;
    padding:10px 26px;
    border-radius:6px;
    text-decoration:none;
    transition:0.3s;
}

.op-project-btn:hover{
    background:#e25c00;
}

/* ================= Responsive ================= */

@media(max-width:1024px){

    .op-projects-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:650px){

    .op-projects-heading{
        font-size:28px;
        letter-spacing:2px;
    }

    .op-projects-grid{
        grid-template-columns:1fr;
    }

    .op-project-image{
        height:210px;
    }

}




/* Video Wrapper */
/* .video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

 
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

 
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);  
    z-index: 2;
} */


/* Desktop */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Video */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

/* Mobile Optimization */
@media (max-width: 768px) {

    .video-wrapper {
        height: 70vh; /* Mobile height */
    }

    .bg-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Reduce overlay text size */
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content h3 {
        font-size: 18px;
    }

}


/* Center Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #d9a441;
    font-family: "Poppins", sans-serif;
}

.hero-content h1 {
    font-size: 80px;
    letter-spacing: 10px;
    margin-bottom: 10px;
}

.hero-content h3 {
    font-size: 28px;
    letter-spacing: 6px;
}

/* Scroll Down */
.scroll-down {
    margin-top: 40px;
    font-size: 14px;
    color: #fff;
}

.arrows {
    font-size: 18px;
    margin-top: 5px;
    animation: bounce 1.5s infinite;
}

/* Left Logo */
.left-logo {
    position: absolute;
    top: 30px;
    left: 30px;
}

.left-logo img {
    width: 200px;
        margin-top: -40px;
}

/* Right Menu */
.right-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 28px;
    color: #d9a441;
    cursor: pointer;
}

/* Animation */
@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Mobile */
@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 45px;
        letter-spacing: 5px;
    }

    .hero-content h3 {
        font-size: 18px;
    }

    .left-logo img {
      width: 145px;
        margin-top: -10px;
        margin-left: -21px;
    }
}
/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: #e9edf2;
    padding: 60px 30px;
    transition: 0.4s ease;
    z-index: 9999;
    overflow-y: auto;
}

/* Show Menu */
.side-menu.active {
    right: 0;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
}

/* Menu List */
.side-menu ul {
    list-style: none;
    padding: 0;
    margin-left: 15px;
}

.side-menu ul li {
    margin: 20px 0;
}

.side-menu ul li a {
    text-decoration: none;
    font-size: 20px;
    color: #222;
    font-weight: 500;
}

.side-menu ul li a:hover {
    color: #d9a441;
}



/* Dropdown */
.dropdown > a{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* Sub Menu */
.submenu{
  list-style:none;
  padding-left:175px;   /* MORE LEFT SPACE */
  margin-top:12px;
  display:none;
 }

/* Show Submenu */
.submenu.show{
  display:block;
}

/* Submenu Links */
.submenu li{
  margin:10px 0;
}

.submenu li a{
  font-size:17px;
  color:#444;
}

/* Arrow Rotate */
.arrow{
  transition:0.3s;
}

.arrow.rotate{
  transform:rotate(180deg);
}


/* Make wrapper relative */
.video-wrapper{
  position: relative;
}

/* Scroll Button */
.scroll-down{
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 50;
}

/* Arrow */
.scroll-down span{
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  animation: scrollAnim 1.5s infinite;
}

/* Animation */
@keyframes scrollAnim{
  0%{
    opacity: 0;
    transform: rotate(45deg) translate(-5px,-5px);
  }

  50%{
    opacity: 1;
  }

  100%{
    opacity: 0;
    transform: rotate(45deg) translate(5px,5px);
  }
}

/* Smooth Scroll */
html{
  scroll-behavior: smooth;
}
.gallery-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}/* Tablet */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 24px;
    }

    .gallery-section {
        padding: 50px 0;
    }
}



        /* container utility */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* breadcrumb style */
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 1rem;
            color: rgba(255,255,255,0.85);
            margin-top: 12px;
        }
        .breadcrumb a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }
        .breadcrumb a:hover {
            border-bottom-color: white;
        }
        .breadcrumb span {
            margin: 0 4px;
            color: rgba(255,255,255,0.7);
        }

        /* buttons */
        .btn {
            /* display: inline-block;
            padding: 12px 28px; */
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            border: 1px solid transparent;
            cursor: pointer;
        }
        .btn-primary {
            background: #b48c4c;
            color: white;
            box-shadow: 0 8px 18px rgba(180, 140, 76, 0.2);
        }
        .btn-primary:hover {
            background: #9f752f;
            transform: scale(1.02);
        }
        .btn-outline-light {
            background: transparent;
            border: 1.5px solid white;
            color: white;
        }
        .btn-outline-light:hover {
            background: white;
            color: #1e2b37;
        }
        .btn-outline-dark {
            background: transparent;
            border: 1.5px solid #b48c4c;
            color: #b48c4c;
        }
        .btn-outline-dark:hover {
            background: #b48c4c;
            color: white;
        }

        /* section spacing */
        section {
            padding: 80px 0;
        }
        .section-title {
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1f2e3a;
            letter-spacing: -0.02em;
        }
        .section-subhead {
            font-size: 1.2rem;
            color: #4a5a67;
            max-width: 720px;
            margin-bottom: 48px;
            font-weight: 400;
        }

        /* ----- 1. HERO SECTION (full width bg) ----- */
        .hero {
            background: linear-gradient(107deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 70%), 
                        url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
            /* unsplash: modern under‑construction apartment india – building with cranes */
            color: white;
            padding: 140px 0 100px;
            position: relative;
        }
        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            max-width: 800px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        .hero p {
            font-size: 1.5rem;
            margin: 20px 0 16px;
            font-weight: 300;
            text-shadow: 0 2px 6px rgba(0,0,0,0.4);
        }

        /* 2. introduction */
        .intro-box {
            background: white;
            padding: 48px 40px;
            border-radius: 40px;
            box-shadow: 0 20px 35px -8px rgba(0,20,30,0.1);
            margin-top: -90px;   /* subtle overlap */
            position: relative;
            z-index: 5;
        }
        .intro-box h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #b48c4c;
            margin-bottom: 20px;
        }
        .intro-box p {
            font-size: 1.2rem;
            color: #2c3e4f;
            /* max-width: 860px; */
        }

        /* 3. featured project card */
        .featured-card {
            background: white;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 25px 40px -18px rgba(0,40,60,0.25);
            display: flex;
            flex-direction: row;
            margin: 40px 0 20px;
            transition: transform 0.2s;
        }
        .featured-card:hover {
            transform: scale(1.01);
        }
        .featured-img {
            flex: 4;
            min-height: 360px;
            background: url('../img/completed3.png') center/cover;
            /* modern apartment exterior india */
        }

          .featured-imgg {
            flex: 4;
            min-height: 360px;
            background: url('../img/ongoing.png') center/cover;
            /* modern apartment exterior india */
        }
        .featured-content {
              flex: 5;
    padding: 40px 36px;
    background: white;
    filter: blur(6px);   /* adjust blur level */
        }
        .project-tag {
            color: #b48c4c;
            font-weight: 600;
            letter-spacing: 1px;
            font-size: 0.9rem;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .featured-content h3 {
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: #1e2b37;
        }
        .project-detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px 24px;
            margin: 24px 0;
        }
        .detail-item {
            display: flex;
            gap: 10px;
            align-items: center;
            font-weight: 500;
        }
        .detail-item i {
            color: #b48c4c;
            width: 24px;
            font-size: 1.2rem;
        }
        .short-desc {
            color: #445a68;
            margin: 20px 0 28px;
            font-size: 1.05rem;
            border-left: 4px solid #b48c4c;
            padding-left: 20px;
        }
        .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }

        /* highlights & bullets */
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 91px;
            margin-top: 40px;
        }
        .highlight-bullet {
            background: white;
            padding: 24px 24px;
            border-radius: 28px;
            box-shadow: 0 10px 20px -5px rgba(0,0,0,0.03);
            border: 1px solid rgba(180,140,76,0.15);
            display: flex;
            gap: 16px;
            align-items: flex-start;
            transition: all 0.2s;
        }
        .highlight-bullet:hover {
            border-color: #b48c4c;
        }
        .highlight-bullet i {
            font-size: 2rem;
            color: #b48c4c;
            background: #fff2e0;
            padding: 12px;
            border-radius: 60%;
        }
        .highlight-bullet span {
            font-weight: 600;
            font-size: 1.1rem;
            color: #1e2b37;
        }

        /* progress gallery */
        .progress-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }
        .progress-item {
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
            transition: 0.2s;
            background: white;
        }
        .progress-item img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s;
        }
        .progress-item:hover img {
            transform: scale(1.05);
        }
        .progress-caption {
            padding: 18px 16px 20px;
            font-weight: 600;
                text-align: center;
            background: white;
            font-size: 1rem;
            color: #1e2b37;
            border-top: 2px solid #f5eee6;
        }
        .progress-caption i {
            color: #b48c4c;
            margin-right: 8px;
        }

        /* location & map */
        .location-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            background: white;
            border-radius: 40px;
            padding: 40px;
            box-shadow: 0 18px 30px -8px rgba(0,0,0,0.06);
        }
        .map-col {
            flex: 1 1 300px;
        }
        .map-col iframe {
            width: 100%;
            height: 280px;
            border-radius: 30px;
            box-shadow: 0 10px 18px rgba(0,0,0,0.05);
        }
        .addr-col {
            flex: 1 1 260px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .addr-col i {
            color: #b48c4c;
            font-size: 2.2rem;
            margin-bottom: 16px;
        }
        .addr-col p {
            font-size: 1.2rem;
            color: #2d4455;
            line-height: 1.5;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(115deg, #0f2a38 0%, #1b404f 100%);
            color: white;
            border-radius: 48px;
            padding: 64px 56px;
            text-align: center;
            margin: 40px 0;
        }
        .cta-section h2 {
            font-size: 2.6rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .cta-section .lead {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 32px;
        }
        .cta-contacts {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 40px;
            margin: 40px 0 20px;
        }
        .cta-phone, .cta-mail {
            font-size: 1.3rem;
            font-weight: 500;
        }
        .cta-phone i, .cta-mail i {
            margin-right: 12px;
            color: #b48c4c;
            font-size: 1.6rem;
            vertical-align: middle;
        }

        /* responsive */
        @media (max-width: 1000px) {
            .featured-card {
                flex-direction: column;
            }
            .featured-img {
                min-height: 280px;
            }
        }
        @media (max-width: 720px) {
            .hero h1 { font-size: 3rem; }
            .progress-gallery { grid-template-columns: 1fr; }
            .cta-section { padding: 48px 24px; }
            .btn-group .btn { width: 100%; text-align: center; }
        }
        @media (max-width: 500px) {
            .hero h1 { font-size: 2.5rem; }
            .project-detail-grid { grid-template-columns: 1fr; }
        }

        /* utility */
        .text-gold { color: #b48c4c; }
        .mt-2 { margin-top: 8px; }
        .mb-2 { margin-bottom: 16px; }



            /* breadcrumb */
    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 1rem;
      color: rgba(255,255,255,0.8);
      margin-top: 12px;
    }
    .breadcrumb a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }
    .breadcrumb a:hover {
      border-bottom-color: white;
    }

    /* buttons */
    /* .btn {
      display: inline-block;
      padding: 10px 22px;
      border-radius: 40px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s ease;
      font-size: 0.95rem;
      border: 1px solid transparent;
      cursor: pointer;
    }
    .btn-primary {
      background: #b48c4c;
      color: white;
      box-shadow: 0 8px 18px rgba(180, 140, 76, 0.2);
    }
    .btn-primary:hover {
      background: #9f752f;
      transform: scale(1.02);
    }
    .btn-outline-dark {
      background: transparent;
      border: 1.5px solid #b48c4c;
      color: #b48c4c;
    }
    .btn-outline-dark:hover {
      background: #b48c4c;
      color: white;
    }
    .btn-outline-light {
      background: transparent;
      border: 1.5px solid white;
      color: white;
    }
    .btn-outline-light:hover {
      background: white;
      color: #1e2b37;
    } */

    /* section spacing */
    section {
      padding: 80px 0;
    }
    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #1f2e3a;
      letter-spacing: -0.02em;
    }
    .section-subhead {
      font-size: 1.2rem;
      color: #4a5a67;
      max-width: 720px;
      margin-bottom: 48px;
      font-weight: 400;
    }

    /* ----- 1. HERO (completed projects) ----- */
    .hero-completed {
      background: linear-gradient(102deg, rgba(0,20,25,0.7) 0%, rgba(0,0,0,0.3) 70%),
                  url('https://images.unsplash.com/photo-1580587771525-78b9dba3b914?q=80&w=1974&auto=format&fit=crop') center/cover no-repeat;
      /* modern completed apartment exterior India */
      color: white;
      padding: 140px 0 100px;
    }
    .hero-completed h1 {
      font-size: 4rem;
      font-weight: 700;
      line-height: 1.1;
      max-width: 800px;
      text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    }
    .hero-completed p {
      font-size: 1.5rem;
      margin: 20px 0 16px;
      font-weight: 300;
    }

    /* 2. intro card (soft overlap) */
    .intro-completed {
      background: white;
      padding: 48px 44px;
      border-radius: 44px;
      box-shadow: 0 22px 40px -16px rgba(21, 40, 50, 0.18);
      margin-top: -90px;
      position: relative;
      z-index: 5;
    }
    .intro-completed h2 {
      font-size: 2.3rem;
      font-weight: 700;
      color: #b48c4c;
      margin-bottom: 18px;
    }
    .intro-completed p {
      font-size: 1.22rem;
      color: #2f4555;
      /* max-width: 900px; */
    }

    /* 3. project card grid */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 32px;
      margin-top: 30px;
    }
    .project-card {
      background: white;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 18px 30px -12px rgba(0, 40, 50, 0.14);
      transition: transform 0.2s, box-shadow 0.2s;
      display: flex;
      flex-direction: column;
    }
    .project-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 38px -14px rgba(100, 70, 20, 0.18);
    }
    .card-img {
      height: 240px;
      background-size: cover;
      background-position: center;
    }
    .card-content {
      padding: 28px 24px 32px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .project-name {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: #1e2b37;
    }
    .project-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 24px;
      margin: 16px 0 12px;
      font-size: 0.98rem;
    }
    .meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
      color: #345f73;
    }
    .meta-item i {
      color: #b48c4c;
      width: 20px;
    }
    .status-badge {
      background: #dcfce7;
      color: #15803d;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 40px;
      font-size: 0.85rem;
      display: inline-block;
      margin: 6px 0 12px;
      width: fit-content;
    }
    .card-desc {
      color: #3f5565;
      margin: 12px 0 24px;
      line-height: 1.5;
      flex: 1;
    }
    .card-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: auto;
      align-items: center;
    }
    .card-actions .btn {
      padding: 8px 18px;
      font-size: 0.9rem;
    }

    /* highlights grid (key features) */
    .highlights-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
      background: #ffffffd4;
      border-radius: 48px;
      padding: 32px 32px;
      box-shadow: 0 8px 18px -8px rgba(0,0,0,0.04);
      border: 1px solid rgba(180,140,76,0.2);
      margin-top: 30px;
    }
    .feature-bullet {
      display: flex;
      align-items: center;
      gap: 16px;
      font-weight: 600;
      font-size: 1.1rem;
    }
    .feature-bullet i {
      color: #b48c4c;
      font-size: 2rem;
      background: #fcf3e7;
      padding: 14px;
      border-radius: 50%;
    }

    /* gallery grid 3x3 (or 3 cols) */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin: 40px 0 20px;
    }
    .gallery-item {
      border-radius: 28px;
      overflow: hidden;
      aspect-ratio: 4/3;
      box-shadow: 0 12px 20px -10px rgba(0,0,0,0.1);
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }
    .gallery-item:hover img {
      transform: scale(1.06);
    }

    /* testimonial / client satisfaction area */
    .satisfaction-wrap {
      background: linear-gradient(145deg, #f1f5f9, #ffffff);
      border-radius: 48px;
      padding: 56px 44px;
      margin-top: 20px;
      border: 1px solid #ece5db;
    }
    .satisfaction-header {
      font-size: 2.2rem;
      font-weight: 700;
      color: #1e2b37;
      margin-bottom: 24px;
    }
    .satisfaction-header i {
      color: #b48c4c;
      margin-right: 16px;
    }
    .satisfaction-text {
      font-size: 1.3rem;
      color: #2a4858;
      max-width: 800px;
      margin-bottom: 48px;
      font-style: italic;
    }
    .testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 32px;
      margin-top: 16px;
    }
    .testimonial-card {
      background: white;
      border-radius: 30px;
      padding: 28px 26px;
      box-shadow: 0 8px 16px -8px rgba(100,80,40,0.08);
    }
    .testimonial-card i {
      color: #b48c4c;
      font-size: 2.2rem;
      opacity: 0.5;
      margin-bottom: 12px;
    }
    .testimonial-card p {
      font-size: 1rem;
      color: #2a3f4f;
      margin: 16px 0;
    }
    .client-name {
      font-weight: 700;
      color: #1e2b37;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .client-name span {
      background: #b48c4c;
      width: 30px;
      height: 2px;
    }

    /* CTA */
    .cta-block {
      background: #183c4a;
      border-radius: 48px;
      padding: 64px 48px;
      color: white;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      margin: 30px 0 20px;
    }
    .cta-text h2 {
      font-size: 2.3rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .cta-text p {
      font-size: 1.25rem;
      opacity: 0.9;
    }
    .cta-contacts {
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 1.2rem;
    }
    .cta-contacts i {
      color: #b48c4c;
      margin-right: 10px;
      width: 28px;
    }
    .cta-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* responsive */
    @media (max-width: 900px) {
      .hero-completed h1 { font-size: 3rem; }
      .gallery-grid { grid-template-columns: repeat(2,1fr); }
      .cta-block { flex-direction: column; text-align: center; }
    }
    @media (max-width: 600px) {
      .hero-completed h1 { font-size: 2.5rem; }
      .intro-completed { padding: 32px 24px; }
      .gallery-grid { grid-template-columns: 1fr; }
      .section-title { font-size: 2rem; }
    }


        /* hero */
    .hero {
      background: linear-gradient(82deg, #0b262f 0%, rgba(25,65,75,0.7) 70%), url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
      min-height: 560px;
      display: flex;
      align-items: flex-end;
      padding: 60px 0 80px;
      color: white;
    }
    .hero h1 {
      font-size: 4rem;
      font-weight: 700;
      letter-spacing: -1px;
      line-height: 1.1;
      margin-bottom: 16px;
      text-shadow: 0 4px 25px rgba(0,0,0,0.4);
    }
    .hero .subhead {
      font-size: 1.5rem;
      font-weight: 400;
      opacity: 0.95;
      max-width: 720px;
    }

    /* intro card */
    .intro-card {
      background: white;
      border-radius: 40px;
      padding: 48px;
      margin-top: -90px;
      box-shadow: 0 30px 50px -20px rgba(20,50,60,0.2);
      position: relative;
      z-index: 10;
    }
    .intro-title {
      /* font-size: 2.4rem; */
      font-weight: 700;
      color: #c7a05f;
      margin-bottom: 20px;
    }

    /* section headers */
    .section-title {
      font-size: 2.6rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin: 60px 0 20px;
      color: #10313e;
    }
    .section-sub {
      font-size: 1.3rem;
      color: #3f5f70;
      max-width: 820px;
      margin-bottom: 48px;
    }

    /* projects grid */
    .project-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
      gap: 36px;
      margin: 50px 0;
    }
    .project-card {
      background: white;
      border-radius: 32px;
      overflow: hidden;
      box-shadow: 0 20px 35px -10px rgba(0,50,60,0.1);
      transition: 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .project-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 30px 50px -10px rgba(80,100,100,0.25);
    }
    .card-img {
      height: 240px;
      background-size: cover;
      background-position: center;
    }
    .card-content {
      padding: 30px 26px;
      flex: 1;
    }
    .project-name {
      /* font-size: 2rem; */
      font-weight: 700;
      color: #10313e;
      margin-bottom: 6px;
      text-align: center;
    }
    .project-location {
       align-items: center;
      gap: 6px;
      color: #c7a05f;
      font-weight: 500;
      margin-bottom: 18px;
      text-align: center;
    }
    .project-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      background: #f0f6fa;
      padding: 14px 18px;
      border-radius: 60px;
      font-weight: 600;
      font-size: 0.95rem;
      margin-bottom: 20px;
    }
    .project-meta i { color: #c7a05f; width: 20px; }
    .project-desc {
      color: #2b5062;
      margin-bottom: 30px;
      line-height: 1.6;
    }
    .card-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .card-actions .btn {
      flex: 1 0 auto;
      padding: 12px 6px;
      font-size: 0.9rem;
    }

    .card-actions .btn:hover {
    color:white;
    }

    /* amenity highlights */
    .amenity-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 22px;
      margin: 40px 0;
    }
    .amenity-item {
      background: white;
      padding: 32px 20px;
      border-radius: 36px;
      text-align: center;
      box-shadow: 0 6px 18px rgba(0,0,0,0.02);
      border: 1px solid #eef4f8;
      transition: 0.2s;
    }
    .amenity-item i {
      font-size: 2.6rem;
      color: #c7a05f;
      margin-bottom: 18px;
    }
    .amenity-item h4 {
      font-size: 1.3rem;
      font-weight: 600;
      color: #1e404f;
    }

    /* why invest panel (two‑column, more content) */
    .invest-wrapper {
      display: flex;
      flex-wrap: wrap;
      background: linear-gradient(125deg, #eef5f9, #fff7ed);
      border-radius: 60px;
      padding: 56px 48px;
      margin: 60px 0;
      gap: 40px;
    }
    .invest-left {
      flex: 2 1 300px;
    }
    .invest-right {
      flex: 1 1 260px;
      background: white;
      border-radius: 48px;
      padding: 36px 28px;
      box-shadow: 0 15px 25px rgba(0,0,0,0.03);
    }
    .invest-left h2 {
      font-size: 2.5rem;
      color: #0e313f;
    }
    .stat-highlight {
      font-size: 3rem;
      font-weight: 800;
      color: #c7a05f;
      line-height: 1;
      margin: 20px 0 10px;
    }

    /* early access / register */
    .early-card {
      background: #102c38;
      color: white;
      border-radius: 60px;
      padding: 64px 56px;
      margin: 60px 0;
      background: radial-gradient(ellipse at 70% 30%, #1d4b5b, #08212b);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }
    .early-content {
      max-width: 600px;
    }
    .early-content h2 {
      font-size: 2.8rem;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .early-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      align-items: center;
    }
    .phone-badge {
      background: rgba(255,255,255,0.12);
      padding: 16px 30px;
      border-radius: 60px;
      font-size: 1.4rem;
      font-weight: 500;
      backdrop-filter: blur(5px);
    }
    .phone-badge i { color: #c7a05f; margin-right: 12px; }

    /* extra section: floor plans / sizes (new) */
    .floorplan-panel {
      background: #f9f9fa;
      border-radius: 48px;
      padding: 50px 48px;
      margin: 60px 0;
      box-shadow: 0 15px 30px rgba(0,0,0,0.02);
    }
    .size-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin: 36px 0 16px;
    }
    .chip {
      background: #ecf3f7;
      border-radius: 60px;
      padding: 12px 28px;
      font-weight: 600;
      color: #1b485b;
      font-size: 1.1rem;
    }
    .chip i { color: #c7a05f; margin-right: 10px; }

    /* location highlights (new) */
    .loc-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
      gap: 24px;
      margin-top: 30px;
    }
    .loc-item {
      background: #f2f9ff;
      border-radius: 36px;
      padding: 30px 20px;
      text-align: center;
      font-weight: 600;
      color: #1b3b48;
    }
    .loc-item i {
      font-size: 2.2rem;
      color: #c7a05f;
      margin-bottom: 12px;
    }

    /* responsive */
    @media (max-width: 700px) {
      .hero h1 { font-size: 2.8rem; }
      .section-title { font-size: 2rem; }
      .intro-card { padding: 32px 20px; }
      .early-card { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
      .invest-wrapper { padding: 36px 24px; }
      .phone-badge { font-size: 1.2rem; padding: 12px 22px; }
      .breadcrumb { margin-bottom: 16px; }
    }
    @media (max-width: 480px) {
      .hero { min-height: 460px; }
      .hero h1 { font-size: 2.2rem; }
      .project-name { font-size: 1.7rem; }
    }


    .popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-box {
    background: #fff;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    position: relative;
}

.popup-box h3 {
    margin-bottom: 15px;
    text-align: center;
}

.popup-box input,
.popup-box textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.popup-box button {
    width: 100%;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}