.error-name, .error-email, .error-phone, .error-email-valid, .error-phone-valid {
    color: red;
    float: left;
    margin-bottom: 10px;
    display: none;
}

#loading_bottom_1, #loading_bottom_2, #loading_bottom_3 {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0px 0px -50px;
}

#contactForm {
    position: relative;
}


 :root {
            --primary-color: #0a3d62;
            --secondary-color: #d4af37;
            --accent-color: #1e272e;
            --light-color: #f8f9fa;
            --dark-color: #2d3436;
            --text-color: #555;
            --gradient-primary: linear-gradient(135deg, #0a3d62 0%, #1a5276 100%);
            --gradient-secondary: linear-gradient(135deg, #d4af37 0%, #f7ef8a 100%);
            --gradient-accent: linear-gradient(135deg, #1e272e 0%, #2c3e50 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--light-color);
            color: var(--dark-color);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        /* Rounded Navbar Styles */
        .navbar {
            background-color: rgba(10, 61, 98, 0.95);
            padding: 15px 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 30px 30px;
            margin: 0 15px;
            width: calc(100% - 30px);
        }
        
        .navbar.scrolled {
            padding: 12px 0;
            background-color: rgba(10, 61, 98, 0.98);
            border-radius: 30px;
            margin: 10px 15px;
            width: calc(100% - 30px);
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--secondary-color) !important;
            margin-left: 15px;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
            border-radius: 25px;
            padding: 8px 15px !important;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
            background-color: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            border-radius: 10px;
            padding: 8px 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 2px var(--secondary-color);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('../images/supreme/main.avif');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }
        
        .hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: 1px;
            animation: fadeInDown 1.5s ease;
        }
        
        .hero-content h2 {
            font-size: 2.2rem;
            font-weight: 300;
            margin-bottom: 2rem;
            color: var(--secondary-color);
            animation: fadeInUp 1.5s ease 0.5s both;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-weight: 800;
            position: relative;
            font-size: 1.3rem;
            letter-spacing: 1px;
            box-shadow: rgba(212, 175, 55, 0.3) 0px 15px 40px;
            gap: 15px;
            background: var(--gradient-secondary);
            padding: 20px 50px;
            border-radius: 50px;
            text-decoration: none;
            margin: 40px 0px;
            transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border-width: 3px;
            border-style: solid;
            border-color: rgba(212, 175, 55, 0.3);
            border-image: initial;
            overflow: hidden;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent 0%,
                rgba(255, 255, 255, 0.3) 50%,
                transparent 100%);
            transition: left 0.6s ease;
        }
        
        .cta-button:hover {
            background: var(--gradient-primary);
            color: white;
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 25px 60px rgba(10, 61, 98, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button i {
            font-size: 1.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .cta-button:hover i {
            transform: translateX(10px) scale(1.2);
        }
        
        .coming-soon-badge {
            background-color: var(--secondary-color);
            color: var(--dark-color);
            padding: 12px 35px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.3rem;
            display: inline-block;
            margin-bottom: 2rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            letter-spacing: 1px;
            animation: pulse 2s infinite 1s, fadeIn 1.5s ease 1s both;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .hero-content p.lead {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            animation: fadeIn 1.5s ease 1.5s both;
        }
        
        /* Section Styles */
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .section-title h3 {
            font-size: 2.5rem;
            color: var(--primary-color);
            display: inline-block;
            padding-bottom: 10px;
        }
        
        .section-title h3::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .project-info {
            padding: 100px 0;
            background-color: white;
        }
        
        .project-info p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-color);
            margin-bottom: 1.5rem;
        }
        
        .project-image {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
            overflow: hidden;
            animation: fadeInRight 1s ease;
        }
        
        .project-image:hover {
            transform: translateY(-10px);
        }
        
        .project-image img {
            transition: transform 0.5s ease;
        }
        
        .project-image:hover img {
            transform: scale(1.05);
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .contact-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .contact-form {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            animation: fadeInLeft 1s ease;
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: var(--secondary-color);
        }
        
        .form-control {
            padding: 15px;
            border: 1px solid #e1e1e1;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 15px 40px;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }
        
        .btn-primary:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Enhanced Map Section */
        .map-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
            position: relative;
        }
        
        .map-container {
            height: 500px;
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin: 0 auto;
            max-width: 900px;
        }
        
        .location-info {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 40px;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .location-info h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .location-features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
        }
        
        .location-feature {
            display: flex;
            align-items: center;
            max-width: 250px;
        }
        
        .location-feature i {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-right: 15px;
            background-color: rgba(212, 175, 55, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        footer {
            background-color: var(--accent-color);
            color: white;
            padding: 40px 0 20px;
            text-align: center;
            border-radius: 30px 30px 0 0;
            margin-top: 50px;
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--secondary-color);
            color: var(--dark-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-5px);
        }
        
        .luxury-brand {
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        .counter-section {
            background: linear-gradient(rgba(10, 61, 98, 0.9), rgba(10, 61, 98, 0.9)), 
                        url('../images/supreme/image1.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .counter-item {
            padding: 20px;
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }
        
        .counter-text {
            font-size: 1.2rem;
            font-weight: 500;
        }
        
        /* Highlights Section - Enhanced */
        .highlights-section {
            background: white;
            padding: 100px 0;
            position: relative;
        }
        
        .highlights-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-secondary);
        }
        
        .highlight-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 25px;
            padding: 40px 30px;
            height: 100%;
            box-shadow: var(--shadow-light);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .highlight-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-secondary);
            transform: translateY(-100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .highlight-card:hover::before {
            transform: translateY(0);
        }
        
        .highlight-card:hover {
            transform: translateY(-20px) scale(1.05);
            box-shadow: var(--shadow-dark);
            border-color: var(--secondary-color);
        }
        
        .highlight-icon {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
        }
        
        .highlight-card:hover .highlight-icon {
            transform: scale(1.3) rotate(15deg);
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .highlight-card h4 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
        }
        
        .highlight-card h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gradient-secondary);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .highlight-card:hover h4::after {
            width: 100%;
        }
        
        /* Amenities Section - Enhanced */
        .amenities-section {
            background: white;
            padding: 100px 0;
            position: relative;
        }
        
        .amenities-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-secondary);
        }
        
        .amenity-category {
            margin-bottom: 50px;
            padding: 40px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 25px;
            box-shadow: var(--shadow-light);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .amenity-category:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-medium);
            border-color: var(--secondary-color);
        }
        
        .amenity-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: var(--gradient-secondary);
        }
        
        .amenity-category h4 {
            color: var(--primary-color);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--secondary-color);
            font-size: 1.8rem;
            position: relative;
        }
        
        .amenity-category h4::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 2px;
            background: var(--gradient-secondary);
        }
        
        .amenity-list {
            list-style: none;
            padding: 0;
        }
        
        .amenity-list li {
            padding: 12px 0;
            position: relative;
            padding-left: 40px;
            font-size: 1.1rem;
            color: var(--text-color);
            transition: all 0.3s ease;
        }
        
        .amenity-list li:hover {
            color: var(--primary-color);
            transform: translateX(10px);
        }
        
        .amenity-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 1.3rem;
            width: 30px;
            height: 30px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .amenity-list li:hover:before {
            background: var(--gradient-secondary);
            color: white;
            transform: scale(1.2) rotate(15deg);
        }
        
        /* Features Section - Enhanced */
        .features-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 100px 0;
            position: relative;
        }
        
        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-secondary);
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .feature-item {
            background: white;
            padding: 35px 30px;
            border-radius: 20px;
            box-shadow: var(--shadow-light);
            border-left: 8px solid var(--secondary-color);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-secondary);
            transform: translateY(-100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .feature-item:hover::before {
            transform: translateY(0);
        }
        
        .feature-item:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: var(--shadow-dark);
        }
        
        .feature-item h5 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .feature-item h5 i {
            color: var(--secondary-color);
            font-size: 1.8rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .feature-item:hover h5 i {
            transform: scale(1.5) rotate(15deg);
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* RERA Section - Enhanced */
        .rera-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-top: 5px solid var(--secondary-color);
            border-bottom: 5px solid var(--secondary-color);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .rera-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(212, 175, 55, 0.03) 10px,
                rgba(212, 175, 55, 0.03) 20px
            );
            pointer-events: none;
        }
        
        .rera-badge {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: var(--gradient-primary);
            color: white;
            padding: 20px 40px;
            border-radius: 15px;
            font-weight: 700;
            margin-bottom: 30px;
            box-shadow: var(--shadow-medium);
            border: 3px solid rgba(255, 255, 255, 0.2);
            font-size: 1.3rem;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }
        
        .rera-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 10px;
            height: 100%;
            background: var(--gradient-secondary);
        }
        
        .rera-badge i {
            font-size: 1.8rem;
            animation: bounce 2s infinite;
        }
        
        /* Location & Map Combined Section - Corrected */
        .location-map-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }
        
        .location-map-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-secondary);
            z-index: 1;
        }
        
        .location-map-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-secondary);
            z-index: 1;
        }
        
        /* Section Title Fix */
        .location-map-section .section-title h3 {
            font-size: 2.8rem;
            background: linear-gradient(to right, var(--primary-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .location-map-section .section-title p.lead {
            font-size: 1.2rem;
            color: var(--text-color);
            max-width: 800px;
            margin: 20px auto 0;
        }
        
        /* Main Container Layout */
        .location-main-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        /* Location Cards Container - Left Side */
        .location-cards-container {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .location-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: var(--shadow-medium);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            height: fit-content;
        }
        
        .location-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-dark);
            border-color: var(--secondary-color);
        }
        
        .location-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: var(--gradient-secondary);
        }
        
        .location-card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(212, 175, 55, 0.2);
        }
        
        .location-card-header i {
            font-size: 2rem;
            color: var(--secondary-color);
            background: rgba(212, 175, 55, 0.1);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .location-card-header h4 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin: 0;
        }
        
        /* Location Features */
        .location-features {
            padding: 10px 0;
        }
        
        .location-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .location-feature-item:last-child {
            border-bottom: none;
        }
        
        .location-feature-item:hover {
            transform: translateX(10px);
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(10, 61, 98, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--primary-color);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .location-feature-item:hover .feature-icon {
            background: var(--gradient-secondary);
            color: white;
            transform: rotate(15deg) scale(1.1);
        }
        
        .feature-content h5 {
            color: var(--primary-color);
            font-size: 1.2rem;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .feature-content p {
            color: var(--text-color);
            margin: 0;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .hero-content h2 {
                font-size: 1.8rem;
            }
            
            .section-title h3 {
                font-size: 2rem;
            }
            
            .navbar-nav .nav-link {
                margin: 5px 0;
                text-align: center;
            }
            
            .location-features {
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content h2 {
                font-size: 1.5rem;
            }
            
            .coming-soon-badge {
                font-size: 1rem;
                padding: 10px 25px;
            }
            
            .contact-form {
                padding: 30px;
            }
            
            .navbar {
                border-radius: 0 0 20px 20px;
            }
            
            .navbar.scrolled {
                border-radius: 20px;
            }
            
            .map-container {
                height: 400px;
            }
            
            .location-info {
                padding: 25px;
            }
            
            .cta-button {
                padding: 15px 15px;
                margin: 10px 0px;
            }
            
            .project-info {
                padding: 50px 0;
            }
            
            .section-title {
                margin-bottom: 1rem;
            }
            
            .mb-5 {
                margin-bottom: 0rem !important;
            }
            
            .highlights-section {
                padding: 50px 0;
            }
            
            .highlight-card {
                text-align: center;   
            }
            
            .highlight-card h4::after {
                left: 45%;   
            }
            .amenities-section {
                padding: 50px 0;
            }
            
            .rera-section {
                padding: 10px 0;
            }
            
            .map-section {
                padding: 50px 0;
            }
            
            .location-map-section {
                padding: 50px 0;
            }
            
            .location-map-section .section-title h3 {
                font-size: 2rem;
            }
            
            .contact-section {
                padding: 50px 0;
            }
            
            .intrst {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .counter-number {
                font-size: 2.5rem;
            }
            
            .navbar {
                margin: 0 10px;
                width: calc(100% - 20px);
            }
            
            .location-features {
                flex-direction: column;
                align-items: center;
            }
            
            .location-feature {
                max-width: 100%;
            }
            .cta-button {
                padding: 10px 15px;
                font-size: 14px;
            }
            .hero-section {
                height: 60vh;
            }
        }
        .navbar-brand{
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            margin-left: 15px;
        }