/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}
@font-face {
  font-family: "Bodoni 72", serif;
  src: url('bodoni-72-book.ttf');
}
@font-face {
  font-family: "segoe";
  src: url('Segoe UI.ttf');
}

@font-face {
  font-family: "segoe bold";
  src: url('Segoe UI Bold.ttf');
}


/* Typography */
.section-title {
    font-family: 'segoe';
    font-size: 30px;
    font-weight:600;
    text-align: center;
    line-height: 1;
    margin-bottom: 2rem;
    text-transform: capitalize;
      animation: fadeInDown 1s ease-out;

}

#apartment, #overview, #highlights, #connectivity, #configuration, #premier{
    scroll-margin-top: 50px;
}

/* Buttons */
.btn {
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-plus {
    width: 50px;
    height: 35px;
    background: #015ca4;
    color: white;
    border-radius: 100px;
    font-size: 1.125rem;
}

.btn-enquire {
       background: #50b348;
    color: white;
}

.btn-submit {
    background: #50b348;
    color: white;
    border-radius: 1000px;
    padding: 12px 23px;
    font-size: 15px;
}

.btn-cta {
       /* height: 35px; */
    background: #50b348;
    color: white;
    border-radius: 100px;
    padding: 0 1rem;
    font-size: 1rem;
}

.btn-view-plan {
    width: 210px;
    height: 64px;
    background: #50b348;
    color: white;
    border-radius: 100px;
    font-size: 1.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); */
    /* padding: 7px 0; */
    transition: all 0.3s ease;
        background: linear-gradient(rgb(0 0 0 / 99%), rgb(0 0 0 / 5%)) rgb(0 0 0 / 0%);
            height: 67px;
}

.header-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 116px;
    height: 65px;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav {
    background: black;
    border-radius: 100px;
    padding: 0 2rem;
    height: 27px;
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 27px;
    height: 100%;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 11px;
    font-weight: 400;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-item:hover {
    opacity: 0.8;
}

.dropdown-icon {
    width: 10px;
    height: 6px;
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qr-code {
    width: 120px;
    height: 47px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #f5f5f5;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
   height: 100vh;
    background: linear-gradient(rgb(0 0 0 / 65%), rgb(0 0 0 / 69%)), url(../image/image-3.png);
    background-size: cover;
    background-position: center;
    display: flex
;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    color: white;
    padding-top: 100px;
}

.hero-content {
    text-align: center;
    margin-bottom: 0rem;
}



.scroll-indicator {
    width: 20px;
    height: 55px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Contact Form - Default and Sticky Styles */
.contact-form-container {
    position: relative;
    bottom: 0;
    left: 120px;
    right: 120px;
    background: url('./rectangle-14.svg');
    background-size: cover;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 999;
      border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.contact-form-container.sticky-form {
    position: fixed;
    /* top: 80px; */
    left: 50%;
    transform: translateX(-50%);
    width: 82%;
    /* max-width: 1200px; */
    /* background: rgba(0, 0, 0, 0.9); */
    /* border-radius: 10px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

.contact-form-container.sticky-form-hidden {
    transform: translateX(-50%) translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.sticky-form-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.sticky-form-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-form-container.sticky-form .sticky-form-close {
    display: flex;
}

.contact-form {
    max-width: 1524px;
    margin: 0 auto;
    position: relative;
}

.contact-form h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
}

.form-fields {
     display: flex
;
    gap: 1rem;
    justify-content: center;
    flex-direction: row;
    align-items: flex-start;
}

.form-field {
       background: white;
    border: 1px solid #ececec;
    border-radius: 4px;
    padding: 0px 10px;
    min-width: 224px;
    flex: 1;
    /* line-height: 10px; */
    height: 32px;
}

.form-field label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    color: #50b348;
    font-weight: 500;
}

.form-field input {
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #333;
    width: 100%;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 9px;
}

.checkbox-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.checkbox-container label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.5625rem;
    color: white;
    font-weight: 500;
}

/* Overview Section */
.overview-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-image {
    position: relative;
    /* width: 100%; */
    /* height: 710px; */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    cursor: pointer;
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.overview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 4rem 4rem 4rem 4rem;
    color: white;
}

.overview-overlay h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.overview-overlay p {
    font-size: 1.5625rem;
    line-height: 1.2;
    white-space: pre-line;
}

.navigation-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.nav-btn {
    width: 42px;
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-btn:hover {
    transform: scale(1.1);
}

/* greens Section */

.greens-section {
    padding: 4rem 1rem;
    max-width: 1526px;
    margin: 0 auto;
}

.greens-title {
    font-family: 'segoe';
    font-size: 30px; /* Responsive font size */
    font-weight: normal;
    text-align: left;
    line-height: 1;
    font-weight: 600;
    
    margin-bottom: 0.625rem;
}

.greens-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 700;
    text-align: left;
    margin-bottom: 0.75rem;
}

.greens-description {
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    line-height: 1.5;
    text-align: left;
    margin-bottom: 1.375rem;
    max-width: 1200px;
    /*margin-left: auto;*/
    /*margin-right: auto;*/
}

.greens-image-container {
    position: relative;
    margin-bottom: 2rem;
}

.greens-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block; /* Ensures no extra space below image */
}

.features-bar {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    background: #015ca4;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  border-radius: 10px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    flex: 1;
    border-left: 1px solid #ffffff2b;
    padding: 0 1.375rem;
}

.feature img {
    width: clamp(60px, 15vw, 80px); /* Responsive image size */
    height: auto;
    max-height: 50px;
    object-fit: contain;
    margin-bottom: 0.5625rem;
}

.feature p {
    font-size: clamp(0.75rem, 2vw, 1rem);
    line-height: 1.2;
}

/* Tablet (≤768px) */
@media (max-width:768px) {
    .eq-wd{
            width: 54% !important;

    }
    
    .footer-mr{
        margin-bottom: 40px;
  }
  .mob-footer-btn{
    font-weight: 600;
    /* text-align: center; */
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 3px 8px;
    font-size: 12px;
    /* line-height: 1.5; */
    border-top-right-radius: 10px !important;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    align-items: center;
    border-radius: 0px;
    border-top-left-radius: 10px;
  }
  .feature {
    display: flex
;
        flex-direction: row;
        align-items: center;
        text-align: left;
        color: white;
        flex: 1;
        border-left: 1px solid #ffffff2b;
        padding: 0 1.375rem;
        justify-content: center;
        gap: 18px;
}
  .nav-link {
    display: block;
    padding: 8px 16px !important;
}
  .btn {
    display: flex
;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 8px 8px !important;
    font-size: 12px;
    /* line-height: 1.5; */
    border-radius: 20px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    align-items: center;
}
  .nav-btn {
    width: 57px !important;
    height: 56px !important;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}
  .next-arrow{
    left: 80%;
    position: absolute;
  }
   .prev-arrow{
       right: 67%;
    position: absolute;
  }
/*   .nav-btn {
    position: absolute;
    top: 101% !important;
    transform: translateY(-50%);
    background: none !important;
    color: white;
    border: none;
    padding: clamp(0.5rem, 2vw, 1rem);
    cursor: pointer;
    font-size: clamp(1rem, 3vw, 1.5rem);
    z-index: 10;
    transition: background 0.3s;
} */
  .btn-width{
    width:70% !important;
  }
  .cta-buttons {
    display: flex
;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}
  .swiper-slide-active img {
    transform: scale(0.9) !important;
    border: 1px solid #50b348;
}
  .connectivity-labels {
    /* height: 60px; */
    background: #015ca4;
    display: flex
;
    align-items: center;
    /* padding: 0 2rem; */
    justify-content: space-between;
    margin-top: 8px;
}
  
  .form-container {
    padding: 20px 34px !important;
}
  .disclaimer-content.open {
    max-height: 1506px;
    opacity: 1;
}
  .video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    height: 298px;
}
    .greens-section {
        padding: 2rem 1rem;
    }

    .greens-title {
        font-size: clamp(2rem, 4.5vw, 2.5rem);
    }

    .greens-subtitle {
        font-size: clamp(0.875rem, 2vw, 1rem);
    }

    .greens-description {
        font-size: clamp(0.8125rem, 1.8vw, 0.875rem);
    }

    .features-bar {
        flex-direction: column; /* Stack features vertically */
        padding: 1rem;
        gap: 1.5rem;
        bottom: 4%;
        width: 95%;
    }

    .feature {
        border-left: none; /* Remove borders for stacked layout */
        border-bottom: 1px solid #ffffff2b; /* Add separator between features */
        padding: 1rem 0;
        width: 100%;
    }

    .feature:last-child {
        border-bottom: none;
    }

    .feature img {
        width: clamp(50px, 12vw, 70px);
    }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
    .greens-section {
        padding: 1.5rem 0.5rem;
    }

    .greens-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .greens-subtitle {
        font-size: clamp(0.75rem, 1.8vw, 0.875rem);
    }

    .greens-description {
        font-size: clamp(0.75rem, 1.5vw, 0.8125rem);
        padding: 0 0.5rem;
    }

    .features-bar {
        padding: 0.75rem;
        gap: 1rem;
        bottom: 2%;
        width: 98%;
    }

    .feature {
        padding: 0.75rem 0;
    }

    .feature img {
        width: clamp(40px, 10vw, 60px);
    }

    .feature p {
        font-size: clamp(0.6875rem, 1.8vw, 0.875rem);
    }
}



/* Tour Section */
.tour-section {
    padding: 3rem 0rem;
    text-align: center;
}

.tour-toggles {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.toggle-btn {
    padding: 4px 16px;
    border-radius: 100px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: #50b348;
}

.toggle-btn:not(.active) {
    background: #6d6d6d;
}

.tour-video {
    position: relative;
    max-width: 1522px;
    height: 740px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

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

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn img {
    width: 69px;
    height: 70px;
}

/* Offerings Section */
.offerings-section {
    padding: 3rem 0rem;
    text-align: center;
}

.offerings-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    height: 35px;
    padding: 0 1.5rem;
    border-radius: 100px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #50b348;
}

.filter-btn:not(.active) {
    background: #6d6d6d;
}
.offerings-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.offerings-container {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
}

.offering-item {
    flex: 0 0 33.33%; /* Ensures three items per slide (100% / 3) */
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
}

.offering-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .offering-item {
        flex: 0 0 50%; /* Two items for medium screens */
    }
}

@media (max-width: 768px) {
    .offering-item {
        flex: 0 0 100%; /* One item for small screens */
    }
}

/* Connectivity Section */
.connectivity-section {
    padding: 3rem 0rem;
    text-align: center;
}

.connectivity-container {
    position: relative;
    max-width: 1530px;
    margin: 0 auto;
}

.connectivity-map {
    width: 100%;
    height: auto;
    border-radius: 8px;
}


.location-label {
    font-family: 'Bodoni 72', serif;
    font-size: 17px;
    color: white;
    text-align: center;
    line-height: 19px;
    /* transform: translateX(-50%); */
    padding-right: 33px;
}


/* Configuration Section */
.configuration-section {
    padding: 4rem 0rem;
    text-align: center;
}

.floor-plans {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.floor-plan {
    position: relative;
    width: 535px;
    height: 448px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.floor-plan:hover {
    transform: scale(1.02);
}

.floor-plan img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floor-plan.main .btn-view-plan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bhk-toggles {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Footer */
.footer {
    background: transparent;
}

.disclaimer-section {
      background: #000000;
    padding: 3rem 2rem;
}

.disclaimer-content {
    max-width: 1520px;
    margin: 0 auto;
    color: #d5d5d5;
    font-size: 12px;
    font-weight: 200;
    line-height: 1.5;
}

.disclaimer-content p {
    margin-bottom: 1.5rem;
}

.footer-bottom {
   padding: 1rem 2rem;
    max-width: 1520px;
    margin: 0 auto;
    display: flex
;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat';
}

.copyright {
    font-size: 14px;
    color: black;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    font-size: 14px;
}

.footer-links a {
    color: black;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
/*     opacity: 0.7; */
}

.back-to-top {
    width: 45px;
    height: 45px;
    background: #035149;
    color: white;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-2px);
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
    .section-title {
        font-size: 30px;
          animation: fadeInDown 1s ease-out;

    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .greens-title {
        font-size: 3.5rem;
    }
    
    .header-container {
        padding: 0 1rem;
      margin-top: 10px;
    }
    
    .nav-items {
        gap: 1rem;
    }
    
    .nav-item {
        font-size: 0.875rem;
    }
    
    .features-bar {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .feature {
        min-width: 45%;
    }
    
    .offerings-container {
        gap: 1rem;
    }
    
    .offering-item {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: 250px;
    }
    
    .offering-item img {
        width: 100%;
        max-width: 300px;
        height: 320px;
    }
    
    .floor-plans {
        flex-wrap: wrap;
    }
    
    .floor-plan {
        width: 400px;
        height: 336px;
    }
    
    .connectivity-labels {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .location-label {
        font-size: 1.25rem;
    }
    
    .carousel-btn.prev {
        left: -15px;
    }
    
    .carousel-btn.next {
        right: -15px;
    }
    
    .contact-form-container.sticky-form {
        width: 95%;
/*         top: 70px; */
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
  .hero-title {
    font-family: 'Bodoni 72', serif;
    font-size: 3rem;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 2rem;
}
  .hidden-xs{
    display:none !important;
  }
  .hidden-sm{
    display:none !important;
  } 
  .section-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
          animation: fadeInDown 1s ease-out;

    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .greens-title {
        font-size: 18px;
        font-weight: 600;
    }
    
    .greens-subtitle {
        font-size: 1.5rem;
    }
    
    .greens-description {
        font-size: 1rem;
/*         padding: 0 1rem; */
    }
    
    /* Mobile Header */
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-right {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: top 0.3s ease;
        z-index: 999;
    }
    
    .header-right.active {
        top: 85px;
    }
    
    .nav {
        background: transparent;
        padding: 0;
        height: auto;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .nav-items {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .nav-item {
        color: #333;
        font-size: 1.125rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid #eee;
                /*width: 70%;*/
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-enquire {
        width: 100%;
        justify-content: center;
    }
    
    .qr-code {
        align-self: center;
    }
    
    /* Mobile Contact Form */
    .contact-form-container {
        position: static;
        margin-top: 2rem;
    }
    
    .contact-form-container.sticky-form {
        width: 95%;
        top: 60px;
        padding: 1rem;
    }
    
    .form-fields {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-field {
        min-width: 100%;
    }
    
    .btn-submit {
        width: 100%;
        margin-top: 1rem;
    }
    
    /* Mobile Features Bar */
    .features-bar {
        position: static;
        transform: none;
        width: 100%;
        flex-direction: column;
        gap: 0rem;
        margin-top: 1rem;
    }
    
    .feature {
        min-width: 100%;
    }
    
    .feature img {
               width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .feature p {
                font-size: 15px;
        line-height: 21px;
    }
    
    /* Mobile CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
    
    /* Mobile Tour Section */
    .tour-toggles {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .toggle-btn {
        width: 100%;
    }
    
    .tour-video {
        height: 400px;
    }
    
    /* Mobile Offerings */
    .offerings-filters {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .offerings-container {
        flex-direction: column;
        width: 100%;
    }
    
    .offering-item {
        flex: none;
        min-width: 100%;
    }
    
    .offering-item img {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }
    
    .carousel-btn {
/*         display: none; */
    }
    
    /* Mobile Floor Plans */
    .floor-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .floor-plan {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }
    
    .bhk-toggles {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .toggle-btn {
        width: 100%;
    }
    
    /* Mobile Connectivity */
    .connectivity-labels {
        position: static;
        background: #015ca4;
        flex-direction: column;
        gap: 1rem;
        /*padding: 2rem 1rem;*/
        height: auto;
    }
    
    .location-label {
        position: static;
        transform: none;
        font-size: 1rem;
    }
    
    /* Mobile Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .copyright,
    .footer-links {
        font-size: 11px;
    }
    
    /* Mobile Overview */
    .overview-image {
        height: 400px;
    }
    
    .overview-overlay {
        padding: 2rem 1rem;
    }
    
    .overview-overlay h3 {
        font-size: 1.5rem;
    }
    
    .overview-overlay p {
        font-size: 1.125rem;
    }
    
    .navigation-buttons {
        justify-content: center;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .section-title {
        font-size: 18px;
        font-weight: 600;
          animation: fadeInDown 1s ease-out;

    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .greens-title {
       font-size: 18px;
        font-weight: 600;
    }
    
    .logo {
        width: 109px;
        height: auto;
        padding-bottom:10px;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .disclaimer-content {
        font-size: 0.875rem;
    }
    
    .offering-item img {
        max-width: 300px;
        height: 250px;
    }
    
    .floor-plan {
        max-width: 300px;
        height: 250px;
    }
    
    .contact-form-container.sticky-form {
        width: 98%;
        top: 50px;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
      overflow-x: hidden !important;
}

/* Focus States for Accessibility */
button:focus,
input:focus,
a:focus {
    /* outline: 2px solid #50b348; */
    /* outline-offset: 2px; */
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Slider transition effects */
.offering-item,
.overview-image img,
.floor-plan img {
    transition: all 0.3s ease;
}

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

.overview-image:hover img {
    transform: scale(1.05);
}

        .tab-content {
          padding: 30px 0px;
/*           border-top: 1px solid #a4a4a447; */
          display:block;
        }
.tab-content>.tab-pane{
    display:none;
    visibility:hidden
}
.tab-content>.active{
    display:block;
    visibility:visible
}
.nav-tabs .dropdown-menu{
    margin-top:-1px;
    border-top-left-radius:0;
    border-top-right-radius:0
}
.navbar{
    position:relative;
    min-height:50px;
    margin-bottom:20px;
    border:1px solid transparent
}
@media (min-width:768px) {
    
    .loc{
                transform: translate(10px, 10px);
            }
     .eq-wd{
            width: 13% !important;

    }
  .floor-mr{
        margin-top: 30px;
  }
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
  
.connectivity-labels {
    /* bottom: 20%;
    left: 0;
    right: 0; */
    /* height: 60px; */
    background: #015ca4;
    display: flex;
    align-items: center;
    /* padding: 0 2rem; */
    justify-content: space-between;
    margin-top: 40px;
}
  .footer-mr{
        margin-bottom: 98px;
  }
   .disclaimer-content.open {
            max-height: 1000px; /* Large enough to fit content; adjust if needed */
            opacity: 1; /* Fully visible when open */
        }

  .video-container {
      position: relative;
      width: 100%;
      max-width: 100%; /* Optional: constrain max width */
      margin: 0 auto;
    height:500px;
  }
  .hero-title {
    font-family: 'Bodoni 72', serif;
    font-size: 3rem;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 2rem;
}
  .location-border{
            border-right: 1px solid #c2c2c2;
    /* position: absolute; */
    height: 54px;

}
  .hidden-lg{
    display:none !important;
  }
  .hidden-md{
    display:none !important;
  }

    .tour_pd{
        display: flex
;
    justify-content: center;
    background: none;
    border: none;
    gap: 0rem;
    }
}
  .carousel {
            position: relative;
            width: 100%;
            padding: 0 40px;
            min-height: 200px;
        }

        .carousel-wrapper {
            overflow: hidden;
            width: 100%;
        }

        .carousel-container {
            display: flex;
            transition: transform 0.3s ease;
            width: 100%;
        }

        .carousel-item {
            flex: 0 0 33.333%;
            padding: 0px 10px;
            text-align: center;
        }

        .carousel-item img {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
            min-height: 150px;
            background-color: #f0f0f0;
            border-radius: 10px;
            cursor: pointer; /* Indicate clickable image */
        }

        .carousel-item h3 {
            margin-top: 19px;
            font-size: 15px;
            color: #000000;
            text-align: left;
            font-family: 'Montserrat';
            text-transform: uppercase;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            border: none;
            cursor: pointer;
            z-index: 10;
            padding: 12px;
            border-radius: 50%;
            transition: background 0.2s;
        }

        .carousel-btn:hover {
            /* background: rgba(0, 0, 0, 0.9); */
        }

        .carousel-btn img {
            width: 31px;
            height: 31px;
            display: block;
        }

        .carousel-btn.prev {
            left: -11px;
            transform: scaleX(-1) translateY(-50%);
        }

        .carousel-btn.next {
            right: -11px;
        }

        /* Medium screens (≤1024px) */
        @media (max-width: 1024px) {
            .carousel {
                padding: 0 30px;
            }
            .carousel-item {
                flex: 0 0 50%;
            }
            .carousel-btn.prev {
                left: -25px;
            }
            .carousel-btn.next {
                right: -25px;
            }
        }

        /* Mobile screens (≤768px) */
        @media (max-width: 768px) {
            .carousel-btn {
                position: absolute;
                top: 110%;
                transform: translateY(-50%);
                border: none;
                cursor: pointer;
                z-index: 10;
                padding: 12px;
                border-radius: 50%;
                transition: background 0.2s;
            }
            .bg {
                background: #000;
                height: 1000px;
                padding: 100px;
            }
            .carousel {
                padding: 0 0px;
                margin: 10px auto;
            }
            .carousel-item {
                flex: 0 0 100%;
            }
            .carousel-btn.prev {
                left: 35%;
            }
            .carousel-btn.next {
                right: 35%;
            }
            .carousel-btn img {
                width: 41px;
                height: 41px;
            }
            .carousel-item h3 {
                font-size: 1em;
            }
        }

          .map-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .background-overlay1 {
      position: absolute;
    bottom: 37px;
    left: -11px;
    width: 100%;
    height: 52%;
    background-color: #005f9e;
    z-index: -1;
        }


        /* swiper style */

        .swiper-container {
            width: 100%;
            /* height: 400px; */
        }

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}
        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 0.3s ease;
        }
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
            transform: scale(1);
                border: 1px solid #c0c4cb;
        }
        .swiper-slide-active img {
            transform: scale(1.2); /* Zoom in the active slide */
                border: 1px solid #50b348;
        }
        .background-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%; /* Covers the lower half of the slider and extends below */
            background-color: #005f9e; /* Blue background color matching your reference */
            z-index: -1; /* Places the background behind the slider */
        }

         .swiper-slide-active .view-image-btn {
            display: block; /* Show button only on active slide */
        }

        .view-image-btn {
            display: none;
    position: absolute;
    bottom: 46%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #50b348;
    color: white;
    border: none;
    border-radius: 21px;
    cursor: pointer;
    font-size: 16px;
    z-index: 10;
        }
        .view-image-btn:hover {
            background-color: #0056b3;
        }



     .footer {
            background-color: #f8f8f8;
            padding: 35px 0;
            font-family: Arial, sans-serif;
        }
       
        .disclaimer-section {
            margin-bottom: 20px;
        }
        .disclaimer-content {
              max-height: 25px;
/*     opacity: 0; */
    overflow: hidden;
    font-size: 14px;
    line-height: 1.6;
    color: #c9c9c9;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    font-family: 'Montserrat';
}
       
        .toggle-btn {
           display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    /* border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
        }
        .toggle-btn:hover {
            background-color: #0056b3;
        }
        .toggle-icon {
            margin-right: 8px;
            font-size: 18px;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: #666;
        }
        .footer-links a {
/*             color: #007bff; */
            text-decoration: none;
            margin: 0 5px;
        }
        .footer-links a:hover {
                font-weight: 600;
        }
        .back-to-top {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 5px 10px;
            cursor: pointer;
            border-radius: 3px;
        }
        .back-to-top:hover {
            background-color: #0056b3;
        }


.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image scales to fill the container */
    z-index: 1; /* Places the image above the iframe */
}
.video-overlay::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    border-radius: 50%; /* Circular shape */
    border: 2px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2; /* Above the image */
}

.video-overlay::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 52%; /* Slightly offset for triangle effect */
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid white; /* Play triangle */
    z-index: 3; /* Above the circle */
}

/* Hide overlay on click (handled by JavaScript) */
.video-overlay.clicked {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-container {
        height: 298px; /* Match the smaller iframe height */
    }

    .video-overlay::before {
        width: 40px;
        height: 40px;
    }

    .video-overlay::after {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 14px solid white;
    }
}
iframe {
    position: relative;
    z-index: 0; /* Ensures the iframe is behind the image */
}

/* Optional: Hide overlay on click or hover (using JavaScript/CSS) */
.video-overlay:hover {
    opacity: 0;
    transition: opacity 0.3s ease;
}


.open-popup {
    padding: 5px 20px;
    font-size: 15px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
/*     border: none;
    border-radius: 50px; */
  text-transform:capitalize;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 71%);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out; /* Fade-in animation for overlay */
}

.popup-content {
    position: relative;
    background-color: white;
/*     padding: 20px; */
    border-radius: 8px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transform: scale(0.7); /* Start slightly scaled down */
    opacity: 0; /* Start invisible */
    animation: popIn 0.3s ease-out forwards; /* Scale-up and fade-in animation */
}

.popup-image {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
}

.form-container {
       padding: 20px 57px;
}

.form-container h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #333;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    /* padding: 10px; */
    font-size: 14px;
    border: 1px solid #ccc;
    /* border-radius: 4px; */
    outline: none;
    border: none;
}

input:focus {
    border-color: #4CAF50;
}

.submit-btn {
    padding: 10px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #45a049;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #666;
}

.checkbox-container input {
     margin-top: 0px;
}

.close-btn {
   position: absolute;
    top: 12px;
    right: 10px;
    font-size: 18px;
    cursor: pointer;
    color: #000000;
    background: white;
    padding: 0px 6px;
    height: 25px;
    width: 24px;
}

.close-btn:hover {
    color: #4CAF50;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes popIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .popup-content {
        width: 90%;
/*         padding: 15px; */
    }

    .popup-image {
        height: 200px;
    }

    .form-container h2 {
        font-size: 1.2rem;
    }

    input {
        font-size: 12px;
    }

    .submit-btn {
        font-size: 14px;
    }

    .checkbox-container {
        font-size: 10px;
    }
}

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

        .slider-container {
            /*width: 100%;*/
             /*max-width: 1400px; */
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            /*height: 62vw;*/
            /*max-height: 600px;*/
            height:100vh;
            /*min-height: 200px;*/

  

        }

        .slides {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            position: relative;
        }

        .slide img {
            width: 100%;
            height: 100%;   
            object-fit: cover;
            /*display: block;*/
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
            padding: 0 15px;
            width: 90%;
            z-index: 2; /* Above overlay */
        }

        .slide-content h2 {
            font-size: clamp(1.5rem, 5vw, 3rem);
            margin-bottom: clamp(0.5rem, 2vw, 1rem);
        }

        .slide-content p {
            font-size: clamp(0.9rem, 3vw, 1.3rem);
        }

/*          .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
           background: rgba(0, 0, 0, 0.6); 
            color: white;
            border: none;
            padding: clamp(0.5rem, 2vw, 1rem);
            cursor: pointer;
            font-size: clamp(1rem, 3vw, 1.5rem);
            z-index: 10;
            transition: background 0.3s;
        } */

/*         .nav-btn:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .prev-btn {
            left: 10px;
        }

        .next-btn {
            right: 10px;
        }
 */
       .dots {
               position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex
;
    flex-direction: column;
    gap: clamp(6px, 1vw, 3px);
    z-index: 10;
        }

       .dot {
        width: clamp(8px, 2vw, 8px);
    height: clamp(8px, 2vw, 8px);
    background: rgb(76 175 80);
    border-radius: 50%;
    cursor: pointer;
    transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease, background-color 0.3s, opacity 0.3s;
        }

        .dot.active {
              width: 8px;
    height: clamp(30px, 5vw, 61px);
    background: radial-gradient(circle at center, #ffffff 50%, #ffffff 100%);
    border-radius: 5px;
    /* transform: translateX(-2px); */
    /* box-shadow: 0 0 10px rgba(255, 255, 255, 0.7); */
    transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease, background-color 0.3s, opacity 0.3s;
}

        /* Large screens (laptops, desktops) */
        @media (min-width: 1024px) {
            .slider-container {
                height: 50vw;
            }

            .slide-content h2 {
                font-size: 3rem;
            }

            .slide-content p {
                font-size: 1.5rem;
            }
        }

        /* Tablets */
        @media (max-width: 1023px) and (min-width: 768px) {
            
            
            .slider-container {
                height: 70vw;
                max-height: 450px;
            }

            .slide-content h2 {
                font-size: 2rem;
            }

            .slide-content p {
                font-size: 1.1rem;
            }
            .dots {
                right: 15px;
            }

/*             .nav-btn {
                padding: 0.8rem;
                font-size: 1.2rem;
            } */
        }

        /* Phones */
        @media (max-width: 767px) {
            .slider-container {
                height: 80vw;
                max-height: 350px;
                min-height: 150px;
            }

            .slide-content h2 {
                font-size: 1.5rem;
            }

            .slide-content p {
                font-size: 0.9rem;
            }

            .nav-btn {
                padding: 0.5rem;
                font-size: 1rem;
            }

               .dots {
        right: 46%;
        gap: 8px;
    }
          .dots {
                  position: absolute;
        /* bottom: 15%; */
        right: 31%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: row;
        gap: clamp(8px, 2vw, 12px);
        z-index: 10;
        top: 96%;

}
          .dot.active {
    height: 9px;
        width: clamp(51px, 5vw, 46px);
        background: radial-gradient(circle at center, #ffffff 50%, #e0e0e0 100%);
        border-radius: 5px;
        /* transform: translateX(-2px); */
        /* box-shadow: 0 0 10px rgba(255, 255, 255, 0.7); */
        transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease, background-color 0.3s, opacity 0.3s;
}
            .dot {
                width: 8px;
                height: 8px;
            }
        }
        /* Small phones */
        @media (max-width: 480px) {
            .slider-container {
                height: 160vw;
                max-height: 600px;
            }

            .slide-content h2 {
                font-size: 1.2rem;
            }

            .slide-content p {
                font-size: 0.8rem;
            }

/*             .nav-btn {
                padding: 0.4rem;
                font-size: 0.8rem;
            } */
        }
/* mobile button */

@media only screen and (max-width: 767px) {
	.sec-eq {
		display: none;
	}
	.sec-eq form {
		flex-direction: column;
	}
	.formControl {
		width: 100%;
		margin:0 0 15px 0;
	}
	.sec-eqMobile {
		display: flex
;
        position: fixed;
        /* background: url(../../images/back.png); */
        bottom: 0;
        left: 0;
        font-size: 20px;
        color: #fff;
        /* background: #282a39; */
        /* background-image: linear-gradient(to right, #766529, #49451b); */
        width: 100%;
        text-align: center;
        z-index: 99;
	}
  
  .poweredby {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		font-size: 20px;
		color: #fff;
		background: #f7931d;
		width: 100%;
		text-align: center;
		z-index: 99;
	}
	.mobContact img {
		margin-right: 5px;
	}
	.sec-eqMobile a {
       width: 100%;
        color: #fff;
        display: flex;
        align-items: flex-end;
        align-content: flex-end;
	}
  .envelope{
    width: 65px !important;
    height: 63px !important;
    border-radius: 50% !important;
  }
	a.mobEqNow {
/* 		background-color: #af8227; */
    border-left: 2px solid #fff;
	}
	.closeIcon {
	    display: flex;
	}
}
@media only screen and (max-width: 520px) {
	.sec-eqMobile {
		font-size: 16px;
	}
}

/* connectivity points */
.text-content {
            flex: 1;
            padding: 10px;
/*             background: #ffffff; */
            border-radius: 0 0 10px 10px;
      margin-top: 10px;
        }
        .category {
            margin-bottom: 20px;
        }
        .category h3 {
                color: #ffffff;
    font-size: 1.5em;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffffff;
    display: inline-block;
        }
        .facility-list {
            list-style: none;
            padding: 0;
        }
        .facility-list li {
               padding: 3px 0;
    font-size: 13px;
    transition: transform 0.2s ease, color 0.2s ease;
    cursor: pointer;
    color: white;
    font-family: 'Montserrat';
        }
        .facility-list li:hover {
            transform: translateX(10px);
            color: #50b348;
        }


/* key hilight */

 .highlights-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .highlights-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
  }

  .highlights-grid {
    display: grid;
    gap: 0rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 2rem;
  }

  .highlight-card {
    background: #fff;
    border-radius: 12px;
   padding: 13px 13px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    cursor: default;
    margin-bottom:20px;

    /* Start hidden for animation */
    opacity: 0;
    transform: translateY(30px);
    transition: 
      transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.5s ease-out;
  }

  /* Animation active class */
  .highlight-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hover effect with scale + shadow */
  .highlight-card:hover,
  .highlight-card:focus {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 16px 30px rgba(0,0,0,0.15);
    outline: none;
  }

  
  .icon-circle {
    background: #27ae60; /* light green background */
    color: #27ae60;       /* green tick */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem auto;
    font-size: 1.8rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .highlight-card:hover .icon-circle,
  .highlight-card:focus .icon-circle {
    background-color: #000000;
  }

  .highlight-title {
       font-size: 11px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #34495e;
    font-family: 'Montserrat';
  }

  .highlight-desc {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.4;
  }

@media (max-width: 768px) {
  

  .highlights-section h2 {
    font-size: 2rem;
  }

  .highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0rem;
  }

  .highlight-card {
 padding: 10px 10px;
    margin-bottom:15px;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .highlight-title {
    font-size: 11px;
  }

  .highlight-desc {
    font-size: 0.9rem;
  }
}

/* .mobilemap */

.locationContainer {
       width: 100%;
    /* margin: 0 auto; */
    display: flex
;
    position: relative;
}
.artistMapSec {
width: 100%;
position: relative;
}
.artistMapSec a img {
max-width: 100%;
/* width: 500px; */
position: relative;
z-index: 2;
display: block;
}
.mapImg {
       width: 100%;
    display: flex
;
    position: relative;
     background-color: #d8dfcd;
}
.sec-location iframe {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
.mapBtn {
       background-color: #4caf50;
    color: #fff;
    padding: 5px 15px;
    position: absolute;
    top: 8px;
    right: 16px;
    z-index: 999;
    font-size: 14px;
    margin-top: 0px;
}
.artistMapSec.hide .mapImg{
z-index: 1;
}

.desktop-banner {
  display: block;
}

.mobile-banner {
  display: none;
}

/* On small screens: hide desktop, show mobile */
@media (max-width: 768px) {
  .desktop-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
  }
}


/*location map image hover*/
 .image-container {
      position: relative;
      display: inline-block;
      cursor: pointer;
    }

    .image-container img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    .overlay-text {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      padding: 10px;
      text-align: center;
      font-family: Arial, sans-serif;
      font-size: 16px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .image-container:hover .overlay-text {
      opacity: 1;
    }
    
    
    /*privacy policy popup*/
    
     /* Link Style */
    .privacy-link {
      color: #007BFF;
      text-decoration: underline;
      cursor: pointer;
    }

    /* Modal overlay */
    .modal-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.6);
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 9999;
      padding: 15px; /* space for mobile */
      box-sizing: border-box;
    }

    .modal-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    /* Modal container */
    .modal {
      background: white;
      border-radius: 10px;
      max-width: 500px;
      width: 100%;
      max-height: 80vh;
      padding: 20px;
      box-sizing: border-box;
      overflow-y: auto;
      transform: scale(0.9);
      opacity: 0;
      transition: all 0.3s ease;
      position: relative;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .modal-overlay.active .modal {
      transform: scale(1);
      opacity: 1;
    }

    /* Close button */
    .modal-close {
      position: absolute;
      top: 12px;
      right: 15px;
      font-size: 24px;
      color: #aaa;
      cursor: pointer;
      user-select: none;
      transition: color 0.2s ease;
    }

    .modal-close:hover {
      color: #000;
    }

    /* Modal title */
    .modal h2 {
      margin-top: 0;
      font-size: 1.5rem;
    }

    /* Responsive text */
    @media (max-width: 767PX) {
        .video-card{
            width:100% !important;
        }
        .play-button {
  position: absolute;
    top: 45% !important;
        }
        .video-wrapper  {
    position: relative;
   width: 100% !important;
    height: 180px !important;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
 width: 100% !important;
    height: 180px !important;
  border: none;
}

      .modal {
        padding: 15px;
        max-height: 90vh;
      }

      .modal h2 {
        font-size: 1.3rem;
      }
    }


/*.animation*/

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*apartment*/
  #video-container {
  position: relative;
  width: 100%;
/*   max-width: 800px; */
  margin: auto;
}

#video-thumbnail {
  position: relative;
  cursor: pointer;
}

.thumb-img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.play-button {
  position: absolute;
    top: 38%;
    left: 50%;
    width: 63px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-sizing: o;
    /* top: 0%; */
    height: 63px;
    /* right: 0; */
    position: absolute;
    background: #33333391;
    padding: 21px 18px 3px 25px;
    border-radius: 50%;
    color: white;
    font-size: 22px;
}

#youtube-player {
  display: none;
  aspect-ratio: 16 / 9;
}



.apartment-section {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.section-heading {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #007cf0, #00dfd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInDown 1s ease-out;
}

.section-subtext {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
}

.video-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
    width: 100%;
}

.video-card:hover {
  transform: scale(1.02);
  width:100%;
}

.video-wrapper {
      position: relative;
    /* padding-bottom: 56.25%; */
    height: 450px;
    width: 100%;
}
    
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 450px;
  border: none;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
    
    /* Add animation on hover of the thumbnail container */
#video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.2);
  filter: drop-shadow(0 0 12px rgba(0, 124, 240, 0.6));
  transition: transform 0.3s ease, filter 0.3s ease;
  background:#16bf16b3;
}

/* Smooth transition for default state */
.play-button {
  transition: transform 0.3s ease, filter 0.3s ease;
}


/*.OFFER SECTION*/


.offer-section {
  background: linear-gradient(to right, #0f5ebb, #0f5ebb);
  color: white;
  padding: 20px 9px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 3px 3px 6px 3px #333;
}

.offer-content {
  max-width: 800px;
  margin: auto;
  animation: fadeInUp 1s ease-out;
}

.offer-heading {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.offer-subtext {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
}

.offer-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.offer-benefits li {
  margin: 10px 0;
}

.offer-btn {
  padding: 14px 28px;
  background-color: #fff;
  color: #007cf0;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.offer-btn:hover {
  background-color: #00dfd8;
  color: #fff;
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 767PX) {
  .offer-heading {
   font-size: 20px;
        margin: 0;
        font-family: inherit;
        letter-spacing: 2px;
  }

 
}

.btnpd{
        padding: 3px 16px !important;
        font-size:14px !important; 

}