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

:root {
    /* Color Palette */
    --primary-gold: #D4AF37;
    --gold-dark: #996515;
    --gold-light: #F9F4E8;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    --black: #000000;
    --white: #FFFFFF;
    --text-main: #000000;
    --text-muted: #475569;
    --bg-light: #F8FAFC;

    /* Layout */
    --container-width: 1200px;
    --section-padding: 100px 0;

    /* Transitions & Shadows */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--black);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Extensions */
.section-title {
    text-align: center;
    font-size: clamp(2.25rem, 5vw, 3rem);
    margin-bottom: 45px;
    font-weight: 800;
    letter-spacing: -0.025em;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2563EB 0%, var(--primary-gold) 100%);
    border-radius: 50px;
}

.section-subtitle {
    display: block;
    width: max-content;
    margin: 0 auto 16px;
    background: rgba(37, 99, 235, 0.05);
    color: #2563EB;
    padding: 6px 20px;
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 8px;
    /* Square/Rectangular look as requested */
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    gap: 10px;
}

.btn-primary,
.btn-outline {
    background: #2563EB;
    color: var(--white);
    border: none;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--black);
    border: none;
}

.btn-gold-outline {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    background: transparent;
}

.btn-primary:hover,
.btn-outline:hover,
.btn-gold:hover,
.btn-gold-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #e5c04d 0%, #a37608 100%);
    color: var(--black) !important;
}

.btn-gold-outline:hover {
    background: var(--primary-gold);
    color: var(--black);
}

.course-card .btn {
    margin-top: auto;
    /* Pushes button to the bottom */
}

.course-card .btn-outline:hover {
    background: #1d4ed8;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-full {
    width: 100%;
}

/* Top Notification Bar */
.top-bar {
    background: #2563EB;
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 0.875rem;
    font-weight: 500;
}

.top-bar a {
    text-decoration: underline;
    font-weight: 700;
    margin-left: 5px;
}

/* Hide top bar on mobile */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* Header */
header {
    background: var(--black);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1005;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
}

.logo-text {
    color: var(--primary-gold);
    font-size: 1.25rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

@media (min-width: 993px) {
    .nav-links {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.nav-links a {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 6px;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 50px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-header-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient);
    color: var(--black) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.btn-header-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.35);
}

@media (max-width: 992px) {
    .btn-header-call span {
        display: none;
    }

    .btn-header-call {
        width: 40px;
        height: 40px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 120px;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('photo-1524178232363-1fb2b075b655.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

@media (max-width: 992px) {
    .hero {
        background-attachment: scroll !important;
    }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to bottom right, var(--black), #2563EB);
    /* Changed to Blue accent as requested */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: var(--bg-light);
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
}

/* Courses Section */
.courses {
    padding: var(--section-padding);
    background: var(--white);
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.course-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-gold);
}

.course-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card:hover .course-img img {
    transform: scale(1.1);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: #2563EB;
    color: var(--white);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.course-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-content h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.course-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.9375rem;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 0.875rem;
}

.course-meta span {
    color: var(--text-muted);
}

.course-meta .price {
    color: var(--primary-gold);
}

/* Advantages Section */
.advantages {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.adv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid #E5E7EB;
}

.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
    background: var(--gold-light);
    /* Added light gold background on hover */
}

.adv-card:hover .adv-icon-wrapper {
    background: var(--gold-gradient);
}

.adv-card:hover .adv-icon {
    color: var(--black);
}

.adv-icon-wrapper {
    width: 64px;
    height: 64px;
    background: #2563EB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.adv-icon {
    font-size: 1.75rem;
    color: var(--white);
    transition: var(--transition);
}

.adv-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.adv-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Achievers Section */
.achievers {
    padding: var(--section-padding);
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.achiever-card {
    min-width: 300px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    text-align: center;
    padding-bottom: 30px;
    transition: var(--transition);
}

.achiever-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

/* Toppers Page Grid View */
.achievers-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.achievers-grid-container .achiever-card {
    min-width: auto;
    width: 100%;
}

.achiever-quote {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    padding: 0 24px;
    margin: 15px 0 20px;
    position: relative;
}

.achiever-img {
    height: 300px;
    background: #F3F4F6;
    margin-bottom: 20px;
}

.achiever-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achiever-name {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.achiever-rank {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.achiever-year {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.achiever-badge {
    display: inline-block;
    background: var(--gold-light);
    color: var(--primary-gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 700;
    margin-top: 12px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
    background: var(--white);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary-gold);
    color: var(--black);
    border-color: var(--primary-gold);
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.testimonial-card {
    min-width: 380px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.quote-icon {
    color: #2563EB;
    /* Changed to Blue */
    font-size: 2rem;
    margin-bottom: 24px;
    opacity: 0.8;
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.8;
    font-style: italic;
    font-family: 'Outfit', sans-serif;
}

.student-info strong {
    display: block;
    font-size: 1.0625rem;
}

.student-info span {
    color: #2563EB;
    font-weight: 600;
    font-size: 0.875rem;
}

/* App Section */
.app-section {
    padding: var(--section-padding);
    background: #000000;
    color: var(--white);
}

.app-section h2 {
    color: var(--white);
}

.app-section p {
    color: #cbd5e1;
    margin-bottom: 32px;
}

.app-section .app-feature {
    color: var(--white);
}

.app-flex {
    display: flex;
    align-items: center;
    gap: 64px;
    flex-wrap: wrap;
}

.app-content {
    flex: 1;
    min-width: 320px;
}

.app-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 16px 0 24px;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.app-feature i {
    color: var(--primary-gold);
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--black);
    border-radius: 40px;
    border: 8px solid #333;
    padding: 12px;
    position: relative;
    box-shadow: var(--shadow-premium);
}

.phone-screen {
    background: #F8FAFC;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
}

.phone-status-bar {
    padding: 8px 16px 2px;
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    font-weight: 700;
    color: #1a1a1a;
}

.phone-header {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    border-bottom: 1px solid #eee;
}

.phone-logo {
    font-weight: 900;
    color: var(--primary-gold);
    font-size: 0.875rem;
}

.phone-content {
    padding: 16px;
    flex: 1;
    overflow-y: auto;
}

.phone-welcome {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 4px;
}

.phone-user {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.phone-live-card {
    background: var(--black);
    border-radius: 12px;
    padding: 12px;
    color: var(--white);
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.phone-live-tag {
    display: inline-block;
    background: #ef4444;
    color: white;
    font-size: 0.5rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.phone-live-card h4 {
    font-size: 0.8125rem;
    margin-bottom: 4px;
}

.phone-live-card p {
    font-size: 0.625rem;
    color: #94a3b8;
}

.phone-play-btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 24px;
    height: 24px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 0.6rem;
}

.phone-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.phone-course-mini {
    background: var(--white);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    border: 1px solid #e2e8f0;
}

.phone-course-icon {
    width: 32px;
    height: 32px;
    background: #eff6ff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 0.75rem;
}

.phone-course-info h5 {
    font-size: 0.6875rem;
    margin-bottom: 2px;
}

.phone-progress {
    width: 80px;
    height: 3px;
    background: #e2e8f0;
    border-radius: 2px;
}

.phone-progress-bar {
    width: 60%;
    height: 100%;
    background: var(--primary-gold);
    border-radius: 2px;
}

.phone-nav {
    padding: 8px 16px;
    background: var(--white);
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    font-size: 0.75rem;
    color: #94a3b8;
}

.phone-nav i.active {
    color: var(--primary-gold);
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #E5E7EB;
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.contact-info {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1.125rem;
}

.contact-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Footer */
/* Footer Section */
footer {
    background: #090d16;
    color: #e2e8f0;
    padding: 80px 0 30px;
    border-top: 3px solid var(--primary-gold);
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col-about {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-col-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-align: left;
}

.footer-col-about .footer-logo-img {
    height: 55px;
    margin: 0;
}

.footer-col-about .logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

.footer-about-text {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-heading {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 50px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: #94a3b8;
    font-size: 0.925rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}

.footer-links-list li a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-contact-list li i {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-contact-list li a {
    color: #94a3b8;
    transition: var(--transition);
}

.footer-contact-list li a:hover {
    color: var(--primary-gold);
}

.footer-col .social-links {
    margin-bottom: 0;
    justify-content: flex-start;
    gap: 12px;
}

.footer-col .social-links a {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white !important;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-4px);
}

.social-links a.facebook:hover {
    background: #1877F2;
    color: white;
}

.social-links a.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
}

.social-links a.youtube:hover {
    background: #FF0000;
    color: white;
}

.social-links a.whatsapp:hover {
    background: #25D366;
    color: white;
}

.social-links a.google-play:hover {
    background: #4185F4;
    color: white;
}

.social-links a i {
    transition: var(--transition);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #64748b;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-gold);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col-about {
        align-items: center;
        text-align: center;
    }

    .footer-col-about .footer-logo {
        justify-content: center;
    }

    .footer-col .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
}

.float-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--black);
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

.speed-dial-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.speed-dial-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-main-btn i {
    transition: transform 0.3s ease;
}

.float-main-btn.active i {
    transform: rotate(135deg) scale(1.1);
}



.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.float-call {
    background: #3B82F6;
}

.float-whatsapp {
    background: #25D366;
}

.float-instagram {
    background: #E1306C;
}

.float-facebook {
    background: #1877F2;
}

.float-youtube {
    background: #FF0000;
}

.float-app {
    background: #000000;
}

.btn-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    color: var(--black);
    border: 1px solid #E5E7EB;
    opacity: 0;
    visibility: hidden;
}

.btn-top.active {
    opacity: 1;
    visibility: visible;
}

/* Contact Page Horizontal Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    width: 100%;
}

/* Contact Page Horizontal Row Layout */
.contact-vertical-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.contact-item-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 15px;
    background: #fdfdfd;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.contact-item-vertical i {
    width: 45px;
    height: 45px;
    background: var(--gold-light);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-item-vertical h4 {
    font-size: 0.75rem;
    color: var(--primary-gold);
    letter-spacing: 1px;
    font-weight: 800;
}

.contact-item-vertical p {
    font-size: 0.85rem;
    color: var(--black);
    font-weight: 600;
}

/* Course Card Enhancements */
.course-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    /* Removed padding to let image fill the top */
    border: 1px solid #E2E8F0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.course-content {
    padding: 25px;
    /* Added padding to content instead of the whole card */
}

.course-content h3 {
    display: block;
    font-size: 1.15rem;
    color: #2563EB;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.course-features-list {
    margin: 15px 0 25px;
    padding: 0;
    list-style: none;
}

.course-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.course-features-list li i {
    color: #2563EB;
    font-size: 0.9rem;
}

.course-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gold-light);
    color: var(--primary-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Dark Hero Section (Courses Page) */
.hero-dark {
    background: var(--black) !important;
    padding: 100px 0;
    text-align: left !important;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-dark .hero-content {
    flex: 1;
    margin: 0;
    text-align: left;
}

.hero-dark .hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 20px;
    background: none;
    -webkit-text-fill-color: initial;
}

.hero-image-box {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-featured-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

@media (max-width: 992px) {
    .hero-flex {
        flex-direction: column;
        text-align: center !important;
    }

    .hero-dark {
        text-align: center !important;
        padding: 60px 0;
    }

    .hero-dark .hero-content {
        text-align: center;
    }
}

/* Modern Centered Contact Layout */
.contact-container-centered {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    color: #2563EB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.contact-item:hover i {
    background: #2563EB;
    color: white;
    transform: translateY(-5px);
}

.contact-item h4 {
    font-size: 0.85rem;
    color: #2563EB;
    letter-spacing: 1px;
    font-weight: 800;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--black);
    font-weight: 600;
}

.contact-form-modern {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

@media (max-width: 992px) {
    .contact-info-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-horizontal {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-modern {
        padding: 30px;
    }
}

/* FAQ Section */
.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.faq-item.active .faq-question {
    color: var(--primary-gold);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-by;
    background: #F9FAFB;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
    opacity: 1;
}

/* --- Optimized Media Queries --- */

/* Tablet & Smaller Desktops (992px) */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 1002;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 2px solid rgba(212, 175, 55, 0.25);
        padding: 90px 30px;
        justify-content: flex-start;
        align-items: flex-start;
        z-index: 1001;
        gap: 15px;
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.6);
        animation: slideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideIn {
        from {
            transform: translateX(100%);
        }

        to {
            transform: translateX(0);
        }
    }

    .nav-links.active a {
        font-size: 1.15rem !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        width: 100%;
        padding: 14px 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 8px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
        text-align: left;
        letter-spacing: 0.5px;
    }

    .nav-links.active a:hover,
    .nav-links.active a:active,
    .nav-links.active a.active {
        color: var(--black) !important;
        background: var(--gold-gradient) !important;
        padding-left: 28px !important;
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
        border-bottom: 1px solid transparent !important;
    }

    .mobile-menu-btn i.fa-times {
        color: var(--black) !important;
        background: var(--gold-gradient) !important;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
        transition: var(--transition);
        font-size: 1.1rem;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1000;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-flex {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .app-content {
        max-width: 600px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 80px 0 50px;
    }

    .hero h1 {
        font-size: 5rem !important;
    }

    .hero-subtitle {
        white-space: nowrap;
        font-size: 0.85rem;
        letter-spacing: 0.15em;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .course-grid,
    .adv-grid,
    .faculty-grid,
    .achievers-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .contact-grid {
        gap: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        text-align: center;
    }

    .contact-info div[style*="height: 400px"] {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .contact-item {
        width: 100%;
        align-items: center;
    }

    .form-extra-btns {
        flex-direction: column !important;
        width: 100%;
    }

    .form-extra-btns .btn {
        width: 100% !important;
    }

    .footer-links-main {
        gap: 10px;
    }

    /* App Section Alignment */
    .app-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        padding-left: 20px;
        margin: 0 0 30px;
    }

    .app-feature {
        justify-content: flex-start;
        text-align: left;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 4.5rem !important;
    }

    .hero-subtitle {
        white-space: nowrap;
        font-size: 0.65rem;
        letter-spacing: 0.1em;
    }

    .phone-mockup {
        width: 100%;
        max-width: 280px;
        height: 500px;
    }
}

/* Social Media Brand Colors */
.fa-facebook-f,
.fa-facebook {
    color: #1877F2 !important;
}

.fa-instagram {
    color: #E4405F !important;
}

.fa-youtube {
    color: #FF0000 !important;
}

.fa-whatsapp {
    color: #25D366 !important;
}

.fa-twitter {
    color: #1DA1F2 !important;
}

.fa-linkedin-in {
    color: #0A66C2 !important;
}

.fa-google-play {
    color: #34A853 !important;
}

/* Footer Social Icons Background Hover */
.social-links a:hover {
    background: var(--white);
    transform: scale(1.1);
}

.social-links a i {
    color: white !important;
}

.social-links a:hover i {
    color: var(--black) !important;
}

/* Floating Action Button Colors */
.float-whatsapp {
    background-color: #25D366 !important;
    color: white !important;
}

.float-whatsapp i {
    color: white !important;
}

.float-instagram {
    background-color: #E4405F !important;
    color: white !important;
}

.float-instagram i {
    color: white !important;
}

.float-facebook {
    background-color: #1877F2 !important;
    color: white !important;
}

.float-facebook i {
    color: white !important;
}

.float-youtube {
    background-color: #FF0000 !important;
    color: white !important;
}

.float-youtube i {
    color: white !important;
}

.float-app {
    background-color: #34A853 !important;
    color: white !important;
}

.float-app i {
    color: white !important;
}

.float-call i {
    color: white !important;
}

/* Mobile Bottom CTA - Hidden by default on Desktop */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: rgba(9, 13, 22, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    padding: 12px 20px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
}

.mobile-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-cta-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.mobile-cta-title {
    color: var(--primary-gold);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-cta-desc {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 2px;
}

.mobile-cta .btn-enroll {
    background: var(--gold-gradient);
    color: var(--black) !important;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
    display: inline-block;
}

.mobile-cta .btn-enroll:hover,
.mobile-cta .btn-enroll:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
}

/* Contact Info Row (Home Page) */
.contact-info-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 40px;
}

.contact-info-row .contact-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 220px;
}

/* Address card gets a bit wider on desktop to balance heights */
@media (min-width: 992px) {
    .contact-info-row .contact-card:first-child {
        flex: 1.5;
    }
}

.contact-info-row .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.1);
    border-color: #2563EB;
}

.contact-info-row .contact-card i {
    font-size: 1.5rem;
    color: #2563EB;
    margin-bottom: 20px;
    background: #eff6ff;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-row .contact-card:hover i {
    background: #2563EB;
    color: white;
}

.contact-info-row .contact-info {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.5;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-row .contact-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    margin-top: auto;
}

@media (max-width: 768px) {
    .contact-info-row {
        flex-direction: column;
        align-items: center;
    }

    .contact-info-row .contact-card {
        width: 100%;
        min-width: unset;
    }

    footer {
        padding-bottom: 90px !important;
    }

    .mobile-cta {
        display: block;
    }

    .floating-actions {
        bottom: 95px !important;
    }
}

/* Modern Contact Page Styles */
.contact-container-centered {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-item-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 20px;
    transition: var(--transition);
}

.contact-item-modern i {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    color: #2563EB;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.contact-item-modern:hover i {
    background: #2563EB;
    color: white;
    transform: translateY(-5px);
}

.contact-item-modern h4 {
    font-size: 0.85rem;
    color: #2563EB;
    letter-spacing: 1px;
    font-weight: 800;
}

.contact-item-modern p {
    font-size: 0.95rem;
    color: var(--black);
    font-weight: 600;
}

.contact-form-modern {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    margin-bottom: 60px;
}

.contact-form-modern h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-form-modern p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group-full {
    grid-column: span 2;
}

.modern-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modern-input:focus {
    outline: none;
    border-color: #2563EB;
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

@media (max-width: 992px) {
    .contact-info-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-horizontal {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: span 1;
    }

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

/* --- Utility Classes for Mobile Fixes --- */
.d-none-desktop {
    display: none;
}

.d-block-mobile {
    display: inline;
}

@media (max-width: 768px) {
    .d-block-mobile {
        display: block !important;
    }
}

/* --- Final CTA / Cta Box Style (Premium Redesign) --- */
.final-cta {
    padding: 80px 0 20px;
    display: flex;
    justify-content: center;
}

.cta-box {
    background: linear-gradient(135deg, #090d16 0%, #111827 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    width: 100%;
    box-shadow: var(--shadow-premium), 0 15px 40px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

/* Glowing golden/blue accent circles inside the CTA box */
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-box .section-title {
    color: var(--white) !important;
    margin-bottom: 20px !important;
    font-size: clamp(2rem, 4vw, 2.75rem);
    background: none !important;
    -webkit-text-fill-color: initial !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    padding-bottom: 15px;
}

.cta-box .section-title::after {
    background: var(--gold-gradient);
    width: 50px;
    height: 3px;
    bottom: 0;
}

.cta-box .section-desc {
    color: #cbd5e1 !important;
    max-width: 600px;
    margin: 30px auto 40px !important;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.6;
}

.cta-box .hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Custom buttons shape / aesthetics inside CTA Box */
.cta-box .btn-gold {
    background: var(--gold-gradient);
    color: var(--black) !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 16px 36px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-box .btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.cta-box .btn-gold-outline {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid var(--primary-gold);
    font-weight: 700;
    border-radius: 50px;
    padding: 14px 34px;
    transition: var(--transition);
}

.cta-box .btn-gold-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--white) !important;
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .cta-box {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .cta-box .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .cta-box .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
}

/* Legal / Policy Pages Styles */
.legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 80px 0;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.legal-nav-card {
    background: var(--bg-light);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.legal-nav-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-nav-link {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 6px 10px;
    border-radius: 6px;
}

.legal-nav-link:hover,
.legal-nav-link.active {
    color: var(--black);
    background: rgba(212, 175, 55, 0.15);
    padding-left: 14px;
}

.legal-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.legal-section-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.legal-section-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.25);
}

.legal-section-card h2 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-section-card h2 i {
    color: var(--primary-gold);
    font-size: 1.3rem;
}

.legal-section-card p,
.legal-section-card ul {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.legal-section-card ul {
    padding-left: 20px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 992px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .legal-sidebar {
        position: relative;
        top: 0;
    }
}

.enroll-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px 15px;
    overflow-y: auto;
}

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

.enroll-modal-container {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 28px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.1);
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin: auto 0;
}

.enroll-modal-overlay.active .enroll-modal-container {
    transform: scale(1) translateY(0);
}

.enroll-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
    z-index: 10;
}

.enroll-modal-close:hover {
    background: var(--gold-gradient);
    color: var(--black) !important;
    transform: rotate(90deg);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.enroll-modal-body {
    padding: 40px 35px;
}

.enroll-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.enroll-modal-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: var(--black);
    font-weight: 800;
    margin-bottom: 8px;
}

.enroll-modal-header h3 .gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.enroll-modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.enroll-modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.enroll-modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.enroll-modal-form .form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enroll-modal-form .form-group input,
.enroll-modal-form .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--black);
    transition: var(--transition);
    outline: none;
    background: #f8fafc;
}

.enroll-modal-form .form-group input:focus,
.enroll-modal-form .form-group select:focus {
    border-color: var(--primary-gold);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.btn-enroll-submit {
    margin-top: 10px;
    width: 100%;
    padding: 15px !important;
    font-size: 1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Success Card Style */
.enroll-success-message {
    text-align: center;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.enroll-success-message .success-icon {
    font-size: 4rem;
    color: #10b981;
    animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.enroll-success-message h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: var(--black);
    font-weight: 800;
}

.enroll-success-message p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.enroll-success-message p strong {
    color: var(--black);
}

.enroll-success-message .counselor-note {
    background: #f0fdf4;
    border: 1px dashed #bbf7d0;
    padding: 15px;
    border-radius: 12px;
    font-size: 0.9rem;
}

#closeSuccessBtn {
    width: 100%;
    padding: 14px !important;
}

@media (max-width: 480px) {
    .enroll-modal-body {
        padding: 30px 18px !important;
    }

    .enroll-modal-header h3 {
        font-size: 1.5rem !important;
    }

    .enroll-modal-header p {
        font-size: 0.85rem !important;
    }

    .enroll-modal-form {
        gap: 12px !important;
    }

    .enroll-modal-form .form-group label {
        font-size: 0.75rem !important;
    }

    .enroll-modal-form .form-group input,
    .enroll-modal-form .form-group select {
        padding: 10px 12px !important;
        font-size: 0.88rem !important;
        border-radius: 10px !important;
    }

    .btn-enroll-submit {
        padding: 12px !important;
        font-size: 0.92rem !important;
    }
}