/* =========================================
   1. GLOBAL & TYPOGRAPHY
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Primary Variants */
    --primary-color: #04CC47;
    --primary-dark: #03a339;
    --primary-light: rgba(4, 204, 71, 0.1);
    --primary-soft: rgba(4, 204, 71, 0.2);

    /* Grays & Neutrals */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e0;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Legacy/Specific */
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --light-bg: #f9fafb;
    --shadow-black: rgba(0, 0, 0, 0.1);
    --shadow-soft: rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 6px -1px var(--shadow-black);
    --shadow-md: 0 10px 15px -3px var(--shadow-black);
    --shadow-lg: 0 20px 25px -5px var(--shadow-black);
    --card-bg: var(--white);
    --online-green: #2ecc71;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for fixed navbar */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* --- Global Section Headings --- */
.section-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-weight: 800;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
}

.section-header {
    margin-bottom: 50px;
}

/* --- Global Button Overrides --- */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: var(--white) !important;
    box-shadow: 0 8px 15px rgba(4, 204, 71, 0.3) !important;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary-soft {
    background-color: var(--primary-soft) !important;
}

.bg-success-soft {
    background-color: rgba(46, 204, 113, 0.15) !important;
}

.profile-avatar-wrap {
    width: 120px;
    height: 120px;
    position: relative;
    margin: auto;
}

.form-control:focus,
.form-select:focus {
    background-color: #fff !important;
    box-shadow: 0 0 0 0.25rem var(--primary-soft) !important;
    border-color: var(--primary-color) !important;
}

/* Achievement Page Styles */
.achieve-hero-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #038c31 100%);
    border: none;
}

.pos-abs-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 1;
}

.trophy-animate {
    animation: trophyFloat 3s ease-in-out infinite;
}

@keyframes trophyFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.badge-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.badge-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color) !important;
    background: var(--primary-soft);
}

.grayscale {
    filter: grayscale(1);
}

.extra-small {
    font-size: 11px;
}

.rank-num {
    width: 35px;
    text-align: center;
}

.border-dashed {
    border: 2px dashed #dee2e6 !important;
}

.text-brown {
    color: #8B4513;
}

/* =========================================
   2. TOP BAR & NAVBAR
   ========================================= */
.top-bar {
    background: #000;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1030;
    position: relative;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--primary-color);
}

.top-bar .top-social a {
    margin-left: 15px;
    font-size: 14px;
}

.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 0;
    z-index: 1020;
    top: 41px;
    /* Height of top bar on desktop */
}

@media (max-width: 991px) {
    .navbar {
        top: 0 !important;
    }
}

.navbar.scrolled {
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    top: 0;
}

.navbar .navbar-brand {
    padding: 0;
    margin-right: 30px;
}

.navbar .navbar-brand img {
    height: 45px;
    width: auto;
    transition: height 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 38px;
}

.navbar .logo-scrolled {
    display: none;
}

.navbar.scrolled .logo-main {
    display: block;
    /* Assuming same logo for now, or swap if needed */
}

/* Nav Links */
.navbar .nav-link {
    color: var(--white) !important;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 15px !important;
    position: relative;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark) !important;
}

.navbar .nav-link::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 5px;
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before {
    transform: scaleX(1);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn-login {
    color: var(--white) !important;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.navbar.scrolled .btn-login {
    color: var(--text-dark) !important;
}

.btn-login:hover {
    color: var(--primary-color) !important;
}

.btn-join {
    padding: 10px 25px !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    min-width: 220px;
    margin-top: 15px !important;
}

.dropdown-item {
    padding: 10px 25px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    padding-left: 30px;
}

/* Desktop Hover support */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        animation: navFadeUp 0.3s ease forwards;
    }
}

@keyframes navFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Navbar */
@media (max-width: 991px) {
    .navbar {
        background: var(--white);
        padding: 10px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .navbar .nav-link,
    .navbar.scrolled .nav-link,
    .navbar .btn-login,
    .navbar.scrolled .btn-login {
        color: var(--text-dark) !important;
        padding: 12px 0 !important;
    }

    .navbar-toggler {
        border: none;
        padding: 0;
        font-size: 24px;
        color: var(--primary-color);
    }

    .navbar-collapse {
        margin-top: 15px;
        padding-bottom: 20px;
    }

    .navbar .nav-link::before {
        display: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

/* --- New Smooth Transitions --- */
@keyframes softFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.soft-float {
    animation: softFloat 5s ease-in-out infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    visibility: hidden;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    visibility: hidden;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    visibility: hidden;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
    visibility: visible;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}


.counseling-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
}

/* No overlay needed for light background */
.counseling-section::before {
    display: none;
}

.counseling-section .container {
    position: relative;
    z-index: 2;
}

.counseling-img-wrapper {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.counseling-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--text-dark);
    z-index: 2;
    backdrop-filter: blur(5px);
}

.counseling-badge i {
    color: var(--primary-color);
    font-size: 22px;
}

.badge-1 {
    top: 10%;
    left: -20px;
}

.badge-2 {
    bottom: 0;
    right: 100px;
}

.counseling-content {
    position: relative;
    z-index: 1;
    padding-left: 30px;
}

.counseling-content .sub-title {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.counseling-content .section-title {
    color: var(--black);
    font-size: 42px;
    /* Larger title */
    margin-bottom: 20px;
}

.counseling-content p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Service Cards */
.edu-service-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 2px 8px var(--shadow-soft);
}

.edu-service-card:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-black);
    border-color: var(--primary-color);
}

.edu-service-card .service-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 15px;
}

.edu-service-card h5 {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.edu-service-card p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .counseling-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .badge-1 {
        left: 0;
    }

    .badge-2 {
        right: 0;
        bottom: -15px;
    }
}

.counseling-form {
    background: var(--white);
    border-top: 5px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */




/* =========================================
   3. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url("../img/school_banner.webp") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding-top: 60px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-btn {
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 50px;
    background: var(--primary-color);
    border: none;
    color: var(--white);
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(4, 204, 71, 0.4);
}

.hero-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white);
}

/* Hero Features */
.hero-features {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    transform: translateY(50%);
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transition: 0.3s;
    height: 100%;
}

@media (max-width: 991px) {
    .navbar {
        background: var(--white) !important;
        position: fixed !important;
        top: 0;
        width: 100%;
        z-index: 1060;
        box-shadow: 0 2px 10px var(--shadow-black);
        padding: 5px 0;
    }

    .navbar .navbar-brand,
    .navbar .nav-link {
        color: var(--text-dark) !important;
    }

    .navbar-toggler {
        border-color: var(--border-color);
        padding: 4px 8px;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 15px;
        margin-top: 5px;
        border-radius: 0 0 8px 8px;
        border-top: 1px solid var(--border-color);
    }

    .navbar .nav-link {
        padding: 8px 0;
        font-size: 14px;
    }


    .hero-section {
        height: auto;
        min-height: 550px;
        padding: 120px 0 60px;
        text-align: center;
        display: block;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .hero-btn {
        display: inline-block;
        padding: 12px 35px !important;
        font-size: 15px !important;
        margin-top: 25px;
        position: relative;
        z-index: 10;
        font-weight: 700;
        background: var(--primary-color) !important;
        color: var(--white) !important;
        border-radius: 50px;
    }

    .hero-features {
        position: relative;
        transform: none;
        margin-top: 15px;
        padding: 0 10px;
    }

    .hero-features .row>div {
        width: 33.33% !important;
        /* show 3 cards horizontally */
        display: flex;
        justify-content: center;
        padding: 0 4px;
        /* minimal horizontal gutter */
    }

    .feature-card {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 5px;
        padding: 10px 5px !important;
        /* Very slim padding */
        width: 100%;
        max-width: 100%;
        margin: 5px 0 !important;
        box-shadow: 0 2px 8px var(--shadow-soft);
        border: 1px solid var(--bg-soft);
        background: var(--white);
        min-height: 100px;
    }

    .feature-card i {
        font-size: 15px !important;
        /* Tiny icon for horizontal fit */
        width: 30px !important;
        height: 30px !important;
        margin-bottom: 0 !important;
    }

    .feature-card div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-card h5 {
        font-size: 9px !important;
        /* Tiny heading */
        margin-bottom: 2px !important;
        font-weight: 700 !important;
        line-height: 1.1;
    }

    .feature-card span {
        font-size: 8px !important;
        /* Tiny subtext */
    }
}

.feature-card i {
    font-size: 35px;
    color: var(--primary-color);
    background: var(--primary-light);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover i {
    background: var(--primary-color);
    color: var(--white);
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
}

.feature-card span {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
}

/* =========================================
   4. SLIDER & CARDS (SWIPER) - PURPLE DESIGN
   ========================================= */
.courses-section {
    padding-top: 100px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #028a31 0%, #04cc47 100%);
    position: relative;
    overflow: hidden;
}

.courses-section .section-title {
    color: var(--white);
}

.courses-section .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.section-header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.section-title {
    font-weight: 800;
    font-size: 36px;
    color: var(--text-dark);
}

.section-header .text-muted {
    color: #4b5563 !important;
}

/* Purple Course Card */
.course-card.purple-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a0a55 0%, #3d1570 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    text-align: center;
}

.course-card.purple-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.4);
}

/* New Badge */
.course-new-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    color: var(--white);
}

.badge-pink {
    background: linear-gradient(135deg, #ff2e63 0%, #ff6b9d 100%);
}

.badge-green-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--online-green) 100%);
}

.badge-green {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.badge-orange {
    background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
}

/* Image Wrapper */
.course-img-wrapper {
    padding: 40px 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.course-img-wrapper img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.course-card.purple-card:hover .course-img-wrapper img {
    transform: scale(1.1) rotate(5deg);
}

/* Course Content */
.course-content {
    padding: 0 25px 25px;
}

/* Star Rating */
.star-rating {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.star-rating i {
    color: #ffd700;
    font-size: 16px;
}

.star-rating i.fa-regular {
    color: rgba(255, 255, 255, 0.3);
}

/* Course Title */
.course-card.purple-card .course-title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--white);
}

.course-card.purple-card .course-title a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.course-card.purple-card .course-title a:hover {
    color: #ffd700;
}

/* Course Footer (Price Section) */
.course-footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 18px 20px;
    border-radius: 12px;
    margin-top: 10px;
}

.course-price-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.current-price {
    color: var(--white);
    font-weight: 800;
    font-size: 24px;
}

.original-price {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    text-decoration: line-through;
}

/* Responsive */
@media (max-width: 768px) {
    .course-img-wrapper img {
        width: 120px;
        height: 120px;
    }

    .course-card.purple-card .course-title {
        font-size: 20px;
    }

    .current-price {
        font-size: 20px;
    }
}

/* Old styles - keeping for backward compatibility if needed elsewhere */
.course-card:not(.purple-card) {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    height: 100%;
}

.course-card:not(.purple-card):hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.course-card:not(.purple-card) img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.course-body {
    padding: 20px;
}

.course-badge {
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.course-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.course-meta i {
    color: var(--primary-color);
}

.course-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.price-box .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.price-box .new-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px;
    margin-left: 5px;
}


.add-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 6px 18px;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s;
}

.add-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Swiper Controls */
.swiper-buttons {
    display: flex;
    gap: 10px;
}

.custom-swiper-button-prev,
.custom-swiper-button-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.custom-swiper-button-prev:hover,
.custom-swiper-button-next:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: scale(1.1);
}

.dark-nav .custom-swiper-button-prev,
.dark-nav .custom-swiper-button-next {
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
    background: rgba(0, 0, 0, 0.05) !important;
    color: var(--text-dark) !important;
}

.dark-nav .custom-swiper-button-prev:hover,
.dark-nav .custom-swiper-button-next:hover {
    background: var(--text-dark) !important;
    color: var(--white) !important;
    border-color: var(--text-dark) !important;
}

.dark-nav+.swiper .swiper-pagination-bullet {
    background: var(--text-dark) !important;
}

.dark-nav+.swiper .swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

.swiper-pagination {
    bottom: 0px !important;
}

.swiper-pagination-bullet {
    background: var(--white) !important;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--white) !important;
    width: 25px;
    border-radius: 5px;
}

/* =========================================
   5. BENEFITS SECTION
   ========================================= */
.odi-benefits {
    position: relative;
    background: url("../img/learn-bg.jpg") center/cover no-repeat fixed;
    /* fixed for parallax feel */
    padding: 20px 0;
    color: var(--white);
}

.benefit-container .section-title {
    color: var(--white);
}

.odi-benefits::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.benefit-container {
    position: relative;
    z-index: 2;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    transition: 0.3s;
}

/* Right align specific items if needed, or handle via bootstrap cols */
.benefit-item-right {
    flex-direction: row-reverse;
    text-align: right;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-item-right:hover {
    transform: translateX(-10px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(4, 204, 71, 0.5);
}

.benefit-content h5 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.app-mockup {
    max-width: 100%;
    filter: drop-shadow(0 0 20px rgba(4, 204, 71, 0.2));
}

/* =========================================
   6. VIDEO SECTION
   ========================================= */
.video-section {
    padding: 80px 0;
}

.video-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
}

/* =========================================
   7. FOOTER (NEW)
   ========================================= */
.footer {
    background: #111;
    color: var(--white);
    padding-top: 80px;
    font-size: 14px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.footer-text {
    color: #999;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #999;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #999;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

/* =========================================
   9. HEALTH SECTION
   ========================================= */

.health-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

/* Section Title Enhancements */
.health-section .section-title {
    font-size: 32px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

/* =========================================
   HEALTH SECTION
   ========================================= */
.health-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Doctor & Appointment Styles */
.doctor-card {
    background: transparent;
    /* Removed solid background to show animation */
    border-radius: 50px;
    padding: 30px 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    z-index: 1;
}

.doctor-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 0deg,
            transparent 0%,
            transparent 40%,
            var(--primary-color) 45%,
            var(--primary-color) 55%,
            transparent 60%,
            transparent 100%);
    animation: rotate-border 4s linear infinite;
    z-index: -2;
    border-radius: 50%;
}

.doctor-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, #1a2e21 0%, #0d1a12 100%);
    border-radius: 48px;
    z-index: -1;
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.doctor-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(4, 204, 71, 0.2);
    border-color: rgba(4, 204, 71, 0.4);
    cursor: pointer;
}

.doctor-card-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid rgba(4, 204, 71, 0.3);
    padding: 5px;
    transition: all 0.4s ease;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.1);
}

.doctor-card:hover .doctor-card-img {
    border-color: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.2);
}

.doctor-card h5 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.doctor-card .doctor-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.doctor-location {
    color: var(--white);
    opacity: 0.8;
}

.doctor-learn-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Slightly reduced gap */
    font-weight: 600;
    color: var(--white);
    margin-top: auto;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    /* background: rgba(255, 255, 255, 0.1); */
    background: var(--primary-color);
    padding: 12px 15px;
    /* Reduced side padding slightly */
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    white-space: nowrap;
    /* Force one line */
}

.doctor-learn-more i {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.doctor-card:hover .doctor-learn-more {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(4, 204, 71, 0.3);
}

.doctor-card:hover .doctor-learn-more i {
    background: var(--white);
    color: var(--primary-color);
    transform: translateX(5px);
}

.appointment-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow-black);
    border-top: 5px solid var(--primary-color);
    transition: box-shadow 0.3s ease;
}

.book-appointment-btn {
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.book-appointment-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(4, 204, 71, 0.2);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    color: #666;
}

.footer-bottom p {
    margin: 0;
}

/* =========================================
   10. COUNTER SECTION
   ========================================= */
.counter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.counter-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.counter-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 20px;
    border-radius: 24px;
    color: var(--white);
    transition: all 0.4s ease;
    height: 100%;
}

.counter-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.counter-icon {
    font-size: 35px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.counter-number {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-label {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar {
        padding: 15px 0;
        background: var(--white) !important;
        box-shadow: 0 5px 20px var(--shadow-black);
    }

    .nav-link {
        color: var(--text-dark) !important;
        padding: 10px 0 !important;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-features {
        position: relative;
        transform: translateY(0);
        padding-top: 40px;
    }

    .feature-card {
        margin-bottom: 20px;
        flex-direction: column;
        text-align: center;
    }

    .feature-card i {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .breadcrumb-hero h1 {
        font-size: 32px;
    }

    .about-badge {
        padding: 20px;
        right: 0;
        bottom: 0;
    }

    .about-badge h3 {
        font-size: 28px;
    }

    .form-side {
        padding: 30px;
    }

    .counter-number {
        font-size: 32px;
    }

    .counter-card {
        padding: 30px 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn-sm {
        padding: 10px 20px;
    }

    .doctor-card {
        padding: 20px;
    }

    .doctor-img {
        width: 60px;
        height: 60px;
    }
}

/* =========================================
   8. REGISTRATION SECTION
   ========================================= */

.auth-section {
    padding: 40px 0;
    background: var(--light-bg);
}

.auth-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.auth-image {
    background: url('../img/Student.jpg') center/cover;
    height: 100%;
    min-height: 500px;
    position: relative;
}

.auth-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 204, 71, 0.9), rgba(4, 204, 71, 0.4));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: var(--white);
}

.auth-overlay h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.auth-form-wrapper {
    padding: 50px;
}

/* Custom Scrollbar for Forms and Modals */
.auth-form-wrapper::-webkit-scrollbar,
.modal-body::-webkit-scrollbar,
.modal-dialog-scrollable .modal-content::-webkit-scrollbar {
    width: 6px;
}

.auth-form-wrapper::-webkit-scrollbar-track,
.modal-body::-webkit-scrollbar-track,
.modal-dialog-scrollable .modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.auth-form-wrapper::-webkit-scrollbar-thumb,
.modal-body::-webkit-scrollbar-thumb,
.modal-dialog-scrollable .modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.auth-form-wrapper::-webkit-scrollbar-thumb:hover,
.modal-body::-webkit-scrollbar-thumb:hover,
.modal-dialog-scrollable .modal-content::-webkit-scrollbar-thumb:hover {
    background: #03a339;
}

/* Ensure form is scrollable if it exceeds height on smaller screens */
@media (max-width: 991px) {
    .auth-form-wrapper {
        padding: 30px;
        max-height: 70vh;
        overflow-y: auto;
    }
}

.auth-form-wrapper h3 {
    font-weight: 700;
    color: var(--text-dark);
}

.form-label {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
}

.form-control,
.form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.register-btn {
    background: var(--primary-color);
    border: none;
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: 0.3s;
}

.register-btn:hover {
    background: var(--primary-dark);
}

/* =========================================
   10. BOOKING MODAL & SLOTS
   ========================================= */
.modal-info-side {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.modal-info-side::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.modal-doc-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--white);
    box-shadow: 0 10px 20px var(--shadow-black);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.slot-item {
    background: #f8f9fa;
    border: 2px solid transparent;
    padding: 10px 5px;
    border-radius: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.slot-item:hover:not(.disabled) {
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.slot-item.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(4, 204, 71, 0.3);
}

.slot-item.disabled {
    background: var(--border-color);
    color: #aaa;
    cursor: not-allowed;
    opacity: 0.6;
}

.modal-content {
    border-radius: 20px;
    overflow: hidden;
}

/* Adjustments for existing doctor cards */
.book-appointment-btn {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    border: none !important;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.book-appointment-btn:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(4, 204, 71, 0.3);
}

/* =========================================
   11. ABOUT PAGE SPECIFIC
   ========================================= */
.breadcrumb-hero {
    padding: 150px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-banner-1.png') center/cover;
    color: var(--white);
    text-align: center;
}

.breadcrumb-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-img-wrapper {
    position: relative;
    padding: 20px;
}

.about-img-wrapper img {
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(4, 204, 71, 0.3);
}

.about-badge h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 0;
}

.values-section {
    padding: 100px 0;
    background: #f8fafc;
}

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #eef2f6;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
    transition: 0.4s;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(360deg);
}

/* =========================================
   12. FAQ PAGE SPECIFIC
   ========================================= */
.faq-section {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-category-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-category-title i {
    color: var(--primary-color);
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.faq-section .accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white);
    border-radius: 15px !important;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-section .accordion-body {
    padding: 25px;
    color: #666;
    line-height: 1.7;
    background: var(--white);
}

.search-box {
    max-width: 600px;
    margin: -40px auto 60px;
    position: relative;
    z-index: 10;
}

.search-box input {
    padding: 20px 30px 20px 60px;
    border-radius: 50px;
    border: none !important;
    box-shadow: 0 15px 35px var(--shadow-black);
    font-size: 16px;
    width: 100%;
}

.search-box i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 20px;
}

/* =========================================
   13. CONTACT PAGE SPECIFIC
   ========================================= */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-soft);
    text-align: center;
    height: 100%;
    transition: 0.3s;
    border: 1px solid #f1f4f8;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 25px;
}

.contact-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-card p,
.contact-card a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
}

.form-side {
    background: #f8fafc;
    padding: 50px;
    border-radius: 30px;
}

.contact-form .form-control {
    padding: 15px 25px !important;
    border-radius: 12px;
    border: 1px solid #e1e8ef;
    margin-bottom: 20px !important;
    font-size: 15px;
    background: var(--white);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem var(--primary-light);
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =========================================
   14. ABOUT COURSES SECTION
   ========================================= */
.about-courses {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-courses .section-title {
    color: #111;
    font-size: 3rem;
    font-weight: 800;
}

.new-course-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.new-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-black);
}

.course-img-box {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.course-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-content {
    padding: 20px;
}

.type-badge {
    color: var(--online-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.course-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--bg-soft);
    padding-top: 15px;
    color: #666;
    font-size: 0.9rem;
}

.enrolled i {
    color: var(--primary-color);
    margin-right: 5px;
}

.rating {
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating i {
    color: #f1c40f;
}

.book-now-btn {
    border-radius: 12px;
    font-weight: 700;
    padding: 10px;
    background: var(--primary-color);
    border: none;
    color: var(--white);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
    margin-top: auto;
}

.book-now-btn:hover {
    background-color: var(--text-dark);
}

/* =========================================
   GENERIC PAGE HERO (Class 8 style)
   ========================================= */
.page-hero-section {
    background: linear-gradient(135deg, #e0f7fa 0%, #f3e5f5 100%);
    padding: 100px 0 80px;
    position: relative;
}

.page-hero-title {
    font-weight: 800;
    color: #111;
    margin-bottom: 1.5rem;
}

.badge-bestseller {
    background-color: #d1fae5;
    color: #065f46;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.course-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 15px;
}

.course-rating i {
    color: #fbbf24;
}

.subject-list-item {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.subject-list-item i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

.overview-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    margin-top: 25px;
    transition: all 0.3s;
}

.overview-btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

/* =========================================
   15. EXAMS PAGE SPECIFIC
   ========================================= */
.exams-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

/* Custom Tabs */
.exam-tabs {
    border-bottom: 2px solid #edf2f7;
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
}

.exam-tab-item {
    font-weight: 600;
    font-size: 15px;
    color: #a0aec0;
    padding-bottom: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s;
}

.exam-tab-item.active {
    color: var(--primary-color);
}

.exam-tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px 3px 0 0;
}

/* Performance Stats */
.performance-card {
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: transform 0.3s;
    height: 100%;
}

.performance-card:hover {
    transform: translateY(-5px);
}

.perf-green {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.perf-green {
    background: #e8f5e9;
    color: #2e7d32;
}

.perf-orange {
    background: #fff3e0;
    color: #ef6c00;
}

.perf-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.perf-value {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 2px;
}

.perf-label {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.8;
}

/* Exam Schedule Card */
.exam-schedule-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #edf2f7;
    margin-top: 30px;
}

.status-badge {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.exam-main-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.exam-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.exam-tag {
    background: #f7fafc;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
}

.exam-date-row {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
    color: #718096;
    font-size: 14px;
}

.exam-meta-row {
    color: #718096;
    font-size: 14px;
    margin-bottom: 15px;
}

.negative-marking {
    color: #e53e3e;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.syllabus-box {
    margin-bottom: 25px;
}

.syllabus-label {
    font-size: 14px;
    color: #718096;
    margin-bottom: 10px;
}

.syllabus-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.syl-pill {
    background: #f8fafc;
    border: 1px solid #edf2f7;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: #2d3748;
}

.view-details-btn {
    width: 100%;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.view-details-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}


/* Active Card Styles */
.status-badge.active-now {
    background: #e6f4ea;
    color: #1e8e3e;
}

.start-exam-btn {
    width: 100%;
    background: #34a853;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.start-exam-btn:hover {
    background: #2d9249;
}

/* Completed Card Styles */
.status-badge.completed {
    background: #f1f3f4;
    color: #5f6368;
}

.result-box {
    background: #f0fdf4;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.score-label {
    font-size: 14px;
    color: #5f6368;
    margin-bottom: 5px;
}

.score-value {
    font-size: 32px;
    font-weight: 800;
    color: #34a853;
    margin-bottom: 10px;
}

.score-value span {
    font-size: 20px;
    color: #5f6368;
    font-weight: 600;
}

.progress-container {
    margin-top: 15px;
}

.custom-progress {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar-fill {
    height: 100%;
    background: #202124;
    width: 0;
    /* Set inline */
    border-radius: 4px;
}

.batch-avg {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #5f6368;
}

.above-avg {
    color: #34a853;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.btn-outline-green {
    border: 1px solid #34a853;
    color: #34a853;
    background: transparent;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    flex: 1;
    text-transform: uppercase;
    font-size: 13px;
}

.btn-solid-green {
    background: #34a853;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    flex: 1;
    text-transform: uppercase;
    font-size: 13px;
}


/* Subscription Page Styles */
.price-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    height: 100%;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-header {
    padding: 20px;
    text-align: center;
    background-color: var(--primary-dark);
}

.price-body {
    padding: 30px;
}

.price-amount h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    display: inline-block;
}

.price-features li {
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.price-features li i {
    width: 20px;
}


/* Dashboard Styles */
.dashboard-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: #f8fafc;
    border-right: 1px solid var(--border-color);
    padding: 20px;
    position: fixed;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 0;
    /* Remove padding here to control it in inner elements */
    background: #f8f9fa;
}

.main-content-inner {
    padding: 30px;
}

.header-green {
    background: linear-gradient(135deg, #04CC47 0%, #03a339 100%);
    color: white;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(4, 204, 71, 0.15);
}

.sidebar-logo {
    display: block;
    margin-bottom: 40px;
    padding-left: 10px;
}

.nav-link-dashboard {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 5px;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-link-dashboard i {
    width: 25px;
    margin-right: 10px;
}

.nav-link-dashboard:hover,
.nav-link-dashboard.active {
    background: var(--primary-color);
    color: white;
}

/* Grouped Sidebar Styles */
.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    border: 1px solid var(--bg-soft);
}

.sidebar-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    color: #2d3748;
    text-decoration: none !important;
    transition: all 0.2s;
    border-bottom: 1px solid #f8fafc;
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-item:hover {
    background: #fdfdfd;
}

.sidebar-item-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sidebar-item-content i {
    width: 24px;
    font-size: 18px;
    color: #4a5568;
}

.sidebar-item span {
    font-size: 15px;
    font-weight: 500;
}

.sidebar-item .fa-chevron-right {
    font-size: 12px;
    color: #cbd5e0;
}

/* Switch Styling */
.form-switch .form-check-input {
    width: 2.5em;
    height: 1.3em;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Logout Styling */
.logout-container {
    padding: 20px 0;
    text-align: center;
}

.logout-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #e53e3e;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none !important;
}

.logout-link:hover {
    opacity: 0.8;
}

/* Category header */
.sidebar-category {
    font-size: 14px;
    font-weight: 700;
    color: #a0aec0;
    margin-bottom: 12px;
    padding-left: 5px;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 -2px 15px var(--shadow-soft);
    z-index: 1000;
    border-top: 1px solid var(--border-color);
}

.nav-item-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #718096;
    text-decoration: none !important;
    font-size: 11px;
    gap: 4px;
}

.nav-item-mobile i {
    font-size: 20px;
}

.nav-item-mobile.active {
    color: var(--primary-color);
}

.nav-item-mobile.active-profile {
    color: var(--primary-color);
    /* Match screenshot green */
}

/* Dashboard Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.video-lecture-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--bg-soft);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.video-lecture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-soft);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(4, 204, 71, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    opacity: 0;
    transition: 0.3s;
}

.video-lecture-card:hover .play-overlay {
    opacity: 1;
}

.video-card-body {
    padding: 20px;
}

.subject-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.badge-math {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.badge-science {
    background: #f0fff4;
    color: #38a169;
}

.badge-english {
    background: #faf5ff;
    color: #805ad5;
}

.badge-history {
    background: #fffaf0;
    color: #dd6b20;
}

.video-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2d3748;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #718096;
    margin-bottom: 15px;
}

.video-progress-container {
    height: 6px;
    background: #edf2f7;
    border-radius: 3px;
    margin-bottom: 15px;
}

.video-progress-bar {
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    width: 0;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px var(--shadow-soft);
}

.action-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-soft);
    transition: transform 0.3s;
    height: 100%;
}

.action-card:hover {
    transform: translateY(-5px);
}

.action-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f4ff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

/* Responsive Dashboard */
@media (max-width: 991px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
        z-index: 1050;
    }

    .sidebar.show {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        padding-bottom: 90px;
    }
}


/* =========================================
   14. LOGIN PAGE STYLES
   ========================================= */
.login-image {
    background: url('../img/Student.jpg') center/cover;
}

.login-btn {
    background: var(--primary-color);
    border: none;
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: 0.3s;
    color: var(--white);
}

.login-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(4, 204, 71, 0.3);
}

.divider {
    position: relative;
    text-align: center;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    z-index: 1;
}

.divider span {
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 0 15px;
    color: #9ca3af;
    font-size: 14px;
}

.social-btn {
    border: 1px solid #e5e7eb !important;
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-btn:hover {
    background: var(--light-bg) !important;
    border-color: #d1d5db !important;
}



/* =========================================
   16. MY LEARNING PAGE STYLES
   ========================================= */
.my-learning-container {
    background: #f8fafc;
}

.ml-header {
    background: var(--white);
    padding: 20px 0 0;
    /* Normal padding since it's below the hero section */
    position: relative;
    /* Removed sticky */
    z-index: 10;
}

.ml-tabs {
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid var(--border-color);
    margin-top: 15px;
}

.ml-tab-item {
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 700;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.ml-tab-item.active {
    color: var(--primary-color);
}

.ml-tab-item.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px 3px 0 0;
}

.ml-content-section {
    padding: 20px;
}

/* Progress Card */
.ml-progress-card {
    background: var(--white);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 12px var(--shadow-soft);
    margin-bottom: 25px;
}

.ml-progress-icon {
    width: 45px;
    height: 45px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2d3748;
}

.ml-progress-info {
    flex: 1;
}

.ml-progress-info h6 {
    margin-bottom: 4px;
    font-weight: 700;
}

.ml-progress-info span {
    font-size: 12px;
    color: #718096;
}

.ml-custom-progress {
    height: 6px;
    background: #edf2f7;
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
}

.ml-progress-fill {
    height: 100%;
    background: #2d3748;
}

/* Continue Watching Card */
.ml-continue-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px var(--shadow-soft);
    margin-bottom: 25px;
}

.ml-continue-thumb {
    width: 140px;
    height: 80px;
    position: relative;
    background: var(--border-color);
}

.ml-continue-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ml-continue-duration {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 3px;
}

.ml-continue-body {
    padding: 12px;
    flex: 1;
}

.ml-continue-body h6 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
}

.ml-continue-body p {
    font-size: 11px;
    color: #718096;
    margin-bottom: 4px;
}

.ml-continue-meta {
    font-size: 10px;
    color: #718096;
    font-weight: 600;
}

/* Live Now Section */
.ml-live-card {
    background: var(--white);
    border: 1px solid #fed7d7;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    position: relative;
}

.ml-live-indicator {
    color: #e53e3e;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.ml-live-indicator::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #e53e3e;
    border-radius: 50%;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(229, 62, 62, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(229, 62, 62, 0);
    }
}

.ml-live-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.ml-live-pills {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.ml-pill {
    background: #f7fafc;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #4a5568;
    font-weight: 600;
}

.ml-live-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #718096;
    margin-bottom: 20px;
}

.ml-live-instructor {
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 20px;
}

.btn-join-now {
    background: #e53e3e;
    color: var(--white);
    font-weight: 700;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
}

/* Demo Section Styles */
.ml-demo-notice {
    background: #fffaf0;
    border-radius: 12px;
    padding: 15px;
    color: #c05621;
    margin-bottom: 25px;
}

.ml-demo-notice h6 {
    font-weight: 800;
    margin-bottom: 10px;
}

.ml-demo-notice p {
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.5;
}

.ml-video-card-v2 {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px var(--shadow-soft);
    border: 1px solid var(--bg-soft);
}

.ml-v-thumb {
    position: relative;
    aspect-ratio: 16/9;
}

.ml-v-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ml-v-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: #f6ad55;
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    border-bottom-right-radius: 12px;
    text-transform: uppercase;
}

.ml-v-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border-color);
    font-size: 16px;
}

.ml-v-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
}

.ml-v-body {
    padding: 15px;
}

.ml-v-body h6 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.ml-v-instructor {
    font-size: 12px;
    color: #718096;
    margin-bottom: 5px;
}

.ml-v-desc {
    font-size: 12px;
    color: #a0aec0;
    margin-bottom: 15px;
}

.ml-v-views {
    font-size: 12px;
    color: #718096;
    font-weight: 600;
}

/* General Layout for My Learning */
.section-title-sm {
    font-size: 18px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 20px;
}

.mb-90 {
    margin-bottom: 90px;
}

input-group-text {
    border-color: #e5e7eb;
}

.auth-overlay i {
    color: var(--white);
    font-size: 18px;
}

/* =========================================
   12. TESTIMONIAL SECTION
   ========================================= */
.testimonial-section {
    position: relative;
    /* padding: 120px 0; */
    background: var(--black);
    overflow: hidden;
    color: var(--white);
}

.testimonial-bg-split {
    position: absolute;
    top: 0;
    left: 0;
    /* Changed from right to left */
    width: 42%;
    /* Increased to cover the col-lg-5 branding area */
    height: 100%;
    background: var(--primary-color);
    /* Reverted to Green */
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    /* Mirrored clip-path */
    z-index: 1;
}

.z-content {
    z-index: 2;
}

.testimonial-content {
    padding: 20px 0;
}

.user-img-box {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.user-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 2px;
    letter-spacing: 1px;
    color: var(--white);
}

.user-desc {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.quote-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--white);
    font-weight: 400;
    max-width: 750px;
    margin-top: 20px;
}

.testimonial-brand {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    right: 10px;
    /* Ensure it stays above split backgrounds */
}

.quote-icon-large {
    font-size: 140px;
    color: var(--black);
    opacity: 0.9;
    line-height: 1;
    margin-bottom: 10px;
}

.large-title {
    font-weight: 900;
    font-size: 52px;
    color: var(--black);
    letter-spacing: 4px;
    margin: 0;
    line-height: 1;
}

.custom-nav-testi .testi-prev,
.custom-nav-testi .testi-next,
.testimonial-wrapper .custom-arrow {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: var(--white);
    opacity: 0.6;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-wrapper .custom-arrow:hover {
    opacity: 1;
    background: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-wrapper {
    min-height: 350px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .testimonial-bg-split {
        width: 100%;
        height: 150px;
        top: auto;
        bottom: 0;
        clip-path: none;
        display: none;
    }

    .testimonial-section {
        padding: 80px 0;
        text-align: center;
    }

    .testimonial-content .d-flex {
        flex-direction: column;
        align-items: center !important;
        text-align: center;
    }

    .testimonial-content .ms-4 {
        margin-left: 0 !important;
        margin-top: 20px;
    }

    .user-img-box {
        width: 120px;
        height: 120px;
    }

    .quote-text {
        font-size: 16px;
        margin: 20px auto 0;
    }

    .custom-nav-testi {
        justify-content: center;
    }

    /* My Learning Mobile Overrides */
    .my-learning-container {
        padding-bottom: 90px;
    }
}

/* =========================================
   SCROLL TO TOP BUTTON
   ========================================= */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color, #ffcd3a);
    color: var(--black);
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow-black);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-5px);
}

/* =========================================
   BSE COURSE SECTION REDESIGN
   ========================================= */

/* --- Dark Gradient Course Header --- */
.bse-course-header {
    background: linear-gradient(135deg, #0a2e1a 0%, #0d4a2a 50%, var(--primary-color) 100%);
    padding: 50px 0 45px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.bse-course-header::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(4, 204, 71, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bse-course-header::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.bse-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.bse-course-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.bse-course-header .bse-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 20px;
}

.bse-meta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.bse-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.bse-meta-item .stars i {
    color: #fbbf24;
    font-size: 14px;
}

.bse-meta-item i:not(.fa-star) {
    color: var(--primary-color);
    font-size: 16px;
}

.bse-meta-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
}

.bse-cta-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.bse-btn-enroll {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(4, 204, 71, 0.4);
}

.bse-btn-enroll:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(4, 204, 71, 0.5);
}

.bse-btn-demo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bse-btn-demo:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--primary-light);
}

/* --- Feature Highlight Cards --- */
.bse-features-section {
    padding: 2rem 0;
    background: transparent;
}

.bse-feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid var(--bg-soft);
    height: 100%;
}

.bse-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px var(--shadow-black);
    border-color: var(--primary-color);
}

.bse-feature-icon {
    width: 65px;
    height: 65px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.bse-feature-card:hover .bse-feature-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.bse-feature-card h5 {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.bse-feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* --- Description Card --- */
.bse-description-section {
    padding: 2rem 0;
    background: transparent;
}

.bse-description-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 40px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 20px var(--shadow-soft);
}

.bse-description-card p {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* --- Subject Tags Section --- */
.bse-subjects-section {
    padding: 2rem 0;
    background: transparent;
}

.bse-subjects-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.bse-subjects-header h3 {
    font-weight: 800;
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 0;
}

.bse-subjects-header .bse-subject-count {
    background: var(--primary-color);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
}

.bse-subjects-intro {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.bse-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bse-subject-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    background: transparent;
    transition: all 0.3s ease;
    cursor: default;
}

.bse-subject-tag i {
    font-size: 12px;
}

.bse-subject-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(4, 204, 71, 0.3);
}

/* --- BSE Responsive --- */
@media (max-width: 991px) {
    .bse-course-header h2 {
        font-size: 1.6rem;
    }

    .bse-description-card {
        padding: 25px 20px;
    }
}

@media (max-width: 767px) {
    .bse-course-header {
        padding: 35px 0 30px;
    }

    .bse-course-header h2 {
        font-size: 1.4rem;
    }

    .bse-meta-row {
        gap: 12px;
    }

    .bse-feature-card {
        padding: 20px 15px;
    }

    .bse-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .bse-subject-tag {
        padding: 8px 16px;
        font-size: 13px;
    }

    .bse-description-card {
        padding: 20px 15px;
        border-left-width: 4px;
    }
}

/* =========================================
   WHY CHOOSE ODION PAGE
   ========================================= */


.wco-main-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.wco-highlight {
    color: var(--primary-color);
}

/* Quick Stats */
.wco-quick-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.wco-stat {
    text-align: center;
}

.wco-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.wco-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 5px;
}

/* Image Placeholder */
.wco-image-wrapper {
    position: relative;
}

.wco-image-placeholder {
    background: linear-gradient(135deg, #0a2e1a, #0d4a2a);
    border-radius: 20px;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.wco-image-placeholder::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(4, 204, 71, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.wco-image-placeholder i {
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.8;
}

.wco-image-placeholder span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 600;
}

/* Advantage Cards */
.wco-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 25px;
    border: 1px solid var(--bg-soft);
    box-shadow: 0 4px 20px var(--shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.wco-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: 0.3s;
}

.wco-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px var(--shadow-black);
    border-color: var(--primary-color);
}

.wco-card:hover::before {
    opacity: 1;
}

.wco-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.wco-card:hover .wco-card-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.wco-card h5 {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.wco-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* =========================================
   REGISTRATION MODAL RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
    #registrationModal .auth-image {
        display: none;
    }

    #registrationModal .auth-form-wrapper {
        padding: 30px 20px;
    }

    #registrationModal .modal-dialog {
        margin: 10px;
        max-width: 100%;
    }

    #registrationModal .auth-card {
        min-height: auto;
    }
}

/* Step Cards */
.wco-step-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
}

.wco-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.wco-step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 10px;
}

.wco-step-card:hover .wco-step-number {
    color: rgba(4, 204, 71, 0.25);
}

.wco-step-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.wco-step-card:hover .wco-step-icon {
    background: var(--primary-color);
    color: var(--white);
}

.wco-step-card h5 {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.wco-step-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Section */
.wco-cta-section {
    background: linear-gradient(135deg, #0a2e1a 0%, #0d4a2a 50%, var(--primary-color) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.wco-cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(4, 204, 71, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* WCO Responsive */
@media (max-width: 991px) {
    .wco-main-title {
        font-size: 1.8rem;
    }

    .wco-quick-stats {
        gap: 20px;
    }

    .wco-image-placeholder {
        min-height: 250px;
        padding: 50px 30px;
    }
}

@media (max-width: 767px) {
    .wco-main-title {
        font-size: 1.5rem;
    }

    .wco-quick-stats {
        justify-content: center;
    }

    .wco-stat-number {
        font-size: 1.6rem;
    }

    .wco-card {
        padding: 25px 20px;
    }

    .wco-cta-section {
        padding: 50px 0;
    }
}

/* =========================================
   TEACHING METHOD PAGE
   ========================================= */

.tm-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Process Flow */
.tm-process-visual {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--bg-soft);
}

.tm-process-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.tm-process-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.tm-process-item:hover .tm-process-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.tm-process-content h6 {
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.tm-process-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.tm-process-connector {
    width: 3px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(4, 204, 71, 0.2));
    margin-left: 27px;
    border-radius: 3px;
}

/* Pillar Cards */
.tm-pillar-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 25px;
    border: 1px solid var(--bg-soft);
    box-shadow: 0 4px 20px var(--shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.tm-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px var(--shadow-black);
    border-color: var(--primary-color);
}

.tm-pillar-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(4, 204, 71, 0.08);
    line-height: 1;
}

.tm-pillar-card:hover .tm-pillar-number {
    color: rgba(4, 204, 71, 0.18);
}

.tm-pillar-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.tm-pillar-card:hover .tm-pillar-icon {
    background: var(--primary-color);
    color: var(--white);
}

.tm-pillar-card h5 {
    font-weight: 700;
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.tm-pillar-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Advantage Cards */
.tm-advantage-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 22px;
    border: 1px solid var(--bg-soft);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.tm-advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px var(--shadow-black);
    border-color: var(--primary-color);
}

.tm-adv-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(4, 204, 71, 0.15), rgba(4, 204, 71, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.tm-advantage-card:hover .tm-adv-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

.tm-advantage-card h5 {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.tm-advantage-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Comparison Table */
.tm-comparison-table {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.tm-comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.tm-comparison-table thead {
    background: linear-gradient(135deg, #0a2e1a, #0d4a2a);
    color: var(--white);
}

.tm-comparison-table th {
    padding: 18px 25px;
    font-weight: 600;
    font-size: 15px;
}

.tm-comparison-table td {
    padding: 16px 25px;
    border-bottom: 1px solid #f3f3f3;
    font-size: 14px;
    color: var(--text-dark);
}

.tm-comparison-table tbody tr:hover {
    background: rgba(4, 204, 71, 0.04);
}

.tm-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* TM Responsive */
@media (max-width: 991px) {
    .tm-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 767px) {
    .tm-title {
        font-size: 1.4rem;
    }

    .tm-comparison-table th,
    .tm-comparison-table td {
        padding: 12px 15px;
        font-size: 13px;
    }

    .tm-pillar-card {
        padding: 25px 20px;
    }
}

/* =========================================
   ABOUT ODION PAGE
   ========================================= */

/* Mission & Vision Cards */
.ao-mv-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--bg-soft);
    height: 100%;
    transition: all 0.3s ease;
}

.ao-mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-black);
}

.ao-mv-icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.ao-mv-icon-wrap.ao-mission {
    background: rgba(4, 204, 71, 0.12);
    color: var(--primary-color);
}

.ao-mv-icon-wrap.ao-vision {
    background: rgba(10, 46, 26, 0.1);
    color: #0d4a2a;
}

.ao-mv-card h3 {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.ao-mv-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.ao-mv-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.ao-mv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.ao-mv-list li i {
    color: var(--primary-color);
    font-size: 12px;
}

/* Timeline */
.ao-timeline {
    position: relative;
    padding: 20px 0;
}

.ao-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(4, 204, 71, 0.15));
    transform: translateX(-50%);
    border-radius: 3px;
}

.ao-timeline-item {
    position: relative;
    width: 50%;
    padding: 15px 40px;
}

.ao-timeline-item.ao-left {
    left: 0;
    text-align: right;
}

.ao-timeline-item.ao-right {
    left: 50%;
}

.ao-timeline-item::after {
    content: "";
    position: absolute;
    top: 25px;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(4, 204, 71, 0.2);
    z-index: 1;
}

.ao-timeline-item.ao-left::after {
    right: -8px;
}

.ao-timeline-item.ao-right::after {
    left: -8px;
}

.ao-timeline-content {
    background: var(--white);
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--bg-soft);
    transition: all 0.3s ease;
}

.ao-timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-black);
    border-color: var(--primary-color);
}

.ao-timeline-year {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.ao-timeline-content h5 {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.ao-timeline-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Offer Cards */
.ao-offer-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-soft);
    border: 1px solid var(--bg-soft);
    transition: all 0.3s ease;
    height: 100%;
}

.ao-offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px var(--shadow-black);
    border-color: var(--primary-color);
}

.ao-offer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0a2e1a, #0d4a2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.ao-offer-card:hover .ao-offer-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.ao-offer-card h6 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.ao-offer-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* AO Responsive */
@media (max-width: 991px) {
    .ao-timeline::before {
        left: 20px;
    }

    .ao-timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 15px;
    }

    .ao-timeline-item.ao-left,
    .ao-timeline-item.ao-right {
        left: 0;
        text-align: left;
    }

    .ao-timeline-item.ao-left::after,
    .ao-timeline-item.ao-right::after {
        left: 12px;
        right: auto;
    }
}

@media (max-width: 767px) {
    .ao-mv-card {
        padding: 28px 22px;
    }

    .ao-timeline-item {
        padding-left: 45px;
    }
}

/* =========================================
   OUR TEACHERS PAGE
   ========================================= */

/* --- Intro & Stats --- */
.ot-stats-section {
    position: relative;
    background: linear-gradient(135deg, rgba(4, 204, 71, 0.04) 0%, rgba(13, 74, 42, 0.02) 100%);
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.03);
    border-top: 1px solid var(--primary-light);
    border-bottom: 1px solid var(--primary-light);
}

.ot-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(4, 204, 71, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(4, 204, 71, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* --- Stat Cards --- */
.ot-stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 4px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    animation: ot-float 6s ease-in-out infinite;
}

.ot-stat-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(4, 204, 71, 0.15);
    border-color: var(--primary-color);
    background: var(--white);
}

.ot-stat-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-light), rgba(4, 204, 71, 0.2));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.4s ease;
    box-shadow: 0 8px 15px var(--primary-light);
}

.ot-stat-card:hover .ot-stat-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(4, 204, 71, 0.3);
}

.ot-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.ot-stat-label {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* Decorative Blobs */
.ot-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(4, 204, 71, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.ot-blob-1 {
    top: -100px;
    left: -100px;
}

.ot-blob-2 {
    bottom: -100px;
    right: -100px;
}

@keyframes ot-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* --- Filter Tabs --- */
.ot-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.ot-filter-btn {
    background: var(--white);
    border: 2px solid #e5e7eb;
    color: var(--text-muted);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ot-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.ot-filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* --- Teacher Cards --- */
.ot-teacher-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-soft);
    border: 1px solid var(--bg-soft);
    transition: all 0.4s ease;
}

.ot-teacher-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.ot-teacher-img {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #0a2e1a, #0d4a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ot-teacher-avatar {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.7);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
}

.ot-teacher-card:hover .ot-teacher-avatar {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--primary-color);
    color: var(--white);
}

.ot-teacher-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.ot-teacher-card:hover .ot-teacher-overlay {
    opacity: 1;
    transform: translateY(0);
}

.ot-teacher-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ot-teacher-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.ot-teacher-info {
    padding: 25px;
}

.ot-teacher-info h5 {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.ot-teacher-subject {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ot-teacher-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.ot-teacher-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--bg-soft);
}

.ot-teacher-meta span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.ot-teacher-meta span i {
    color: var(--primary-color);
    margin-right: 5px;
}

.ot-teacher-meta span .fa-star {
    color: #fbbf24;
}

/* --- Why Our Teachers Cards --- */
.ot-why-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px var(--shadow-soft);
    border: 1px solid var(--bg-soft);
    transition: all 0.3s ease;
    height: 100%;
}

.ot-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px var(--shadow-black);
    border-color: var(--primary-color);
}

.ot-why-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.ot-why-card:hover .ot-why-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.ot-why-card h5 {
    font-weight: 700;
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.ot-why-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Teachers Page Responsive --- */
@media (max-width: 991px) {
    .ot-filter-tabs {
        gap: 8px;
    }

    .ot-filter-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .ot-stat-card {
        padding: 20px 15px;
    }

    .ot-stat-number {
        font-size: 1.6rem;
    }

    .ot-teacher-img {
        height: 180px;
    }

    .ot-teacher-avatar {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .ot-teacher-info {
        padding: 20px;
    }

    .ot-why-card {
        padding: 22px 18px;
    }
}

/* =========================================
   HOME PAGE BACKGROUND ENHANCEMENT
   ========================================= */
.home-page {
    background-color: #f8fff9;
    /* Very light green tinted background */
    background-image:
        radial-gradient(var(--primary-light) 1px, transparent 1px);
    background-size: 30px 30px;
    /* Modern dot pattern */
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

/* Base style for floating blobs */
.home-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(4, 204, 71, 0.08) 0%, rgba(4, 204, 71, 0.03) 100%);
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    animation: home-float 20s infinite ease-in-out;
}

@keyframes home-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 40px) scale(0.9);
    }
}

.home-blob-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.home-blob-2 {
    top: 40%;
    left: -10%;
    animation-delay: -5s;
    width: 500px;
    height: 500px;
}

.home-blob-3 {
    top: 70%;
    right: -8%;
    animation-delay: -10s;
}

.home-blob-4 {
    top: 90%;
    left: 5%;
    animation-delay: -15s;
}

/* =========================================
   WHY CHOOSE ODION PAGE ENHANCEMENTS
   ========================================= */
.wco-different-section {
    background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url('../img/green.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
}

.wco-card {
    background: linear-gradient(135deg, var(--white) 0%, #f0faf2 100%);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    /* Center content */
    border: 1px solid rgba(4, 204, 71, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03), 0 0 20px rgba(4, 204, 71, 0.02);
    /* Angelic shadow */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wco-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(4, 204, 71, 0.12), 0 10px 20px var(--shadow-soft);
    /* Enhanced angelic shadow */
    border-color: var(--primary-color);
}

.wco-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), rgba(4, 204, 71, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.wco-card:hover .wco-card-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.wco-card h5 {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.wco-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* =========================================
   12. WHAT MAKES ODION DIFFERENT SECTION
   ========================================= */
.odion-different-section {
    padding: 80px 0;
    /* Green Gradient Background */
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.odion-different-section .section-title {
    color: var(--black) !important;
}

.od-feature-item {
    margin-bottom: 30px;
    color: var(--white);
    transition: transform 0.3s ease;
}

.od-feature-item:hover {
    transform: translateY(-5px);
}

.od-feature-item .icon-box {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--white);
    transition: 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.od-feature-item:hover .icon-box {
    background: var(--white);
    color: var(--primary-color);
}

/* Alignment for Left Column (Desktop) */
@media (min-width: 992px) {
    .od-feature-item.text-lg-end .icon-box {
        margin-left: auto;
        margin-right: 0;
    }
}

/* For Mobile/Tablet, center everything */
@media (max-width: 991px) {
    .od-feature-item {
        text-align: center !important;
    }

    .od-feature-item .icon-box {
        margin: 0 auto 15px auto !important;
    }
}

.od-feature-item h5 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.od-feature-item p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

.od-center-image-wrapper {
    position: relative;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Pulse Effect Circle behind image */
.od-center-image-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
    animation: pulseCircle 3s infinite ease-in-out;
}

/* Second Pulse Circle delay */
.od-center-image-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
    animation: pulseCircle 3s infinite ease-in-out 0.5s;
}

.od-center-image-wrapper img {
    position: relative;
    z-index: 1;
    max-height: 450px;
    width: auto;
    /* Drop shadow to make it pop */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

@keyframes pulseCircle {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.0);
        opacity: 0.2;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.6;
    }
}

@media (max-width: 768px) {

    .od-center-image-wrapper::before,
    .od-center-image-wrapper::after {
        width: 280px;
        height: 280px;
    }

    .od-center-image-wrapper::after {
        display: none;
        /* Simplify on mobile */
    }
}

/* =========================================
   COMPARISON SERVICES SECTION - DARK PURPLE
   ========================================= */
.comparison-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0033 0%, #2d1b4e 100%);
    position: relative;
    overflow: hidden;
}

.comparison-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Comparison Cards */
.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.comparison-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.comparison-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comparison-icon i {
    font-size: 24px;
    color: var(--white);
}

.comparison-content {
    flex: 1;
}

.comparison-content h5 {
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
}

.comparison-content p {
    margin-bottom: 8px;
    font-size: 14px;
}

.odion-feature {
    color: #4ade80;
}

.odion-feature i {
    margin-right: 8px;
    color: #4ade80;
}

.traditional-feature {
    color: #f87171;
}

.traditional-feature i {
    margin-right: 8px;
    color: #f87171;
}

/* Center Icon */
.comparison-center {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(4, 204, 71, 0.3);
}

.comparison-center::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid rgba(4, 204, 71, 0.3);
    animation: pulseRing 2s ease-in-out infinite;
}

.comparison-center i {
    font-size: 50px;
    color: var(--white);
}

@keyframes pulseRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .comparison-center {
        margin-bottom: 30px;
    }

    .comparison-card.left,
    .comparison-card.right {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .comparison-services-section {
        padding: 60px 0;
    }

    .comparison-card {
        padding: 20px;
    }

    .comparison-icon {
        width: 40px;
        height: 40px;
    }

    .comparison-icon i {
        font-size: 20px;
    }

    .comparison-content h5 {
        font-size: 16px;
    }

    .comparison-center {
        width: 100px;
        height: 100px;
    }

    .comparison-center i {
        font-size: 40px;
    }
}

/* =========================================
   ADVANTAGES SERVICES SECTION - DARK PURPLE
   ========================================= */
.advantages-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0033 0%, #2d1b4e 100%);
    position: relative;
    overflow: hidden;
}

.advantages-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Advantage Service Cards */
.advantage-service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.advantage-service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.advantage-service-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-service-icon i {
    font-size: 24px;
    color: var(--white);
}

.advantage-service-content {
    flex: 1;
}

.advantage-service-content h5 {
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.advantage-service-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Center Icon */
.advantage-center {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(4, 204, 71, 0.3);
}

.advantage-center::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px solid rgba(4, 204, 71, 0.3);
    animation: pulseRing 2s ease-in-out infinite;
}

.advantage-center i {
    font-size: 50px;
    color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
    .advantage-center {
        margin-bottom: 30px;
    }

    .advantage-service-card.left,
    .advantage-service-card.right {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .advantages-services-section {
        padding: 60px 0;
    }

    .advantage-service-card {
        padding: 20px;
    }

    .advantage-service-icon {
        width: 40px;
        height: 40px;
    }

    .advantage-service-icon i {
        font-size: 20px;
    }

    .advantage-service-content h5 {
        font-size: 16px;
    }

    .advantage-center {
        width: 100px;
        height: 100px;
    }

    .advantage-center i {
        font-size: 40px;
    }
}

/* =========================================
   REGISTRATION COUNTDOWN SECTION
   ========================================= */
.register-countdown-section {
    padding: 70px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1600') center/cover no-repeat;
    position: relative;
    min-height: 500px;
    transition: none !important;
}

.register-left {
    color: var(--white);
}

.register-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 400;
}

.register-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-circle {
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.countdown-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
}

.countdown-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: lowercase;
}

/* Yellow Speech Bubble Updated to Theme Green */
.register-bubble {
    background: var(--primary-color);
    border-radius: 30px;
    padding: 40px 35px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.register-bubble::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50px;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 0px solid transparent;
    border-top: 30px solid var(--primary-color);
}

.bubble-content h3 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.4;
}

.register-input {
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 15px;
    background: var(--white);
}

.register-input::placeholder {
    color: #999;
}

.register-submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.register-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(4, 204, 71, 0.4);
}

.register-login-link {
    color: #2d2d2d;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.register-login-link:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {
    .register-title {
        font-size: 42px;
    }

    .register-left {
        margin-bottom: 40px;
        text-align: center;
    }

    .countdown-timer {
        justify-content: center;
    }

    .register-bubble::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .register-countdown-section {
        padding: 60px 0;
    }

    .register-title {
        font-size: 32px;
    }

    .countdown-circle {
        width: 70px;
        height: 70px;
    }

    .countdown-number {
        font-size: 24px;
    }

    .register-bubble {
        padding: 30px 25px;
    }

    .bubble-content h3 {
        font-size: 18px;
    }
}

/* =========================================
   JOB CARDS SECTION
   ========================================= */
.job-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(4, 204, 71, 0.1);
    border-color: var(--primary-color);
}

.job-card .badge {
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.job-meta {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
    color: #64748b;
}

.job-meta i {
    color: var(--primary-color);
}

.job-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    flex-grow: 1;
    margin-bottom: 25px !important;
}

.apply-now-btn {
    border-radius: 12px;
    font-weight: 700;
    padding: 12px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

/* =========================================
   NEW CAREER SPLIT SECTION (LIGHT THEME)
   ========================================= */
.career-split-section {
    padding: 100px 0;
    background-color: var(--white);
    color: var(--text-dark);
    /* Inverted colors */
    overflow: hidden;
}

.career-image-wrapper {
    position: relative;
    padding: 20px;
}

.career-hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 100px 20px 100px 20px;
    /* Unique shape as requested */
    box-shadow: 0 20px 50px var(--shadow-black);
    /* Softer shadow for light theme */
    z-index: 2;
    position: relative;
}

.career-shape-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    background: var(--primary-color);
    border-radius: 100px 20px 100px 20px;
    z-index: 1;
    transform: translate(-15px, -15px);
    opacity: 0.1;
    /* Lighter opacity for light theme */
}

.career-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.career-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--text-dark);
}

.career-text {
    color: #475569;
    /* Darker text for readability on white */
    line-height: 1.8;
    margin-bottom: 35px;
}

.job-links-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-link-item {
    display: flex;
    align-items: center;
    background: #f8fafc;
    /* Light gray background for items */
    border: 1px solid #e2e8f0;
    padding: 15px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    color: var(--text-dark) !important;
}

.job-link-item:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 10px 20px var(--shadow-soft);
}

.job-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
}

.job-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.text-light-50 {
    color: #64748b !important;
    /* Slate color for secondary text */
}

.job-link-item .arrow {
    margin-left: auto;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.job-link-item:hover .arrow {
    opacity: 1;
    transform: translateX(5px);
}

.career-btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-color);
    color: var(--white) !important;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(4, 204, 71, 0.3);
}

.career-btn:hover {
    background: var(--text-dark);
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .career-split-section {
        padding: 60px 0;
        text-align: center;
    }

    .career-content {
        padding-left: 0 !important;
    }

    .job-link-item {
        text-align: left;
    }

    .career-title {
        font-size: 32px;
    }
}

/* =========================================
   PAGE TRANSITION OVERLAY
   ========================================= */
:root {
    --transition-easing: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Refined Fade-in for elements */
.fade-in-content {
    animation: refinedFadeIn 0.8s var(--transition-easing) forwards;
}

@keyframes refinedFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NEW: Scroll Animations With Extra Distance */
.reveal-left,
.reveal-right {
    opacity: 0 !important;
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    visibility: hidden !important;
}

.reveal-left {
    transform: translateX(-80px) !important;
}

.reveal-right {
    transform: translateX(80px) !important;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
    visibility: visible !important;
}

/* ===== FLOATING ROTATING WIDGET ===== */
.floating-odion-widget {
    position: fixed;
    right: 30px;
    bottom: 110px;
    /* Above the scroll-to-top button */
    z-index: 1000;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-green-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    animation: rotate-widget 10s linear infinite;
    background: rgba(4, 204, 71, 0.05);
}

.widget-text {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 15px;
    letter-spacing: 1px;
    z-index: 1;
    text-transform: uppercase;
    background: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(4, 204, 71, 0.2);
}

@keyframes rotate-widget {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .floating-odion-widget {
        right: 20px;
        bottom: 140px;
        width: 75px;
        height: 75px;
    }

    .widget-text {
        font-size: 12px;
        width: 50px;
        height: 50px;
    }
}