@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Color Variables */
    --clr-primary: #0a192f; 
    --clr-secondary: #ffc107; 
    --clr-accent-1: #008080; 
    --clr-accent-2: #dc143c; 
    --clr-accent-3: #6366f1; /* Indigo */
    --clr-accent-4: #ec4899; /* Pink */
    
    --clr-light: #f8fafc;
    --clr-bg-1: #f0f9ff; /* Light Blue */
    --clr-bg-2: #f0fdf4; /* Light Green */
    --clr-bg-3: #fffbeb; /* Light Gold */
    --clr-bg-4: #fdf2f8; /* Light Pink */
    --clr-bg-5: #eef2ff; /* Light Indigo */
    
    --clr-dark: #0f172a;
    --clr-text-main: #1e293b;
    --clr-text-muted: #64748b;
    --clr-white: #ffffff;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease-in-out;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 25px rgba(0,0,0,0.15);
    
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-medium);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--clr-primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(to right, var(--clr-secondary), var(--clr-accent-1));
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.section-title p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-dark));
    color: var(--clr-white);
    border: none;
    box-shadow: 0 4px 15px rgba(10, 25, 71, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--clr-dark), var(--clr-primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 25, 71, 0.3);
}

.btn-secondary {
    background-color: var(--clr-secondary);
    color: var(--clr-primary);
}

.btn-secondary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
}

.btn-outline:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.85)), url('../images/header-bg.jpg') center/cover;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--clr-white);
}

.page-header-content h1 {
    font-size: 3.5rem;
    color: var(--clr-white);
    margin-bottom: 15px;
    font-weight: 800;
}

.page-header-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.header-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.header-breadcrumb a {
    color: var(--clr-secondary);
}

.header-breadcrumb i {
    font-size: 0.7rem;
}

/* =====================================================
   ✨ PREMIUM SINGLE-LINE NEWS TICKER
   ===================================================== */
.news-ticker-bar {
    display: flex;
    align-items: center;
    height: 44px;
    background: linear-gradient(90deg, #060f27 0%, #0d1b3e 30%, #11255e 60%, #060f27 100%);
    border-bottom: 1px solid rgba(99,102,241,0.35);
    overflow: hidden;
    position: relative;
    box-shadow: 0 3px 18px rgba(0,0,0,0.4);
    flex-shrink: 0;
}

/* Rainbow shimmer top border */
.news-ticker-bar::before {
    content:'';
    position:absolute; top:0; left:0; right:0; height:2px;
    background: linear-gradient(90deg,#f59e0b,#f472b6,#a78bfa,#34d399,#60a5fa,#f59e0b);
    background-size: 200% 100%;
    animation: shimmer-move 4s linear infinite;
}
@keyframes shimmer-move {
    0%  { background-position: 0% 0; }
    100%{ background-position: 200% 0; }
}

/* ── LIVE badge ── */
.ticker-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg,#ef4444,#b91c1c);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 16px 0 12px;
    height: 100%;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
    padding-right: 22px;
    animation: live-pulse 2s ease-in-out infinite;
    font-family: var(--font-heading);
}
@keyframes live-pulse {
    0%,100%{ box-shadow: 3px 0 14px rgba(239,68,68,0.35); }
    50%    { box-shadow: 3px 0 24px rgba(239,68,68,0.8); }
}

.ticker-live-dot {
    width: 7px; height: 7px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.1s ease-in-out infinite;
}
@keyframes blink {
    0%,100%{ opacity:1; transform:scale(1); }
    50%    { opacity:0.2; transform:scale(0.5); }
}

/* ── WHAT'S NEW label ── */
.ticker-label {
    flex-shrink: 0;
    color: #fbbf24;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 16px 0 14px;
    border-right: 1px solid rgba(255,255,255,0.12);
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-family: var(--font-heading);
}

/* ── Viewport — THE KEY RULE: overflow hidden + nowrap ── */
.ticker-viewport {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;          /* ← keeps everything ONE line */
    /* Fade edges */
    mask-image: linear-gradient(to right, transparent, #000 40px, #000 calc(100% - 40px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 40px, #000 calc(100% - 40px), transparent);
}

/* ── Strip — holds two copies, scrolls left ── */
.ticker-strip {
    display: inline-flex;         /* inline so it won't wrap */
    align-items: center;
    white-space: nowrap;
    animation: scroll-left 50s linear infinite;
    will-change: transform;
}
.ticker-strip:hover { animation-play-state: paused; }

@keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Inner copy ── */
.ticker-inner {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* ── Each item ── */
.t-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 4px;
    white-space: nowrap;
    font-size: 0.87rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: filter 0.2s;
}
.t-item:hover { filter: brightness(1.2); }

.t-icon {
    font-size: 1rem;
    line-height: 1;
    flex-shrink: 0;
}

.t-text {
    letter-spacing: 0.1px;
}

/* ── Diamond separator ── */
.t-sep {
    display: inline-block;
    margin: 0 18px;
    font-size: 0.55rem;
    color: #a78bfa;
    opacity: 0.7;
    flex-shrink: 0;
}

/* ── Date chip ── */
.ticker-date {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0 18px;
    border-left: 1px solid rgba(255,255,255,0.1);
    height: 100%;
    white-space: nowrap;
    background: rgba(255,255,255,0.03);
}
.ticker-date i { color: #fbbf24; }

/* ── Mobile ── */
@media (max-width: 768px) {
    .news-ticker-bar { height: 38px; }
    .ticker-date     { display: none; }
    .ticker-label    { display: none; }
    .t-item          { font-size: 0.8rem; }
    .ticker-strip    { animation-duration: 32s; }
}



/* Professional Dual-Row Header */
.main-header {
    background: var(--clr-white);
    width: 100%;
    z-index: 1000;
}

.header-top {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.top-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 80px;
    width: auto;
    transition: height 0.3s ease;
}

.logo-text h1 {
    font-size: 2.2rem;
    color: var(--clr-primary);
    margin: 0;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    transition: font-size 0.3s ease;
}

.logo-subtitle {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    letter-spacing: 2px;
    font-weight: 600;
    transition: font-size 0.3s ease;
}


.admin-login-link {
    font-weight: 600;
    color: var(--clr-text-main);
    font-size: 0.95rem;
}

.admin-login-link:hover {
    color: var(--clr-secondary);
}

/* Nav Bar Row */
.nav-bar {
    background: linear-gradient(90deg, #ff6b6b 0%, #ff9800 25%, #5dbb63 50%, #00a0e9 75%, #3f51b5 100%); /* Smooth vibrant multi-color gradient */
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 15px 0; /* Increased size for a more prominent look */
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    position: relative;
    max-width: 1400px; /* Increased for better layout */
    margin: 0 auto;
}

.main-nav {
    flex-grow: 1;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--clr-white);
    cursor: pointer;
    transition: all 0.3s;
}

.main-nav .nav-links {
    display: flex;
    gap: 15px; /* Spacing between pills */
}

.nav-links li a {
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-primary); /* Dark text on white pill */
    background: var(--clr-white);
    border-radius: 50px; /* Capsule/Pill shape */
    display: block;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-links li a:hover,
.nav-links li a.active {
    background: var(--clr-secondary);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nav-links a::after {
    display: none; /* Removed the underline as we now use pills */
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    /* Top Bar Responsive */
    .top-nav-container {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center;
        padding: 8px 15px !important;
        display: flex !important;
    }

    .logo {
        flex-direction: row !important;
        align-items: center;
        gap: 10px;
        flex: 1;
        display: flex !important;
    }

    .logo img {
        height: 45px !important;
        width: auto;
    }

    .logo-text h1 {
        font-size: 1.05rem !important;
        letter-spacing: -0.5px;
        margin: 0;
        white-space: nowrap;
    }

    .logo-subtitle {
        font-size: 0.55rem !important;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .top-right {
        margin-left: 10px;
        display: block !important;
    }

    .admin-login-link {
        font-size: 0.7rem;
        padding: 6px 10px;
        background: var(--clr-primary);
        color: #fff !important;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 700;
        white-space: nowrap;
    }

    /* Menu & Nav Bar - Aggressive Fix */
    .menu-toggle {
        display: none !important; /* ABSOLUTELY HIDE THE THREE LINES */
    }

    .nav-bar {
        padding: 0 !important;
        min-height: 45px !important;
        display: flex !important;
        align-items: center !important;
        overflow: visible !important;
    }

    .nav-flex {
        padding: 0 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: flex-start !important;
    }

    .main-nav {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 5px 5px !important;
    }

    /* Hide scrollbars */
    .main-nav::-webkit-scrollbar { display: none !important; }
    .main-nav { -ms-overflow-style: none !important; scrollbar-width: none !important; }

    .main-nav .nav-links {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 6px !important;
        margin: 0 !important;
        padding: 0 10px !important;
        list-style: none !important;
        width: max-content !important; /* Critical for scrolling */
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-links li {
        display: block !important;
        flex: 0 0 auto !important;
    }

    .nav-links li a {
        display: block !important;
        padding: 5px 12px !important;
        font-size: 0.7rem !important;
        background: #fff !important;
        color: var(--clr-primary) !important;
        border-radius: 18px !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
        text-transform: uppercase !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
    }

    .nav-links li a i {
        display: none !important; /* Hide dropdown arrows on mobile */
    }

    .dropdown-menu { display: none !important; }
}

/* Ticker Tweaks */
@media (max-width: 600px) {
    .ticker-label, .ticker-date { display: none !important; }
    .news-ticker-bar { height: 40px !important; }
}

.contact-diagonal {
    display: none; /* No longer needed with the pill layout */
}

.nav-flex::after {
    display: none; /* No longer needed */
}

.contact-info {
    display: flex;
    align-items: center;
    color: var(--clr-white);
    z-index: 2;
    height: 100%;
}

.phone-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-wrapper i {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.phone-numbers-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-numbers-row a {
    color: white;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.phone-numbers-row a:hover {
    color: var(--clr-secondary);
    transform: scale(1.05);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Dropdown */
/* ── Each nav item must be the anchor point for its own dropdown ── */
.nav-links li {
    position: relative; /* Critical: dropdown aligns to THIS li, not the ul */
    list-style: none;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px); /* drops just below the pill button */
    left: 50%;             /* horizontally centered under the pill */
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    min-width: 200px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    padding: 10px 0;
    z-index: 9999;
    border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
    padding: 0 10px;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--clr-text-main);
    font-size: 0.95rem;
    border-radius: 8px;
    text-transform: none;
    letter-spacing: normal;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: linear-gradient(to right, rgba(255, 193, 7, 0.1), rgba(0, 128, 128, 0.1));
    color: var(--clr-primary);
    padding-left: 20px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--clr-primary);
    cursor: pointer;
}

@media (max-width: 992px) {
    .header-top {
        padding: 10px 0;
    }
    .logo img { height: 60px; }
    .logo-text h1 { font-size: 1.5rem; }
    
    .nav-flex { padding: 10px 20px; }
    .main-nav { display: none; }
    .contact-bar { display: none; }
    .nav-flex::after { display: none; }
    
    .menu-toggle {
        display: block;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}

/* Footer */
footer {
    background-color: var(--clr-primary);
    color: var(--clr-light);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--clr-white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* --- Professional Main Footer --- */
.main-footer {
    background-color: #0a192f;
    color: #ffffff;
    padding-top: 80px;
    font-family: var(--font-body);
}

.footer-top {
    padding-bottom: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 40px;
    align-items: start;
    width: 100%;
}

.footer-col {
    min-width: 0;
}

.footer-col h4.col-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    color: #ffffff;
}

.footer-col h4.col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--clr-secondary);
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    max-width: 100%;
}

.footer-logo img {
    height: 80px !important;
    width: 80px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    background: #fff !important;
    padding: 5px !important;
    border: 2px solid var(--clr-secondary) !important;
    display: block !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
}

.footer-logo i {
    font-size: 2.5rem;
    color: var(--clr-secondary);
}

.footer-logo h3 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 800;
    color: #fff;
}

.about-col {
    display: flex;
    flex-direction: column;
}

.about-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin-top: 15px;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: #fff;
}

.social-icon.fb:hover { background: #3b5998; }
.social-icon.insta:hover { background: #e1306c; }
.social-icon.tw:hover { background: #1da1f2; }
.social-icon.yt:hover { background: #ff0000; }

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--clr-secondary);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--clr-secondary);
}

.footer-links a:hover i {
    transform: translateX(5px);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--clr-secondary);
    margin-top: 5px;
}

.contact-item p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.5;
}

.footer-map {
    height: 150px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-top: 15px;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.dev-link {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.dev-link a {
    color: var(--clr-secondary);
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 992px) {
    .footer-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .bottom-flex { flex-direction: column; text-align: center; gap: 15px; }
    .main-footer { padding-top: 60px; }
}

.course-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: var(--clr-white);
}

.course-icon {
    font-size: 3rem;
    color: var(--clr-primary);
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.5s ease;
}

.course-card:hover .course-icon {
    transform: rotateY(360deg);
}

.social-icons a:hover {
    background: var(--clr-secondary);
    color: var(--clr-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(10, 25, 47, 0.1);
}

/* --- Quick Links Section (Under Hero) --- */
.quick-links-section {
    position: relative;
    z-index: 100;
    margin-top: -60px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.quick-link-card {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
    padding: 45px 35px !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-link-card i {
    font-size: 3.5rem !important;
    color: rgba(255,255,255,0.9) !important;
}

.ql-text h3 {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    margin: 0 0 5px 0 !important;
    color: #ffffff !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

.ql-text p {
    font-size: 0.9rem !important;
    color: rgba(255,255,255,0.85) !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.ql-blue { background-color: #2fa2e9 !important; }
.ql-orange { background-color: #ff9800 !important; }
.ql-blue-dark { background-color: #1e88e5 !important; }

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 10;
    filter: brightness(1.1);
}

@media (max-width: 992px) {
    .quick-links-section {
        margin-top: 0;
    }
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    .quick-link-card {
        padding: 30px;
    }
}
