* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C6A961;
    --dark-gold: #B69851;
    --cream: #F5F5F5;
    --dark: #1A1A1A;
}

body {
    line-height: 1.6;
    color: var(--dark);
    /* background: linear-gradient(to right, #ffffff, #ededed, #ffffff);*/
    background: url('white-simple-textured-design-background.jpg');
    /* Replace 'your-image.jpg' with the actual */
}

/* Header Styles */
header {
            /* Add background image */
            background-image: url("btile.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
    /*background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9));*/
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1px 0;
    /* border-bottom: 1px solid var(--gold);*/
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.logo {
    color: #003366;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    overflow: hidden;
    display: flex;
    width: 690px;
}

.logo img {
    height: 71px;
    width: auto;
    top: 4px;
    position: relative;
}


.nav-links {
    display: flex;
    list-style: none;
    margin-right: 15px;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Update the media query for mobile display */
@media (max-width: 480px) {
    .logo {
        font-size: 12px;
        width: auto; /* Adjust width for mobile */
        justify-content: center;
    }

    /* Hide Galaxy and Proviso logos in mobile view */
    .logo img.Galaxy,
    .logo img.Proviso {
        height: 40px;
        width: auto;
        top: 0px;
        position: relative;
        display: block;
        
    }

    /* Only show Maple logo and adjust its styling */
    .logo img.Mapple {
        display: none;
    }

    /* Existing mobile styles can remain */
    img.Logopalmimg {
        width: 215px;
        height: 53px;
        left: -48px;
        padding: 7px;
    }

    img.logoside {
        height: 44px;
        width: 203px;
        left: -19px;
        top: 7px;
    }

    .nav-links a {
        font-size: 14px;
    }

    nav {
        display: flex;
        justify-content: left;
        align-items: center;
        margin: 0 auto;
    }
    header{
        height: 40px;
    }
    
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)),
    ;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--cream);
}

.pre-booking-section {
    min-height: 100vh;
}

.split-container {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
}

.split-left,
.split-right {
    flex: 1;
    position: relative;
}

/* Left Side Styling */
.split-left {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
}

.overlay-text h2 {
    color: white;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Right Side Styling */
.split-right {
    flex: 1;
    padding: 20px;
    display: flex;
    overflow: hidden;
}

.booking-content {
    width: 100%;
    margin: 0 auto;
    place-items: center;
    top: 95px;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
}

.location-logo img {
    width: auto;
    height: 80px;
}

img.Logopalmimg {
    width: 215px;
    height: 53px;
}

.location-logo i {
    color: white;
    font-size: 40px;
}

.destination-text span {
    color: #c6a961;
    font-size: 18px;
}

.destination-text h3 {
    color: #003366;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    font-family: sans-serif;
    font-weight: 900;
}

.booking-info {
    place-items: anchor-center;
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
}

.booking-info h4 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 24px;
    color: #c6a961;
    text-align: center;
    border: solid 3px #c6a961;
    padding: 20px;
    width: 100%;
}

.pre-booking-banner {
    background: #003366;
    color: white;
    padding: 8px 14px;
    display: inline-block;
    animation: popup 1s infinite alternate;
    transition: all 0.3s ease;
}
s
.pre-booking-banner:hover {
    background: #c6a961;
    transform: scale(1.05);
}

@keyframes popup {
    0% {
        background:#c6a961;
        transform: scale(0.90);
    }
    100% {
        background:#003366;
        transform: scale(1);
    }
}

.property-details {
    place-items: center;
}

.property-details h5 {
    font-size: 28px;
    color: #c6a961;
    text-align: center;
}

.price-info p {
    color: #666;
}

.price {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.strikethrough {
    text-decoration: line-through;
    color: #ff4d4d;
    font-size: 22px;
}

.actual-price {
    color: #003366;
    font-size: 32px;
    font-weight: 700;
}
.bookingsideImage {
    overflow: hidden;
    flex: 1;
    width: 100%;
    place-items: center;
    /* height: 1px; */
    display: flex;
    justify-content: center;
    padding: 60px 1px;
}
.sideimg {
    height: 322px;
    overflow: hidden;
}
.sideimg img {
    height: 322px;
}
@media (max-width: 968px) {
    img.Logopalmimg {
        width: 215px;
        height: 63px;
        left: -48px;
        padding: 7px;
    }

    .split-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .split-container {
        flex-direction: column;
    }

    .split-left,
    .split-right {
        min-height: 50vh;
    }

    .split-right {
        top: -77px;
        padding: 1px 20px;
    }

    .logo-container {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-bottom: -2px;
    }

    .booking-info h4 {
        font-size: 23px;
        color: #c6a961;
        margin-bottom: 30px;
    }

    .pre-booking-banner {
        background: #003366;
        color: white;
        padding: 11px 15px;
        display: inline-block;
        margin-bottom: 18px;
    }

    .property-details h5 {
        /* display: flex
    ; */
        font-size: 14px;
        color: #c6a961;
        margin-bottom: 20px;
    }

    .price-info {
        place-items: center;
    }

    .overlay-text h2 {
        font-size: 29px;
    }
}

.hero-content {
    padding: 40px 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.hero-contentimg {
    width: 50%;
    height: auto;
    display: block;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero-contentimg:hover {
    transform: scale(1.02);
}

.hero-content::before,
.hero-content::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: var(--gold);
}

.hero-content::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.hero-content::after {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
            flex-direction: column;
    }
    
    .hero-contentimg {
        width: 100%;
    }
    
    .hero-contentimg:last-child {
        margin-bottom: 0;
    }
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    color: black;
}

.hero-content p {
    font-size: 24px;
    color: var(--gold);
    letter-spacing: 2px;
}

/* Heading2 */
.Heading2 {
    position: relative;
    top: 5px;
    padding: 40px 7px;
    width: 100%;
    display: grid;
    gap: 40px;
    place-items: center;
}

.Heading2 h2 {
    font-size: 30px;
}

/* About Developers */
.about-developers {
    margin: 10px;
    margin-top: 40px;
    padding: 40px 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 10px;

}
.about-developers h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark);
}

/* Features Section */
.features {
    padding: 10px 20px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-box {
    display: grid;
    text-align: center;
    padding: 0px;
    background: white;
    border: 1px solid rgba(198, 169, 97, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(198, 169, 97, 0.2);
}

.feature-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 25px;
}

.feature-box .boxtext{
    gap: 10px;
    padding: 15px;
    font-size: 13px;
    text-align: justify;
    display: flex;
    flex-direction: column;

}


/* Floor Plans */
section#galary {
    padding: 62px 5px;
}

.floor-plans h2 {
    justify-self: center;
    margin-bottom: 15px;
    font-size: 30px;
    text-transform: uppercase;
    color: var(--dark);
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 8px;
}

.plan-grid {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: none;
    /* Remove CSS animation for JS handling */
}

.plan {
    flex: 0 0 auto;
    width: 350px;
    /* Set fixed width for smooth scrolling */
    box-sizing: border-box;
    background: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.planImage {
    flex: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}
.planImage:hover {
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(1.05);
}

.planImage img {
    width: 330px;
    height: 330px;
    display: block;

}

.planImage img:hover {
    transition: all 0.3s ease;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.plancontain {
    padding: 30px;
}

@keyframes slide {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .Heading2 {
        position: relative;
        top: 44px;
        padding: 40px 7px;
        width: 100%;
        display: grid;
        gap: 40px;
        place-items: center;
        text-align: center;
    }

    .floor-plans h2 {
        font-size: 22px;
    }

    .Heading2 h2 {
        font-size: 22px;
    }

    .plan {
        flex-direction: column !important;
        text-align: center;
    }

    .plan img {
        width: 100%;
    }

    .amenities-grids {
        grid-template-columns: repeat(1, 1fr)
    }
}



.price {
    color: var(--dark-gold);
    font-size: 24px;
    font-weight: 600;
}

/* Amenities */
.amenities {
    padding: 40px 20px;
}

.amenities h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark);
}

.amenities p {
    text-align: center;
    margin-bottom: 21px;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--dark);
}

.amenities-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.amenities-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.amenities-grids {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    top: 31px;
    position: relative;
}

.amenity {
    position: relative;
    background: white;
    padding: 10px;
    text-align: center;
    border: 1px solid rgba(198, 169, 97, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}

.amenity img {
    width: 100%;
    height: 250px;
    display: block;
}

.amenity:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-5px);
}

.amenity::after {
    content: "Sun Deck";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    text-align: center;
    width: max-content;
}

.amenity1 {
    position: relative;
    background: white;
    padding: 10px;
    text-align: center;
    border: 1px solid rgba(198, 169, 97, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}

.amenity1 img {
    width: 100%;
    height: 250px;
    display: block;
}

.amenity1:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-5px);
}

.amenity1::after {
    content: "Rooftop Garden";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    text-align: center;
    width: max-content;
}

.amenity2 {
    position: relative;
    background: white;
    padding: 10px;
    text-align: center;
    border: 1px solid rgba(198, 169, 97, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}

.amenity2 img {
    width: 100%;
    height: 250px;
    display: block;
}

.amenity2:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-5px);
}

.amenity2::after {
    content: "Reflexology Path";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    text-align: center;
    width: max-content;
}

.amenity3 {
    position: relative;
    background: white;
    padding: 10px;
    text-align: center;
    border: 1px solid rgba(198, 169, 97, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}

.amenity3 img {
    width: 100%;
    height: 250px;
    display: block;
}

.amenity3:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-5px);
}

.amenity3::after {
    content: "Art Studio";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    text-align: center;
    width: max-content;
}

.amenity4 {
    position: relative;
    background: white;
    padding: 10px;
    text-align: center;
    border: 1px solid rgba(198, 169, 97, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}

.amenity4 img {
    width: 100%;
    height: 250px;
    display: block;
}

.amenity4:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-5px);
}

.amenity4::after {
    content: "Outdoor Deck";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
    text-align: center;
    width: max-content;
}

.amenityoverlay-text {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 100%;
}

.amenityoverlay-text h3 {
    color: white;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/*Table*/
#table {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    padding: 62px 4px;
}

.table-heading {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
}

.table table {
    width: 80%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    place-self: center;
    text-align-last: center;
}

.table th,
.table td {
    padding: 18px;
    text-align: left;
    border-bottom: 2px solid #eee;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.table th {
    background: linear-gradient(135deg, #8e44ad, #3498db);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.table tr:nth-child(even) {
    background: rgb(255 255 255 / 10%);
    font-weight: 600;
}

.table tr:hover {
    background: rgba(52, 152, 219, 0.2);
    transform: scale(1.02);
    transition: all 0.3s ease-in-out;
}

.table td {
    color: #2c3e50;
    font-weight: 600;
}

.table tr:last-child td {
    border-bottom: none;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .table table {
        width: 95%;
    }

    .table th,
    .table td {
        padding: 3px;
        font-size: 16px;
    }

    .table th {
        font-size: 14px;
    }

    .hero-content {
        padding: 11px 7px;
    }

}


/* Button container for positioning */
.dowenloadBTN {
    position: fixed;
    bottom: 62px;
    /* Distance from the bottom edge of the screen */
    z-index: 9999;
    /* Ensure it's on top of other elements */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    /* Space between the buttons */
}

/* Common button styles */
.dowenloadBTN button {
    background: linear-gradient(135deg, #6a5acd, #ff6347);
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    outline: none;
    text-transform: uppercase;
}



/* Download button with animation */
.Dowenload {
    animation: slideInLeft 1s ease-out;
}

/* Pick-up & Drop button */
.pickup {
    animation: slideInLeft 1.2s ease-out;
    background: linear-gradient(135deg, #32cd32, #228b22);
}

img.pickupIMg {
    margin: -7px;
    left: 8px;
    position: relative;
}

/* Animation effect on first load */
@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Link styling to remove default link appearance */
.phone-link {
    text-decoration: none;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .dowenloadBTN {
        left: 0px;
        bottom: 64px;
    }

    .dowenloadBTN button {
        font-size: 14px;
        padding: 10px 25px;
    }
}

/* Contact Form */
.contact-bar {
    background: var(--gold);
    padding: 15px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.phone-link,
.whatsapp-link {
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.whatsapp-link img {
    height: 30px;
}

.phone-link:hover,
.whatsapp-link:hover {
    opacity: 0.8;
}

.phone-link img {
    height: 30px;
}

.divider {
    color: white;
    font-size: 20px;
}

@media (max-width: 600px) {
    .contact-container {
        font-size: 16px;
    }
}

/* Footer */
.main-footer {
    background: linear-gradient(to right, #003366, #004080);
    color: white;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding: 30px 40px;
    margin-bottom: 100px;
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-left h2,
.footer-right h2 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0px;
    letter-spacing: 0px;
}

.footer-left>p {
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Updated footer stats styling */
.footer-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background-color: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    /* You'll add background-image once you have the icons */
}

.stat-content {
    flex: 1;
}

.stat h3 {
    font-size: 28px;
    font-weight: 800;
    color: #C6A961;
    margin-bottom: 5px;
    line-height: 1.2;
}

.stat p {
    font-size: 12px;
    color: #fff;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Responsive adjustments for footer stats */
@media (max-width: 1200px) {
    .footer-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .footer-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .footer-stats {
        grid-template-columns: 1fr;
    }
    
    .stat {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
}

.stat:nth-child(1) .stat-icon {
    background-image: url('review.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}
.stat:nth-child(2) .stat-icon {
    background-image: url('blueprint.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}
.stat:nth-child(3) .stat-icon {
    background-image: url('skyline.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}
.stat:nth-child(4) .stat-icon {
    background-image: url('house.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}
.stat:nth-child(5) .stat-icon {
    background-image: url('plot.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}
.stat:nth-child(6) .stat-icon {
    background-image: url('field.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}
.stat:nth-child(7) .stat-icon {
    background-image: url('condo.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}
.stat:nth-child(8) .stat-icon {
    background-image: url('smile.png');
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}






img.qrcode {
    height: 82px;
}

.stat h3 {
    font-size: 24px;
    color: #C6A961;
    margin-bottom: 10px;
}

.stat p {
    font-size: 16px;
    opacity: 0.9;
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
}

.partner-logos img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

a.links {
    color: white;
}

@media (max-width: 968px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-left h2,
    .footer-right h2 {
        font-size: 27px;
    }

    .footer-left>p {
        font-size: 15px;
    }

    img.qrcode {
        left: 100px;
        height: 102px;
        position: relative;
    }
}

/* Responsive Design */
@media (max-width: 768px) {

    .features,
    .plan-grid,
    .amenities-grid,
    .footer-content,
    .amenities-grids {
        grid-template-columns: 1fr;
    }

    .amenity::after {
        font-size: 10px;
    }

    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .feature-box,
    .plan,
    .amenity {
        transform: none !important;
    }
}


/*================X Construction Images X================*/
.construction-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
}
.construction-images img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
.construction-images img:hover {
    transform: scale(1.05);
}

/*=========================================*/
.album .responsive-container-block {
    min-height: 75px;
    width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: flex-start;
    gap: 10px;
}
.album .responsive-container-block.bg {
    max-width: 1300px;
    margin: 0 auto;
    justify-content: space-between;
    padding: 10px 10px;
}

.album .img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album .img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.album .responsive-container-block.img-cont {
    flex-direction: column;
    flex: 1 1 30%;
    min-width: 300px;
    min-height: auto;
    margin: 0;
    height: 100%;
    overflow: hidden;
}

  /*=========================================*/

/* Amenities1*/
  .amenities1 {
    background-image: url('Multipurpose.jpg');
    background-size: cover;
    height: 220px;
    width: 100%;
    animation: multi 16s infinite;
    animation-timing-function: ease-in-out;

}
@keyframes multi {
    0%, 40% {
        background-image: url('Multipurpose.jpg');
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    60%, 95% {
        background-image: url('Banquet.jpg');
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

/* Amenities2*/
.amenities2 {
    background-image: url('Play.jpg');
    background-size: cover;
    height: 220px;
    width: 100%;
    animation: squash 15s infinite;
    animation-timing-function: ease-in-out;

}
@keyframes squash {
    0%, 40% {
        background-image: url('Play.jpg');
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    60%, 95% {
        background-image: url('Pool.jpg');
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

/* Amenities3*/
.amenities3 {
    background-image: url('Library.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    width: 100%;
    animation: library 14s infinite;
    animation-timing-function: ease-in-out;
}
@keyframes library {
    0%, 40% {
        background-image: url('Library.jpg');
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    60%, 95% {
        background-image: url('Meditation.jpg');
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

/* Amenities4*/
.amenities4 {
    background-image: url('Butterfly.jpg');
    background-size: cover;
    background-position: bottom;
    height: 620px;
    width: 100%;
    animation: butterfly 13s infinite;
    animation-timing-function: ease-in-out;

}
@keyframes butterfly {
    0%, 40% {
        background-image: url('Butterfly.jpg');
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    60%, 95% {
        background-image: url('Splash.jpg');
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

/* Amenities5*/
.amenities5 {
    background-image: url('Artstudio.jpg');
    background-size: cover;
    background-position: right;
    height: 200px;
    width: 100%;
    animation: art 12s infinite;
    animation-timing-function: ease-in-out;

}
@keyframes art {
    0%, 40% {
        background-image: url('Artstudio.jpg');
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    60%, 95% {
        background-image: url('Deck.jpg');
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

/* Amenities6*/
.amenities6 {
    background-image: url('Miyawaki.jpg');
    background-size: cover;
    background-position: right;
    height: 220px;
    width: 100%;
    animation: miyawaki 15s infinite;
    animation-timing-function: ease-in-out;
}
@keyframes miyawaki {
    0%, 40% {
        background-image: url('Miyawaki.jpg');
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    60%, 95% {
        background-image: url('Reflexology.jpg');
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

/* Amenities7*/
.amenities7 {
    background-image: url('Badminton.jpg');
    background-size: cover;
    background-position: center;
    height: 220px;
    width: 100%;
    animation: badminton 14s infinite;
    animation-timing-function: ease-in-out;
}
@keyframes badminton {
    0%, 40% {
        background-image: url('Badminton.jpg');
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    60%, 95% {
        background-image: url('Sqaush.jpg');
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

/* Amenities8*/
.amenities8 {
    background-image: url('Indoor.jpg');
    background-size: cover;
    background-position: bottom;
    height: 600px;
    width: 100%;
    animation: indoor 13s infinite;
    animation-timing-function: ease-in-out;
}
@keyframes indoor {
    0%, 40% {
        background-image: url('Indoor.jpg');
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    60%, 95% {
        background-image: url('Gym.jpg');
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

/* Amenities9*/
.amenities9 {
    background-image: url('Sundeck.jpg');
    background-size: cover;
    background-position: bottom;
    height: 220px;
    width: 100%;
    animation: cafe 12s infinite;
    animation-timing-function: ease-in-out;
}
@keyframes cafe {
    0%, 40% {
        background-image: url('Sundeck.jpg');
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    60%, 95% {
        background-image: url('Roof.jpg');
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

/*========== UNDERDEVELOPMENT ==========*/
.Underdevelopment {
    overflow: hidden;
    width: 100%;
    margin-top: 30px;
  }
  
  .image-track {
    display: flex;
    width: max-content;
    animation: scroll-left 40s linear infinite;  /* Increased speed by reducing duration */
}

.image-set {
    display: flex;
}

.image-set img {
    height: 350px;
    margin-right: 20px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 8px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


  /* Amenities Showcase Section */
.amenities-showcase {
    padding: 60px 20px;
    background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(248,248,248,0.95));
    text-align: center;
    margin: 30px 0;
}

.amenities-showcase h2 {
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #003366;
    letter-spacing: 2px;
    font-weight: 700;
}

.amenities-showcase p {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 40px;
}

.amenities-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-item {
    background: white;
    border-radius: 6px;
    padding: 16px 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    border: 1px solid rgba(198, 169, 97, 0.2);
    position: relative;
    overflow: hidden;
}

.amenity-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.amenity-item:hover::before {
    width: 100%;
}

.amenity-item h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    transition: all 0.3s ease;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amenity-item:hover h3 {
    color: #003366;
    letter-spacing: 0.8px;
}

/* Media queries for responsive design */
@media (max-width: 968px) {
    .amenities-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .amenities-container {
        grid-template-columns: 1fr;
    }
    
    .amenity-item {
        padding: 14px 10px;
    }
    
    .amenity-item h3 {
        font-size: 14px;
    }
    
    .amenities-showcase h2 {
        font-size: 26px;
    }
    
    .amenities-showcase p {
        font-size: 16px;
    }
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
    margin-right: 20px;
    margin-left: auto; /* Push to the right side */
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--cream);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Fix for hamburger menu dropdown */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        position: relative;
        z-index: 1002;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 40%;
        height: 30vh;
        background: rgba(29, 29, 29, 0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; /* Changed from center to flex-start */
        transition: right 0.3s ease;
        z-index: 1001;
        padding-top: 40px; /* Increased padding to account for header height */
    }
    
    .nav-links li:first-child {
        margin-top: 0; /* Ensure first menu item starts at the top */
    }
    
    /* Ensure the menu is properly aligned when active */
    .nav-links.active {
        right: 0;
        overflow-y: auto; /* Add scrolling if needed */
    }
    
    .nav-links li {
        margin: 12px 0;
        text-align: center;
        width: 90%;
    }
    
    .nav-links a {
        font-size: 12px;
        display: block;
    }
    
    /* Hamburger icon animation */
    .hamburger-menu span {
        transition: all 0.3s ease;
    }
    
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Make partner logos smaller in mobile mode */
@media (max-width: 768px) {
    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .partner-logos img {
        height: 80px; /* Reduced from 100px */
        width: auto;
    }

    .footer-container{
        gap: 0px;
    }
}

@media (max-width: 480px) {
    .partner-logos img {
        height: 60px; /* Even smaller for very small screens */
        width: auto;
    }
    
    img.qrcode {
        height: 80px;
        position: relative;
        left: 0; /* Reset the left positioning */
        display: block;
        margin: 15px auto; /* Center the QR code */
    }
    .footer-container{
        gap: 0px;
    }
}