/* Base Styles */
:root {
    --primary-color: #1a3a6e;
    --secondary-color: #f7931e;
    --accent-color: #2c8aee;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white-color: #ffffff;
    --black-color: #000000;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-color);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    margin-left: 15px;
}

.cta-button.secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    background-color: rgba(255, 255, 255);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Match your container width */
    margin: 0 auto;
    padding: 0 15px;
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.container1 {
    display: flex;
    justify-content: space-between; /* This pushes logo to right */
    align-items: center;
}

.logo {
    margin-left: auto; /* This will now work */
    padding-left: 30px; /* Space between nav and logo */
}

.logo img {
    height: 50px;
    width: auto;
    display: block; /* Remove any extra space below image */
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

.main-nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover:after,
.main-nav ul li a.active:after {
    width: 100%;
}

.main-nav ul li a.active {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px; /* Adjust based on your header height */
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* Adjust opacity as needed */
    z-index: 1;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-down a {
    color: white;
    font-size: 24px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .hero {
        min-height: 500px;
        height: 80vh; /* Better mobile control than 100vh */
        max-height: 600px; /* Prevent excessive height */
        width: 100vw;
        overflow: hidden;
        position: relative;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%); /* Center the image */
    }
    .scroll-down {
        bottom: 20px;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* About Dholera Section */
.about-dholera {
    background-color: var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-item {
    text-align: center;
    padding: 30px;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-icon {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Highlights Section */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.highlight-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-image {
    height: 200px;
    overflow: hidden;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.highlight-card:hover .highlight-image img {
    transform: scale(1.1);
}

.highlight-content {
    padding: 25px;
    background-color: var(--white-color);
}

.highlight-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Investment Section */
.investment {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/investment-bg.jpg') no-repeat center center/cover;
    color: var(--white-color);
    text-align: center;
    padding: 100px 0;
}

.investment-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.investment-content h2 span {
    color: var(--secondary-color);
}

.investment-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.investment-buttons {
    margin-top: 30px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 15px;
}

.testimonial-content {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 50px;
    color: var(--secondary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonial-author h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--gray-color);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: var(--white-color);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer p {
    margin-bottom: 20px;
    color: #aaa;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white-color);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #aaa;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #aaa;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--secondary-color);
    margin-top: 5px;
}

.contact-info li a {
    color: #aaa;
}

.contact-info li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: var(--white-color);
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Page Banner */
.page-banner {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(rgba(26, 58, 110, 0.8), rgba(26, 58, 110, 0.8)), url('../images/page-banner-bg.png') no-repeat center center/cover;
    color: var(--white-color);
    margin-top: 80px;
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* About Content */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 18px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-items: center; /* This centers the cards horizontally */
}

.feature-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 250px; /* Set a max-width for better control */
    width: 100%; /* Ensure it takes full width of grid cell */
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 100px; /* Increased from 80px */
    height: 100px; /* Increased from 80px */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%; /* Ensures perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px; /* Increased from 30px */
    color: var(--secondary-color);
    /* For PNG icons - ensures proper display */
    background-size: 50%; /* Adjust based on your icon size */
    background-position: center;
    background-repeat: no-repeat;
}

/* If using img tags inside feature-icon */
.feature-icon img {
    width: 50px; /* Adjust based on your icon size */
    height: 50px; /* Adjust based on your icon size */
    object-fit: contain; /* Ensures icons maintain aspect ratio */
}

.feature-card h3 {
    font-size: 10px;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        max-width: 100%; /* Full width on mobile */
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 30px;
    }
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Vision Mission */
.vision-mission {
    background: linear-gradient(rgba(26, 58, 110, 0.7), rgba(26, 58, 110, 0.9)), url('../images/development.jpg') no-repeat center center/cover;
    color: var(--white-color);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
/* Single column on mobile/tablet */
@media (max-width: 991px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }
}

.vm-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.vm-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.vm-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.vm-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Dholera Development */
.dholera-development {
    background-color: var(--light-color);
}

.development-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.dev-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dev-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.dev-image:hover img {
    transform: scale(1.05);
}

.dev-text p {
    margin-bottom: 20px;
}

.dev-features {
    margin: 30px 0;
}

.dev-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.dev-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 5px;
}

/* Property Tabs */
.property-tabs {
    margin-top: 50px;
}

.tab-buttons {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.tab-button {
    padding: 15px 30px;
    background-color: transparent;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--gray-color);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-button:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.tab-button:hover,
.tab-button.active {
    color: var(--primary-color);
}

.tab-button.active:after {
    width: 100%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.property-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.property-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.property-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.property-image:hover img {
    transform: scale(1.05);
}

.property-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.price {
    font-size: 22px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.property-info p {
    margin-bottom: 20px;
}

.property-features {
    margin: 30px 0;
}

.property-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.property-features li i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 5px;
}

/* Price Table */
.price-table {
    background-color: var(--light-color);
}

.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 600;
}

tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

tr:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.price-note {
    font-size: 14px;
    color: var(--gray-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.price-note strong {
    color: var(--dark-color);
}

/* Location Advantages */
.location-advantages {
    background-color: var(--white-color);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(247, 147, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--secondary-color);
}

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Payment Plans */
.payment-plans {
    background-color: var(--light-color);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.plan-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 5px solid var(--secondary-color);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.plan-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.plan-details ul {
    margin-bottom: 20px;
}

.plan-details ul li {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px dashed #eee;
}

.plan-details ul li span:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

.discount {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 18px;
}

/* Brochures */
.brochures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.brochure-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.brochure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.brochure-image {
    height: 250px;
    overflow: hidden;
}

.brochure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.brochure-card:hover .brochure-image img {
    transform: scale(1.1);
}

.brochure-content {
    padding: 25px;
}

.brochure-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.brochure-content p {
    margin-bottom: 20px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--white-color);
    font-size: 20px;
}

/* Video Section */
.video-section {
    background-color: var(--light-color);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(247, 147, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.social-contact {
    margin-top: 50px;
}

.social-contact h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-form h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    padding-top: 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Office Hours */
.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.hours-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hours-info p {
    margin-bottom: 30px;
}

.timings li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
}

.timings li span:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

.site-visit {
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 10px;
    color: var(--white-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.site-visit h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--white-color);
}

.site-visit p {
    margin-bottom: 30px;
}

/* Privacy Policy & Disclaimer */
.privacy-container,
.disclaimer-container {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section,
.disclaimer-section {
    margin-bottom: 50px;
}

.privacy-section h2,
.disclaimer-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.privacy-section p,
.disclaimer-section p {
    margin-bottom: 15px;
}

.privacy-section ul,
.disclaimer-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-section ul li,
.disclaimer-section ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--secondary-color);
}

/* Popup Form */
.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-container.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.popup-container.active .popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.close-popup:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.popup-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

/* Keyframes */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}






/* Mobile First Approach - Base styles for small screens */
@media (max-width: 767px) {
    /* General adjustments */
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    /* Header adjustments */
    .header {
        padding: 10px 0;
    }
        .container1 {
        flex-wrap: wrap;
    }

    .logo img {
        height: 40px;
    }
    
    .mobile-menu-btn {
        display: block;
        font-size: 24px;
    }
    /* Prevent scrolling when mobile menu is open */
.no-scroll {
    overflow: hidden;
    height: 100%;
}
    
    
    .main-nav ul {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: var(--white-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .main-nav ul.active {
        left: 0;
    }
    
    .main-nav ul li {
        margin: 0 0 15px 0;
        width: 100%;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 8px 0;
    }
    
    /* Hero section */
    .hero {
        min-height: 70vh;
        margin-top: 60px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-button.secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    
    /* Grid layouts */
    .about-grid,
    .highlights-grid,
    .features-grid,
    .advantages-grid,
    .brochures-grid,
    .gallery-grid,
    .plans-grid,
    .footer-grid,
    .contact-grid,
    .hours-grid,
    .property-details,
    .development-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Property tabs */
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-button {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    
    /* Image ordering */
    .property-image,
    .dev-image,
    .about-image {
        order: -1;
    }
    
    /* Testimonials */
    .testimonial-item {
        margin: 0;
    }
    
    /* Footer */
    .footer-col {
        margin-bottom: 30px;
    }
    
    /* Contact form */
    .contact-form {
        padding-top: 30px;
    }
    
    /* Page banner */
    .page-banner {
        padding: 90px 0 50px;
    }
    
    .page-banner h1 {
        font-size: 28px;
    }
    
    /* CTA sections */
    .cta-content h2 {
        font-size: 24px;
    }
    
    /* WhatsApp button */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* Popup form */
    .popup-content {
        padding: 30px 20px;
        width: 90%;
    }
}

/* Tablet adjustments (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        padding: 0 30px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .highlights-grid,
    .features-grid,
    .advantages-grid,
    .brochures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        gap: 30px;
    }
}



/* Vertical Video Section */
.vertical-video-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.vertical-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vertical-video-wrapper {
    position: relative;
    width: 315px; /* Fixed width matching iframe */
    height: 560px; /* Fixed height matching iframe */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.vertical-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: none;
}

/* Mobile Responsive Design */
@media (max-width: 767px) {
    .vertical-video-section {
        padding: 50px 0;
    }
    
    .vertical-video-container {
        padding: 0 15px;
    }
    
    .vertical-video-wrapper {
        width: 280px; /* Slightly smaller for mobile */
        height: 500px; /* Maintain 9:16 aspect ratio */
        border-radius: 25px; /* More rounded corners on mobile */
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }
    
    .vertical-video-wrapper iframe {
        border-radius: 25px;
    }
}

/* Tablet Responsive */
@media (min-width: 768px) and (max-width: 1024px) {
    .vertical-video-wrapper {
        width: 300px;
        height: 535px;
        border-radius: 18px;
    }
    
    .vertical-video-wrapper iframe {
        border-radius: 18px;
    }
}

/* Hover Effects for Desktop */
@media (min-width: 1025px) {
    .vertical-video-wrapper:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    }
}

/* Center alignment for section header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-color);
}

/* Mobile text adjustments */
@media (max-width: 767px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
}
