* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.main-header {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 80px;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.navbar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 18px;
}

.btn-apply {
    background-color: #FD0C0C;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.header-email {
    font-size: 11px;
    margin-top: 5px;
    text-align: right;
    color: #2e7d32;
}

/* Marquee Alert */
.alert-marquee {
    background-color: #2e7d32;
    color: white;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 13px;
    font-weight: bold;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px 15px;
}

.hindi-title {
    font-size: 32px;
    color: #000;
    margin-bottom: 20px;
}

.hero-text p {
    margin-bottom: 15px;
    font-size: 14px;
    text-align: justify;
}

.hero-sidebar h3 {
    margin-bottom: 20px;
}

.info-box {
    padding: 15px;
    color: white;
    margin-bottom: 10px;
    border-radius: 4px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-box.green {
    background-color: #2e7d32;
}

.info-box.red {
    background-color: #ff1744;
}

.info-box.dark-green {
    background-color: #1b5e20;
}

/* Banner Section Placeholder Styling */
.banner-container {
    margin-bottom: 30px;
}

.promo-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('https://via.placeholder.com/1200x500/f0f0f0/888888?text=Place+Actual+Aerial+Banner+Image+Here');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 2px solid #eee;
}

.banner-overlay {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 15%, transparent 40%, rgba(0, 0, 0, 0.8) 80%);
    padding: 30px;
}

.banner-header {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #1b5e20;
}

.banner-body {
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
}

.project-title {
    background: #1b5e20;
    color: white;
    padding: 5px 20px;
    display: inline-block;
    font-size: 38px;
}

.price-tag {
    background: #fef102;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 24px;
    border-radius: 0 30px 30px 0;
}

/* --- New Sections Styles --- */

/* Bottom Text */
.bottom-info {
    text-align: center;
    padding: 30px 0 10px;
    font-size: 22px;
}

/* Date Status Bar */
.date-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 50px;
    padding: 10px 40px;
    margin: 20px 0 40px;
}

.date-item {
    text-align: center;
    flex: 1;
    border-right: 1px solid #ddd;
}

.date-item:nth-child(3) {
    border-right: none;
}

.date-item p {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.date-item h3 {
    font-size: 18px;
    color: #000;
}

.btn-apply-large {
    background-color: #FD0C0C;
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(255, 23, 68, 0.3);
}

/* Details Card Box */
.details-card {
    max-width: 650px;
    margin: 0 auto 50px;
    border: 1px solid #ddd;
    padding: 40px;
    position: relative;
    text-align: left;
    background-color: #fff;
}

.btn-apply-red {
    background-color: #FD0C0C;
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 25px;
}

.window-text {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.pay-text {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 14px;
}

.info-list li i {
    width: 20px;
    color: #333;
    font-size: 18px;
    margin-top: 2px;
}

.disclaimer {
    font-size: 10px;
    color: #777;
    margin-top: 30px;
}

/* Final Footer */
.final-footer {
    text-align: center;
    padding-bottom: 30px;
    font-size: 13px;
    color: #555;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .date-status-bar {
        flex-direction: column;
        border-radius: 15px;
        padding: 20px;
        gap: 15px;
    }

    .date-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        width: 100%;
        padding-bottom: 10px;
    }

    .details-card {
        padding: 20px;
        margin: 0 15px 40px;
    }
}

.booking-box {
    background: #fef102;
    margin-top: 10px;
    padding: 15px;
    text-align: center;
}

/* Footer Areas */
.banner-footer {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 8px;
}

.status-tags {
    margin-top: 10px;
    display: flex;
    gap: 20px;
    font-weight: bold;
}

.call-now {
    margin-left: auto;
    font-size: 1.2rem;
}

.blue-bar {
    background-color: #0040ff;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.bottom-info {
    text-align: center;
    padding: 20px 0;
    font-size: 22px;
}

/* Responsive */
@media (max-width: 768px) {

    .header-flex,
    .navbar ul,
    .hero-section {
        flex-direction: column;
        text-align: center;
        grid-template-columns: 1fr;
    }

    .navbar ul {
        gap: 10px;
        padding: 10px 0;
    }
}

/* --- Payment Section Styles --- */
.payment-section {
    background-color: #f9f2a6;
    /* Pale Yellow Background */
    padding: 60px 0;
    margin-top: 20px;
}

.plan-wrapper {
    margin-bottom: 50px;
}

.plan-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

/* Table Styling */
.table-responsive {
    overflow-x: auto;
    /* Makes tables scrollable on mobile */
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    font-size: 13px;
    text-align: center;
}

.payment-table th,
.payment-table td {
    border: 1px solid #333;
    padding: 12px 8px;
    vertical-align: middle;
}

.payment-table thead th {
    background-color: #243a91;
    /* Dark Blue Header */
    color: white;
    font-weight: normal;
    height: 80px;
}

.payment-table tbody td {
    font-weight: bold;
    color: #333;
}

/* Adjustments for Plan B table width */
.narrow-table {
    margin: 0 auto;
}

.narrow-table th:nth-child(1) {
    width: 10%;
}

.narrow-table th:nth-child(2) {
    width: 30%;
}

.narrow-table th:nth-child(3) {
    width: 30%;
}

.narrow-table th:nth-child(4) {
    width: 30%;
}

/* Mobile Specific Tweaks for Tables */
@media (max-width: 768px) {
    .payment-table {
        font-size: 11px;
    }

    .payment-table thead th {
        height: auto;
        padding: 10px 5px;
    }
}

/* --- Amenities --- */
.amenities-section {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    margin: 40px 0;
    font-size: 24px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.amenity-item {
    text-align: center;
}

.amenity-item img {
    width: 100%;
    border-radius: 4px;
    height: 170px;
}

.amenity-item p {
    background: #f1f1f1;
    padding: 6px;
    font-size: 17px;
    font-weight: bold;
    margin-top: 5px;
}

/* --- Download Section --- */
.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.download-card {
    border: 1px solid #eee;
    padding: 40px 20px;
    text-align: center;
    border-radius: 4px;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border: 1px solid #ddd;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.download-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
    color: #333;
}

.download-card a {
    color: #6e48aa;
    font-size: 12px;
    text-decoration: none;
    border-bottom: 1px solid;
}

/* --- Location Advantages (Yellow) --- */
.location-advantages {
    background-color: #f9f2a6;
    padding: 60px 0;
}

.location-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.location-image {
    flex: 1;
}

.location-image img {
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.location-content {
    flex: 1;
}

.location-content h2 {
    margin-bottom: 30px;
    font-size: 24px;
}

.location-content ul {
    list-style: none;
    padding: 0;
}

.location-content ul li {
    margin-bottom: 15px;
    font-size: 19px;
    font-weight: 600;
    padding-left: 20px;
    position: relative;
}

.location-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
}

/* --- Main Blue Footer --- */
.main-footer {
    background-color: #243a91;
    color: white;
    text-align: center;
    padding: 40px 0 20px;
}

.main-footer h4 {
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1px;
}

.disclaimer {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 1000px;
    margin: 0 auto 25px;
    color: #f1f1f1;
}

.footer-info {
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-links {
    margin: 20px 0;
    font-size: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

.footer-hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.copyright {
    font-size: 11px;
    opacity: 0.6;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .location-flex {
        flex-direction: column;
        text-align: center;
    }

    .location-content ul {
        text-align: left;
        display: inline-block;
    }
}

@media (max-width: 600px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 992px) {
    .navbar ul { gap: 15px; }
    .navbar ul li a { font-size: 14px; }
    .hero-section { grid-template-columns: 1fr; } /* Hero stack ho jayega */
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .location-flex { flex-direction: column; text-align: center; }
    .location-content ul { text-align: left; display: inline-block; }
}

/* --- Mobile Large (768px) --- */
@media (max-width: 768px) {
    .header-flex { flex-direction: column; gap: 15px; }
    .navbar ul { 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 10px; 
    }
    
    .date-status-bar {
        flex-direction: column;
        border-radius: 15px;
        padding: 15px;
    }
    .date-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        width: 100%;
        padding: 10px 0;
    }
    .date-item:last-child { border-bottom: none; }
    
    .project-title { font-size: 20px; }
    .bottom-info { font-size: 18px !important; }
    .download-grid { grid-template-columns: 1fr; gap: 15px; }
}

/* --- Small Mobile (480px ke niche) --- */
@media (max-width: 480px) {
    .hindi-title { font-size: 22px; }
    .logo { height: 50px; }
    
    .navbar ul li a { font-size: 13px; }
    
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    
    .details-card { padding: 15px; }
    .pay-text { font-size: 18px; }
    
    .info-list li { font-size: 13px; gap: 10px; }
    
    .btn-apply-large { width: 100%; text-align: center; padding: 12px; }
    
    .location-content h2 { font-size: 20px; }
    .location-content ul li { font-size: 15px; }

    /* Blue Bar and Footer Text scaling */
    .blue-bar p { font-size: 14px; padding: 0 10px; }
    .disclaimer { font-size: 12px; }
}