* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    margin: auto;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images2/banner2.jpg') no-repeat center center/cover;
    animation: zoomEffect 10s infinite alternate ease-in-out;
    z-index: -1;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

.banner-content {
  
    position: relative;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    max-width: 90%;
}

.banner h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    color:#fff;
}

.banner p {
    font-size:25px ;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0.9;
    color:#fff;
}

/* Jindal City Floor Section */
.jindal-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px 5%;
    background: #f4f4f4;
}

.jindal-image {
    flex: 1;
    background: url('assets/images2/jindal2.jpg') no-repeat center center/cover;
    height: 350px;
    min-width: 40%;
    border-radius: 10px;
}

.jindal-content {
    flex: 1;
    padding: 30px;
    background: linear-gradient(45deg, #2e45f7, #41b6e8);
    color: white;
    border-radius: 10px;
    min-width: 40%;
    text-align: left;
}

.jindal-content p{
    font-size: 16px; color: #ffeb3b;
}

.jindal-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.jindal-content ul {
    list-style: none;
    padding: 0;
}

.jindal-content ul li {
    font-size: 16px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 35px;
    transition: transform 0.3s ease-in-out;
}

.jindal-content ul li:hover {
    transform: scale(1.05);
}

.jindal-content ul li::before {
    content: '\2714';
    position: absolute;
    left: 0;
    font-size: 1.6rem;
    color: #fff;
}

@media (max-width: 1024px) {
    .banner {
        padding: 15px;
    }
    .banner h1 {
        font-size: 1.5rem;
    }
    .banner p {
        font-size: 1rem;
    }
    .jindal-section {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .jindal-image {
        width: 100%;
        height: 250px;
        margin-bottom: 15px;
    }
     .jindal-image-villa {
        width: 100%;
        height: 250px;
        margin-bottom: 15px;
    }

    .jindal-content {
        width: 100%;
        padding: 20px;
        text-align: center;
    }
    .jindal-content h3 {
        font-size: 2rem; 
         margin-bottom: 20px;
    }
    .jindal-content ul li {
        font-size: 1.2rem;
    }
}

.jindal-image-villa {
    flex: 1;
    background: url(assets/images2/jindal3.jpg') no-repeat center center/cover;
    height: 350px;
    min-width: 40%;
    border-radius: 10px;
}



        .satyam-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 60px 5%;
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            text-align: center;
        }

        .satyam-image {
            background: url('assets/images2/jindal4.jpg') no-repeat center center/cover;
            width: 100%;
            max-width: 800px;
            height: 400px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            margin-bottom: 30px;
        }

        .satyam-content {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            text-align: left;
            max-width: 1500px;
            width: 100%;
        }

        .satyam-content h3 {
            font-size: 40px;
            margin-bottom: 20px;
            color: #1e88e5;
            text-align: center;
        }

        .satyam-content p {
            font-size:20px; 
            
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: justify;
        }

        .satyam-content ul {
            list-style: none;
            padding: 0;
        }

        .satyam-content ul li {
            font-size: 16px;
            margin-bottom: 15px;
            padding-left: 50px;
            position: relative;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }

        .satyam-content ul li:hover {
            transform: translateX(10px);
        }

        .satyam-content ul li::before {
            content: '\2714';
            position: absolute;
            left: 0;
            font-size: 1.8rem;
            color: #1e88e5;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .satyam-image {
                height: 250px;
            }
            .satyam-content {
                padding: 30px;
            }
            .satyam-content h3 {
                font-size: 2.3rem;
            }
            .satyam-content p {
                font-size: 1.1rem;
                text-align: center;
            }
            .satyam-content ul li {
                font-size: 1.2rem;
                padding-left: 40px;
            }
        }

.section-description,
.site-visit {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.site-visit {
    font-weight: bold;
    color: #222;
}	

/* express city last section */

.property-section {
            background: #F1FAFF;;
            padding: 40px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
.section-title {
            font-size: 30px;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
        }
        
.section-description {
            font-size: 24px; 
            color: #555;
            margin-bottom: 20px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 20px;
            font-size: 16px;
            font-weight: bold;
            text-decoration: none;
            color: #fff;
            border-radius: 5px;
            transition: 0.3s ease-in-out;
        }
        
        .call-btn {
            background: #28a745;
        }
        
        .call-btn:hover {
            background: #218838;
        }
        
        .email-btn {
            background: #007bff;
        }
        
        .email-btn:hover {
            background: #0056b3;
        }