
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            background: #ffffff;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: #fffefd;
            padding: 0.5rem 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .navbar-brand img {
            height: 50px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .navbar-brand img {
            height: 40px;
        }

        .navbar-nav {
            align-items: center;
        }

        .nav-link {
            color: #2c5530 !important;
            font-weight: 500;
            padding: 0.5rem 1.2rem !important;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: #8b6f47;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 80%;
        }

        .nav-link:hover {
            color: #8b6f47 !important;
        }

        .enquire-btn {
            border: 2px solid #8b6f47;
            color: #8b6f47 !important;
            padding: 0.6rem 2rem !important;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-left: 1rem;
        }

        .enquire-btn:hover {
            background-color: #8b6f47;
            color: #fff !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
        }

        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%238b6f47' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .logo-right {
            height: 60px;
        }

        /* Hero Section */
        .hero-section {
            height: 108vh;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                        url('./img/main-banner.jpg') center/cover no-repeat;
            margin-top: 90px;
            position: relative;
        }

        /* Common Styles */
        .title {
            font-size: 2.5rem;
            color: #2c5530;
            font-weight: 700;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .title span {
            display: block;
            font-size: 1rem;
            color: #8b6f47;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
        }

        .cta {
            background-color: #8b6f47;
            color: #fff;
            border: 2px solid #8b6f47;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .cta:hover {
            background-color: transparent;
            color: #8b6f47;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
        }
        .cta-2{
            background-color: #8b6f47;
            color: #fff;
            border: 2px solid #8b6f47;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .cta-2:hover {
            background-color: transparent;
            color: #8b6f47;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
        }

        /* Overview Section */
        #overview {
            padding: 5rem 0;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            background-image: url("./img/bg2\'.png");
        }

        #overview::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.95);
        }

        #overview .container {
            position: relative;
            z-index: 1;
        }

        .overviewPara p {
            color: #2c5530;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .overviewPara ul {
            color: #2c5530;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-left: 1.5rem;
        }

        .overviewPara ul li {
            margin-bottom: 0.8rem;
        }

        .ryiFormWrp {
               background: #FFF7E9;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .contactForm label {
            color: #2c5530;
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: block;
        }

        .contactForm label span {
            color: #8b6f47;
        }

        .contactForm .form-control {
            border: 2px solid #e0e0e0;
            padding: 0.8rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .contactForm .form-control:focus {
            border-color: #8b6f47;
            box-shadow: 0 0 0 0.2rem rgba(139, 111, 71, 0.1);
        }

        .form-check-label {
            color: #2c5530;
            font-size: 0.9rem;
        }

        /* Gallery Section */
        #gallery {
            padding: 5rem 0;
            background: #fff9f8;
            
        }

        .galleryBox {
            display: block;
            text-align: center;
            color: #2c5530;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .galleryImg {
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 1rem;
            height: 350px;
        }

        .galleryImg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .galleryBox:hover .galleryImg img {
            transform: scale(1.1);
        }

        .galleryBox:hover {
            color: #8b6f47;
        }

        /* Amenities Section */
        #amenities {

            padding: 5rem 0;
            background-image: url("./img/bg2\'.png");
        }

        .amentBox {
            display: block;
            text-align: center;
            color: #2c5530;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .amentImgBox {
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 1rem;
            height: 350px;
        }

        .amentImgBox img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .amentBox:hover .amentImgBox img {
            transform: scale(1.1);
        }

        .amentBox:hover {
            color: #8b6f47;
        }

        /* Slider Controls */
        .sliderControl {
            margin-top: 2rem;
        }

        .sliderNavBtn {
            width: 50px;
            height: 50px;
            border: 2px solid #8b6f47;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .sliderNavBtn::after {
            content: '';
            width: 15px;
            height: 15px;
            border-top: 3px solid #8b6f47;
            border-right: 3px solid #8b6f47;
            transition: all 0.3s ease;
        }

        .sliderNavprevBtn::after {
            transform: rotate(-135deg);
            margin-left: 5px;
        }

        .sliderNavNextBtn::after {
            transform: rotate(45deg);
            margin-right: 5px;
        }

        .sliderNavBtn:hover {
            background-color: #8b6f47;
        }

        .sliderNavBtn:hover::after {
            border-color: #fff;
        }

        .swiper-pagination-bullet {
            background: #8b6f47;
            opacity: 0.3;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
        }

        /* Mobile Responsive */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: #fff;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 10px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            }

            .enquire-btn {
                margin-left: 0;
                margin-top: 1rem;
                text-align: center;
                display: block;
            }

            .nav-link {
                padding: 0.8rem 1rem !important;
            }

            .logo-right {
                height: 50px;
            }

            .hero-section {
                height: 30vh;
            }

            .title {
                font-size: 2rem;
            }

            #overview,
            #gallery,
            #amenities {
                padding: 3rem 0;
            }

            .ryiFormWrp {
                margin-top: 2rem;
            }
        }

        @media (max-width: 768px) {
            .navbar-brand img {
                height: 40px;
            }

            .logo-right {
                height: 45px;
            }

            .title {
                font-size: 1.75rem;
            }

            .overviewPara p,
            .overviewPara ul {
                font-size: 1rem;
            }

            .galleryImg,
            .amentImgBox {
                height: 250px;
            }
        }








        /* Highlights Section */
#highlights {
    position: relative;
    background-image: url("./img/bg2\'.png");
}

.highlight-card {
    background: #fff;
    background-image: url(./img/bg.png);
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-height: 160px;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #8b6f47 0%, #2c5530 100%);
    transition: height 0.3s ease;
}

.highlight-card:hover::before {
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.15);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    /* background: linear-gradient(135deg, #8b6f47 0%, #2c5530 100%); */
    color: #023808;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
}

.highlight-title {
    color: #2c5530;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.highlight-arrow {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-arrow {
    opacity: 1;
    transform: translateY(4px);
}

.highlight-arrow svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .highlight-card {
        padding: 1.25rem 1rem;
        min-height: 140px;
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.875rem;
    }
    
    .highlight-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .highlight-title {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }
}


/* Connectivity Section */
#connectivity {
    padding: 5rem 0;
    background: #fff;
    background-image: url("./img/bg2\'.png");
}

.connectivity-content {
    padding-right: 2rem;
}

.accordion-wrapper {
    margin-top: 2rem;
}

.accordion-item {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #8b6f47;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.1);
}

.accordion-header {
    padding: 1.25rem 1.5rem;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #fff9f8;
}

.accordion-header.active {
    background: linear-gradient(135deg, #8b6f47 0%,  #8b6f47 100%);
}

.acc-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5530;
    transition: all 0.3s ease;
}

.accordion-header.active .acc-title {
    color: #fff;
}

.acc-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #8b6f47;
    transition: all 0.3s ease;
}

.accordion-header.active .acc-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.accordion-content[style*="display: block"] {
    max-height: 500px;
    padding: 1.5rem;
}

.accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-content ul li {
    padding: 0.7rem 0;
    color: #2c5530;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.accordion-content ul li:last-child {
    border-bottom: none;
}

.accordion-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: bold;
}

.connectivity-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
}

.connectivity-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.1) 0%, rgba(44, 85, 48, 0.1) 100%);
    pointer-events: none;
}

.connectivity-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.connectivity-image:hover img {
    transform: scale(1.05);
}

/* Configuration Section */
#configuration{
    padding: 5rem 0;
    background-image: url("./img/bg2'.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

#configuration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
}

#configuration .container {
    position: relative;
    z-index: 1;
}

.config-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.config-card.featured {
    border: 3px solid #8b6f47;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #8b6f47 0%, #2c5530 100%);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(139, 111, 71, 0.3);
}

.config-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.2);
}

.config-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.config-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.config-card:hover .config-image img {
    transform: scale(1.1);
}

.config-details {
    padding: 1.5rem;
}

.config-type {
    color: #2c5530;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.config-sqft {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b6f47;
    font-size: 1.1rem;
    font-weight: 600;
}

.config-sqft svg {
    color: #8b6f47;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .connectivity-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    #connectivity,
    #configuration {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .accordion-header {
        padding: 1rem 1.25rem;
    }
    
    .acc-title {
        font-size: 1rem;
    }
    
    .config-image {
        height: 250px;
    }
    
    .config-type {
        font-size: 1.3rem;
    }
    
    .config-sqft {
        font-size: 1rem;
    }
}


/* Configuration Section */
#configuration {
    padding: 5rem 0;
    background-image: url("./img/bg2'.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

#configuration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
}

#configuration .container {
    position: relative;
    z-index: 1;
    max-width: 1100px; /* Reduced container width */
}

.config-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.config-card.featured {
    border: 3px solid #8b6f47;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #8b6f47 0%, #2c5530 100%);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(139, 111, 71, 0.3);
}

.config-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.2);
}

.config-image {
    height: 220px; /* Reduced from 300px */
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.config-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: blur(5px); /* Added blur effect for dummy images */
}

.config-card:hover .config-image img {
    transform: scale(1.1);
    filter: blur(4px); /* Slightly less blur on hover */
}

.config-details {
    padding: 1.5rem;
}

.config-type {
    color: #2c5530;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.config-sqft {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b6f47;
    font-size: 1.1rem;
    font-weight: 600;
}

.config-sqft svg {
    color: #8b6f47;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .connectivity-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    #connectivity,
    #configuration {
        padding: 3rem 0;
    }
    
    #configuration .container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .accordion-header {
        padding: 1rem 1.25rem;
    }
    
    .acc-title {
        font-size: 1rem;
    }
    
    .config-image {
        height: 180px; /* Further reduced for mobile */
    }
    
    .config-type {
        font-size: 1.3rem;
    }
    
    .config-sqft {
        font-size: 1rem;
    }
}


#aboutDeveloper{
    background-image: url("./img/bg.png");
}


/* Additional Styles for Sections */
#aboutDeveloper .developerImgBox img {
    transition: transform 0.5s ease;
    
}

#aboutDeveloper .developerImgBox:hover img {
    transform: scale(1.05);
}

/* Footer Hover Effects */
footer a:hover {
    opacity: 0.8;
    text-decoration: underline !important;
}

/* Scroll to Top Button */
#scrollToTop:hover {
    background: #2c5530;
    transform: translateY(-3px);
}

/* Modal Styles */
.modal-content {
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.btn-close {
    width: 32px;
    height: 32px;
    background-color: #dc3545; /* Bootstrap red or use #f44336 for Material red */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s ease;
}

.btn-close:hover {
    background-color: #c82333; /* Darker red on hover */
}

.btn-close::before,
.btn-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: white;
}

.btn-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-body .form-control:focus {
    outline: none;
    border-bottom-color: #2c5530;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    #aboutDeveloper {
        padding: 3rem 0;
    }
    
    footer {
        padding: 3rem 0 1.5rem 0;
    }
    
    footer .col-lg-4 {
        text-align: center !important;
    }
    
    footer .cta {
        margin: 0 auto 1rem auto;
    }
    
    #scrollToTop {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

.hero-section {
    height: 108vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('./img/main-banner.jpg') center/cover no-repeat;
    margin-top: 68px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: fadeIn 1s ease-out;
}

.hero-title {
    padding-bottom: 10rem;
    text-align: center;
    width: 100%;
    animation: slideUp 1s ease-out 0.3s both;
}

.hero-title h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInScale 0.8s ease-out 0.5s both;
}

.hero-title p {
    color: white;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}



/* Optional: Add a subtle floating animation */
.hero-title h1:hover {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .hero-section {
        height: 30vh;
    }
    
    .hero-title {
        padding-bottom: 1.5rem;
    }
    
    .hero-title h1 {
        font-size: 1.5rem;
    }
    
    /* Reduce animation intensity on mobile */
    .hero-title h1:hover {
        animation: none;
    }
}