html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

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

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Specific background for Golden Gate project */
.golden-gate-bg {
    background-image: url('../Images/golden\ gate/Golden\ Gate.jpg');
}

/* Specific background for Golden Pride project */
.golden-pride-bg {
    background-image: url('../Images/Golden\ Pride/Goldenpride.png');
}

/* Specific background for Tirumala Bliss project */
.tirumala-bliss-bg {
    background-image: url('../Images/Bliss/Home\ Elevation.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #6C1A78;
}

.separator {
    margin: 0 10px;
    color: #ffffff;
}

.current {
    color: #ffffff;
}

.info-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #6C1A78;
    padding: 30px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

/* Mobile Styles for Hero Section */
@media (max-width: 768px) {
    .hero-section {
        height: 400px;
        background-size: cover;
        background-position: center;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .info-strip {
        position: relative;
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 300px;
        background-size: cover;
        background-position: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
}

.info-item {
    display: flex;
    align-items: center;
    color: white;
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.icon-container {
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-img{
    width: 40px;
    height: 40px;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 24px;
    opacity: 0.9;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 20px;
    font-weight: 700;
    margin-top: 2px;
}

/* Additional Mobile Styles for Info Strip */
@media (max-width: 768px) {
    .info-strip {
        padding: 20px 15px;
        gap: 20px;
        box-sizing: border-box;
    }

    .info-item {
        min-width: 150px;
        flex: 0 1 calc(50% - 20px);
        max-width: 100%;
    }

    .icon-img {
        width: 35px;
        height: 35px;
    }

    .info-value {
        font-size: 18px;
    }

    .info-label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .info-strip {
        flex-direction: row;
        padding: 25px 15px;
        gap: 25px;
        box-sizing: border-box;
    }

    .info-item {
        width: 100%;
        max-width: 100%;
    }
    
    .info-label {
        font-size: 14px;
    }
    
    .info-value {
        font-size: 16px;
    }
}

/* Hover effect */
.info-item {
    transition: transform 0.3s ease;
}

.icon-container {
    transition: all 0.3s ease;
}
/* Hero Section End */
/* About Us Section Styles */
.about-section {
    padding: 50px;
    background-color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

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

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: slideUp 1s ease-out;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

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

.about-content {
    animation: slideFromLeft 1s ease-out;
}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 30px;
}

.about-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.7;
    text-align: justify;
    hyphens: none;
    overflow-wrap: normal;
    word-break: keep-all;
}

.about-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #6C1A78;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
}

.about-button:hover {
    background-color: #6C1A78;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(123, 44, 191, 0.5);
}

/* Animations */
@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive About Us Section */
@media screen and (max-width: 1200px) {
    .about-container {
        gap: 40px;
    }

    .about-title {
        font-size: 42px;
    }
}

@media screen and (max-width: 968px) {
    .about-section {
        padding: 80px 30px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-wrapper {
        order: 2;
    }

    .about-content {
        order: 1;
        text-align: center;
    }

    .about-title {
        font-size: 38px;
    }

    .about-description {
        font-size: 15px;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-container {
        gap: 40px;
    }

    .about-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .about-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .about-section {
        padding: 30px 20px;
    }

    .about-title {
        font-size: 25px;
    }

    .about-description {
        font-size: 13px;
        line-height: 1.7;
        text-align: justify;
    }

    .about-button {
        padding: 14px 35px;
        font-size: 15px;
    }
}

/* About Us Section End */

/* Amenities Section Styles */
        .amenities-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 50px;
            width: 100%;
            box-sizing: border-box;
        }

        .amenities-header-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 60px;
            flex-wrap: wrap;
            width: 100%;
            max-width: 100%;
        }

        .amenities-header-content {
            flex: 1;
            min-width: 300px;
        }

        .amenities-header-content h3 {
            font-size: 30px;
            font-weight: 500;
            color: #333;
            margin-bottom: 10px;
        }

        .amenities-header-content h1 {
            font-size: 40px;
            font-weight: 500;
            line-height: 1.2;
            color: #000;
            letter-spacing: -1px;
        }

        .amenities-header-subtitle {
            flex: 1;
            min-width: 300px;
            display: flex;
            align-items: center;
        }

        .amenities-header-subtitle p {
            font-size: 18px;
            color: #333;
            line-height: 1.7;
            text-align: justify;
            hyphens: none;
            overflow-wrap: normal;
            word-break: keep-all;
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            border: 1px solid #ddd;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 100%;
        }

        .amenity-card {
            padding: 50px 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 250px;
            transition: all 0.3s ease;
            border: 1px solid #ddd;
        }

        .icon-circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .icon-circle i {
            font-size: 42px;
        }

        .amenity-card h3 {
            font-size: 22px;
            font-weight: 600;
            line-height: 1.4;
        }

        /* Desktop color pattern: 1,3,6,8 white; 2,4,5,7 purple */
        @media (min-width: 1025px) {
            .amenity-card:nth-child(1),
            .amenity-card:nth-child(3),
            .amenity-card:nth-child(6),
            .amenity-card:nth-child(8) {
                background: #ffffff;
            }

            .amenity-card:nth-child(1) .icon-circle,
            .amenity-card:nth-child(3) .icon-circle,
            .amenity-card:nth-child(6) .icon-circle,
            .amenity-card:nth-child(8) .icon-circle {
                background: #b8a1c6;
            }

            .amenity-card:nth-child(1) .icon-circle i,
            .amenity-card:nth-child(3) .icon-circle i,
            .amenity-card:nth-child(6) .icon-circle i,
            .amenity-card:nth-child(8) .icon-circle i {
                color: #000;
            }

            .amenity-card:nth-child(1) h3,
            .amenity-card:nth-child(3) h3,
            .amenity-card:nth-child(6) h3,
            .amenity-card:nth-child(8) h3 {
                color: #000;
            }

            .amenity-card:nth-child(2),
            .amenity-card:nth-child(4),
            .amenity-card:nth-child(5),
            .amenity-card:nth-child(7) {
                background: #7b2d8e;
            }

            .amenity-card:nth-child(2) .icon-circle,
            .amenity-card:nth-child(4) .icon-circle,
            .amenity-card:nth-child(5) .icon-circle,
            .amenity-card:nth-child(7) .icon-circle {
                background: #ffffff;
            }

            .amenity-card:nth-child(2) .icon-circle i,
            .amenity-card:nth-child(4) .icon-circle i,
            .amenity-card:nth-child(5) .icon-circle i,
            .amenity-card:nth-child(7) .icon-circle i {
                color: #7b2d8e;
            }

            .amenity-card:nth-child(2) h3,
            .amenity-card:nth-child(4) h3,
            .amenity-card:nth-child(5) h3,
            .amenity-card:nth-child(7) h3 {
                color: #fff;
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
              
            .amenities-header-content h3{
                font-size: 40px;
            }

            .amenities-header-content h1{
                font-size: 25px;
            }
            
            /* Specific color pattern for tablet view: 1,4,5,8 white; 2,3,6,7 purple */
            .amenity-card:nth-child(1),
            .amenity-card:nth-child(4),
            .amenity-card:nth-child(5),
            .amenity-card:nth-child(8) {
                background: #ffffff;
            }
            
            .amenity-card:nth-child(1) .icon-circle,
            .amenity-card:nth-child(4) .icon-circle,
            .amenity-card:nth-child(5) .icon-circle,
            .amenity-card:nth-child(8) .icon-circle {
                background: #b8a1c6;
            }
            
            .amenity-card:nth-child(1) .icon-circle i,
            .amenity-card:nth-child(4) .icon-circle i,
            .amenity-card:nth-child(5) .icon-circle i,
            .amenity-card:nth-child(8) .icon-circle i {
                color: #000;
            }
            
            .amenity-card:nth-child(1) h3,
            .amenity-card:nth-child(4) h3,
            .amenity-card:nth-child(5) h3,
            .amenity-card:nth-child(8) h3 {
                color: #000;
            }
            
            .amenity-card:nth-child(2),
            .amenity-card:nth-child(3),
            .amenity-card:nth-child(6),
            .amenity-card:nth-child(7) {
                background: #7b2d8e;
            }
            
            .amenity-card:nth-child(2) .icon-circle,
            .amenity-card:nth-child(3) .icon-circle,
            .amenity-card:nth-child(6) .icon-circle,
            .amenity-card:nth-child(7) .icon-circle {
                background: #ffffff;
            }
            
            .amenity-card:nth-child(2) .icon-circle i,
            .amenity-card:nth-child(3) .icon-circle i,
            .amenity-card:nth-child(6) .icon-circle i,
            .amenity-card:nth-child(7) .icon-circle i {
                color: #7b2d8e;
            }
            
            .amenity-card:nth-child(2) h3,
            .amenity-card:nth-child(3) h3,
            .amenity-card:nth-child(6) h3,
            .amenity-card:nth-child(7) h3 {
                color: #fff;
            }
        }

        @media (max-width: 768px) {
            .amenities-header-section {
                flex-direction: column;
                gap: 20px;
                margin-bottom: 40px;
                width: 100%;
                max-width: 100%;
            }

            .amenities-header-content h3 {
                font-size: 20px;
            }

            .amenities-header-content h1 {
                font-size: 36px;
            }

            .amenities-header-subtitle p {
                font-size: 16px;
            }

            .amenities-grid {
                width: 100%;
                max-width: 100%;
                grid-template-columns: repeat(2, 1fr);
            }

            /* Specific color pattern for tablet view: 1,4,5,8 white; 2,3,6,7 purple */
            .amenity-card:nth-child(1),
            .amenity-card:nth-child(3),
            .amenity-card:nth-child(5),
            .amenity-card:nth-child(7) {
                background: #ffffff;
            }
            
            .amenity-card:nth-child(1) .icon-circle,
            .amenity-card:nth-child(3) .icon-circle,
            .amenity-card:nth-child(5) .icon-circle,
            .amenity-card:nth-child(7) .icon-circle {
                background: #b8a1c6;
            }
            
            .amenity-card:nth-child(1) .icon-circle i,
            .amenity-card:nth-child(3) .icon-circle i,
            .amenity-card:nth-child(5) .icon-circle i,
            .amenity-card:nth-child(7) .icon-circle i {
                color: #000;
            }
            
            .amenity-card:nth-child(1) h3,
            .amenity-card:nth-child(3) h3,
            .amenity-card:nth-child(5) h3,
            .amenity-card:nth-child(7) h3 {
                color: #000;
            }
            
            .amenity-card:nth-child(2),
            .amenity-card:nth-child(4),
            .amenity-card:nth-child(6),
            .amenity-card:nth-child(8) {
                background: #7b2d8e;
            }
            
            .amenity-card:nth-child(2) .icon-circle,
            .amenity-card:nth-child(4) .icon-circle,
            .amenity-card:nth-child(6) .icon-circle,
            .amenity-card:nth-child(8) .icon-circle {
                background: #ffffff;
            }
            
            .amenity-card:nth-child(2) .icon-circle i,
            .amenity-card:nth-child(4) .icon-circle i,
            .amenity-card:nth-child(6) .icon-circle i,
            .amenity-card:nth-child(8) .icon-circle i {
                color: #7b2d8e;
            }
            
            .amenity-card:nth-child(2) h3,
            .amenity-card:nth-child(4) h3,
            .amenity-card:nth-child(6) h3,
            .amenity-card:nth-child(8) h3 {
                color: #fff;
            }

            .icon-circle {
                width: 80px;
                height: 80px;
            }

            .icon-circle i {
                font-size: 36px;
            }

            .amenity-card h3 {
                font-size: 18px;
            }
        }
        
        /* Mobile view alternating pattern from 680px */
        @media (max-width: 680px) {
            .amenities-grid {
                grid-template-columns: 1fr;
            }

            .amenities-container{
                padding: 40px 15px;
            }

            .amenities-header-content h1 {
                font-size: 28px;
            }
            
            /* Alternate colors for amenity cards on mobile */
            .amenity-card {
                background: #ffffff; /* Default to white */
            }
            
            .amenity-card:nth-child(even) {
                background: #7b2d8e; /* Purple for even cards */
            }
            
            /* Update text and icon colors for alternating pattern */
            .amenity-card:nth-child(odd) .icon-circle {
                background: #b8a1c6;
            }
            
            .amenity-card:nth-child(odd) .icon-circle i {
                color: #000;
            }
            
            .amenity-card:nth-child(odd) h3 {
                color: #000;
            }
            
            .amenity-card:nth-child(even) .icon-circle {
                background: #ffffff;
            }
            
            .amenity-card:nth-child(even) .icon-circle i {
                color: #7b2d8e;
            }
            
            .amenity-card:nth-child(even) h3 {
                color: #fff;
            }
        }

        @media (max-width: 600px) {
            .amenities-container{
                padding: 10px 15px;
            }
            .amenities-header-content h3 {
                font-size: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .amenities-container{
                padding: 10px 15px;
            }
            .amenities-header-content h3 {
                font-size: 30px;
            }
        }

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

    /* Amenities Section End  */
    /* Floor Plans Section Styles  */
.floor-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 50px 20px; /* Added some horizontal padding by default */
    width: 100%;
    box-sizing: border-box;
}

.floor-header-section {
    text-align: center;
    margin-bottom: 20px;
}

.floor-header-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.floor-header-section p {
 font-family: 'Inter', sans-serif;
 font-size: 18px;
 font-weight: 400;
 color: #333333;
 line-height: 1.7;
 max-width: 900px;
 margin: 0 auto;
 text-align: center;
 hyphens: none;
 overflow-wrap: normal;
 word-break: keep-all;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    perspective: 1200px;
    box-sizing: border-box;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    max-width: 700px; 
    height: 450px;
    background: #525052;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide.active {
    transform: translateX(0) scale(1.15) translateZ(0);
    z-index: 3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.carousel-slide.prev {
    transform: translateX(-400px) scale(0.85) rotateY(15deg) translateZ(-100px);
    z-index: 1;
    opacity: 0.7;
}

.carousel-slide.next {
    transform: translateX(400px) scale(0.85) rotateY(-15deg) translateZ(-100px);
    z-index: 1;
    opacity: 0.7;
}

.carousel-slide.hidden {
    opacity: 0;
    transform: scale(0.5);
    pointer-events: none;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-button:hover {
    background: #000;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.nav-button i {
    font-size: 24px;
}

.nav-button.prev-btn {
    left: 20px;
}

.nav-button.next-btn {
    right: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .carousel-slide {
        width: 85%;
        max-width: 450px;
        height: 400px;
    }

    .carousel-slide.prev {
        transform: translateX(-350px) scale(0.85) rotateY(15deg) translateZ(-100px);
    }

    .carousel-slide.next {
        transform: translateX(350px) scale(0.85) rotateY(-15deg) translateZ(-100px);
    }
}

@media (max-width: 992px) {
    .carousel-wrapper {
        height: 500px;
    }

    .carousel-slide {
        width: 80%;
        max-width: 400px;
        height: 350px;
    }

    .carousel-slide.prev {
        transform: translateX(-300px) scale(0.8) rotateY(15deg) translateZ(-100px);
    }

    .carousel-slide.next {
        transform: translateX(300px) scale(0.8) rotateY(-15deg) translateZ(-100px);
    }

    .floor-header-section h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .floor-container {
        padding: 40px 15px;
    }

    .floor-header-section h1 {
        font-size: 36px;
    }

    .floor-header-section p {
        font-size: 16px;
    }

    .carousel-wrapper {
        height: 450px;
    }

    .carousel-slide {
        width: 85%;
        max-width: 320px;
        height: 300px;
    }

    .carousel-slide.active {
        transform: translateX(0) scale(1.1) translateZ(0);
    }

    /* Hide side slides on tablets and smaller screens */
    .carousel-slide.prev,
    .carousel-slide.next {
        opacity: 0;
        pointer-events: none;
    }

    .nav-button {
        width: 50px;
        height: 50px;
    }

    .nav-button i {
        font-size: 20px;
    }

    .nav-button.prev-btn {
        left: 10px;
    }

    .nav-button.next-btn {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .carousel-wrapper {
        height: 400px;
    }

    .carousel-slide {
        width: 90%;
        max-width: 350px;
        height: 260px;
    }

    .carousel-slide.prev,
    .carousel-slide.next {
        opacity: 0;
        pointer-events: none;
    }

    .floor-header-section h1 {
        font-size: 28px;
    }

    .nav-button {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 400px) {
    .carousel-wrapper {
        height: 350px;
        margin-top: 10px;
    }

    .carousel-slide {
        width: 95%;
        max-width: 390px;
        height: 230px;
    }

    .carousel-slide.prev,
    .carousel-slide.next {
        opacity: 0;
        pointer-events: none;
    }
    .floor-header-section{
        margin-bottom: 20px;
    }

    .floor-header-section h1 {
        font-size: 24px;
    }

    .floor-header-section p {
        font-size: 14px;
        text-align: justify;
    }

    .nav-button {
        width: 40px;
        height: 40px;
    }

    .nav-button i {
        font-size: 18px;
    }

    .nav-button.prev-btn {
        left: 5px;
    }

    .nav-button.next-btn {
        right: 5px;
    }
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floor-header-section {
    animation: slideIn 0.8s ease;
}
/* Floor plans Section End   */

         /* Map Section Start*/
        .map-container {
            max-width: 1600px;
            margin: 0 auto;
            padding : 50px;
            width: 100%;
            box-sizing: border-box;
        }

        .map-header-section {
            text-align: center;
            margin-bottom: 60px;
        }

        .map-header-section h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 40px;
            font-weight: 500;
            color: #000;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .map-header-section p {
         font-family: 'Inter', sans-serif;
         font-size: 18px;
         font-weight: 400;
         color: #333333;
         line-height: 1.7;
         max-width: 900px;
         margin: 0 auto;
         text-align: center;
         hyphens: none;
         overflow-wrap: normal;
         word-break: keep-all;
        }


        .maps {
    width: 100%;
    height: 400px;
    box-sizing: border-box;
    overflow: hidden;
}

.maps iframe {
    width: 100%;
    height: 100%;
}
    

        @media (max-width: 900px) {
            .map-header-section h1 {
                font-size: 42px;
            }
        }

        @media (max-width: 768px) {
            .map-container{
                padding: 40px 15px;
            }


            .map-header-section h1 {
                font-size: 36px;
            }

            .map-header-section p {
                 font-size: 16px;
            }

        }

        @media (max-width: 480px) {
            .map-header-section h1 {
                font-size: 28px;
            }
              .map-header-section p {
                 font-size: 16px;
                 text-align: justify;
            }
        }

        /* Animation */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .map-header-section {
            animation: slideIn 0.8s ease;
        }
        /* Map Section End */

        /* Related Projects Section Styles  */
        .related-projects-container{
            max-width: 1600px;
            padding: 50px;
            width: 100%;
            box-sizing: border-box;
            margin: 0 auto;
        }

        .header-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
            margin-bottom: 50px;
            flex-wrap: wrap;
            width: 100%;
            max-width: 100%;
        }

        .header-title {
            flex: 1;
            min-width: 300px;
        }

        .header-title h1 {
            font-size: 40px;
            font-weight: 500;
            line-height: 1.2;
            color: #000;
        }

        .header-subtitle {
            flex: 1;
            min-width: 300px;
        }

        .header-subtitle p {
            font-size: 18px;
            color: #333;
            line-height: 1.7;
            text-align: justify;
            hyphens: none;
            overflow-wrap: normal;
            word-break: keep-all;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            width: 100%;
            max-width: 100%;
        }

        .project-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .project-image {
            width: 100%;
            height: 400px;
            overflow: hidden;
            position: relative;
        }

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

        .project-card:hover .project-image img {
            transform: scale(1.1);
        }

        .project-info {
            padding: 25px;
        }

        .project-info h3 {
            font-size: 20px;
            font-weight: 400;
            color: #000;
        }

        /* Overlay effect on hover */
        .project-image::after {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: 700;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .project-card:hover .project-image::after {
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .projects-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .header-section {
                flex-direction: column;
                gap: 20px;
                width: 100%;
                max-width: 100%;
            }

            .header-title h1 {
                font-size: 36px;
            }

            .header-subtitle p {
                font-size: 16px;
            }

            .projects-grid {
                grid-template-columns: 1fr;
                width: 100%;
                max-width: 100%;
            }

            .project-image {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .related-projects-container{
                padding: 20px 15px;
            }

            .header-title h1 {
                font-size: 28px;
            }

            .header-subtitle p {
                font-size: 15px;
            }

            .project-info h3 {
                font-size: 18px;
            }

            .project-image {
                height: 240px;
            }
        }

        /* Animation on scroll */
        .project-card {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        .project-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .project-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .project-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
/* Related Projects Section End  */

/* CTA Section Styles */
.cta-section {
    background: #6C1A78;
    padding: 80px 50px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.cta-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-content {
    flex: 1;
    max-width: 800px;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
    hyphens: auto;
    overflow-wrap: break-word;
    word-break: normal;
}

.cta-button-wrapper {
    flex-shrink: 0;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background-color: #ffffff;
    color: #6C1A78;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive CTA Styles */
@media screen and (max-width: 968px) {
    .cta-section {
        padding: 60px 30px;
        box-sizing: border-box;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        width: 100%;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-description {
        font-size: 16px;
        text-align: justify;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 16px;
    }
}

@media screen and (max-width: 640px) {
    .cta-section {
        padding: 50px 20px;
        box-sizing: border-box;
    }

    .cta-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .cta-description {
        font-size: 15px;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 15px;
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .cta-section {
        padding: 40px 20px;
        box-sizing: border-box;
    }

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

    .cta-description {
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
        max-width: 100%;
    }
}

/* Add scroll animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* About Us Section Animations */
.about-image-wrapper {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-content {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-image-wrapper.animate-visible,
.about-content.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Amenities Section Animations */
.amenities-header-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.amenities-header-subtitle {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.amenities-grid {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.amenities-header-content.animate-visible,
.amenities-header-subtitle.animate-visible,
.amenities-grid.animate-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.amenity-card {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.amenity-card.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Floor Plans Section Animations */
.floor-header-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.floor-header-section.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.carousel-wrapper {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.carousel-wrapper.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Map Section Animations */
.map-header-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.map-header-section.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.maps {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.maps.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

/* CTA Section Animations */
.cta-content {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cta-button-wrapper {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cta-content.animate-visible,
.cta-button-wrapper.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Related Projects Section Animations */
.header-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.projects-grid {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.project-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.header-section.animate-visible,
.projects-grid.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Project Card Styles for Similar Projects Section */
.project-name {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin-bottom: 10px;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.location-icon {
    flex-shrink: 0;
    color: #6C1A78;
}

.location-text {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}
