/* CSS Variables for Color Theme */
:root {
    --primary-gold: #f4b11a;
    --primary-blue: #0a2a66;
    --white: #ffffff;
    --dark-bg: #ffffff;
    /* Changed from #0a0a0a to #ffffff */
    --card-bg: #f8f9fa;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-muted: #adb5bd;
    --card-border: rgba(244, 177, 26, 0.2);
    --gold-glow: rgba(244, 177, 26, 0.1);
    --success: #28a745;
    --light-bg: #f8f9fa;
}

/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    background: var(--white);
    color: var(--text-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}



/* Navigation */
.navbar {
    background: #00023B;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar.scrolled {
    padding: 10px 0;
    /* background: rgba(255, 255, 255, 0.98); */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.brand-text {
    color: var(--primary-blue);
}

.brand-highlight {
    color: var(--primary-gold);
    font-style: italic;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 8px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-gold) !important;
}

.nav-cta-btn {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e6a517 100%);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600 !important;
    margin-left: 15px;
    box-shadow: 0 4px 15px var(--gold-glow);
    transition: all 0.3s;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 177, 26, 0.3);
    color: var(--white) !important;
}

.navbar-toggler {
    border: 1px solid var(--card-border);
    color: var(--primary-gold);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
}


.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #e9a933;
    color: white;
}



.badge-custom {
    background-color: rgba(255, 255, 255, 0.4);
    color: #003366;
    padding: 10px 20px;
    border-radius: 15px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 25px;
}

.banner-heading {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.banner-heading span {
    color: #003366;
    /* The dark blue for 'GED Exam' */
}

.custom {
    margin-bottom: -10% !important;
}

.hero-text-list {
    font-size: 1.47rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
}

.marquee-box {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-content span {
    display: inline-block;
    margin-right: 50px;
    margin-right: 50px;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


.stats-row {
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.stats-item {
    display: inline-flex;
    color: #003366;
    align-items: center;
    margin-right: 20px;
}

/* Checkmark icon style */
.stats-item::before {
    content: '✔';
    background: #fff;
    color: #e9a933;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    font-size: 12px;
}

.btn-consultation {
    background-color: #003366;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-stories {
    background-color: transparent;
    color: #003366;
    border: 1px solid #003366;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-consultation:hover {
    color: #003366;
    border: 1px solid #003366;
}

.btn-stories:hover {
    background-color: #003366;
    color: white;
}

.girl-img {
    max-width: 100%;
    height: auto;
    /* display: block; */
    margin-top: 35%;
    /* image neeche lane ke liye */
}


/* Custom Styles for GED Form Section */
.ged-registration-section {
    position: relative;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

/* Background Image styling */
.section-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Overlay for the blue tint */
.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 46, 92, 0.88);
    z-index: -1;
}

/* Typography */
.main-heading {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.stat-number {
    color: white;
    font-family: 'Times New Roman', serif;
    font-size: 3.8rem;
    font-weight: 300;
    /* Light weight like the image */
    margin-bottom: 0;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: -5px;
}

/* Form Card Styling */
.yellow-form-card {
    background-color: #f7b135;
    padding: 45px;
    border-radius: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.input-group-custom {
    margin-bottom: 20px;
}

.field-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #222;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    border: none;
    padding: 12px 15px;
    border-radius: 6px;
    background: white;
}

.textarea-input {
    height: 110px;
    resize: none;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.checkbox-label {
    font-weight: 600;
    color: #222;
    cursor: pointer;
}

.submit-btn {
    background-color: #0a2a66;
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
}

/* Container styling */
.struggle-section {
    background-color: #f6b033;
    /* Main Yellow Background */
    padding: 80px 0;
    font-family: 'Roboto', sans-serif;
}

/* Badge Styling */
.badge-pill {
    background-color: rgba(255, 255, 255, 0.3);
    color: #001f3f;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

/* Headings */
.main-title {
    color: #000;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sub-text {
    color: #222;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Card Styling */
.struggle-card {
    background-color: #f8f9fa;
    /* Light white/grey card background */
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    transition: transform 0.3s ease;
    text-align: center;
}

.struggle-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    margin-bottom: 25px;
}

.icon-box img {
    width: 60px;
    /* Adjust based on your icons */
    height: auto;
}

.card-heading {
    color: #001f3f;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-paragraph {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}

/* Section */
.gedscore-section {
    background: #f4f7fb;
    padding: 60px 0;
}

/* Header */
.gedscore-header {
    margin-bottom: 40px;
}

.gedscore-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.gedscore-description {
    color: #333;
    text-align: center;
}

/* Card */
.gedscore-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.gedscore-card:hover {
    transform: translateY(-6px);
}

/* Card Header */
.gedscore-card-header {
    padding: 15px 20px;
    color: #fff;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Background Colors */
.gedscore-lang-bg { background: #e9a717; }
.gedscore-social-bg { background: #e9a717; }
.gedscore-science-bg { background: #e9a717; }
.gedscore-math-bg { background: #e9a717; }

.gedscore-icon {
    font-size: 20px;
}

/* Card Body */
.gedscore-card-body {
    text-align: center;
    padding: 30px 20px;
}

.gedscore-circle {
    width: 120px;
    height: 120px;
    background: #e9ecef;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #6c757d;
}

.gedscore-highlight {
    background: #f1f1f1;
}

.gedscore-big {
    font-size: 36px;
    font-weight: 700;
    color: #000;
}

.gedscore-status {
    color: #6c757d;
    margin-bottom: 15px;
}

.gedscore-success {
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Button */
.gedscore-btn {
    border: 2px solid #e9a717;
    background: transparent;
    padding: 8px 22px;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
}

.gedscore-btn:hover {
    background: #e9a717;
    color: #fff;
}


/* Section Container */
.how-it-works-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

/* Header Styles */
.process-badge {
    background-color: #e9ecef;
    color: #001f3f;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 15px;
}

.process-main-title {
    color: #000;
    font-size: 3rem;
    font-weight: 700;
}

.process-sub-text {
    color: #000;
    font-size: 1.1rem;
}



.process-main-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

/* Right Side Step Cards */
.step-card {
    background-color: #f7b135;
    /* Orange/Yellow background */
    padding: 30px 20px;
    border-radius: 25px;
    height: 100%;
    text-align: center;
    position: relative;
}

.step-number {
    background-color: white;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-title {
    color: #001f3f;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.time-text {
    font-size: 20px;
    font-weight: 400;
}

.step-desc {
    color: #333;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* List Items with Checkmarks */
.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.step-list li {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.step-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 900;
}

/* Section Styles */
.reviews-section {
    padding: 100px 0;
    background-color: #f7b135;
    font-family: 'Roboto', sans-serif;
}

.reviews-badge {
    background-color: #fff9eb;
    color: #f7b135;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.reviews-main-title {
    color: #001f3f;
    font-size: 3.2rem;
    font-weight: 900;
}


.services-section {
    background: #e6a52f;
    padding: 80px 0;
}

.services-header {
    margin-bottom: 50px;
}

.service-badge {
    background: black;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.services-title {
    font-size: 36px;
    font-weight: 700;
    margin-top: 15px;
}

.services-subtitle {
    font-size: 16px;
}

.service-card {
    background: #f3f3f3;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-top-tag {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.service-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1d3c78;
}

.service-title {
    color: #1d3c78;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-highlight {
    font-weight: 600;
    font-size: 14px;
}

.service-description {
    font-size: 14px;
    margin: 15px 0;
}

.service-stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.service-stats strong {
    display: block;
    font-size: 16px;
    color: #1d3c78;
}

.service-stats span {
    font-size: 14px;
    font-weight: 600;
    color: #1d3c78;
}

.service-list {
    text-align: left;
    padding-left: 15%;
    font-size: 14px;
    margin-bottom: 20px;
}



.service-button {
    display: inline-block;
    padding: 10px 24px;
    background-color: #f7b135;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
    margin-top: 10px;
}

.service-button:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-3px);
}



/* Card Styling */
.review-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
}

.star-rating {
    color: #f7b135;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.review-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
}

/* Reviewer Info (Bottom of Card) */
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1rem;
}

/* Individual Avatar Colors */
.avatar-yellow {
    background-color: #f7b135;
}

.avatar-gold {
    background-color: #f7b135;
}

.avatar-orange {
    background-color: #f7b135;
}

.reviewer-name {
    color: #001f3f;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.reviewer-sub {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}


/* FAQ Section Main Styling */
.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
    /* Background Pure White as requested */
    font-family: 'Roboto', sans-serif;
}

.faq-badge {
    background-color: #fff9eb;
    color: #f7b135;
    padding: 6px 22px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 15px;
}

.faq-main-title {
    color: #001f3f;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 50px;
}

/* Accordion Item Styling */
.faq-item {
    border: 1px solid #f0f0f0 !important;
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-button {
    font-size: 1.2rem;
    font-weight: 700;
    color: #001f3f !important;
    padding: 25px 30px;
    background-color: #f0ad19 !important;
}

/* When the question is open, change text color to orange/yellow */
.faq-button:not(.collapsed) {
    color: #fff !important;
    box-shadow: none;
}

/* Arrow Icon Color */
.faq-button::after {
    filter: sepia(100%) saturate(1000%) hue-rotate(0deg);
    /* Makes arrow yellow */
}

.faq-answer {
    padding: 0 30px 25px 30px;
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
}




/* Footer */
footer {
    background-color: #00023B;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 70px 0 30px;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.brand-text {
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
    font-size: 0.9rem;
    max-width: 300px;
}

/* Footer Contact Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    /*gap: 15px;*/
}

.contact-item {
    margin-bottom: 15px;
}

.contact-label {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-value {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    transition: color 0.3s;
}

.contact-value:hover {
    color: var(--primary-gold);
}

/* For the first version (with nested divs inside links) */
.footer-links li a div:first-child {
    font-weight: 600;
    color: var(--white);
}

.footer-links li a div:last-child {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-top: 2px;
}

footer h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 900px;
    margin: 15px auto 0;
    line-height: 1.6;
}

.social-section {
    margin-top: 20px;
}

.social-heading {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: #04367d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 16px;
}

.social-links a:hover {
    background: #f4b11a;
    transform: translateY(-3px);
}

/* ================================================= */
/* 1600px and Below (Large Desktop Optimization) */
/* ================================================= */
@media (max-width: 1600px) {

    .banner-heading {
        font-size: 3.2rem;
    }

    .main-heading,
    .faq-main-title,
    .reviews-main-title,
    .process-main-title,
    .main-title {
        font-size: 3rem;
    }

}


/* ================================================= */
/* 1400px and Below (Standard Desktop) */
/* ================================================= */
@media (max-width: 1400px) {

    .banner-heading {
        font-size: 3.4rem;
    }

    .stat-number {
        font-size: 3.2rem;
    }

}


/* ================================================= */
/* 1200px and Below (Small Desktop / Large Laptop) */
/* ================================================= */
@media (max-width: 1200px) {

    .banner-heading {
        font-size: 2.6rem;
    }

    .main-heading,
    .faq-main-title,
    .reviews-main-title,
    .process-main-title,
    .main-title {
        font-size: 2.6rem;
    }

    .stats-grid {
        gap: 25px;
    }

}


/* ================================================= */
/* 992px and Below (Tablet Landscape) */
/* ================================================= */
@media (max-width: 992px) {

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .yellow-form-card {
        margin-top: 40px;
    }

    .girl-img {
        margin-top: 20%;
    }

    .banner-heading {
        font-size: 2.3rem;
    }

}


/* ================================================= */
/* 768px and Below (Tablet Portrait) */
/* ================================================= */
@media (max-width: 768px) {

    body {
        text-align: center;
    }

    .hero-section {
        padding: 80px 0;
        min-height: auto;
    }

    .banner-heading {
        font-size: 2rem;
    }

    .hero-text-list {
        font-size: 1rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 10px;
    }

    /* .girl-img {
        margin-top: 40px;
    } */

    .yellow-form-card {
        padding: 30px;
        border-radius: 20px;
    }

    .struggle-card,
    .step-card,
    .review-card {
        margin-bottom: 25px;
    }

}


/* ================================================= */
/* 576px and Below (Large Mobile) */
/* ================================================= */
@media (max-width: 576px) {

    .banner-heading {
        font-size: 1.7rem;
        line-height: 1.3;
    }

    .btn-consultation,
    .btn-stories {
        width: 100%;
        margin-bottom: 10px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .main-heading,
    .faq-main-title,
    .reviews-main-title,
    .process-main-title,
    .main-title {
        font-size: 1.9rem;
    }

    footer {
        text-align: center;
    }

    .contact-info {
        align-items: center;
    }
    
    .gedscore-card{
        margin-bottom: 20px;
    }

}


/* ================================================= */
/* 480px and Below (Small Mobile) */
/* ================================================= */
@media (max-width: 480px) {

    .banner-heading {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .yellow-form-card {
        padding: 20px;
    }

}


/* ================================================= */
/* 375px and Below (Extra Small Devices - iPhone Size) */
/* ================================================= */
@media (max-width: 375px) {

    .banner-heading {
        font-size: 28px;
    }
        .hero-text-list {
           font-size: 18px;
        }

    .main-heading {
                font-size: 22px;
        margin-bottom: 20px;
    }

    .stat-number {
        font-size: 1.9rem;
    }

    .btn-consultation,
    .btn-stories {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .card-heading {
    font-size: 22px;
    }
    
    .service-highlight{
        font-size: 16px;
    }

}