@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root { --primary-gradient: linear-gradient(90deg, #FD1D1D, #FF4FCF); }
* { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'Nunito', sans-serif; }

/* Restore conservative heading sizes so headings don't appear oversized */
h1 { font-size: 2rem; font-weight: 800; }
h2 { font-size: 1.6rem; font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
h6 { font-size: 0.9rem; font-weight: 600; }

/* Specific large heading style requested for select headings */
.large-heading {
    font-size: 2.2rem !important;
    font-weight: 900 !important;
}

.no-nunito {
    font-family: 'Segoe UI', sans-serif !important;
}

.wrapper { width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }

/* Header */
.navbar { background: #fff; padding: 15px 0; border-bottom: 2px solid #eee; }
.logo-group { display: flex; align-items: center; gap: 15px; }
.logo-img { height: 40px; }
.divider { width: 1px; height: 35px; background: #ddd; }
.nav-right { display: flex; align-items: center; gap: 20px; white-space: nowrap; }
.phone-box { padding: 10px 18px; background: #f0f0f0; border-radius: 6px; text-decoration: none; color: #333; font-weight: bold; }

/* Hero */
.hero { height: 80vh; background: linear-gradient(90deg, rgba(0,0,0,0.85), rgba(0,0,0,0.4)), url('Images/banner-girl.jpg'); background-size: cover; background-position: 25% center; display: flex; align-items: center; }
.hero-text { width: 50%; color: white; }
.hero-text h1 { font-size: 2.8rem; margin-bottom: 20px; }
.ranking-img { width: 60%; filter: brightness(0) invert(1); margin-top: 30px; }

/* Form */
.form-box, .modal-box { background: #fff; padding: 40px; border-radius: 12px; width: 380px; box-shadow: 0 15px 35px rgba(0,0,0,0.2); }
input, select { width: 100%; padding: 15px; margin-bottom: 18px; border: 1px solid #ddd; border-radius: 6px; }
.phone-row { display: flex; gap: 10px; margin-bottom: 10px; }
.prefix { padding: 15px 12px; background: #f9f9f9; border: 1px solid #ddd; border-radius: 6px; font-weight: bold; }
.cta-btn { background: var(--primary-gradient); color: #fff; border: none; padding: 16px; cursor: pointer; font-weight: bold; border-radius: 6px; width: 100%; }
.disclaimer { font-size: 0.8rem; color: #666; margin-bottom: 20px; }

/* This adds space above the very first input box, creating the gap */
.form-box input:first-of-type, 
.modal-box input:first-of-type {
    margin-top: 15px; /* Adjust this value to set the exact gap you want */
}

/* Modal */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 1000;}
.modal-box { margin: 80px auto; position: relative; }
.close-btn { position: absolute; top: 15px; right: 20px; cursor: pointer; font-size: 28px; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .wrapper { width: 95%; flex-direction: column; text-align: center; }
    .navbar .wrapper { flex-direction: column; gap: 15px; }
    .hero { height: auto; padding: 40px 0; }
    .hero-content { flex-direction: column; gap: 30px; }
    .hero-text { width: 100%; }
    .hero-text h1 { font-size: 1.8rem; }
    .form-box { width: 100%; }
    .ranking-img { width: 90%; }
}
















.trust-section { 
    padding: 60px 20px; 
    background: #ffffff; 
    border-bottom: 1px solid #e2e8f0; 
}

.trust-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
    gap: 30px; 
    max-width: 1000px; 
    margin: 0 auto; 
}

.trust-card { 
    text-align: center; 
    padding: 20px;
    /* Removed filters, keeping natural image colors for clarity */
}

.trust-card img { 
    height: 40px; 
    width: auto; 
    margin-bottom: 15px;
    object-fit: contain; /* Prevents distortion */
}

.trust-card strong { 
    display: block; 
    font-size: 0.9rem; 
    color: #1a1a1a; 
    font-weight: 700; 
    margin-bottom: 4px;
}

.trust-card p { 
    font-size: 0.75rem; 
    color: #64748b; 
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 600px) {
    .trust-section {
        padding: 40px 15px; /* Less padding for mobile */
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr); /* Force 2 items per row on mobile */
        gap: 20px;
    }

    .trust-card {
        padding: 10px; /* Shrink card padding */
    }

    .trust-card img {
        height: 30px; /* Slightly smaller logos for mobile */
    }
}























.programs-section { padding: 40px 20px; max-width: 1300px; margin: auto; background-color: #f4f7f6; border-radius: 20px; }
.section-title { text-align: center; margin-bottom: 40px; }
.category-title { border-left: 4px solid #e74c3c; padding-left: 10px; margin: 30px 0 20px; }
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }

.program-card { background: #fff; border-radius: 12px; padding: 20px; border-top: 5px solid #e74c3c; box-shadow: 0 10px 20px rgba(0,0,0,0.05); display: flex; flex-direction: column; transition: 0.3s; }
.card-img { width: 100%; height: 150px; object-fit: cover; border-radius: 8px; margin-bottom: 15px; background: #ddd; }
.price-box { background: #f8f9fa; padding: 15px; border-radius: 8px; margin: 15px 0; font-size: 0.9rem; }
.features { list-style: none; padding: 0; margin-top: 10px; color: #27ae60; font-size: 0.8rem; font-weight: 600; }
.highlight { color: #e74c3c; font-weight: bold; }
.enroll-btn { margin-top: auto; padding: 12px; background: #000; color: #fff; border: none; border-radius: 6px; cursor: pointer; }

/* Popup */
.popup-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 999999; justify-content: center; align-items: center; }
.popup-content { background: #fff; padding: 30px; border-radius: 12px; width: 300px; position: relative; }
.close-btn { position: absolute; top: 10px; right: 15px; cursor: pointer; font-size: 1.5rem; }
.popup-content input { width: 100%; padding: 10px; margin: 8px 0; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; }




























.why-choose-section { 
    padding: 60px 20px; 
    max-width: 1300px; 
    margin: auto; 
    background-color: #ffffff; /* White background as requested */
}

.benefits-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 30px; 
    margin-top: 40px; 
}

.benefit-card { 
    padding: 30px; 
    border: 1px solid #eee; 
    border-radius: 12px; 
    text-align: center; 
    transition: 0.3s; 
    background: #fff;
}

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

.benefit-card .icon { 
    font-size: 3rem; 
    margin-bottom: 20px; 
    display: block; 
}

.benefit-card h3 { margin-bottom: 15px; color: #333; }
.benefit-card p { color: #666; font-size: 0.95rem; line-height: 1.6; }





























.impact-section { 
    padding: 60px 20px; 
    background: #000; 
    color: #fff; 
    text-align: center; 
}

.impact-title { 
    font-size: 2rem; 
    margin-bottom: 40px; 
    color: #fff; 
    letter-spacing: -1px; 
}

.impact-wrapper { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 80px; 
    max-width: 800px; 
    margin: auto; 
}

.impact-number { 
    font-size: 5rem; 
    font-weight: 900; 
    color: #22c55e; 
    margin: 0; 
}

.impact-label { 
    font-size: 1.1rem; 
    color: #94a3b8; 
    margin-top: 10px; 
}

.impact-label span { 
    font-size: 0.8rem; 
    color: #475569; 
}

.impact-divider { 
    width: 1px; 
    height: 80px; 
    background: #334155; 
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .impact-wrapper { 
        flex-direction: column; /* Stack items vertically */
        gap: 40px; 
    }
    .impact-divider { 
        display: none; /* Hide the vertical line on mobile */
    }
    .impact-number { 
        font-size: 4rem; /* Slightly smaller for mobile screens */
    }
    .impact-title { 
        font-size: 1.5rem; 
    }
}




























/* Compact Section */
.spec-section { padding: 30px 20px; font-family: 'Segoe UI', sans-serif; background: #ffffff; }
.spec-container { max-width: 1200px; margin: 0 auto; }

/* Increased Heading Size */
.spec-heading { 
    text-align: center; 
    margin-bottom: 25px; 
    color: #141414; 
    font-size: 2.2rem; /* Larger, bolder heading */
    font-weight: 800;
}

/* Compact Tabs */
.tab-nav { display: flex; justify-content: center; gap: 8px; margin-bottom: 25px; }
.tab-btn { 
    padding: 8px 20px; border: 1px solid #FD2338; background: #fff; 
    cursor: pointer; border-radius: 4px; font-size: 0.9rem; font-weight: 600; color: #FD2338;
}
.tab-btn.active { 
    background: linear-gradient(90deg, #FD2338, #FF43C4); 
    color: #fff; 
    border: none;
}

/* Compact Rows */
.spec-row { 
    display: flex; align-items: center; justify-content: space-between; 
    padding: 10px 0; border-bottom: 1px solid #f0f0f0; 
}
.spec-row span { font-size: 0.95rem; color: #333; font-weight: 500; }

/* Themed CTA with Gradient */
.spec-cta { 
    padding: 7px 16px; 
    background: linear-gradient(90deg, #FD2338, #FF43C4); /* Official Gradient */
    color: #fff; 
    border: none; 
    border-radius: 4px; 
    cursor: pointer; 
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(253, 35, 56, 0.2);
}
.spec-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }

@media (max-width: 600px) {
    .spec-row { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px 0; }
    .spec-cta { width: 100%; padding: 10px; }
}
/* Add this to your CSS */
.spec-grid { 
    display: none; 
}

.spec-grid.active { 
    display: block; 
}
























.acceptance-section { padding: 60px 20px; background: #ffffff; color: #1e293b; font-family: sans-serif; }
.acceptance-container { 
    max-width: 1200px; margin: 0 auto; 
    display: flex; align-items: center; gap: 40px; 
}

.content-side { flex: 1; }
.acceptance-title { font-size: 2.2rem; margin-bottom: 20px; color: #002855; font-weight: 800; }
.acceptance-text { line-height: 1.6; margin-bottom: 15px; font-size: 1.05rem; }

.ugc-notice { 
    background: #f8fafc; padding: 15px; border-left: 4px solid #FD2338; 
    border-radius: 4px; box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex; align-items: center; gap: 10px; margin-top: 20px;
}
.notice-icon { background: linear-gradient(to bottom, #FD2338, #FF43C4); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: bold; }

.image-side { flex: 1; text-align: center; }
.equivalence-img { 
    width: 100%; max-width: 400px; border-radius: 8px; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); border: 1px solid #e2e8f0;
}
.img-caption { font-size: 0.8rem; color: #64748b; margin-top: 10px; }

/* Responsive */
@media (max-width: 768px) {
    .acceptance-container { flex-direction: column; text-align: center; }
    .ugc-notice { text-align: left; }
}

























.opportunity-section { 
    padding: 80px 20px; 
    background: linear-gradient(135deg, #002855 0%, #1e3a8a 100%); 
    color: #fff; 
    font-family: sans-serif;
}
.opportunity-container { 
    max-width: 1200px; margin: 0 auto; 
    display: grid; grid-template-columns: 1fr 400px; gap: 50px; align-items: center; 
}

.opp-title { font-size: 2.8rem; font-weight: 900; margin-bottom: 20px; line-height: 1.1; }
.opp-sub { font-size: 1.2rem; color: #e2e8f0; margin-bottom: 30px; }

/* Benefits with Gradient Borders */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.benefit-item { 
    background: rgba(255,255,255,0.05); padding: 15px; border-radius: 8px; 
    border-left: 4px solid #FD2338; /* Base color fallback */
    border-image: linear-gradient(to bottom, #FD2338, #FF43C4) 1; /* Shoolini Gradient */
    font-size: 0.9rem; 
}

/* Glassmorphism Form */
.form-box { 
    background: #fff; padding: 30px; border-radius: 16px; color: #333;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.form-box input, .form-box select { 
    width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 8px; 
}

/* This adds space above the very first input box, creating the gap */
.form-box input:first-of-type, 
.modal-box input:first-of-type {
    margin-top: 15px; /* Adjust this value to set the exact gap you want */
}

/* Gradient CTA Button */
.cta-btn { 
    width: 100%; padding: 14px; 
    background: linear-gradient(90deg, #FD2338, #FF43C4); /* Official Shoolini Gradient */
    color: #fff; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; 
    transition: 0.3s;
}
.cta-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }

@media (max-width: 900px) {
    .opportunity-container { grid-template-columns: 1fr; }
}



























.partners-section { 
    padding: 60px 20px; 
    background: #ffffff; 
    text-align: center;
}
.partners-heading { 
    font-size: 1.8rem; 
    color: #002855; 
    margin-bottom: 40px; 
    font-weight: 700;
}
.partners-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 30px; 
    max-width: 1200px; 
    margin: 0 auto;
}
.partner-logo { 
    width: 140px; 
    height: 70px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    background: #f8fafc; /* Subtle light grey box */
    border-radius: 8px;
    padding: 10px;
    transition: 0.4s ease;
}
.partner-logo img { 
    max-width: 100%; 
    max-height: 100%; 
    filter: grayscale(100%) opacity(0.6);
    transition: 0.4s ease;
}
.partner-logo:hover { 
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.partner-logo:hover img { 
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}



























.testimonials-section { 
    padding: 80px 20px; 
    background: #ffffff; 
}
.section-title { 
    text-align: center; 
    color: #002855; 
    margin-bottom: 50px; 
    font-size: 2rem; 
}

.testimonial-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.t-card { 
    background: #f8fafc; 
    padding: 30px; 
    border-radius: 12px; 
    text-align: center;
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(90deg, #FD2338, #FF43C4) 1;
    transition: transform 0.3s ease;
}
.t-card:hover { transform: translateY(-10px); }

.t-img { 
    width: 80px; 
    height: 80px; 
    border-radius: 50%; 
    margin-bottom: 20px; 
    object-fit: cover; 
    border: 3px solid #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.t-text { font-style: italic; color: #475569; margin-bottom: 20px; line-height: 1.6; }
.t-name { color: #002855; margin: 0; }


















.site-footer { 
    background: #0a0a0a; /* Rich, deep charcoal */
    color: #a1a1aa; 
    padding: 80px 20px; 
    text-align: center;
    border-top: 1px solid #27272a;
}
.footer-container { max-width: 800px; margin: 0 auto; }

.footer-brand { 
    color: #ffffff; 
    font-size: 2rem; 
    margin-bottom: 30px; 
    font-weight: 800; 
    letter-spacing: -1px;
}

.footer-disclaimer, .footer-affiliate { 
    font-size: 0.85rem; 
    line-height: 1.7; 
    margin-bottom: 25px; 
    color: #71717a; 
}

.footer-contact { 
    margin: 40px 0; 
    font-weight: 600; 
    color: #ffffff; 
    font-size: 1.1rem;
}
.footer-contact a { color: #FD2338; text-decoration: none; }

.footer-links { margin-bottom: 30px; }
.footer-links a { 
    color: #e4e4e7; 
    text-decoration: none; 
    margin: 0 15px; 
    font-weight: 500; 
}
.footer-links a:hover { color: #FD2338; }

.footer-copyright { 
    margin-top: 40px; 
    font-size: 0.75rem; 
    color: #3f3f46; 
    border-top: 1px solid #27272a; 
    padding-top: 20px;
}