:root {
    /* STRICT BRAND PALETTE */
    /* Deep Navy but slightly richer for digital screens */
    --c-primary: #084983;
    --c-primary-dark: #052c50;

    /* Bright Green - Vibrant and Electric */
    --c-accent: #789720;
    --c-accent-hover: #8ab628;
    --c-accent-glow: rgba(120, 151, 32, 0.4);

    --c-bg-main: #f0f4f8;
    /* Soft blue-grey base */
    --c-bg-glass: rgba(255, 255, 255, 0.7);
    /* Standard Glass */
    --c-bg-glass-heavy: rgba(255, 255, 255, 0.9);
    /* Header Glass */

    --c-text-main: #084983;
    --c-text-muted: #546b82;
    --c-white: #ffffff;
    --c-border: rgba(255, 255, 255, 0.5);

    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius: 16px;
    /* More modern rounded feel */
    --shadow-soft: 0 10px 40px rgba(8, 73, 131, 0.08);
    --shadow-glow: 0 0 20px rgba(120, 151, 32, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--c-bg-main);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(120, 151, 32, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(8, 73, 131, 0.05) 0%, transparent 40%);
    color: var(--c-text-muted);
    font-family: var(--font-body);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--c-text-main);
    font-family: var(--font-head);
    font-weight: 800;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: var(--c-primary);
    transition: 0.3s;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--c-bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius);
}

.glass-strip {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: var(--font-head);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

/* Buttons */
.btn-accent {
    background: linear-gradient(135deg, var(--c-accent), #9bc53d);
    color: var(--c-white);
    box-shadow: 0 4px 15px var(--c-accent-glow);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--c-accent-glow);
    filter: brightness(1.1);
}

.btn-white-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--c-white);
    color: var(--c-white);
    backdrop-filter: blur(4px);
}

.btn-white-outline:hover {
    background: var(--c-white);
    color: var(--c-accent);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--c-accent);
    color: var(--c-accent);
}

.btn-outline:hover {
    background: var(--c-accent);
    color: var(--c-white);
}

.btn-block {
    width: 100%;
    display: block;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    color: var(--c-primary);
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Score Ticker */
.score-ticker-wrap {
    background: var(--c-primary);
    color: #fff;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    height: 40px;
    display: flex;
    align-items: center;
    font-family: var(--font-head);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.score-ticker {
    display: flex;
    animation: ticker-scroll 40s linear infinite;
}

.ticker-item {
    padding: 0 30px;
    font-weight: 600;
    opacity: 0.9;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Header */
#main-header {
    height: 100px;
    /* Reduced slightly */
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 1000;
    background: var(--c-bg-glass-heavy);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img {
    height: 70px;
    width: auto;
}

#main-nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

#main-nav a {
    color: var(--c-primary);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
}

#main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--c-accent);
    transition: width 0.3s;
}

#main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--c-primary);
    cursor: pointer;
}

/* Hero Section */
#hero {
    padding-top: 200px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.7)), url('hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Dynamic Background Elements - REMOVED or Simplified */
.hero-bg-accent {
    display: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    /* Gradient Text */
    background: linear-gradient(135deg, var(--c-primary), #0a5fa8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--c-text-muted);
    font-weight: 500;
    max-width: 90%;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--c-primary);
}

.hero-benefits i {
    color: var(--c-accent);
    background: rgba(120, 151, 32, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
}

/* Form Card */
.hero-form-wrapper {
    padding: 40px;
    transition: transform 0.3s;
}

.hero-form-wrapper:hover {
    transform: translateY(-5px);
}

.hero-form-wrapper h3 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--c-primary);
    font-size: 1.6rem;
}

.hero-form-wrapper p {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 25px;
    color: var(--c-text-muted);
}

.form-group {
    margin-bottom: 18px;
}

input,
select {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #d1d9e6;
    border-radius: 8px;
    color: var(--c-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(120, 151, 32, 0.2);
    background: #fff;
}


.form-row-split {
    display: flex;
    gap: 15px;
}

.form-row-split .form-group {
    flex: 1;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 5px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--c-primary);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.4);
    padding: 8px;
    border-radius: 6px;
    transition: 0.2s;
}

.checkbox-item:hover {
    background: rgba(255, 255, 255, 0.8);
}

.checkbox-item input {
    width: auto;
    margin: 0;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--c-primary);
}

.form-sub-cta {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
}

.form-sub-cta a {
    color: var(--c-text-muted);
}

.form-sub-cta i {
    color: #25D366;
    /* Whatsapp Brand Color */
    font-size: 1.1rem;
    margin-right: 5px;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, var(--c-accent), #9bc53d);
    color: white;
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(120, 151, 32, 0.3);
    position: relative;
    z-index: 5;
}

.urgency-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.urgency-text {
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.urgency-badges {
    display: flex;
    gap: 10px;
}

.badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 600;
}

.countdown {
    background: #fff;
    color: var(--c-accent);
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Success Section */
#success {
    padding: 100px 0;
    overflow: hidden;
    /* Hide scrollbars for ticker */
}

/* Horizontal Scroll */
.reviews-window {
    width: 100%;
    overflow: hidden;
    padding: 30px 0 60px 0;
    /* Space for shadows */
    position: relative;
}

.reviews-track {
    display: flex;
    width: max-content;
    gap: 40px;
    animation: reviews-scroll 50s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes reviews-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    flex: 0 0 380px;
    min-width: 380px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(8, 73, 131, 0.12);
}

.card-header {
    margin-bottom: 20px;
}

.student-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.score-badge {
    display: inline-flex;
    border-radius: 6px;
    overflow: hidden;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid #eee;
}

.badge-label {
    background: #f1f3f5;
    color: #555;
    padding: 4px 8px;
}

.badge-score {
    background: var(--c-accent);
    color: #fff;
    padding: 4px 10px;
}

.card-body p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--c-text-muted);
}

.highlight-text {
    color: var(--c-text-main);
    font-weight: 600;
    background: rgba(120, 151, 32, 0.1);
    padding: 0 4px;
}

.card-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--c-accent);
    font-weight: 700;
    margin-bottom: 4px;
}

.uni-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--c-primary);
}

.score-highlights-strip {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 30px;
    border-radius: 100px;
    max-width: 900px;
    margin: 0 auto;
}

.highlight {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--c-primary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight small {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--c-text-muted);
    line-height: 1.2;
}

/* Why Vega Grid */
#why-vega {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px;
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--c-accent);
}

.feature-icon {
    font-size: 3rem;
    color: var(--c-accent);
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--c-accent), #a3cf34);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Courses */
#courses {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: 0.3s;
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--c-accent);
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
}

.tag-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-accent);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(120, 151, 32, 0.4);
}

.pricing-card h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.pricing-card .subtitle {
    text-align: center;
    color: var(--c-text-muted);
    margin-bottom: 30px;
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    font-size: 1rem;
}

.features-list i {
    color: var(--c-accent);
}

.card-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Curriculum & FAQ */
#curriculum,
#faq {
    padding: 80px 0;
}

.curriculum-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.col-module {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    border-left: 5px solid var(--c-accent);
}

.col-module h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-bullets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    text-align: center;
}

.feature-bullets span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--c-primary);
}

.feature-bullets i {
    color: var(--c-accent);
}

/* Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.acc-item {
    margin-bottom: 15px;
    overflow: hidden;
}

.acc-header {
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--c-primary);
}

.acc-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.3);
}

.acc-item.active .acc-body {
    padding-bottom: 20px;
    max-height: 200px;
}

.acc-item.active .icon {
    transform: rotate(45deg);
}

.icon {
    transition: 0.3s;
    font-size: 1.2rem;
    color: var(--c-accent);
}

.faq-footer {
    text-align: center;
    margin-top: 40px;
}

.faq-btns {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Final CTA */
#final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--c-primary), #052c50);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative Circle */
#final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(120, 151, 32, 0.1) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
footer {
    background: #03213a;
    color: white;
    padding: 60px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.f-brand h3 {
    color: white;
    margin-bottom: 10px;
}

.f-brand p {
    color: #8da2b5;
}

.socials {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.socials a {
    color: white;
    font-size: 1.2rem;
    transition: 0.3s;
}

.socials a:hover {
    color: var(--c-accent);
}

.f-links {
    display: flex;
    gap: 20px;
}

.f-links a {
    color: #8da2b5;
    font-size: 0.9rem;
}

.f-links a:hover {
    color: white;
}

/* Floating Widgets */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.float-label {
    position: absolute;
    right: 70px;
    background: white;
    color: #333;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
    box-shadow: var(--shadow-sm);
}

.whatsapp-float:hover .float-label {
    opacity: 1;
    right: 80px;
}

.chatbot-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background: var(--c-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(8, 73, 131, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: 0.3s;
}

.chatbot-float:hover {
    transform: scale(1.1);
}

.chatbot-float:hover .float-label {
    opacity: 1;
    right: 70px;
}

/* Chatbot Modal */
.ai-modal {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 90px;
    width: 350px;
    height: 450px;
    background: white;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    overflow: hidden;
    animation: fadeUp 0.3s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-header {
    background: var(--c-primary);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-title {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.close-ai {
    cursor: pointer;
    font-size: 1.5rem;
}

.ai-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-msg {
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 85%;
    font-size: 0.95rem;
    line-height: 1.4;
}

.ai-msg.bot {
    background: #e9ecef;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.ai-msg.user {
    background: var(--c-primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.ai-input-area {
    padding: 15px;
    border-top: 1px solid #eee;
    background: white;
    display: flex;
    gap: 10px;
}

.ai-input-area input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.9rem;
}

.btn-send {
    background: var(--c-accent);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.btn-send:hover {
    transform: scale(1.05);
}



/* Media Queries */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    #main-nav {
        display: none;
        /* Toggle handled in JS */
    }

    .header-cta {
        display: none;
        /* Hide button on mobile */
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 2rem auto;
    }

    .hero-benefits {
        display: inline-block;
        text-align: left;
    }

    .score-ticker-wrap {
        font-size: 0.8rem;
    }

    .score-ticker {
        animation-duration: 25s;
    }


}