@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --bg-gradient-start: #011215;
    /* Black/Dark Cyan */
    --bg-gradient-end: #003333;
    /* Deep Dark Turquoise */
    --primary-accent: #00ced1;
    /* DarkTurquoise */
    --primary-dark: #009999;
    /* Darker Turquoise for gradients */
    --primary-glow: rgba(0, 206, 209, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-main: #f0ffff;
    /* Azure */
    --text-dark: #333333;
    /* For modal/card text */
    --text-muted: #b0e0e6;
    /* PaleTurquoise */
    --purple-section-bg: #f3f4f6;
    /* Light background for sections like Overview */
    --card-bg: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0d0d15;
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background: radial-gradient(circle at 50% 10%, #001f1f 0%, #000000 70%);
    /* Dark Turquoise/Black base */
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
}


.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-20 {
    gap: 20px;
}

.gap-40 {
    gap: 40px;
}

.w-full {
    width: 100%;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    background: #0d0d15;
    /* Fallback */
}

/* Blurred Background Image */
.hero-section::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    /* Extend slightly to hide blur edges */
    background: var(--hero-bg) no-repeat center center/cover;
    filter: blur(5px);
    z-index: 0;
    opacity: 0.6;
    /* Adjust visibility of image */
}

/* Dark Overlay for Text Contrast */
.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85));
    z-index: 1;
}

/* Ensure content is above overlay */
.hero-section>* {
    position: relative;
    z-index: 2;
}



.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: whitesmoke;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--primary-accent);
    margin-bottom: 40px;
    font-weight: 600;
}

.hero-info-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary-accent);
}

.info-text small {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.info-text strong {
    font-size: 1rem;
    color: var(--text-main);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-accent);
    color: #000;
    border: none;
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #000;
    border: 1px solid #ddd;
    /* Added border */
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* --- Section Styling --- */
.section {
    padding: 80px 0;
}

.bg-light {
    background: var(--purple-section-bg);
    /* Keeping the variable name but it's light grey/purple tint */
    color: #333;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

.bg-light .section-title {
    color: #333;
}

/* --- Overview --- */
.bg-dark-overview {
    position: relative;
}

.bg-dark-overview .section-title {
    color: var(--text-main) !important;
}

.bg-dark-overview p {
    color: var(--text-muted);
}

.overview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid;
    border-width: 1px;
    border-radius: 27px;
    border-color: darkcyan;
}

.overview-content {
    flex: 1;
    min-width: 300px;
}

.overview-form {
    width: 400px;
    max-width: 100%;
}

.highlight-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.highlight-icon {
    width: 30px;
    height: 30px;
    background: rgba(0, 206, 209, 0.15);
    color: var(--primary-accent);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 206, 209, 0.3);
}

.highlight-text {
    font-size: 1rem;
    color: var(--text-main);
}

/* --- Form --- */
.register-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.register-form h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.2rem;
    text-align: center;
}

.form-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.form-input:focus {
    border-color: var(--primary-accent);
}

.form-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.form-btn:hover {
    background: var(--primary-dark);
}

/* --- Stats --- */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    padding: 40px 30px;
    background: white;
    border: 3px solid darkcyan;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Softer, larger shadow */
    /* Prepare for gradient border */
    background-origin: border-box;
    background-clip: content-box, border-box;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stats-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 206, 209, 0.15);
    /* Glow on hover */
}

.stat-item {
    text-align: center;
    padding: 0 40px;
    border-right: 1px solid #eee;
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-size: 2rem;
    /* Larger font size */
    font-weight: 625;
    color: transparent;
    background: linear-gradient(135deg, var(--primary-accent), var(--bg-gradient-end));
    /* Gradient text */
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Partners --- */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.partner-logo {
    height: 80px;
    object-fit: contain;
    transition: 0.3s;
    margin: 10px;
    /* added margin for better spacing with larger images */
}

/* --- Syllabus --- */
.syllabus-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.syllabus-item {
    background: white;
    padding: 15px 20px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.syllabus-item:hover {
    transform: translateX(5px);
    transition: 0.2s;
}

.syllabus-title {
    font-weight: 500;
    color: #333;
}

/* --- Pricing --- */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: stretch;
    justify-content: center;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    /* Grid controls width */
    max-width: none;
    text-align: center;
    position: relative;
    border-top: 5px solid var(--primary-accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    transform: scale(1.05);
    /* Make it larger by default */
    border-color: var(--primary-dark);
    box-shadow: 0 20px 50px rgba(0, 206, 209, 0.2);
    z-index: 2;
    /* Ensure it stays on top */
    border-top-width: 8px;
    /* Prominent top border */
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
    /* Further lift on hover */
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 10px;
}

.plan-sub {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.plan-features li {
    margin-bottom: 10px;
    color: #555;
    font-size: 0.9rem;
}

.plan-features li i {
    color: #2ecc71;
    margin-right: 10px;
}

/* --- Reviews --- */
/* --- Reviews Marquee --- */
.marquee-wrapper {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100vw;
    /* Ensure full viewport width */
    max-width: 100%;
}

.marquee-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
}

.marquee-left .marquee-track {
    animation: scroll-left 40s linear infinite;
}

.marquee-right .marquee-track {
    animation: scroll-right 40s linear infinite;
}

/* Pause on hover */
.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-accent);
    position: relative;
    display: flex;
    flex-direction: column;
    /* Fixed width to force wrapping */
    width: 450px;
    height: auto;
    flex-shrink: 0;
    white-space: normal;
    /* Ensure text wraps */
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: rgba(0, 206, 209, 0.1);
    font-family: serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 206, 209, 0.2);
}

.reviewer-name h4 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 2px;
}

.reviewer-name p {
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.review-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
    /* Pushes content to fill height if needed */
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    /* JS to toggle */
    color: #666;
    font-size: 0.9rem;
}

/* --- Footer ---
footer {
    background: #001214;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #003333;
    color: #888;
} */

/* --- Mobile --- */
@media (max-width: 768px) {
    .overview-container {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.2rem;
    }
}