    .hero-section {
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

    /* Carousel Images */
    .carousel-item img {
        height: 100vh;
        object-fit: cover;
    }

    /* Dark Overlay */
    .overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
        top: 0;
        left: 0;
        z-index: 1;
    }

    /* Content Position */
    .hero-content {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        width: 100%;
    }

    /* Left Box Gradient */
    .hero-box {
        background: linear-gradient(135deg, rgba(0,50,30,0.9), rgba(0,0,0,0.6));
        padding: 30px;
        border-radius: 10px;
        max-width: 500px;
        backdrop-filter: blur(6px);
    }

    .features {
        list-style: none;
        padding: 0;
    }

    .features li {
        background: rgba(255,255,255,0.1);
        margin-bottom: 8px;
        padding: 8px 12px;
        border-radius: 5px;
    }

    /* FORM FLOATING */
    .form-box {
        background: #fff;
        padding: 25px;
        border-radius: 10px;
        width: 320px;
        margin-left: auto;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    /* Button */
    .form-box button {
        height: 45px;
        font-weight: bold;
    }

    /* ---------------- MOBILE FIX ---------------- */
    @media (max-width: 992px) {

        .hero-section {
            height: auto;
        }

        .carousel-item img {
            height: 70vh;
        }

        .hero-content {
            position: relative;
            transform: none;
            padding: 40px 15px;
        }

        .hero-box {
            margin-bottom: 20px;
        }

        .form-box {
            width: 100%;
            margin: 0 auto;
        }
    }



    .about-section {
        padding: 10px 0;
        background: #f7f5f2;
        background-image: url("images/about_bg.png");
    }

    /* Image */
    .about-image img {
        width: 100%;
        border-radius: 5px;
    }

    /* Content */
    .about-content h2 {
        color: #5e8f6b;
        font-size: 36px;
        margin-bottom: 20px;
        font-weight: 500;
    }

    .about-content p {
        color: #333;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    /* Button */
    .brochure-btn {
        display: inline-block;
        background: #5e8f6b;
        color: #fff;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: 0.3s;
    }

    .brochure-btn:hover {
        background: #4a7558;
    }


    .about-content {
        animation: fadeUp 1s ease;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }



    /* ---------------- MOBILE DESIGN FIX ---------------- */
    @media (max-width: 768px) {

        /* Remove overlay effect */
        .overlay {
            display: none;
        }

        .hero-section {
            background: #f5f3ef;
            height: auto;
        }

        
        .hero-content {
            position: relative;
            transform: none;
            padding: 30px 15px;
        }

        /* Remove glass box */
        .hero-box {
            background: transparent;
            padding: 0;
            max-width: 100%;
        }

        /* Title */
        .hero-box h1 {
            font-size: 26px;
            color: #000;
            font-weight: 700;
        }

        .hero-box p {
            color: #444;
            font-size: 14px;
        }

        /* Green underline */
        .hero-box p::after {
            content: "";
            display: block;
            width: 60px;
            height: 3px;
            background: #5e8f6b;
            margin-top: 8px;
        }

        /* Feature Pills */
        .features li {
            background: #5e8f6b;
            color: #fff;
            font-size: 14px;
            border-radius: 8px;
            padding: 10px;
            margin-bottom: 10px;
            display: inline-block;
        }

        /* Price Section */
        .price-text {
            margin-top: 15px;
            font-size: 14px;
            color: #333;
            border-bottom: 1px solid #ccc;
            padding-bottom: 8px;
        }

        .hero-box h2 {
            font-size: 28px;
            color: #000;
            font-weight: 800;
        }

        .hero-box span {
            font-size: 16px;
            color: #000;
            font-weight: 600;
        }

        /* FORM */
        .form-box {
            width: 100%;
            margin-top: 20px;
            border-radius: 10px;
        }
    }


    .features li {
        display: flex;
        align-items: center;
        gap: 8px;

        width: fit-content;
        padding: 6px 12px;
        border-radius: 7px;

        color: #fff;
        font-size: 15px;
        letter-spacing: 0.5px;

        box-shadow: 0 4px 10px rgba(0,0,0,0.15);

        /* Gradient Animation */
        background: linear-gradient(-45deg, #261b07, #5E936C, #261b07, #5E936C);
        background-size: 400% 400%;
        animation: Gradient 4s ease infinite;

        margin-bottom: 12px;
    }

    /* KEYFRAMES */
    @keyframes Gradient {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }


    .features li {
        border: 1px solid rgba(255,255,255,0.2);
        backdrop-filter: blur(4px);
    }




    .price-section {
        background: #f5f5f5;
        padding: 20px 0;
    }

    .price-title {
        color: #5E936C;
        font-size: 36px;
        margin-bottom: 40px;
    }

    /* Card */
    .price-card {
        background: #fff;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        transition: 0.3s;
    }

    .price-card:hover {
        transform: translateY(-5px);
    }

    /* Tag */
    .bhk-tag {
        border: 2px solid #5E936C;
        display: inline-block;
        padding: 8px 25px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    /* Area */
    .area {
        font-size: 18px;
        margin-bottom: 20px;
    }

    /* Price Row */
    .price-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 18px;
    }

    .price-row small {
        font-size: 14px;
        color: #555;
    }

    /* Button */
    .price-btn {
        background: #5E936C;
        color: #fff;
        padding: 12px 25px;
        border: none;
        border-radius: 30px;
        font-weight: 600;
        margin-top: 15px;
        transition: 0.3s;
    }

    .price-btn:hover {
        background: #4a7558;
    }
    @media (max-width: 768px) {

        .price-title {
            font-size: 28px;
        }

        .price-card {
            padding: 20px;
        }

        .price-row {
            flex-direction: column;
            gap: 5px;
            text-align: center;
        }
    }

    .highlights-section {
        background: #f5f3ef;
        padding: 20px 0;
    }

    /* Title */
    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
        font-weight: 500;
        color: #000;
    }

    /* List */
    .highlights-list {
        list-style: none;
        padding: 0;
    }

    .highlights-list li {
        display: flex;
        align-items: center;
        margin-bottom: 18px;
        font-size: 16px;
        color: #222;
        letter-spacing: 0.5px;
    }

    /* Numbers */
    .highlights-list li span {
        font-size: 22px;
        font-weight: 600;
        color: transparent;

        /* Gradient Number */
        background: linear-gradient(135deg, #5E936C, #261b07);
        -webkit-background-clip: text;
        -webkit-text-stroke: 1px #5E936C;

        margin-right: 15px;
        min-width: 40px;
    }

    /* Image */
    .highlight-img img {
        width: 100%;
        border-radius: 5px;
    }


    @media (max-width: 768px) {

        .section-title {
            font-size: 26px;
            text-align: center;
        }

        .highlights-list li {
            font-size: 14px;
        }

        .highlight-img {
            margin-top: 30px;
        }
    }

    .gallery-section {
        padding: 20px 0;
        background: #f5f5f5;
    }

    /* Title */
    .gallery-title {
        color: #5E936C;
        font-size: 34px;
        margin-bottom: 40px;
    }

    /* Grid Layout */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Items */
    .gallery-item {
        overflow: hidden;
        border: 2px solid #5E936C;
    }

    /* Wide Image */
    .gallery-item.wide {
        grid-column: span 2;
    }

    /* Images */
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

    /* Hover Effect */
    .gallery-item:hover img {
        transform: scale(1.08);
    }


    .amenities-section {
        background: #f5f3ef;
        padding: 20px 0;
    }

    /* Title */
    .section-title {
        color: #5E936C;
        font-size: 32px;
        margin-bottom: 50px;
    }

    /* Card */
    .amenity-card {
        background: #fff;
        padding: 25px;
        text-align: center;
        border-radius: 6px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: 0.3s;
        height: 100%;
    }

    /* Icon */
    .amenity-card .icon {
        font-size: 30px;
        margin-bottom: 15px;
        color: #5E936C;
    }

    /* Title */
    .amenity-card h5 {
        font-weight: 600;
        margin-bottom: 10px;
    }

    /* Text */
    .amenity-card p {
        font-size: 14px;
        color: #555;
    }

    /* Hover */
    .amenity-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    @media (max-width: 768px) {

        .section-title {
            font-size: 26px;
        }

        .amenity-card {
            padding: 20px;
        }
    }


    .floor-section {
        background: #f5f3ef;
        padding: 20px 0;
    }

    /* Title */
    .section-title {
        color: #5E936C;
        font-size: 32px;
        margin-bottom: 40px;
    }

    /* Card */
    .floor-card {
        position: relative;
        overflow: hidden;
        border-radius: 6px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    /* Image Blur */
    .floor-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        filter: blur(3px);
        transition: 0.4s;
    }

    /* Overlay */
    .floor-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Button */
    .floor-overlay button {
        background: #5E936C;
        color: #fff;
        border: none;
        padding: 10px 25px;
        border-radius: 30px;
        font-weight: 600;
        transition: 0.3s;
    }

    .floor-overlay button:hover {
        background: #4a7558;
    }

    /* Bottom Label */
    .floor-label {
        background: #5E936C;
        color: #fff;
        text-align: center;
        padding: 10px;
        font-weight: 600;
    }

    /* Hover Effect */
    .floor-card:hover img {
        filter: blur(0px) scale(1.05);
    }

    @media (max-width: 768px) {

        .floor-card img {
            height: 220px;
        }

        .section-title {
            font-size: 26px;
        }
    }

.location-section {
    background: #f5f3ef;
    padding: 20px 0;
}

/* Title */
.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 500;
}

.map-box img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 5px;
}

/* Optional shadow */
.map-box {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


/* List */
.location-list {
    list-style: none;
    padding: 0;
}

.location-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 16px;
    color: #222;
}

/* Numbers */
.location-list li span {
    font-size: 20px;
    font-weight: 600;
    color: transparent;

    background: linear-gradient(135deg, #5E936C, #261b07);
    -webkit-background-clip: text;
    -webkit-text-stroke: 1px #5E936C;

    margin-right: 15px;
    min-width: 40px;
}


@media (max-width: 768px) {

    .section-title {
        font-size: 26px;
        text-align: center;
    }

    .location-list li {
        font-size: 14px;
    }

    .map-box iframe {
        height: 250px;
    }
}


.developer-section {
    background: #f5f3ef;
    padding: 80px 0;
}

/* Title */
.section-title {
    color: #5E936C;
    font-size: 32px;
    margin-bottom: 20px;
}

/* Text */
.developer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

/* Call Box */
.call-box {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.call-box .icon {
    background: #5E936C;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    margin-right: 10px;
}

/* FORM */
.developer-form {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.developer-form h4 {
    color: #5E936C;
    text-align: center;
}

.developer-form p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Inputs */
.form-control {
    height: 45px;
    border-radius: 6px;
}

/* Button */
.submit-btn {
    background: #5E936C;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
}

.submit-btn:hover {
    background: #4a7558;
}

/* Disclaimer */
.disclaimer {
    text-align: center;
    font-size: 12px;
    margin-top: 40px;
    color: #555;
}


@media (max-width: 768px) {

    .section-title {
        text-align: center;
    }

    .developer-form {
        margin-top: 30px;
    }
}




.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
}

.cta-item {
    flex: 1;
    text-align: center;
    background: #5E936C;
    color: #fff;
    padding: 12px;
    font-size: 14px;
    text-decoration: none;
    border-right: 1px solid rgba(255,255,255,0.3);
}

/* Remove border for last */
.cta-item:last-child {
    border-right: none;
}

/* Hover */
.cta-item:hover {
    background: #4a7558;
}





.cta-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

























































































































































    /* Modal Container */
    .custom-modal {
        border-radius: 12px;
        overflow: hidden;
        border: none;
    }

    /* Close Button */
    .custom-close {
        position: absolute;
        right: 15px;
        top: 15px;
        z-index: 10;
    }

    /* Left Image */
    .modal-img {
        height: 100%;
        background: url('https://www.vajramgroup.com/campaigns/vajramchrysanthemum/crysanthemum%20website/gallery/gallery%20images-04.webp') center/cover no-repeat;
    }

    /* Form Wrapper */
    .form-wrapper {
        padding: 40px;
    }

    /* Heading */
    .form-wrapper h4 {
        font-weight: 700;
        margin-bottom: 5px;
    }

    .sub-text {
        font-size: 14px;
        color: #666;
        margin-bottom: 25px;
    }

    /* Inputs */
    .form-group {
        margin-bottom: 15px;
    }

    .form-group input {
        width: 100%;
        height: 45px;
        border-radius: 6px;
        border: 1px solid #ddd;
        padding: 10px 15px;
        outline: none;
        transition: 0.3s;
    }

    .form-group input:focus {
        border-color: #5E936C;
        box-shadow: 0 0 0 2px rgba(94,147,108,0.2);
    }

    /* Button */
    .submit-btn {
        width: 100%;
        background: linear-gradient(135deg, #5E936C, #3f6f56);
        color: #fff;
        border: none;
        padding: 12px;
        border-radius: 30px;
        font-weight: 600;
        margin-top: 10px;
        transition: 0.3s;
    }

    .submit-btn:hover {
        background: linear-gradient(135deg, #4a7558, #2f5a44);
    }

    /* ---------------- MOBILE ---------------- */
    @media (max-width: 768px) {

        .form-wrapper {
            padding: 25px;
        }

        .modal-dialog {
            margin: 10px;
        }
    }
