/* ========================================
   CSS Variables & Reset
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu:wght@400..700&display=swap');

:root {
    --color-primary: #D7B440;
    --color-dark: #0F0F0F;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-text-light: #E5E5E5;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Marcellus", serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-dark);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ========================================
   Navigation Bar
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-black);
    height: 120px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.about-subtitle.text-white {
    color: var(--color-white) !important;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
}

.logo img {
    /* height: 91px; */
    width: 333px;
    margin-left: -55px;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 60px;
    align-items: center;
}

.nav-menu li a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
}

.nav-menu li a:hover {
    color: var(--color-primary);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--color-white);
    transition: var(--transition);
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 120px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 120px);
        background-color: var(--color-black);
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        transition: var(--transition);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}

/* ========================================
   Hero Banner Section
   ======================================== */
.hero-banner {
    position: relative;
    height: 1000px;
    margin-top: 120px;
    background: url('assets/hero-bg.jpg') center/cover no-repeat;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(15,15,15,0.5) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1244px;
    padding: 0 20px;
}

.hero-title {
    display: flex;
    flex-direction: column;
}

.subtitle {
    font-size: 67px;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 1px;
    animation: fadeInUp 1s ease;
    text-transform: uppercase;
    font-family: "Marcellus", serif;
}

.main-title {
    font-size: 50px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    letter-spacing: 2px;
    animation: fadeInUp 1.2s ease;
    font-family: "Marcellus", serif;
}

.hero-content .cta-button {
    margin-top: 50px;
    animation: fadeInUp 1.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 600px;
    }

    .subtitle {
        font-size: 24px;
    }

    .main-title {
        font-size: 36px;
    }
    .modal-header img{
        width: 100% !important;
        height: 100% !important;
    }

    .modal-header {
    margin-bottom: 50px !important;
}
}

/* ========================================
   CTA Button
   ======================================== */
.cta-button {
    background-color: var(--color-primary);
    color: var(--color-black);
    border: none;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(215, 180, 64, 0.3);
}

.cta-button:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(215, 180, 64, 0.5);
}

.cta-button.centered {
    display: block;
    margin: 40px auto 0;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 120px 0;
    background-color: var(--color-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 46px;
}

.about-subtitle {
    font-size: 24px;
    color: var(--color-primary) !important;
    margin-bottom: 30px;
    font-weight: 400;
}

.about-text p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text .cta-button {
    margin-top: 40px;
}

.about-images {
    position: relative;
    width: 100%;
    max-width: 538px;
    margin-left: auto;
}

.about-images img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-text h2 {
        font-size: 32px;
    }

    .about-text p {
        font-size: 16px;
    }

    .about-images {
        margin-top: 40px;
    }
}

/* ========================================
   Info Section (Location & Features)
   ======================================== */
.info-section {
    padding: 120px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}

.info-card {
    background-color: var(--color-dark);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--color-primary);
}

.icon-wrapper {
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.info-card p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.info-card ul {
    list-style: none;
    margin: 20px 0;
}

.info-card ul li {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 20px;
}

.info-card .highlight {
    color: var(--color-white);
    font-weight: 600;
    margin-top: 20px;
    font-size: 19px;
}

@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-card {
        padding: 30px;
    }
}

/* ========================================
   EOI Section
   ======================================== */
.eoi-section {
    padding: 120px 0;
    background-color: var(--color-black);
}

.eoi-header {
    text-align: center;
    margin-bottom: 80px;
}

.eoi-header .icon-wrapper {
    display: inline-block;
    margin-bottom: 20px;
}

.eoi-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
}

.eoi-subtitle {
    font-size: 22px;
    color: var(--color-primary);
    font-weight: 600;
}

.eoi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.eoi-card {
    background-color: var(--color-dark);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--color-primary);
}

.eoi-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 30px;
}

.eoi-list {
    list-style: none;
}

.eoi-list li {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
}

.eoi-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 24px;
}

.eoi-list li strong {
    color: var(--color-primary);
}

@media (max-width: 1024px) {
    .eoi-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .eoi-header h2 {
        font-size: 36px;
    }
}

/* ========================================
   Payment Plan Section
   ======================================== */
.payment-section {
    padding: 120px 0;
    background-color: var(--color-dark);
}

.payment-content-section{
    display: flex;
    align-items: self-start;
    gap: 20px;
}
.payment-content {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.payment-images {
    position: relative;
    width: 100%;
    max-width: 469px;
}

.payment-images img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.payment-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    margin-top: 20px;
}

.payment-subtitle {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.6;
}

.payment-box {
    background-color: var(--color-dark);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--color-primary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
}

.payment-terms h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.payment-terms p {
    font-size: 20px;
    color: var(--color-white);
}

.payment-divider {
    width: 2px;
    height: 80px;
    background-color: var(--color-primary);
}

.payment-note {
    font-size: 18px;
    color: var(--color-white);
    line-height: 1.8;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .payment-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .payment-images {
        max-width: 100%;
        margin: 0 auto;
    }

    .payment-box {
        flex-direction: column;
        text-align: center;
    }

    .payment-divider {
        width: 80px;
        height: 2px;
    }
}

/* ========================================
   Why Invest Section
   ======================================== */
.why-invest-section {
    padding: 120px 0;
    background-color: var(--color-dark);
}

.why-invest-box {
    background-color: var(--color-dark);
    padding: 80px;
    border-radius: 20px;
    border: 1px solid var(--color-primary);
    text-align: center;
}

.why-invest-box h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
}

.why-subtitle {
    font-size: 22px;
    color: var(--color-primary);
    margin-bottom: 50px;
    font-weight: 600;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 50px;
    text-align: left;
}

.why-column ul {
    list-style: none;
}

.why-column ul li {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 25px;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
}

.why-column ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 24px;
}

.why-highlight {
    font-size: 28px;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .why-invest-box {
        padding: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-invest-box h2 {
        font-size: 36px;
    }
}

/* ========================================
   Submit EOI Section
   ======================================== */
.submit-section {
    padding: 120px 0;
    background-color: var(--color-dark);
}

.submit-box {
    background-color: var(--color-dark);
    padding: 80px;
    border-radius: 20px;
    border: 1px solid var(--color-primary);
    max-width: 1200px;
    margin: 0 auto;
}

.submit-box h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
    text-align: center;
}

.submit-intro {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.8;
}

.submit-highlight {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
    line-height: 1.8;
}

.eoi-form {
    margin-top: 50px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    font-size: 16px;
    border: 1px solid var(--color-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 8px;
    font-family: var(--font-family);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-white);
    box-shadow: 0 0 0 2px rgba(215, 180, 64, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.eoi-form .cta-button {
    width: 100%;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .submit-box {
        padding: 40px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .submit-box h2 {
        font-size: 32px;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    position: relative;
    padding: 80px 0;
    /* background-color: var(--color-black); */
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(15,15,15,0.6) 100%);
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-text {
    text-align: center;
}

.footer-text p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.fade-in {
    animation: fadeIn 1s ease;
}

.slide-in-left {
    animation: slideInLeft 1s ease;
}

.slide-in-right {
    animation: slideInRight 1s ease;
}

/* ========================================
   Specific Styles for Location & Features
   ======================================== */

.location-features-section {
    padding: 100px 0;
    background-color: var(--color-dark); /* Matches the dark background */
    color: var(--color-white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; /* Space between the two columns */
    align-items: start;
}

.feature-block {
    text-align: left;
}

/* Header Area (Icon + Title) */
.icon-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-gold svg {
    display: block;
}

.feature-block h3 {
    font-family: "Marcellus", serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

/* Typography Content */
.feature-content .text-gold {
    color: var(--color-primary);
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: "Marcellus", serif;
}

.feature-content .list-intro {
    font-size: 17px;
    color: var(--color-white);
    margin-bottom: 15px;
    text-transform: lowercase;
}

/* List Styling */
.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 25px;
}

.feature-list li {
    font-size: 17px;
    color: #E5E5E5; /* Slightly off-white for readability */
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-family: var(--font-family); /* Sans-serif for list items looks cleaner */
    text-transform: lowercase; /* Matches the image style */
}

/* Custom Bullet Points (Small Dots) */
.feature-list li::before {
    content: "•";
    color: var(--color-white);
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 20px;
}

/* Footer Text of the card */
.feature-footer {
    font-size: 17px;
    color: #E5E5E5;
    line-height: 1.6;
    margin-top: 20px;
    font-family: var(--font-family);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr; /* Stack vertically on tablets/mobile */
        gap: 60px;
    }
    
    .feature-block h3 {
        font-size: 26px;
    }
}

/* ========================================
   EOI Section Specifics
   ======================================== */

.eoi-section {
    padding: 100px 0;
    background-color: #000000; /* Pure black background */
    color: var(--color-white);
}

/* Header Text styling */
.eoi-header-content {
    text-align: center;
    margin-bottom: 60px;
}

.eoi-header-content h2 {
    font-family: "Marcellus", serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.eoi-subtitle {
    font-family: "Marcellus", serif;
    font-size: 18px;
    color: var(--color-primary); /* Gold color */
    margin: 0;
    letter-spacing: 0.5px;
}

/* Grid Layout */
.eoi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

/* Card Styling */
.eoi-card {
    background-color: #0F0F0F; /* Very dark grey, almost black */
    border: 1px solid #555; /* Fallback border */
    border: 1px solid rgba(215, 180, 64, 0.5); /* Subtle Gold Border */
    border-radius: 12px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Specific Card Titles */
.eoi-card h3 {
    font-family: var(--font-family); /* Sans-serif (Inter) */
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.card-title-white {
    color: var(--color-white);
}

.card-title-gold {
    color: var(--color-primary);
}

/* List Styling */
.eoi-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.eoi-list li {
    font-family: var(--font-family); /* Sans-serif */
    font-size: 17px;
    color: #E0E0E0;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

/* Simple Bullet Points */
.eoi-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-white);
    font-size: 20px;
    top: -3px;
}

/* Button Styling */
.button-wrapper {
    text-align: center;
}

.cta-button-gold {
    background-color: var(--color-primary);
    color: #000000;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px; /* Pill shape */
    cursor: pointer;
    font-family: var(--font-family);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(215, 180, 64, 0.4);
    background-color: #E5C550; /* Slightly lighter gold on hover */
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    .eoi-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .eoi-card {
        padding: 30px 20px;
    }

    .eoi-header-content h2 {
        font-size: 24px;
        line-height: 1.4;
    }
}

/* ========================================
   Global Overrides for this Design
   ======================================== */
body {
    background-color: #050505; /* Deep black/grey */
}

/* ========================================
   Payment Plan Section
   ======================================== */
.payment-section {
    padding: 100px 0;
    background-color: #050505;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image with Gold Backdrop effect */
.payment-image-wrapper {
    position: relative;
    padding-left: 20px;
    padding-bottom: 20px;
}

.image-backdrop {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60%;
    height: 60%;
    z-index: 1;
    border-radius: 8px;
}

.payment-image-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 12px;
    display: block;
}


/* Payment Content */
.icon-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-header h3 {
    font-family: "Marcellus", serif;
    font-size: 28px;
    color: #FFFFFF;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
}

.payment-subtitle {
    color: #D7B440;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.payment-list {
    list-style: none;
    margin-bottom: 30px;
}

.payment-list li {
    color: #D7B440;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    text-transform: uppercase;
}

.payment-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D7B440;
    font-size: 20px;
    top: -2px;
}

.payment-note {
    color: #E5E5E5;
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
}

/* ========================================
   Why Invest Section (Bordered Box)
   ======================================== */
.why-invest-section {
    padding: 60px 0;
    background-color: #050505;
}

.invest-card {
    border: 1px solid #D7B440; /* The thin gold border */
    border-radius: 20px;
    padding: 60px 80px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.invest-card h2 {
    font-family: "Marcellus", serif;
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 50px;
    font-weight: 400;
    text-transform: uppercase;
}

.invest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    margin-bottom: 50px;
}

.invest-col ul {
    list-style: none;
}

.invest-col li {
    color: #D7B440; /* Gold text as shown in image */
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.invest-col li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D7B440;
}

.invest-footer {
    color: #FFFFFF;
    font-size: 18px;
    margin-top: 20px;
}

/* ========================================
   Submit EOI Section
   ======================================== */
.submit-text-section {
    padding: 80px 0;
    background-color: #050505;
    text-align: left;
}

.submit-content-wrapper {
    max-width: 900px;
    margin-left: 0; /* Align left */
}

.submit-content-wrapper h2 {
    font-family: "Marcellus", serif;
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 400;
}

.submit-desc {
    color: #E5E5E5;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.submit-gold {
    color: #D7B440;
    font-size: 18px;
    font-style: italic; /* Often looks classy in these designs */
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button-pill {
    background-color: #D7B440;
    color: #000000;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-button-pill:hover {
    background-color: #FFFFFF;
    transform: translateY(-2px);
}

/* ... (All existing CSS remains the same above this section) ... */

/* ========================================
   Custom Modal/Popup Styles (NEW)
   ======================================== */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 10001; /* Above navbar and other elements */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modal.show {
    display: flex; /* Change to flex to center the content easily */
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    background-color: #0F0F0F;
    margin: auto;
    padding: 100px; /* Increased Padding for bigger size */
    border: 1px solid var(--color-primary);
    width: 90%;
    max-width: 650px; /* Increased Max Width for a bigger popup */
    border-radius: 10px;
    position: relative;
    text-align: center;
    transform: translateY(-50px);
    transition: transform 0.3s ease-in-out;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-button {
    color: var(--color-white);
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close-button:hover,
.close-button:focus {
    color: var(--color-primary);
    text-decoration: none;
}

.modal-header {
    margin-bottom: 70px;
}

/* Hide old elements just in case they were used elsewhere or to ensure cleanliness */
.modal-title, .modal-message {
    display: none !important; 
}

/* New style for the HUGE December message */
.modal-huge-message {
      font-family: "Noto Nastaliq Urdu", serif;

    font-size: 80px; /* Huge font size as requested */
    color: var(--color-primary); /* Gold color */
    margin-top: 30px;
    margin-bottom: 0;
    line-height: 1.2;
    direction: rtl; /* Right-to-left for Urdu */
    font-weight: 700;
}


.modal-cta {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-family);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 900px) {
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .invest-card {
        padding: 40px 20px;
    }

    .invest-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 650px) {
    /* Adjust huge text size for smaller screens */
    .modal-huge-message {
        font-size: 50px; 
    }
    .modal-content {
        padding: 58px;
    }
}
/* ========================================
   Responsive
   ======================================== */
@media (max-width: 900px) {
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .invest-card {
        padding: 40px 20px;
    }

    .invest-grid {
        grid-template-columns: 1fr;
    }
}