/* --- GLOBAL VARIABLES & RESET --- */
:root {
    --primary-orange: #C8340F;
    --primary-orange-hover: #ff6742;
    --bg-dark: #1E1E1E;
    --bg-card: linear-gradient( 160deg, #05081C 0%, #0B0F2A 35%, #1A0F2E 65%, #2A0F1A 100% );
    --bg-off-white: #f4efe9;
    --bg-light-section: #DCD3D1;
    --text-light: #ffffff;
    --text-dark: #1A1D2B;
    --text-muted: #b3b6c7;
    --text-muted-dark: #6B7280;
    --font-main: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =========================================
   REUSABLE BUTTONS
========================================= */
.btn {
    display: inline-block;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(255, 94, 0, 0.214);
    }

.btn-white {
    background-color: #ffffff;
    color: var(--primary-orange);
    padding: 10px 28px;
    font-weight: 600;
}

    .btn-white:hover {
        background-color: var(--primary-orange-hover);
        color: #ffffff;
        box-shadow: 0 8px 15px rgba(255, 89, 0, 0.25);
    }

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--text-light);
    border: none;
}

    .btn-primary:hover {
        background-color: var(--primary-orange-hover);
        box-shadow: 0 8px 15px rgba(255, 98, 0, 0.3);
    }

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('assets/home.png') center/cover no-repeat;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 370px;
    padding-top: 100px;
}

.hero-section-1 {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('assets/services.png') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 150px;
    padding-top: 100px;
}

.hero-section-2 {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('assets/policies.png') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 150px;
    padding-top: 100px;
}

.hero-section-3 {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.95)), url('assets/about.png') center/cover no-repeat;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 130px;
    padding-top: 100px;
}

.hero-section-4 {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('assets/track.png') center/cover no-repeat;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 130px;
    padding-top: 100px;
}

.hero-section-5 {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('assets/contact.png') center/cover no-repeat;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 130px;
    padding-top: 100px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    z-index: 1000;
    /* Initial state (transparent hero overlay) */
    background: transparent;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

    .navbar.scrolled {
        background: linear-gradient( 180deg, rgba(200, 52, 15, 0.85) 0%, rgba(200, 52, 15, 0.6) 40%, rgba(200, 52, 15, 0.35) 100% );
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        padding: 14px 6%;
    }

/* Hide the mobile apply button on desktop screens */
.mobile-apply {
    display: none;
}

.logo img {
    height: 55px;
}

/* Adjusted gap from 40px to 15px because the new padding adds width to the links */
.nav-links {
    display: flex;
    gap: 15px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
}

    .nav-links a {
        font-size: 0.95rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.85);
        padding: 8px 22px;
        border-radius: 30px; /* Creates the circular/pill shape */
        border: 1px solid transparent;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

        /* Premium Blue Glass Active State */
        .nav-links a.active {
            background: linear-gradient( 180deg, rgba(200, 52, 15, 0.35) 0%, rgba(200, 52, 15, 0.18) 100% );
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(200, 52, 15, 0.45);
            box-shadow: 0 6px 18px rgba(200, 52, 15, 0.25), inset 0 0 12px rgba(255,255,255,0.06);
            color: #ffffff;
        }

        /* Subtle white glass hover for inactive links */
        .nav-links a:hover:not(.active) {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

    .menu-toggle .bar {
        width: 25px;
        height: 3px;
        background-color: white;
        transition: all 0.3s ease;
    }

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding-top: 60px;
}

    .hero-content h1 {
        font-size: 4rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 15px;
        letter-spacing: -1px;
    }

    .hero-content .subtitle {
        font-size: 1.2rem;
        color: var(--text-light);
        margin-bottom: 25px;
        letter-spacing: 0.5px;
    }

    .hero-content .features {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 35px;
    }

.hero-btn {
    padding: 14px 90px;
    font-size: 1.2rem;
    border-radius: 6px;
}

/* --- MAIN LAYOUT (DARK) --- */
.dark-section {
    position: relative;
    background: linear-gradient(to bottom, var(--bg-off-white) 0%, var(--bg-off-white) 250px, var(--bg-dark) 215px, var(--bg-dark) 100%);
    padding-top: 1px;
}

/* --- OVERLAPPING CARDS --- */
.cards-wrapper {
    position: relative;
    padding: 0 6%;
    margin-top: -250px;
    z-index: 10;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.service-card {
    position: relative;
    width: 419px;
    height: 539px;
    background: var(--bg-card);
    border-style: solid;
    border-width: 0.5px 0.5px 4px 0.5px;
    border-color: var(--primary-orange) var(--primary-orange) #ffffff var(--primary-orange);
    border-radius: 10px;
    padding: 70px 40px 40px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

    .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at 20% 30%, rgba(200, 52, 15, 0.35), transparent 50% );
        z-index: 0;
    }

    .service-card::after {
        content: '';
        position: absolute;
        top: 15%;
        left: 50%;
        transform: translateX(-50%);
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(200, 52, 15, 0.25) 0%, transparent 60%);
        border-radius: 50%;
        z-index: 1;
        pointer-events: none;
    }

    .service-card > * {
        position: relative;
        z-index: 5;
    }

.service-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #FFFFFF;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.slant-thin {
    position: absolute;
    top: -30%;
    left: 20%;
    width: 90px;
    height: 160%;
    background: rgba(255, 255, 255, 0.04);
    transform: rotate(30deg);
    z-index: 2;
    pointer-events: none;
}

.slant-thick {
    position: absolute;
    top: -30%;
    left: 55%;
    width: 310px;
    height: 160%;
    background: rgba(255, 255, 255, 0.04);
    transform: rotate(30deg);
    z-index: 2;
    pointer-events: none;
}

.icon-wrapper {
    width: 85px;
    height: 85px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

    .icon-wrapper img {
        width: 45px;
    }

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex-grow: 1;
}

.card-divider {
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 20px 0 25px;
}

.btn-full {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    border-radius: 6px;
    font-size: 1.05rem;
}

/* =========================================
   SERVICES PAGE: 3X3 GRID FIX
========================================= */
.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 6%;
    justify-items: center;
}

    .services-grid .service-card {
        width: 100%;
        max-width: 419px;
        height: auto;
        min-height: 539px;
    }

/* --- SEE MORE & HOW IT WORKS --- */
.see-more-container {
    text-align: center;
    padding: 60px 0;
}

.see-more-link {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}

.how-it-works-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10% 80px;
    gap: 50px;
}

.how-it-works-section-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10% 80px;
    gap: 50px;
    margin-top: 40px;
}
/* =========================================
   APPLY PAGE: ORANGE HOW IT WORKS SECTION
========================================= */
.how-it-works-section-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%; /* Changed from 0 to 80px on top so the orange background is balanced */
    gap: 50px;
    background-color: var(--primary-orange); /* The requested orange background */
    margin-top: 0; /* Ensures there is no dark gap between the hero and this section */
}

    /* Force the subtitle in this specific section to be white instead of grey */
    .how-it-works-section-2 .section-subtitle {
        color: #ffffff;
    }

.how-it-works-content {
    flex: 1;
}

    .how-it-works-content h2 {
        font-size: 3rem;
        font-weight: 600;
        margin-bottom: 15px;
    }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.steps-list {
    margin-bottom: 40px;
}

    .steps-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

        .steps-list li img {
            width: 20px;
        }

.action-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.large-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 6px;
    white-space: nowrap;
}

.how-it-works-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

    .how-it-works-image img {
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

.trust-indicators {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 10%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.6rem;
    font-weight: 600;
}

    .trust-item img {
        width: 36px;
    }

/* =========================================
   LIGHT SECTION: CUSTOMER REVIEWS
========================================= */
.light-section {
    background-color: #DCD3D1;
    color: var(--text-dark);
    padding: 100px 0;
}

.reviews-main-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111827;
}

.reviews-main-title-1 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    margin-top: -60px;
    color: #121D59;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.nav-btn {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 20;
    background: #ffffff;
    border: 1px solid #D1D5DB;
    color: #111827;
}

    .nav-btn:hover {
        background: var(--primary-orange);
        color: #ffffff;
        border-color: var(--primary-orange);
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(200, 52, 15, 0.2);
    }

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel {
    position: relative;
    width: 85%;
    max-width: 1100px;
    height: 400px;
    overflow: hidden;
    margin: 0 auto;
}

.reviews-track {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-card {
    position: absolute;
    width: 340px;
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .review-card.active {
        border: 2px solid var(--primary-orange);
        box-shadow: 0 20px 40px rgba(200, 52, 15, 0.1);
    }

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.review-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.review-card p {
    font-size: 0.95rem;
    color: var(--text-muted-dark);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.stars {
    color: #FACC15;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

    .stars span {
        margin-left: 8px;
        color: #111827;
        font-weight: 600;
        font-size: 1rem;
        letter-spacing: 0;
    }

/* =========================================
   ABOUT US SECTION (About PAGE)
========================================= */
.about-section {
    background-color: #F8F9FB; /* Clean light background */
    padding: 100px 6%;
    text-align: center;
}

.about-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1A1D2B; /* Dark text for contrast */
    margin-bottom: 90px;
    margin-top: -60px;
}

.about-subtitle {
    font-size: 1.15rem;
    color: #6B7280;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
    margin-top: -60px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* Clean spacing between images */
    max-width: 1200px;
    margin: 0 auto;
}

.about-img-wrapper {
    width: 100%;
    height: 300px; /* Locks height to keep grid perfectly aligned */
    overflow: hidden;
    border-radius: 8px; /* Optional: Slight rounding for premium feel */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

    .about-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures images fill the box perfectly without stretching */
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .about-img-wrapper:hover img {
        transform: scale(1.05); /* Premium slight zoom on hover */
    }

/* =========================================
   GET IN TOUCH (CONTACT SECTION)
========================================= */
.contact-section {
    padding: 100px 6%;
    background-color: #F8F9FB;
}

.section-title.text-center {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1A1D2B;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Cards (Left Side) */
.contact-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .contact-card:hover {
        transform: translateY(-5px);
    }

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .icon-circle img {
        width: 26px;
        height: 26px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

.contact-info p {
    font-size: 1.15rem;
    font-weight: 500;
    color: #1A1D2B;
}

/* Contact Form (Right Side) */
.contact-form-wrapper {
    flex: 1.2;
    background: #ffffff;
    border-radius: 16px;
    padding: 45px;
    width: 100%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 0.95rem;
    color: #1A1D2B;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 16px;
    color: #1A1D2B;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-group input::placeholder,
    .form-group select::placeholder,
    .form-group textarea::placeholder {
        color: #9CA3AF;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-orange);
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(200, 52, 15, 0.1);
    }



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

/* =========================================
   FOOTER BOTTOM
========================================= */
.main-footer {
    background-color: #ffffff;
    padding: 35px 6%;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

    .footer-bottom-container p {
        color: #1E1E1E;
        font-size: 1rem;
        font-weight: 500;
    }

.social-icons {
    display: flex;
    gap: 20px;
}

    .social-icons a img {
        width: 44px;
        height: 44px;
        transition: opacity 0.3s ease, transform 0.3s ease;
        object-fit: contain;
    }

    .social-icons a:hover img {
        transform: translateY(-4px);
        opacity: 0.7;
    }

/* =========================================
   SEE MORE MODAL (HOME PAGE - SINGLE CARD)
========================================= */
.services-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(182, 72, 8, 0.742); /* Dark semi-transparent overlay */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center; /* Centers the white box vertically */
    padding: 20px; /* Prevents touching edges on mobile */
}

    .services-modal.active {
        opacity: 1;
        pointer-events: auto;
    }

.modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 550px; /* Width of the white box */
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 90vh; /* Keeps it on screen */
    overflow-y: auto; /* Allows scrolling inside the white box if screen is small */
}

.services-modal.active .modal-content {
    transform: translateY(0);
}

.modal-content h2 {
    color: #333333;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.modal-text {
    color: #888888; /* Light muted gray from design */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

    .modal-text p {
        margin-bottom: 10px;
    }

    .modal-text .highlight-text {
        font-size: 1.05rem;
        margin-top: 25px;
    }

.modal-content .btn-primary {
    font-size: 1rem;
    padding: 12px 50px;
    width: auto;
    display: inline-block;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: 500;
}

/* Modal Responsive Tweaks */
@media (max-width: 768px) {
    .modal-content {
        padding: 40px 25px;
    }

        .modal-content h2 {
            font-size: 1.5rem;
        }
}

/* =========================================
   FUNDING PROGRESS TIMELINE
========================================= */
.funding-timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 100px;
    padding: 0 2%;
}

/* The Gray Background Track */
.funding-track-line {
    position: absolute;
    top: 31px; /* Centers the 10px line perfectly behind the 72px icons */
    left: 10%; /* Starts at center of first icon */
    right: 10%; /* Ends at center of last icon */
    height: 10px;
    background: #E5E7EB; /* Light gray */
    z-index: 1;
    border-radius: 5px;
}

/* The Green Progress Fill */
.funding-progress-line {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: #2ECC71; /* Vibrant Green */
    border-radius: 5px;
    transition: width 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.funding-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.funding-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
}

/* Circular Icons */
.node-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #D1D5DB; /* Default Gray Border */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #9CA3AF; /* Default Gray Icon */
    box-shadow: 0 0 0 10px #ffffff; /* Creates a white gap breaking the line behind it */
}

    /* Status: Completed (Solid Green) */
    .node-icon.completed {
        background: #2ECC71;
        border-color: #2ECC71;
        color: #ffffff;
    }

    /* Status: Active (Green Outline) */
    .node-icon.active {
        border-color: #2ECC71;
        color: #2ECC71;
    }

/* Text Formatting */
.node-text h3 {
    color: #1A1D2B;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.node-text p {
    color: #6B7280;
    font-size: 0.85rem;
    line-height: 1.5;
}


/* =========================================
   PRIVACY LIST (FIGMA MATCHED DESIGN)
========================================= */

.privacy-list-section {
    background: #D6674B;
    padding: 90px 6%;
}

.privacy-list-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.privacy-list-items {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

/* ITEM ROW */
.privacy-list-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

/* IMAGE CARD */
.v-icon-frame {
    width: 120px;
    height: 90px;
    min-width: 120px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

    .v-icon-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* TEXT */
.v-text-block h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

.v-text-block p {
    color: rgba(255,255,255,0.85);
    font-size: 15.5px;
    line-height: 1.7;
    max-width: 720px;
}

/* =========================================
   Learn More Section
========================================= */

/* SECTION BACKGROUND */
.premium-section {
    background: linear-gradient(135deg, #f5f7fb, #eef2f7);
    padding: 100px 20px;
}

/* LAYOUT */
.learn-more-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* IMAGE SIDE */
.learn-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    max-width: 500px;
    width: 100%;
}

    /* IMAGE */
    .image-frame img {
        width: 100%;
        display: block;
        border-radius: 20px;
    }

/* OVERLAY GLOW */
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,102,255,0.2), transparent);
    opacity: 0.6;
}

/* TEXT SIDE */
.learn-text {
    flex: 1;
    max-width: 500px;
}

/* TYPOGRAPHY */
.highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: #0b1c39;
    margin-bottom: 15px;
}

.section-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* BUTTON UPGRADE */
.premium-btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .premium-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,102,255,0.3);
    }

/* 🔁 RESPONSIVE */
@media (max-width: 992px) {
    .learn-more-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .learn-text {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .premium-section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 26px;
    }

    .highlight-text {
        font-size: 18px;
    }
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 1200px) {
    .cards-container {
        flex-wrap: wrap;
    }

    /* 2 Columns on Tablet for Services Page */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-it-works-section {
        flex-direction: column;
        text-align: center;
    }

    .how-it-works-section-1 {
        flex-direction: column;
        text-align: center;
    }

    .how-it-works-section-2 {
        flex-direction: column;
        text-align: center;
    }

    .how-it-works-image {
        justify-content: center;
        margin-top: 40px;
    }

    .action-buttons {
        justify-content: center;
    }

    .steps-list li {
        justify-content: center;
    }

    .nav-btn.prev-btn {
        left: 5px;
    }

    .nav-btn.next-btn {
        right: 5px;
    }

    /* Footer Tablets */
    .contact-content {
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 35px;
    }
}

/* Wrap timeline to 3 columns on tablets */
.horizontal-timeline-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
}
/* Hide the horizontal line when items wrap to multiple rows */
.hz-timeline-item::after {
    display: none;
}

@media (max-width: 992px) {
    .trust-indicators {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .carousel {
        width: 95%;
    }

    /* Footer Stacking */
    .contact-content {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: 40px;
    }

    /* Move the 2-column About Grid here so it only triggers on smaller tablets */
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 18px 6%;
        backdrop-filter: blur(10px);
    }

    .logo {
        z-index: 1000;
        position: relative;
    }

        .logo img {
            max-width: 50px;
            height: auto;
        }

    .menu-toggle {
        display: flex;
        z-index: 1000;
        position: relative;
    }

        .menu-toggle .bar {
            width: 26px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .menu-toggle.is-active .bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .menu-toggle.is-active .bar:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.is-active .bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

    .nav-action {
        display: none;
    }

    /* 1 Column on Mobile for About Us Grid */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Pivot Timeline to Vertical on Mobile */
    .funding-nodes {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .funding-node {
        flex-direction: row;
        text-align: left;
        padding: 0;
    }

    .node-icon {
        margin-bottom: 0;
        margin-right: 25px;
        min-width: 60px;
        width: 60px;
        height: 60px;
        box-shadow: 0 0 0 6px #ffffff; /* Smaller white gap for mobile */
    }

    /* Reposition the track line to run vertically */
    .funding-track-line {
        top: 0;
        left: 29px; /* Centers line under the 60px icon */
        bottom: 0;
        right: auto;
        width: 6px;
        height: 100%;
    }

    /* Reposition the green fill to grow downwards */
    .funding-progress-line {
        width: 100%;
        height: 35%; /* Same 35% fill, but vertical now */
    }

    /* Mobile Privacy List Adjustments */
    .privacy-list-section {
        padding: 70px 20px;
    }

    .privacy-list-item {
        gap: 18px;
    }

    .v-icon-frame {
        width: 90px;
        height: 70px;
        min-width: 90px;
    }

    .v-text-block h3 {
        font-size: 18px;
    }

    .v-text-block p {
        font-size: 14px;
    }

    /* =========================================
       COMPACT & PREMIUM MOBILE MENU
    ========================================= */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        transform: translateX(0);
        width: 78%;
        height: 100vh;
        background: rgba(24, 12, 6, 0.96);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        /* Reduced top padding to bring everything up */
        padding: 90px 10% 40px;
        border-right: 1px solid rgba(255,255,255,0.08);
        box-shadow: 20px 0 60px rgba(0,0,0,0.6);
        transition: left 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 999;
        /* Keep these just in case someone has a tiny phone, but normal phones won't trigger it now */
        overflow-y: auto;
        overflow-x: hidden;
    }

        .nav-links.active {
            left: 0;
        }

        .nav-links::before {
            content: "";
            position: absolute;
            top: 0;
            left: 100%;
            width: 100vw;
            height: 100vh;
            background: rgba(0,0,0,0.45);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .nav-links.active::before {
            opacity: 1;
            pointer-events: auto;
        }

        .nav-links li {
            width: 100%;
            margin: 4px 0;
        }

        .nav-links a {
            font-size: 1.15rem;
            font-weight: 500;
            /* THIS IS THE FIX: Hugs the text instead of stretching full width */
            display: inline-block;
            /* Adjusted padding for a tighter, cleaner look */
            padding: 8px 20px;
            /* Matches the perfect circular pill shape from desktop */
            border-radius: 30px;
            color: rgba(255,255,255,0.85);
            border: 1px solid transparent;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

            .nav-links a:hover:not(.active) {
                color: #fff;
                background: rgba(255, 255, 255, 0.05);
                transform: translateX(4px);
            }

            /* Premium Orange Glass Active State */
            .nav-links a.active {
                background: linear-gradient( 180deg, rgba(200, 52, 15, 0.35) 0%, rgba(200, 52, 15, 0.18) 100% );
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border: 1px solid rgba(200, 52, 15, 0.45);
                box-shadow: 0 6px 18px rgba(200, 52, 15, 0.25), inset 0 0 12px rgba(255, 255, 255, 0.06);
                color: #ffffff;
                transform: translateX(4px);
            }

    /* Real Mobile Apply Button Styles */
    .mobile-apply {
        display: block;
        width: 100%;
        margin-top: 15px;
    }

    .nav-links .mobile-apply a {
        display: block;
        text-align: center;
        background: var(--primary-orange);
        color: #ffffff;
        border-radius: 6px;
        font-weight: 600;
        font-size: 1rem;
        padding: 14px 20px;
        border: none;
        box-shadow: 0 10px 25px rgba(200, 52, 15, 0.3);
        /* Overrides the pill shape from standard links */
        transform: none;
    }

        /* Keep it looking like a solid button when active */
        .nav-links .mobile-apply a.active,
        .nav-links .mobile-apply a:hover {
            background: var(--primary-orange-hover);
            color: #ffffff;
            border: none;
            box-shadow: 0 12px 30px rgba(200, 52, 15, 0.4);
            transform: translateY(-2px);
        }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .cards-wrapper {
        margin-top: -100px;
    }

    .service-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 30px auto;
        height: auto;
    }

    /* 1 Column on Mobile for Services Page */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .carousel {
        height: 420px;
    }

    .review-card {
        width: 280px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    /* Contact Section Mobile Fixes */
    .contact-section {
        padding: 60px 6%;
    }

    .section-title.text-center {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    /* Footer Bottom Stacking */
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* =========================================
   SCROLL ANIMATION FIX (GUARANTEES MOVEMENT)
========================================= */
.reveal {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Base starting states */
.fade-up {
    transform: translateY(50px);
}

.fade-in {
    transform: translateY(0);
}

.slide-left {
    transform: translateX(50px);
}

/* The !important flag forces the element to move to its final spot, resolving the specificity conflict */
.reveal.active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* =========================================
   FOOTER
========================================= */

.footer-contact {
    background: #1E1E1E;
    padding: 100px 6% 50px;
    color: #fff;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

/* LEFT */
.footer-left h2 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-left .subtitle {
    color: #AEB3C2;
    margin-bottom: 50px;
    font-size: 18px;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
    align-items: flex-start;
}

    .contact-item img {
        width: 22px;
        margin-top: 5px;
    }

    .contact-item h4 {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 6px;
    }

    .contact-item p {
        color: #B3B6C7;
        font-size: 18px;
    }

/* FORM */
.footer-form {
    background: #E5E7EB;
    padding: 40px;
    border-radius: 12px;
    width: 420px;
}

    .footer-form form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-form input,
    .footer-form textarea {
        background: #D1D5DB;
        border: none;
        border-radius: 8px;
        padding: 18px;
        font-size: 15px;
        font-family: var(--font-main);
        color: #1A1D2B;
    }

        .footer-form input:focus,
        .footer-form textarea:focus {
            outline: none;
            background: #ffffff;
            box-shadow: 0 0 0 2px var(--primary-orange);
        }

    .footer-form textarea {
        height: 140px;
        resize: none;
    }

    .footer-form button {
        height: 56px;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        background: #94a3b8;
        color: #fff;
        cursor: not-allowed;
        transition: 0.3s;
        font-weight: 600;
    }

        .footer-form button.active {
            background: #C8340F;
            box-shadow: 0 6px 18px rgba(200, 52, 15, 0.35);
            cursor: pointer;
            transition: all 0.25s ease;
        }

            .footer-form button.active:hover {
                background: #a82b0c;
                box-shadow: 0 8px 22px rgba(200, 52, 15, 0.45);
                transform: translateY(-1px);
            }

/* BOTTOM */
.footer-bottom {
    max-width: 1200px;
    margin: 80px auto 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
}

    .footer-links a {
        text-decoration: underline;
        transition: color 0.3s;
    }

        .footer-links a:hover {
            color: #ffffff;
        }

.footer-bottom-left p {
    font-size: 14px;
    color: #B3B6C7;
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-nav {
    display: flex;
    gap: 10px;
    color: #B3B6C7;
}

    .footer-nav a {
        transition: color 0.3s;
    }

        .footer-nav a:hover {
            color: #ffffff;
        }

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

    .social-icons img {
        width: 36px;
        transition: transform 0.3s ease;
    }

    .social-icons a:hover img {
        transform: translateY(-3px);
    }

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 50px;
    }

    .contact-item {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-form {
        width: 100%;
        max-width: 500px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-right {
        align-items: center;
    }
}

/* =========================================
   CONTACT PAGE: MAIN "GET IN TOUCH" FORM
========================================= */
.main-contact-section {
    background-color: #F4EFE9; /* Matches warm off-white in the Figma design */
    padding: 80px 6% 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #121D59; /* Deep navy blue from the design */
    margin-bottom: 35px;
    text-align: center;
}

.main-contact-wrapper {
    width: 100%;
    max-width: 800px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 45px 50px;
}

.primary-contact-form .form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.primary-contact-form label {
    font-size: 0.95rem;
    color: #1A1D2B;
    font-weight: 600;
    margin-bottom: 10px;
}

.primary-contact-form .required-asterisk {
    color: #E03E3E;
}

.primary-contact-form input,
.primary-contact-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-family: var(--font-main);
    color: #1A1D2B;
    transition: all 0.3s ease;
}

    /* Specifically target placeholders to make them grey */
    .primary-contact-form input::placeholder,
    .primary-contact-form textarea::placeholder {
        color: #9CA3AF;
        opacity: 1;
    }

    .primary-contact-form input:focus,
    .primary-contact-form textarea:focus {
        outline: none;
        border-color: var(--primary-orange);
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(200, 52, 15, 0.1);
    }

.primary-contact-form textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.btn-submit-primary {
    width: 100%;
    background-color: var(--primary-orange);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 18px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(200, 52, 15, 0.2);
}

    .btn-submit-primary:hover {
        background-color: var(--primary-orange-hover);
        transform: translateY(-2px);
        box-shadow: 0 12px 20px rgba(200, 52, 15, 0.3);
    }

    /* Disabled state for the main submit button */
    .btn-submit-primary:disabled {
        background-color: #D1D5DB; /* Muted grey background */
        color: #9CA3AF; /* Faded text/icon color */
        cursor: not-allowed;
        box-shadow: none;
        transform: none;
    }

/* Interactive Loading Spinner Icon */
.submit-icon {
    transition: transform 0.3s ease;
}

.btn-submit-primary.loading .submit-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .main-contact-section {
        padding: 60px 5%;
    }

    .main-contact-wrapper {
        padding: 30px 20px;
    }

    .main-contact-title {
        font-size: 2rem;
    }
}

/* =========================================
   SIMPLE HEADER (Apply For Fund Page)
========================================= */
.simple-header {
    position: relative; /* Added so the back button can pin to the side */
    background-color: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px 6%; /* Added horizontal padding to align with standard margins */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

    .simple-header .logo img {
        height: 60px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .simple-header .logo:hover img {
        transform: scale(1.05);
    }

/* Back Button Styling */
.back-btn {
    position: absolute;
    left: 6%; /* Matches your standard 6% site padding */
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted); /* Blends perfectly with your dark theme */
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .back-btn:hover {
        color: #ffffff; /* Brightens up on hover */
        transform: translateX(-4px); /* Satisfying slight slide to the left to indicate "going back" */
    }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .simple-header {
        padding: 20px 5%;
    }

        .simple-header .logo img {
            height: 45px;
        }

    .back-btn {
        left: 5%;
        font-size: 0; /* Hides the word "Back" on small screens to save space... */
    }

        .back-btn svg {
            width: 26px; /* ...but makes the arrow slightly bigger to compensate */
            height: 26px;
        }
}

/* =========================================
   HOME PAGE: DYNAMIC CARD TOGGLE
========================================= */
.extra-card {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeIn 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Smooth entry animation when cards are toggled on */
@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.see-more-link {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .see-more-link:hover {
        color: var(--primary-orange);
    }



/* =========================================
   CONTACT/APPLY FORM: SELECT DROPDOWN STYLING
========================================= */
.primary-contact-form select {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-family: var(--font-main);
    color: #1A1D2B; /* Dark text for selected items */
    transition: all 0.3s ease;
    /* Removes the clunky default browser dropdown arrow */
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    /* Adds a clean, custom SVG arrow perfectly positioned on the right */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    cursor: pointer;
}

    /* Glow effect when the user clicks the dropdown */
    .primary-contact-form select:focus {
        outline: none;
        border-color: var(--primary-orange);
        background-color: #ffffff;
        box-shadow: 0 0 0 3px rgba(200, 52, 15, 0.1);
    }

    /* MAGIC TRICK: Makes the default empty option act like a grey placeholder! */
    .primary-contact-form select:invalid {
        color: #9CA3AF;
    }

    /* Ensures the actual dropdown list items stay dark and readable */
    .primary-contact-form select option {
        color: #1A1D2B;
        background: #ffffff;
    }


.feedback-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    padding: 20px;
}

    .feedback-modal-overlay.active {
        display: flex;
    }

.feedback-modal {
    background: #fff;
    color: #1A1D2B;
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.feedback-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    font-weight: 700;
}

    .feedback-icon.success {
        background: #2ECC71;
    }

    .feedback-icon.error {
        background: #C8340F;
    }

.feedback-modal h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feedback-modal p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 25px;
}