.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;
}

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto Slab', serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background: linear-gradient(to bottom, #e6f7ff, #ffffff);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(to right, #4fc3f7, #29b6f6);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: #ff4081;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }
        
        nav ul li a:hover {
            color: #ff4081;
            background: rgba(255, 255, 255, 0.2);
        }
        
        .contact-btn {
            background-color: #ff4081;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .contact-btn:hover {
            background-color: #e91e63;
        }
        
        /* Hamburger Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: white;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/lodha-sarjapur/image1.jpeg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            color: white;
            font-weight: 600;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            font-weight: 300;
        }
        
        .tag {
            display: inline-block;
            background: linear-gradient(to right, #4fc3f7, #ff4081);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 18px;
            margin-bottom: 30px;
        }
        .container_arrow {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            cursor: pointer;
        }
        
        .uk-icon-angle-down {
            font-size: 3rem;
            color: #fff;
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .uk-icon-angle-down:hover {
            opacity: 1;
            color: #ffd700;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-30px) translateX(-50%);
            }
            60% {
                transform: translateY(-15px) translateX(-50%);
            }
        }
        
        /* About Section */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #29b6f6;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 300;
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            align-items: center;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-weight: 400;
            line-height: 1.8;
        }
        
        .features-list {
            flex: 1;
            min-width: 300px;
        }
        
        .features-list h3 {
            color: #29b6f6;
            margin-bottom: 20px;
            font-size: 24px;
            font-weight: 600;
        }
        
        .features-list ul {
            list-style: none;
        }
        
        .features-list ul li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            font-weight: 400;
            line-height: 1.8;
        }
        
        .features-list ul li:before {
            content: "✓";
            color: #ff4081;
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 18px;
        }
        
        /* Pricing Section */
        .pricing {
            background: linear-gradient(to bottom, #f8bbd0, #fce4ec);
        }
        
        .pricing-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .pricing-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            flex: 1;
            min-width: 300px;
            max-width: 350px;
            transition: transform 0.3s;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .pricing-card h3 {
            color: #29b6f6;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .price {
            font-size: 24px;
            color: #ff4081;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .pricing-card p {
            margin-bottom: 10px;
            font-weight: 400;
        }
        
        /* Map Section */
        .map {
            padding: 40px 0;
        }
        
        .map-container {
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Contact Section */
        .contact {
            background: linear-gradient(to right, #4fc3f7, #29b6f6);
            color: white;
            padding: 80px 0;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form h3 {
            color: #29b6f6;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 600;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #29b6f6;
            font-weight: 500;
        }
        
        .form-group input {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            font-family: 'Roboto Slab', serif;
        }
        
        .submit-btn {
            background: linear-gradient(to right, #4fc3f7, #ff4081);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            display: block;
            width: 100%;
            transition: background-color 0.3s;
            font-family: 'Roboto Slab', serif;
        }
        
        .submit-btn:hover {
            background: linear-gradient(to right, #29b6f6, #e91e63);
        }
        
        .eoi-note {
            text-align: center;
            margin-top: 20px;
            font-style: italic;
            font-weight: 300;
            color: #29b6f6;
        }
        
        /* Footer */
        footer {
            background:  #ff4081;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .footer-content p {
            margin-bottom: 10px;
            font-weight: 300;
        }
        
        .coming-soon {
            font-size: 42px;
            font-weight: 700;
            color: #ff4081;
            margin: 30px 0;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(to right, #4fc3f7, #ff4081);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
        }
        
        .scroll-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-to-top:hover {
            transform: translateY(-5px);
            background: linear-gradient(to right, #29b6f6, #e91e63);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .about-content, .pricing-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .about-text, .features-list, .pricing-card {
                max-width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: row;
                text-align: center;
            }
            
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: linear-gradient(to right, #4fc3f7, #29b6f6);
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .hamburger {
                display: block;
            }
            
            .contact-btn {
                display: none;
            }
            
            .hero {
                padding: 80px 0;
                background-size: cover;
                background-position: center;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .coming-soon {
                font-size: 32px;
            }
            
            .scroll-to-top, .bottom-contact-btn {
                bottom: 20px;
                width: 50px;
                height: 50px;
                font-size: 18px;
            }
            
            .scroll-to-top {
                right: 20px;
            }
            
            .bottom-contact-btn {
                left: 20px;
            }
            
            .contact-form {
                padding: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .logo {
                font-size: 22px;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .tag {
                font-size: 16px;
                padding: 8px 16px;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
            
            .coming-soon {
                font-size: 28px;
            }
            
            .pricing-card {
                padding: 20px;
            }
            
            .map-container {
                height: 300px;
            }
        }