/* =========================================
   PARADIGM LEARNING - MASTER STYLESHEET
   Combined CSS for Home, About, Courses Pages
   All styles organized with clear section comments
   ========================================= */

/* =========================================
   ROOT VARIABLES & GLOBAL RESET
========================================== */

:root {
    /* Core Colors */
    --color-primary: #1a2e6c;
    --color-primary-light: #2563eb;
    --color-primary-dark: #0f172a;
    --color-secondary: #0f172a;
    --color-accent: #3b82f6;

    /* Extended Colors */
    --color-yellow: #f59e0b;
    --color-yellow-bg: #fef3c7;
    --color-green: #10b981;
    --color-green-bg: #d1fae5;
    --color-purple: #8b5cf6;
    --color-purple-bg: #ede9fe;
    --color-blue-bg: #dbeafe;
    --color-orange: #ff8a00;
    --color-orange-bg: #fff3e8;

    /* Neutral Colors */
    --color-white: #ffffff;
    --color-text: #111827;
    --color-text-light: #6b7280;
    --color-border: #e5e7eb;
    --color-background: #f5f7ff;
    --color-light-bg: #f0f4ff;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 28px rgba(37, 99, 235, 0.1);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;

    /* Typography - Global Settings */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --line-height-base: 1.5;
    --line-height-relaxed: 1.6;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    --gradient-primary-hover: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    --gradient-hero: linear-gradient(135deg, var(--color-background) 0%, var(--color-light-bg) 100%);
    --gradient-cta: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    --gradient-stats: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    --gradient-card-white: linear-gradient(135deg, var(--color-white) 0%, #f8fafc 100%);
    --gradient-card-hover: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-bg) 100%);
    --gradient-stats-icon: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(37, 99, 235, 0.05) 100%);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

/* =========================================
   GLOBAL TYPOGRAPHY (Single Source of Truth)
   No individual overrides for buttons or components
========================================== */
h1,
.h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    font-family: var(--font-primary);
    color: var(--color-text);
    margin-bottom: 1rem;
}

h2,
.h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.3;
    font-family: var(--font-primary);
    color: var(--color-text);
    margin-bottom: 0.875rem;
}

h3,
.h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    line-height: 1.3;
    font-family: var(--font-primary);
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

h4,
.h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    line-height: 1.4;
    font-family: var(--font-primary);
    color: var(--color-text);
    margin-bottom: 0.625rem;
}

h5,
.h5 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    font-family: var(--font-primary);
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

h6,
.h6 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    font-family: var(--font-primary);
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

p,
.body-text {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

/* =========================================
   GLOBAL IMAGE HANDLING
   No fixed heights or widths - uses max-width:100% + auto dimensions
========================================== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   GLOBAL LINK STYLES
========================================== */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* =========================================
   GLOBAL LIST STYLES
========================================== */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =========================================
   GLOBAL BUTTON STYLES (Single Source of Truth)
   All button variants share base styles
========================================== */
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-primary);
    line-height: 1;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.btn-primary-custom:hover {
    background: var(--gradient-primary-hover);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline-custom {
    border: 1.5px solid var(--color-border);
    color: var(--color-text);
    background-color: transparent;
}

.btn-outline-custom:hover {
    border-color: var(--color-primary-light);
    color: var(--color-primary-light);
    transform: translateY(-2px);
    background: rgba(37, 99, 235, 0.05);
}

.btn-cta-white {
    background: var(--color-white);
    color: var(--color-primary-light);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-white:hover {
    background: var(--gradient-primary-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =========================================
   SECTION LABEL (Global Component)
========================================== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary-light);
    margin-bottom: 12px;
    background: rgba(37, 99, 235, 0.1);
    padding: 6px 16px;
    border-radius: 40px;
}

/* =========================================
   SECTION HEADER (Global Component)
========================================== */
.section-header {
    margin-bottom: 48px;
}

.global-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0;
}

/* =========================================
   NAVBAR SECTION (Shared across all pages)
========================================== */
/* =========================================
   STICKY GLASS NAVBAR
========================================= */

.main-header {
    position: relative;
    z-index: 9999;
}

.main-navbar {
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

/* Blur background after scroll */
.main-navbar.scrolled {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Links */
.main-navbar .nav-link {
    color: #ffffff;
    font-weight: 500;
    transition: 0.3s;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: #ffd54f;
}


.brand-wrapper{
    height: 70px; /* container height */
    display: flex;
    align-items: center;
    overflow: visible;
}

.navbar-logo {

    width: 180px;
    height: auto;

    object-fit: contain;

}

.main-navbar.scrolled .navbar-logo {
    height: 150px;
}

/* Mobile */
@media (max-width: 991px) {

    .main-navbar {
        background: rgba(15, 23, 42, 0.9);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .navbar-collapse {
        padding-top: 15px;
    }
}

 .main-navbar {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
}


.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

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

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 800;
    font-size: 18px;
}

.brand-content {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-text);
}

.brand-subtitle {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-text-light);
}

.navbar-menu {
    gap: 8px;
}

.navbar-menu .nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 16px !important;
    transition: var(--transition-fast);
}

.navbar-menu .nav-link:hover,
.navbar-menu .nav-link.active {
    color: var(--color-primary-light);
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

/* =========================================
   FOOTER SECTION (Shared across all pages)
========================================== */
.main-footer {
    background-color: var(--color-secondary);
    padding: 70px 0 30px;
}

.footer-row {
    row-gap: 40px;
}

.footer-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand-title,
.footer-brand-subtitle {
    color: var(--color-white);
}

.footer-logo {
    width: auto;
    max-height: 18vh;
    object-fit: contain;
}

.footer-description {
    max-width: 320px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--color-white);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-link {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-white);
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-contact-item:hover {
    color: var(--color-white);
    transform: translateX(3px);
}

.newsletter-wrap {
    margin-top: 20px;
}

.newsletter-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 12px;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--color-white);
    font-family: var(--font-primary);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-btn {
    background: var(--gradient-primary);
    border: none;
    color: var(--color-white);
    padding: 12px 18px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-btn:hover {
    background: var(--gradient-primary-hover);
    transform: scale(1.02);
}

.footer-hr {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 45px 0 25px;
}

.footer-copy-text {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0;
}

/* =========================================
   =========================================
   HOME PAGE STYLES (prefixed with "home-")
   =========================================
   ========================================= */

/* =========================================
   HOME - HERO SECTION
========================================= */

.home-hero-section {
    padding: 120px 0 60px;
    background: var(--gradient-hero);
    overflow: hidden;
}

/* SAME HEIGHT FOR ALL SLIDES */
.home-hero-slider .carousel-inner,
.home-hero-slider .carousel-item {
    min-height: 300px;
}

.home-hero-row {
    min-height: 300px;
    align-items: center;
    row-gap: 40px;
}

/* LEFT CONTENT */
.home-hero-content {
    max-width: 580px;
    margin-top: 0;
}

.home-hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.home-hero-title .banner-blue {
    color: var(--color-primary-light) !important;
}

.home-hero-title .banner-black {
    color: #000000 !important;
}

.home-hero-title span {
    color: var(--color-primary-light);
}

.home-hero-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.home-hero-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

/* STUDENTS */
.home-student-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.home-student-avatar-group {
    display: flex;
}

.home-student-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-white);
    margin-left: -10px;
}

.home-student-avatar:first-child {
    margin-left: 0;
}

.home-student-count {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 2px;
}

.home-student-text {
    color: var(--color-text-light);
    font-size: 13px;
    margin-bottom: 0;
}

/* RIGHT IMAGE */
.home-hero-image-wrapper {
    width: 100%;
    height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    border-radius: var(--radius-lg);
}

.home-hero-image {
    width: 100%;
    height: 100%;
    max-width: 100%;

    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* SLIDER */
.home-hero-slider {
    position: relative;
}

.home-hero-slider .carousel-control-prev {
    left: -40px;
}

/* Right Arrow */
.home-hero-slider .carousel-control-next {
    right: -40px;
}

.home-hero-slider .carousel-control-prev,
.home-hero-slider .carousel-control-next {
    width: 42px;
    height: 42px;

    top: 50%;
    transform: translateY(-50%);

    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);

    opacity: 1;
}

/* INDICATORS */
.home-hero-slider .carousel-indicators {
    bottom: -10px;
}

.home-hero-slider .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* MOBILE */
@media (max-width: 991px) {

    .home-hero-section {
        padding: 120px 0 50px;
    }

    .home-hero-slider .carousel-inner,
    .home-hero-slider .carousel-item,
    .home-hero-row {
        min-height: auto;
    }

    .home-hero-content {
        text-align: center;
        margin: auto;
    }

    .home-hero-button-group {
        justify-content: center;
    }

    .home-hero-image-wrapper {
        height: 340px;
        margin-top: 30px;
    }

    .home-student-wrapper {
        justify-content: center;
    }
}

/* HOME - Stats Section */
.home-stats-section {
    background: var(--gradient-stats);
    padding: 50px 0;
}

.home-stats-row {
    align-items: center;
}

.home-stats-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.home-stats-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition-base);
}

.home-stats-icon-blue {
    background: var(--gradient-stats-icon);
    color: #93c5fd;
}

.home-stats-icon-yellow {
    background: rgba(245, 158, 11, 0.15);
    color: #fcd34d;
}

.home-stats-card:hover .home-stats-icon {
    transform: scale(1.1);
}

.home-stats-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.home-stats-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-stats-number {
    margin: 0;
    line-height: 1.1;
}

.home-stats-label {
    margin: 0;
    line-height: 1.3;
}

.home-stats-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 4px;
}

.home-stats-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* HOME - Why Choose Us Section */
.home-why-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.home-section-header {
    margin-bottom: 48px;
}

.home-global-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-text);
}

.home-why-card {
    background: var(--gradient-card-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    height: 100%;
    transition: var(--transition-base);
}

.home-why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--color-primary-light);
}

.home-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.home-why-icon-yellow {
    background-color: var(--color-yellow-bg);
    color: var(--color-yellow);
}

.home-why-icon-blue-light {
    background-color: var(--color-blue-bg);
    color: var(--color-primary-light);
}

.home-why-icon-green {
    background-color: var(--color-green-bg);
    color: var(--color-green);
}

.home-why-icon-purple {
    background-color: var(--color-purple-bg);
    color: var(--color-purple);
}

.home-why-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.home-why-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}


.home-carousel-controls-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.home-carousel-ctrl-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.home-carousel-ctrl-btn:hover {
    background: var(--gradient-primary);
    border-color: var(--color-primary-light);
    color: var(--color-white);
}

.home-carousel-indicators-custom {
    display: flex;
    gap: 10px;
    align-items: center;
}

.home-ind {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.home-ind.active {
    background: var(--gradient-primary);
    transform: scale(1.2);
}

/* HOME - Mentors Section */
.home-mentors-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.home-mentors-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.home-view-all-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary-light);
    transition: var(--transition-fast);
}

.home-view-all-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.home-mentor-card {
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
    background: var(--color-white);
}

.home-mentor-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--color-primary-light);
}

.home-mentor-img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    display: block;
}

.home-mentor-info {
    padding: 16px 18px;
}

.home-mentor-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.home-mentor-role {
    font-size: 13px;
    margin-bottom: 0;
}

/* HOME - CTA Ribbon Section */
.home-cta-section {
    padding: 60px 0;
    background: transparent;
}

.home-ribbon-wrapper {
    background: var(--gradient-cta);
    border-radius: var(--radius-lg);
    padding: 45px 50px;
    box-shadow: var(--shadow-lg);
}


.home-cta-content {
    position: relative;
    z-index: 2;
}

.home-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.home-cta-heading {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 10px;
}

.home-cta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0; 
}

.home-cta-sub p{
    color: rgba(255, 255, 255, 0.9);
}

/*=========================================
   HOME HERO — FLOATING LEARNING ICONS
========================================= */

/* Section must be relative for absolute children */
.home-hero-section {
    position: relative;
    overflow: hidden;
}

/* Full-section transparent layer holding all icons */
.home-hero-chip-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* Content sits above the icon layer */
.home-hero-section .container {
    position: relative;
    z-index: 2;
}

/* BASE ICON — bare glyph, no background or border */
.home-hero-chip {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    opacity: 0.55;
}

/* ── POSITIONS (spread across section) ── */
.home-hero-chip--1 {
    top: 12%;
    left: 4%;
}

.home-hero-chip--2 {
    top: 8%;
    left: 38%;
}

.home-hero-chip--3 {
    top: 18%;
    right: 6%;
}

.home-hero-chip--4 {
    top: 55%;
    left: 2%;
}

.home-hero-chip--5 {
    bottom: 18%;
    left: 22%;
}

.home-hero-chip--6 {
    bottom: 12%;
    right: 5%;
}

.home-hero-chip--7 {
    top: 50%;
    right: 3%;
    font-size: 22px;
}

.home-hero-chip--8 {
    bottom: 22%;
    left: 48%;
    font-size: 24px;
}

/* ── COLORS ── */
.home-hero-chip--1 {
    background: var(--color-blue-bg);
    color: var(--color-primary-light);
}

.home-hero-chip--2 {
    background: var(--color-purple-bg);
    color: var(--color-purple);
}

.home-hero-chip--3 {
    background: var(--color-green-bg);
    color: var(--color-green);
}

.home-hero-chip--4 {
    background: var(--color-yellow-bg);
    color: var(--color-yellow);
}

.home-hero-chip--5 {
    background: var(--color-orange-bg);
    color: var(--color-orange);
}

.home-hero-chip--6 {
    background: var(--color-blue-bg);
    color: var(--color-primary-light);
}

.home-hero-chip--7 {
    background: var(--color-yellow-bg);
    color: var(--color-yellow);
}

.home-hero-chip--8 {
    background: var(--color-green-bg);
    color: var(--color-green);
}

/* ── ANIMATIONS ── */

/* 1. Drift — slow diagonal wander */
@keyframes home-hero-drift {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    25% {
        transform: translate(8px, -10px) rotate(8deg);
    }

    50% {
        transform: translate(14px, 4px) rotate(-4deg);
    }

    75% {
        transform: translate(-6px, 10px) rotate(10deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

/* 2. Spin in place — full 360 slow rotation */
@keyframes home-hero-spin {
    from {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.12);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

/* 3. Pulse orbit — scale breathe + slight drift */
@keyframes home-hero-pulse-orbit {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-10px, -8px) scale(1.1);
    }

    66% {
        transform: translate(8px, -12px) scale(0.93);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* 4. Wobble — left-right tilt */
@keyframes home-hero-wobble {

    0%,
    100% {
        transform: rotate(-12deg);
    }

    50% {
        transform: rotate(12deg);
    }
}

/* =========================================
   HOME HERO — FLOATING LEARNING ICONS
========================================= */

/* Section must be relative for absolute children */
.home-hero-section {
    position: relative;
    overflow: hidden;
}

/* Full-section transparent layer holding all icons */
.home-hero-chip-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* Content sits above the icon layer */
.home-hero-section .container {
    position: relative;
    z-index: 2;
}

/* BASE ICON — bare glyph, no background or border */
.home-hero-chip {
    position: absolute;
    font-size: 28px;
    line-height: 1;
    opacity: 0.85;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    padding: 0;
}

/* ── POSITIONS (spread across section) ── */
.home-hero-chip--1 {
    top: 12%;
    left: 4%;
}

.home-hero-chip--2 {
    top: 8%;
    left: 38%;
}

.home-hero-chip--3 {
    top: 18%;
    right: 6%;
}

.home-hero-chip--4 {
    top: 55%;
    left: 2%;
}

.home-hero-chip--5 {
    bottom: 18%;
    left: 22%;
}

.home-hero-chip--6 {
    bottom: 12%;
    right: 5%;
}

.home-hero-chip--7 {
    top: 50%;
    right: 3%;
    font-size: 22px;
}

.home-hero-chip--8 {
    bottom: 22%;
    left: 48%;
    font-size: 24px;
}

/* ── COLORS ── */
.home-hero-chip--1 {
    background: var(--color-blue-bg);
    color: var(--color-primary-light);
}

.home-hero-chip--2 {
    background: var(--color-purple-bg);
    color: var(--color-purple);
}

.home-hero-chip--3 {
    background: var(--color-green-bg);
    color: var(--color-green);
}

.home-hero-chip--4 {
    background: var(--color-yellow-bg);
    color: var(--color-yellow);
}

.home-hero-chip--5 {
    background: var(--color-orange-bg);
    color: var(--color-orange);
}

.home-hero-chip--6 {
    background: var(--color-blue-bg);
    color: var(--color-primary-light);
}

.home-hero-chip--7 {
    background: var(--color-yellow-bg);
    color: var(--color-yellow);
}

.home-hero-chip--8 {
    background: var(--color-green-bg);
    color: var(--color-green);
}

/* ── ANIMATIONS ── */

/* 1. Drift — slow diagonal wander */
@keyframes home-hero-drift {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    25% {
        transform: translate(8px, -10px) rotate(8deg);
    }

    50% {
        transform: translate(14px, 4px) rotate(-4deg);
    }

    75% {
        transform: translate(-6px, 10px) rotate(10deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

/* 2. Spin in place — full 360 slow rotation */
@keyframes home-hero-spin {
    from {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.12);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

/* 3. Pulse orbit — scale breathe + slight drift */
@keyframes home-hero-pulse-orbit {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-10px, -8px) scale(1.1);
    }

    66% {
        transform: translate(8px, -12px) scale(0.93);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* 4. Wobble — left-right tilt */
@keyframes home-hero-wobble {

    0%,
    100% {
        transform: rotate(-12deg);
    }

    50% {
        transform: rotate(12deg);
    }
}

/* ── ASSIGN ANIMATIONS per chip ── */
.home-hero-chip--1 {
    animation: home-hero-drift 7s ease-in-out infinite;
    animation-delay: 0s;
}

.home-hero-chip--2 {
    animation: home-hero-spin 9s linear infinite;
    animation-delay: 1.2s;
}

.home-hero-chip--3 {
    animation: home-hero-pulse-orbit 6s ease-in-out infinite;
    animation-delay: 0.5s;
}

.home-hero-chip--4 {
    animation: home-hero-wobble 4s ease-in-out infinite;
    animation-delay: 2s;
}

.home-hero-chip--5 {
    animation: home-hero-drift 8s ease-in-out infinite reverse;
    animation-delay: 1s;
}

.home-hero-chip--6 {
    animation: home-hero-spin 12s linear infinite;
    animation-delay: 3s;
}

.home-hero-chip--7 {
    animation: home-hero-pulse-orbit 5s ease-in-out infinite;
    animation-delay: 0.8s;
}

.home-hero-chip--8 {
    animation: home-hero-wobble 6s ease-in-out infinite;
    animation-delay: 1.8s;
}

/* ── HIDE on mobile so they don't clutter ── */
@media (max-width: 767px) {
    .home-hero-chip-layer {
        display: none;
    }
}

/* ── Respect reduced motion preference ── */
@media (prefers-reduced-motion: reduce) {
    .home-hero-chip {
        animation: none !important;
    }
}

/* ── ASSIGN ANIMATIONS per chip ── */
.home-hero-chip--1 {
    animation: home-hero-drift 7s ease-in-out infinite;
    animation-delay: 0s;
}

.home-hero-chip--2 {
    animation: home-hero-spin 9s linear infinite;
    animation-delay: 1.2s;
}

.home-hero-chip--3 {
    animation: home-hero-pulse-orbit 6s ease-in-out infinite;
    animation-delay: 0.5s;
}

.home-hero-chip--4 {
    animation: home-hero-wobble 4s ease-in-out infinite;
    animation-delay: 2s;
}

.home-hero-chip--5 {
    animation: home-hero-drift 8s ease-in-out infinite reverse;
    animation-delay: 1s;
}

.home-hero-chip--6 {
    animation: home-hero-spin 12s linear infinite;
    animation-delay: 3s;
}

.home-hero-chip--7 {
    animation: home-hero-pulse-orbit 5s ease-in-out infinite;
    animation-delay: 0.8s;
}

.home-hero-chip--8 {
    animation: home-hero-wobble 6s ease-in-out infinite;
    animation-delay: 1.8s;
}

/* ── HIDE on mobile so they don't clutter ── */
@media (max-width: 767px) {
    .home-hero-chip-layer {
        display: none;
    }
}

/* ── Respect reduced motion preference ── */
@media (prefers-reduced-motion: reduce) {
    .home-hero-chip {
        animation: none !important;
    }
}

/* =========================================
   HOME — COURSE CARDS
========================================= */

.home-course-card {
    display: block;
    text-decoration: none;
    color: var(--color-text);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1.5px solid var(--color-border);
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    height: 100%;
}

.home-course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-light);
    color: var(--color-text);
}

/* ── IMAGE WRAPPER ── */
.home-course-card__img-wrap {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.home-course-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.home-course-card:hover .home-course-card__img {
    transform: scale(1.05);
}

/* ── BADGE ── */
.home-course-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #e91e8c;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    font-family: var(--font-primary);
    overflow: hidden;
    z-index: 3;
    display: inline-block;
}

/* Badge repeating shimmer */
.home-course-card__badge-shine {
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.55) 50%,
        transparent 100%
    );
    animation: home-badge-shine 3.5s ease-in-out infinite;
    border-radius: inherit;
}

@keyframes home-badge-shine {
    0%         { left: -75%; opacity: 0;   }
    10%        { opacity: 1;               }
    40%, 100%  { left: 125%; opacity: 0;   }
}

/* ── ONE-TIME IMAGE GLARE ── */
.home-course-card__glare {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.28) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    z-index: 2;
    pointer-events: none;
}

.home-course-card__glare--active {
    animation: home-card-glare 0.65s ease forwards;
}

.inner-banner-description p{
    color: #ffffff;
}

@keyframes home-card-glare {
    from { transform: translateX(-100%); }
    to   { transform: translateX(200%);  }
}

/* ── CARD BODY ── */
.home-course-card__body {
    padding: 18px 20px 20px;
}

/* ── META ── */
.home-course-card__meta {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
}

.home-course-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--color-text-light);
    font-family: var(--font-primary);
}

.home-course-card__meta i {
    color: var(--color-primary-light);
    font-size: 14px;
}

/* ── TITLE ── */
.home-course-card__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text);
    margin-bottom: 12px;
    font-family: var(--font-primary);
}

/* ── STARS ── */
.home-course-card__stars {
    display: flex;
    gap: 3px;
}

.home-course-card__stars i {
    color: var(--color-yellow);
    font-size: 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
    .home-course-card__img-wrap {
        height: 160px;
    }
}

/* =========================================
   =========================================
   ABOUT PAGE STYLES (prefixed with "about-")
   =========================================
   ========================================= */

/* ABOUT - Hero Section */
.about-hero-section {
    padding: 50px 0;
    background: var(--gradient-hero);
}

.about-hero-row {
    row-gap: 40px;
    align-items: center;
}

.about-content {
    max-width: 520px;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-title span {
    display: block;
    color: var(--color-primary-light);
}

.about-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.about-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--gradient-card-white);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid rgba(37, 99, 235, 0.05);
}

.about-feature-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    background: var(--gradient-card-hover);
    border-color: var(--color-primary-light);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 22px;
}

.about-feature-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-feature-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
}

.about-image-wrapper {
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    transition: var(--transition-base);
}
/* =========================================
   ABOUT - TEAM SECTION (Horizontal Cards)
========================================== */

.about-team-section {
    padding: 80px 0;
    background: var(--gradient-hero);
}

.about-team-subtitle {
    font-size: 15px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.6;
}

/* Horizontal Card */
.about-team-card-horizontal {
    background: var(--gradient-card-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.about-team-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-light);
}

/* Content Area */
.about-team-content {
    padding: 40px 35px;
}

.about-team-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 10px;
}

.about-team-designation {
    font-size: 16px;
    color: var(--color-primary-light);
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(37, 99, 235, 0.2);
    display: inline-block;
}

/* Description - Initially limited to 4 lines */
.about-team-description {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* On Hover - Show full description (Desktop only) */
@media screen and (min-width: 768px) {
    .about-team-card-horizontal:hover .about-team-description {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
}

/* Image Area */
.about-team-image-wrapper {
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.about-team-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image scales on hover */
.about-team-card-horizontal:hover .about-team-image {
    transform: scale(1.05);
}

/* Alternate Row - Image on Left for even rows */
.about-team-card-horizontal:nth-child(even) .row {
    flex-direction: row-reverse;
}

/* Mobile Responsive */
@media screen and (max-width: 991px) {
    .about-team-content {
        padding: 30px 25px;
    }
    
    .about-team-name {
        font-size: 24px;
    }
    
    .about-team-image-wrapper {
        min-height: 300px;
    }
    
    .about-team-image {
        min-height: 300px;
    }
}

@media screen and (max-width: 767px) {
    .about-team-section {
        padding: 50px 0;
    }
    
    .about-team-content {
        padding: 25px 20px;
    }
    
    .about-team-name {
        font-size: 22px;
    }
    
    .about-team-designation {
        font-size: 14px;
    }
    
    .about-team-description {
        font-size: 14px;
        -webkit-line-clamp: 3;
        margin-bottom: 0;
    }
    
    .about-team-image-wrapper {
        min-height: 250px;
    }
    
    .about-team-image {
        min-height: 250px;
    }
    
    /* Stack vertically on mobile */
    .about-team-card-horizontal .row {
        flex-direction: column;
    }
    
    .about-team-card-horizontal:nth-child(even) .row {
        flex-direction: column;
    }
    
    /* Mobile: Click to expand/collapse */
    .about-team-card-horizontal .about-team-description {
        -webkit-line-clamp: 3;
        display: -webkit-box;
    }
    
    /* When expanded - show full description */
    .about-team-card-horizontal.expanded .about-team-description {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
    
    /* Image scales when expanded */
    .about-team-card-horizontal.expanded .about-team-image {
        transform: scale(1.05);
    }
    
    /* Make card cursor pointer on mobile */
    .about-team-card-horizontal {
        cursor: pointer;
    }
}

@media screen and (max-width: 480px) {
    .about-team-content {
        padding: 20px;
    }
    
    .about-team-name {
        font-size: 20px;
    }
    
    .about-team-description {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }
    
    .about-team-image-wrapper {
        min-height: 220px;
    }
    
    .about-team-image {
        min-height: 220px;
    }
}
/* ABOUT - Stats Section */
.about-stats-section {
    background: var(--gradient-stats);
    padding: 50px 0;
}

.about-stats-row {
    align-items: center;
}

.about-stats-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.about-stats-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition-base);
}

.about-stats-icon-blue {
    background: var(--gradient-stats-icon);
    color: #93c5fd;
}

.about-stats-icon-yellow {
    background: rgba(245, 158, 11, 0.15);
    color: #fcd34d;
}

.about-stats-card:hover .about-stats-icon {
    transform: scale(1.1);
}

.about-stats-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 4px;
}

.about-stats-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* ABOUT - Mission Section */
.about-mission-section {
    padding: 80px 0;
    background: var(--gradient-hero);
}

.about-section-header {
    margin-bottom: 48px;
}

.about-global-heading {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-text);
}

.about-mission-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--gradient-card-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    height: 100%;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.about-mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-light);
}

.about-mission-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 26px;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.about-mission-card:hover .about-mission-icon {
    transform: scale(1.1);
}

.about-mission-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.about-mission-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ABOUT - Core Values Section */
.about-core-values-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.about-value-card {
    background: var(--gradient-card-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.about-value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-light);
}

.about-value-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: var(--transition-base);
}

.about-value-card:hover .about-value-icon {
    transform: scale(1.1);
}

.about-value-icon-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: var(--color-primary-light);
}

.about-value-icon-green {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: var(--color-green);
}

.about-value-icon-yellow {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    color: var(--color-yellow);
}

.about-value-icon-purple {
    background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
    color: var(--color-purple);
}

.about-value-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.about-value-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ABOUT - Journey Section */
.about-journey-section {
    padding: 80px 0;
    background: var(--gradient-hero);
}

.about-journey-card {
    position: relative;
    background: var(--gradient-card-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    height: 100%;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.about-journey-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-light);
}

.about-journey-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
}

.about-journey-dot-blue {
    background: var(--gradient-primary);
}

.about-journey-dot-green {
    background: var(--color-green);
}

.about-journey-dot-yellow {
    background: var(--color-yellow);
}

.about-journey-dot-purple {
    background: var(--color-purple);
}

.about-journey-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    transition: var(--transition-base);
}

.about-journey-icon-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: var(--color-primary-light);
}

.about-journey-icon-green {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: var(--color-green);
}

.about-journey-icon-yellow {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    color: var(--color-yellow);
}

.about-journey-icon-purple {
    background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
    color: var(--color-purple);
}

.about-journey-card:hover .about-journey-icon {
    transform: scale(1.05);
}

.about-journey-year {
    color: var(--color-primary-light);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 1px;
}

.about-journey-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.about-journey-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ABOUT - CTA Section */
.about-cta-section {
    background: var(--gradient-cta);
    padding: 70px 0;
}

.about-cta-heading {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 12px;
}

.about-cta-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.about-mission-image img {
    width: 185px;
    height: 100px;
    object-fit: cover;
}

/* =========================================
   ABOUT - PARADIGM SECTION
========================================= */

.about-paradigm-section {
    padding: 80px 0;
    background: #fff;
}

.about-paradigm-card {
    height: 100%;
    padding: 40px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.about-paradigm-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-paradigm-description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.9;
    color: #6b7280;
}

@media (max-width: 767px) {
    .about-paradigm-card {
        padding: 28px;
    }
}
/* =========================================
   =========================================
   COURSES PAGE STYLES (prefixed with "courses-")
   =========================================
   ========================================= */

/* COURSES - Hero Section */
.courses-hero-section {
    padding: 50px 0 40px;
    background: var(--gradient-hero);
}

.courses-hero-row {
    row-gap: 40px;
    align-items: center;
}

.courses-hero-content {
    max-width: 580px;
}

.courses-hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.courses-hero-title span {
    color: var(--color-primary-light);
}

.courses-hero-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.courses-search-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 10px;
    box-shadow: var(--shadow-md);
}

.courses-search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
}

.courses-search-input-group i {
    color: var(--color-primary-light);
    font-size: 18px;
}

.courses-search-input-group input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: var(--font-primary);
}

.courses-search-btn {
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.courses-search-btn:hover {
    background: var(--gradient-primary-hover);
    transform: translateY(-2px);
}

.courses-hero-image-wrapper {
    position: relative;
    text-align: center;
}

.courses-hero-shape {
    position: absolute;
    width: 380px;
    height: 380px;
    background: var(--color-blue-bg);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.courses-hero-image {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    max-width: 450px;
    width: 100%;
}

.courses-student-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--color-white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 5;
}

.courses-student-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.courses-student-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 2px;
}

.courses-student-card p {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* COURSES - Category Section */
.courses-category-section {
    padding: 40px 0;
    background: var(--color-white);
}

.courses-category-wrapper {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.courses-category-pill {
    border: 1px solid var(--color-border);
    padding: 10px 24px;
    border-radius: 40px;
    background: var(--color-white);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.courses-category-pill:hover,
.courses-category-pill.active {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    border-color: transparent;
}

/* COURSES - Grid Section */
.courses-grid-section {
    padding: 60px 0;
    background: var(--color-light-bg);
}

.courses-filter-sidebar {
    background: var(--color-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}

.courses-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.courses-filter-header h5 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 0;
}

.courses-filter-header a {
    color: var(--color-primary-light);
    font-size: 13px;
    font-weight: 500;
}

.courses-filter-group {
    margin-bottom: 28px;
}

.courses-filter-group h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.courses-filter-group label {
    display: block;
    margin-bottom: 12px;
    color: var(--color-text-light);
    font-size: 14px;
    cursor: pointer;
}

.courses-filter-group input {
    margin-right: 10px;
    accent-color: var(--color-primary-light);
}

.courses-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.courses-topbar p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.courses-sort-select {
    border: 1px solid var(--color-border);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    outline: none;
    font-size: 14px;
    background: var(--color-white);
    cursor: pointer;
}

.courses-card {
    background: var(--color-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    border: 1px solid var(--color-border);
    position: relative;
}

.courses-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-light);
}

.courses-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.courses-badge.orange {
    background: var(--color-orange-bg);
    color: var(--color-orange);
}

.courses-badge.green {
    background: var(--color-green-bg);
    color: var(--color-green);
}

.courses-badge.purple {
    background: var(--color-purple-bg);
    color: var(--color-purple);
}

.courses-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.courses-icon.blue {
    background: var(--color-blue-bg);
    color: var(--color-primary-light);
}

.courses-icon.green-bg {
    background: var(--color-green-bg);
    color: var(--color-green);
}

.courses-icon.purple-bg {
    background: var(--color-purple-bg);
    color: var(--color-purple);
}

.courses-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
}

.courses-card p {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.courses-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-size: 13px;
}

.courses-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.courses-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    transition: var(--transition-base);
}

.courses-arrow:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: rotate(-45deg);
}

/* COURSES - CTA Section */
.courses-cta-section {
    padding: 60px 0;
    background: transparent;
}

.courses-ribbon-wrapper {
    background: var(--gradient-cta);
    border-radius: var(--radius-lg);
    padding: 45px 50px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.courses-ribbon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 25px solid var(--color-primary-dark);
    border-right: 25px solid transparent;
    border-radius: var(--radius-lg) 0 0 0;
}

.courses-ribbon-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 25px solid var(--color-primary-dark);
    border-left: 25px solid transparent;
    border-radius: 0 var(--radius-lg) 0 0;
}

.courses-cta-heading {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 10px;
}

.courses-cta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ============================================ */
/* ADDITIONAL STYLES FOR COURSE CARDS (No inline CSS) */
/* ============================================ */

/* Card base styles */
.courses-grid-section .card {
    border: none !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.courses-grid-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Badge positioning */
.courses-grid-section .courses-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    margin: 0;
    padding: 0.375rem 0.875rem;
    border-radius: 50rem;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: #ffeaa7;
    color: #d4a000;
}

/* Badge variants */
.courses-grid-section .badge.bg-warning {
    background-color: rgba(255, 193, 7, 0.1) !important;
    color: #d4a000 !important;
}

.courses-grid-section .badge.bg-success {
    background-color: rgba(40, 167, 69, 0.1) !important;
    color: #28a745 !important;
}

.courses-grid-section .badge.bg-purple {
    background-color: #f3e8ff !important;
    color: #6d28d9 !important;
}

/* Icon styles */
.courses-grid-section .courses-icon {
    width: auto;
    height: auto;
    display: inline-flex !important;
    padding: 0.875rem !important;
    margin-bottom: 1rem !important;
    border-radius: 0.75rem !important;
    font-size: 1.75rem;
}

.courses-grid-section .courses-icon.bg-primary {
    background-color: rgba(13, 110, 253, 0.1) !important;
    color: #0d6efd !important;
}

.courses-grid-section .courses-icon.bg-success {
    background-color: rgba(40, 167, 69, 0.1) !important;
    color: #28a745 !important;
}

.courses-grid-section .courses-icon.bg-purple {
    background-color: #f3e8ff !important;
    color: #6d28d9 !important;
}

.courses-grid-section .courses-icon.bg-info {
    background-color: rgba(23, 162, 184, 0.1) !important;
    color: #17a2b8 !important;
}

.courses-grid-section .courses-icon.bg-danger {
    background-color: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
}

/* Card title */
.courses-grid-section .card-title {
    font-weight: 700 !important;
    font-size: 1.125rem !important;
    margin-bottom: 0.5rem !important;
}

.courses-grid-section h5.fw-bold {
    font-weight: 700 !important;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

/* Card text */
.courses-grid-section .card-text {
    font-size: 0.875rem !important;
    color: #6c757d !important;
}

.courses-grid-section .small.text-secondary {
    font-size: 0.75rem !important;
    color: #6c757d !important;
}

/* Meta info */
.courses-grid-section .courses-meta {
    margin-top: 0.5rem !important;
    margin-bottom: 1rem !important;
    padding-top: 0;
    border-top: none;
}

.courses-grid-section .courses-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #6c757d;
}

/* Arrow button */
.courses-grid-section .courses-arrow,
.courses-grid-section .btn-outline-secondary {
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #0d6efd;
    transition: all 0.3s ease;
}

.courses-grid-section .courses-arrow:hover,
.courses-grid-section .btn-outline-secondary:hover {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
    transform: rotate(-45deg);
}

/* Top bar */
.courses-grid-section .courses-topbar {
    margin-bottom: 1.5rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 1px solid #dee2e6 !important;
}

.courses-grid-section .courses-topbar p {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
    margin: 0;
}

/* Grid gap */
.courses-grid-section .g-4 {
    --bs-gutter-y: 1.5rem;
    --bs-gutter-x: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .courses-grid-section {
        padding: 40px 0;
    }

    .courses-grid-section .card-body {
        padding: 1.25rem !important;
    }
}

/* Course Card Styles */
.course-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

/* Card Overlay - Removed from inline */
.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 0;
}

/* Card Body */
.course-card .card-body {
    position: relative;
    z-index: 2;
}

/* Course Title */
.course-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.course-card .card-text {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    color: #ffffff !important;
}

/* Course Meta Info */
.course-card .courses-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

/* Course Meta Info - Duration */
.course-card .courses-meta span {
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #ffffff !important;
    opacity: 0.9;
}

.course-card .courses-meta i {
    font-size: 0.875rem;
    color: #ffffff;
}

/* Course Icon */
.course-card .courses-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(5px);
}

.course-card .courses-icon i {
    font-size: 1.5rem;
}

/* Icon Color Classes */
.course-card .courses-icon.bg-primary {
    background: rgba(13, 110, 253, 0.25) !important;
}

.course-card .courses-icon.bg-success {
    background: rgba(40, 167, 69, 0.25) !important;
}

.course-card .courses-icon.bg-purple {
    background: rgba(109, 40, 217, 0.25) !important;
}

.course-card .courses-icon.bg-warning {
    background: rgba(255, 193, 7, 0.25) !important;
}

.course-card .courses-icon.bg-info {
    background: rgba(23, 162, 184, 0.25) !important;
}

.course-card .courses-icon.bg-danger {
    background: rgba(220, 53, 69, 0.25) !important;
}

/* Text Colors for Icons */
.course-card .courses-icon i.text-primary {
    color: #0d6efd !important;
}

.course-card .courses-icon i.text-success {
    color: #28a745 !important;
}

.course-card .courses-icon i.text-purple {
    color: #6d28d9 !important;
}

.course-card .courses-icon i.text-warning {
    color: #ffc107 !important;
}

.course-card .courses-icon i.text-info {
    color: #17a2b8 !important;
}

.course-card .courses-icon i.text-danger {
    color: #dc3545 !important;
}

/* Arrow Button */
.course-card .courses-arrow {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #0d6efd;
    text-decoration: none;
}

.course-card .courses-arrow:hover {
    background: #0d6efd;
    color: white;
    transform: rotate(-45deg);
}

/* Optional: Different overlay on hover */
.course-card:hover .course-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.65) 100%);
}


/* =========================================
   COURSE DETAIL SECTION
========================================== */

.course-detail-section {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left,
            rgba(37, 99, 235, 0.15),
            transparent 28%),
        radial-gradient(circle at bottom right,
            rgba(124, 58, 237, 0.15),
            transparent 30%),
        linear-gradient(180deg,
            #f8fbff 0%,
            #eef4ff 100%);
}

/* floating blur */

.course-detail-section::before,
.course-detail-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.course-detail-section::before {
    width: 340px;
    height: 340px;
    background: rgba(37, 99, 235, 0.15);
    top: -100px;
    left: -100px;
}

.course-detail-section::after {
    width: 320px;
    height: 320px;
    background: rgba(124, 58, 237, 0.15);
    bottom: -120px;
    right: -100px;
}

.course-detail-section .container {
    position: relative;
    z-index: 2;
}

/* =========================================
   BREADCRUMB
========================================== */

.course-detail-breadcrumb {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.course-detail-breadcrumb a,
.course-detail-breadcrumb span {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.course-detail-breadcrumb a:hover {
    color: #2563eb;
}

/* =========================================
   MAIN CARDS
========================================== */

.course-detail-hero-card,
.course-detail-tabs-card,
.course-detail-sidebar-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 10px 40px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: all 0.4s ease;
}

.course-detail-hero-card:hover,
.course-detail-tabs-card:hover,
.course-detail-sidebar-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.10);
}

/* =========================================
   HERO CARD
========================================== */

.course-detail-hero-card {
    padding: 22px;
}

.course-detail-hero-card .row {
    align-items: stretch !important;
}

/* =========================================
   IMAGE
========================================== */

.course-detail-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    height: 100%;
    min-height: 500px;
}

.course-detail-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(15, 23, 42, 0.5),
            transparent 50%);
    z-index: 1;
}

.course-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.course-detail-image-wrapper:hover .course-detail-image {
    transform: scale(1.08);
}

/* =========================================
   COURSE DURATION STYLE
========================================= */

.course-detail-duration-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
}

.course-detail-duration-badge i {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.course-detail-duration-badge h6 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.course-detail-duration-badge span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 3px;
}


/* =========================================
   CONTENT SIDE
========================================== */

.course-detail-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 15px;
}

.course-detail-badge {
    width: fit-content;
    padding: 10px 18px;
    border-radius: 50px;
    background:
        linear-gradient(135deg,
            #f97316,
            #fb923c);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 22px;
    box-shadow:
        0 12px 30px rgba(249, 115, 22, 0.25);
}

.course-detail-title {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #0f172a;
}

.course-detail-description {
    font-size: 16px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 32px;
}

/* =========================================
   FEATURE CARD
========================================== */

.course-detail-feature-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.course-detail-feature-item {
    min-width: 230px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    border-radius: 24px;
    background:
        linear-gradient(135deg,
            rgba(37, 99, 235, 0.08),
            rgba(124, 58, 237, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: all 0.35s ease;
}

.course-detail-feature-item:hover {
    transform: translateY(-5px);
    box-shadow:
        0 18px 40px rgba(37, 99, 235, 0.12);
}

.course-detail-feature-item i {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background:
        linear-gradient(135deg,
            #2563eb,
            #7c3aed);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow:
        0 12px 30px rgba(37, 99, 235, 0.25);
}

.course-detail-feature-item h6 {
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.course-detail-feature-item span {
    font-size: 14px;
    color: #64748b;
}

/* =========================================
   TABS CARD
========================================== */

.course-detail-tabs-card {
    margin-top: 35px;
    padding: 40px;
}

.course-detail-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding-bottom: 20px;
    margin-bottom: 35px;
}

.course-detail-tabs .nav-link {
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 16px;
    font-weight: 700;
    position: relative;
}

.course-detail-tabs .nav-link.active,
.course-detail-tabs .nav-link:hover {
    color: #2563eb;
}

.course-detail-tabs .nav-link.active::after {
    content: '';
    width: 100%;
    height: 4px;
    border-radius: 30px;
    background:
        linear-gradient(90deg,
            #2563eb,
            #7c3aed);
    position: absolute;
    left: 0;
    bottom: -22px;
}

/* =========================================
   OVERVIEW
========================================== */

.course-detail-section-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #0f172a;
}

.course-detail-overview p,
.course-detail-curriculum-content {
    font-size: 16px;
    line-height: 2;
    color: #475569;
}

/* =========================================
   TAGS
========================================== */

.course-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.course-detail-tags span {
    padding: 12px 20px;
    border-radius: 50px;
    background:
        linear-gradient(135deg,
            rgba(37, 99, 235, 0.08),
            rgba(124, 58, 237, 0.08));
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.35s ease;
}

.course-detail-tags span:hover {
    background:
        linear-gradient(135deg,
            #2563eb,
            #7c3aed);
    color: #fff;
    transform: translateY(-3px);
}

/* =========================================
   SIDEBAR
========================================== */

.course-detail-sidebar-card {
    padding: 32px;
}

.course-detail-sidebar-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 28px;
    color: #0f172a;
}

/* =========================================
   GUARANTEE
========================================== */

.course-detail-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.course-detail-guarantee-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 22px;
    background:
        linear-gradient(135deg,
            #2563eb,
            #7c3aed);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow:
        0 15px 35px rgba(37, 99, 235, 0.25);
}

.course-detail-guarantee h5 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.course-detail-guarantee p {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

/* =========================================
   OTHER COURSES
========================================== */

.other-courses-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.other-course-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 24px;
    background:
        linear-gradient(135deg,
            rgba(37, 99, 235, 0.05),
            rgba(124, 58, 237, 0.05));
    transition: all 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.other-course-item:hover {
    transform: translateY(-5px);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.08);
}

.other-course-image {
    width: 120px;
    min-width: 120px;
    height: 110px;
    border-radius: 20px;
    overflow: hidden;
}

.other-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.other-course-item:hover img {
    transform: scale(1.08);
}

.other-course-content h5 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #0f172a;
}

.other-course-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 0;
}

.other-course-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #2563eb;
}

/* =========================================
   =========================================
   BLOG PAGE STYLES (prefixed with "blog-")
   =========================================
   ========================================= */

/* BLOG - Hero Section */
.blog-hero-section {
    padding: 50px 0 40px;
    background: var(--gradient-hero);
    overflow: hidden;
}

.blog-hero-row {
    row-gap: 40px;
    align-items: center;
}

.blog-hero-content {
    max-width: 520px;
}

.blog-hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--color-text);
}

.blog-hero-title span {
    color: var(--color-primary-light);
}

.blog-hero-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 24px;
}


.blog-search-group {
    display: flex;
    align-items: center;
    background: var(--color-white);
    border: none;
    border-radius: 60px;
    overflow: hidden;
    padding: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.blog-search-group:focus-within {
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.15);
    transform: translateY(-2px);
}

.blog-search-input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
}

.blog-search-input:focus {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.blog-search-input::placeholder {
    color: #9ca3af;
}

.blog-search-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.blog-search-btn:hover {
    transform: scale(1.08);
    background: var(--gradient-primary-hover);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
}

/* Hero Image */
.blog-hero-image-wrapper {
    position: relative;
    text-align: center;
}

.blog-hero-shape {
    position: absolute;
    width: 320px;
    height: 320px;
    background: var(--color-blue-bg);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.blog-hero-image {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 560px;
    object-fit: cover;
    max-height: 360px;
}

/* BLOG - Category Pills */
.blog-category-section {
    padding: 30px 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.blog-category-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.blog-category-pill {
    border: 1px solid var(--color-border);
    padding: 10px 20px;
    border-radius: 40px;
    background: var(--color-white);
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-primary);
    color: var(--color-text);
    transition: var(--transition-fast);
    cursor: pointer;
}

.blog-category-pill:hover,
.blog-category-pill.active {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    border-color: transparent;
}

/* BLOG - Grid Section */
.blog-grid-section {
    padding: 60px 0 80px;
    background: var(--color-light-bg);
}

/* Articles Heading */
.blog-articles-heading {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 28px;
}

/* Article Card */
.blog-article-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.blog-article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.blog-article-img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    max-height: 200px;
    object-fit: cover;
    display: block;
}

.blog-article-body {
    padding: 20px 24px;
}

/* Category badge inside article */
.blog-article-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 10px;
}

.blog-cat-education {
    background: var(--color-blue-bg);
    color: var(--color-primary-light);
}

.blog-cat-technology {
    background: var(--color-purple-bg);
    color: var(--color-purple);
}

.blog-cat-career {
    background: var(--color-green-bg);
    color: var(--color-green);
}

.blog-cat-news {
    background: var(--color-yellow-bg);
    color: var(--color-yellow);
}

.blog-article-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-article-desc {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 14px;
}

/* Article meta row */
.blog-article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}

.blog-meta-dot {
    color: var(--color-border);
    font-size: 12px;
}

.blog-meta-date,
.blog-meta-read {
    font-size: 12px;
    color: var(--color-text-light);
}

.blog-article-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition-fast);
}

.blog-article-arrow:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
}

/* Load More */
.blog-load-more-btn {
    padding: 12px 36px;
    font-size: 15px;
}

/* =========================================
   BLOG SIDEBAR
========================================= */
.blog-sidebar-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.blog-sidebar-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 22px;
}

/* Popular Posts */
.blog-popular-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blog-popular-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.blog-popular-img {
    width: 70px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.blog-popular-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
}

.blog-popular-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.blog-popular-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
    line-height: 1.4;
}

.blog-popular-date {
    font-size: 12px;
    color: var(--color-text-light);
}

/* Newsletter Sidebar Card */
.blog-newsletter-card {
    text-align: center;
}

.blog-newsletter-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.blog-newsletter-desc {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 18px;
}

.blog-newsletter-input {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 14px;
    font-family: var(--font-primary);
    outline: none;
    transition: var(--transition-fast);
}

.blog-newsletter-input:focus {
    border-color: var(--color-primary-light);
}

.blog-newsletter-btn {
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.blog-newsletter-btn:hover {
    background: var(--gradient-primary-hover);
    transform: translateY(-2px);
}

/* =========================================
   BLOG - Features Strip
========================================= */
.blog-features-section {
    padding: 40px 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
}

.blog-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.blog-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    background: var(--color-light-bg);
    color: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition-fast);
}

.blog-feature-item:hover .blog-feature-icon {
    background: var(--gradient-primary);
    color: var(--color-white);
}

.blog-feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.blog-feature-desc {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 0;
}


/* =========================================
   BLOG DETAIL PAGE STYLES
   (prefixed with "blogdetail-")
========================================= */

/* =========================================
   LIQUID GLASS NAVBAR OVERRIDE
========================================= */

/* Base state — subtle frosted glass always visible */
.main-navbar {
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(18px) saturate(180%) brightness(1.08) !important;
    -webkit-backdrop-filter: blur(18px) saturate(180%) brightness(1.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35) !important;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2) !important;
    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease !important;
    border-radius: 0 0 18px 18px;
}

/* Scrolled state — deeper glass with stronger blur */
.main-navbar.scrolled {
    background: rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(28px) saturate(200%) brightness(1.12) !important;
    -webkit-backdrop-filter: blur(28px) saturate(200%) brightness(1.12) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55) !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.10),
        0 1.5px 0 rgba(255, 255, 255, 0.9) inset,
        0 -1px 0 rgba(255, 255, 255, 0.3) inset !important;
}

/* Specular highlight strip at the very top */
.main-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.9) 30%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 0.9) 70%,
            transparent 100%);
    border-radius: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Soft inner glow at the bottom edge */
.main-navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Nav links — darker so they read on light glass */
.main-navbar .nav-link {
    color: var(--color-text) !important;
    font-weight: 500;
    transition: color 0.25s ease;
    position: relative;
    z-index: 2;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--color-primary-light) !important;
}

/* Brand colors preserved */
.main-navbar .brand-title {
    color: var(--color-text);
}

.main-navbar .brand-subtitle {
    color: var(--color-text-light);
}

/* Mobile collapse — keep glass tint */
@media (max-width: 991px) {
    .main-navbar {
        background: rgba(255, 255, 255, 0.72) !important;
        backdrop-filter: blur(24px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
        border-radius: 0;
    }
}

/* =========================================
   SECTION WRAPPER
========================================= */
.blogdetail-section {
    padding: 40px 0 80px;
    background: var(--color-background);
}

/* =========================================
   BREADCRUMB
========================================= */
.blogdetail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.blogdetail-breadcrumb a,
.blogdetail-breadcrumb span {
    font-size: 14px;
    color: var(--color-text-light);
    font-family: var(--font-primary);
}

.blogdetail-breadcrumb a:hover {
    color: var(--color-primary-light);
}

.blogdetail-breadcrumb i {
    font-size: 11px;
    color: var(--color-text-light);
}

/* =========================================
   CONTENT WRAPPER (left column)
========================================= */
.blogdetail-content-wrapper {
    max-width: 100%;
}

/* =========================================
   CATEGORY BADGE
========================================= */
.blogdetail-category-badge {
    display: inline-block;
    background: var(--color-blue-bg);
    color: var(--color-primary-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 5px 14px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-family: var(--font-primary);
}

/* =========================================
   TITLE
========================================= */
.blogdetail-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

/* =========================================
   META ROW
========================================= */
.blogdetail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
}

.blogdetail-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: var(--color-text-light);
    font-family: var(--font-primary);
}

.blogdetail-meta-item i {
    font-size: 15px;
    color: var(--color-text-light);
}

/* =========================================
   FEATURED IMAGE
========================================= */
.blogdetail-featured-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
}

.blogdetail-featured-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.blogdetail-featured-img:hover {
    transform: scale(1.01);
}

/* =========================================
   ARTICLE BODY
========================================= */
.blogdetail-body {
    margin-bottom: 40px;
}

.blogdetail-paragraph {
    font-size: 16px;
    line-height: 1.85;
    color: var(--color-text);
    margin-bottom: 22px;
    font-family: var(--font-primary);
}

/* =========================================
   SHARE ROW
========================================= */
.blogdetail-share {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.blogdetail-share-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    font-family: var(--font-primary);
}

.blogdetail-share-icons {
    display: flex;
    gap: 12px;
}

.blogdetail-share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: var(--transition-fast);
}

.blogdetail-share-btn:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
    border-color: transparent;
    transform: translateY(-2px);
}

/* =========================================
   SIDEBAR (right column)
========================================= */
.blogdetail-sidebar {
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    scrollbar-width: none;
}

.blogdetail-sidebar::-webkit-scrollbar {
    display: none;
}

.blogdetail-sidebar-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 24px;
    font-family: var(--font-primary);
}

/* =========================================
   POPULAR POST CARD
========================================= */
.blogdetail-popular-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.blogdetail-popular-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.blogdetail-popular-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: var(--transition-base);
}

.blogdetail-popular-card:hover .blogdetail-popular-img {
    transform: scale(1.03);
}

.blogdetail-popular-info {
    padding: 16px 18px;
}

.blogdetail-popular-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    line-height: 1.4;
    font-family: var(--font-primary);
}

.blogdetail-popular-date {
    font-size: 13px;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-primary);
}

.blogdetail-popular-date i {
    font-size: 13px;
}

/* =========================================
   =========================================
   INNER PAGE BANNER
   (used on all pages except home)
   Prefixed: "inner-banner-"
   =========================================
   ========================================= */

.inner-banner-section {
    position: relative;
    background: linear-gradient(to bottom,
            var(--color-primary-dark) 0%,
            var(--color-primary) 45%,
            var(--color-primary-light) 100%);
    padding: 120px 0 70px;
    overflow: hidden;
}

/* top-edge deep darkening so navbar text is always readable */
.inner-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(5, 10, 25, 0.55) 0%,
            rgba(5, 10, 25, 0.15) 35%,
            transparent 65%),
        radial-gradient(ellipse at 75% 60%, rgba(37, 99, 235, 0.25) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.inner-banner-container {
    position: relative;
    z-index: 2;
}

/* =========================================
   BREADCRUMB
========================================= */
.inner-banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.inner-banner-breadcrumb a,
.inner-banner-breadcrumb span {
    font-size: 13px;
    font-family: var(--font-primary);
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition-fast);
}

.inner-banner-breadcrumb a:hover {
    color: var(--color-white);
}

.inner-banner-breadcrumb i {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
}

/* =========================================
   LABEL (pill above title)
========================================= */
.inner-banner-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 18px;
    backdrop-filter: blur(4px);
}

/* =========================================
   TITLE
========================================= */
.inner-banner-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 18px;
    font-family: var(--font-primary);
}

.inner-banner-title .banner-blue {
    color: var(--color-primary-light) !important;
}

.inner-banner-title .banner-black {
    color: #ffffff !important;
}

/* =========================================
   DESCRIPTION
========================================= */
.inner-banner-description {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    margin-bottom: 28px;
    font-family: var(--font-primary);
}

/* =========================================
   3 FEATURE POINTS
========================================= */
.inner-banner-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.inner-banner-point-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-primary);
}

.inner-banner-point-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--color-white);
    backdrop-filter: blur(4px);
    transition: var(--transition-fast);
}

.inner-banner-point-item:hover .inner-banner-point-icon {
    background: rgba(255, 255, 255, 0.28);
    transform: scale(1.08);
}

/* =========================================
   RIGHT DECORATIVE GRAPHIC
========================================= */
.inner-banner-graphic {
    position: relative;
    width: 340px;
    height: 340px;
}

/* concentric circles */
.inner-banner-circle {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.inner-banner-circle-lg {
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.04);
}

.inner-banner-circle-md {
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.06);
}

.inner-banner-circle-sm {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.10);
}

/* floating icon blobs */
.inner-banner-icon-float {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--color-white);
    animation: innerBannerFloat 4s ease-in-out infinite;
}

.inner-banner-icon-1 {
    top: 10%;
    left: 55%;
    animation-delay: 0s;
}

.inner-banner-icon-2 {
    top: 55%;
    left: 20%;
    animation-delay: 1.4s;
}

.inner-banner-icon-3 {
    top: 72%;
    left: 65%;
    animation-delay: 2.8s;
}

@keyframes innerBannerFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* =========================================
   CONTACT PAGE STYLES
========================================== */

.contact-page-section {
    padding: 80px 0;
    background: var(--gradient-hero);
}

.contact-info-wrapper {
    max-width: 500px;
}

.contact-page-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.contact-page-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: var(--color-text-light);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border-radius: var(--radius-md);
    background: var(--gradient-card-white);
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 14px;
    background: var(--gradient-primary);
    color: var(--color-white);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}

.contact-info-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info-text {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.contact-form-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
    display: block;
}

.contact-form-input {
    height: 54px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    padding: 12px 18px;
    font-size: 14px;
    font-family: var(--font-primary);
    box-shadow: none !important;
    transition: var(--transition-fast);
}

.contact-form-input:focus {
    border-color: var(--color-primary-light);
}

.contact-form-textarea {
    height: auto;
    resize: none;
    padding-top: 14px;
}

@media (max-width: 991px) {

    .contact-page-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

}

/* =========================================
   HOME PAGE NAVBAR
========================================= */

.homepage-navbar {
    background: transparent;
    transition: all 0.3s ease;
}

/* NAV LINKS */
.homepage-navbar .nav-link {
    color: #374151 !important;
    font-weight: 500;
}

/* ACTIVE + HOVER */
.homepage-navbar .nav-link:hover,
.homepage-navbar .nav-link.active {
    color: #f4b400 !important;
}

/* ENROLL BUTTON */
.homepage-navbar .theme-btn {
    background: #1d4ed8;
    color: #fff !important;
    border-radius: 12px;
    padding: 12px 28px;
}

/* SCROLL NAVBAR */
.homepage-navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* =========================================
   CAPTCHA
========================================= */

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

.captcha-image {
    height: 52px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.captcha-refresh-btn {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 12px;
    background: #f3f4f6;
    transition: 0.3s ease;
}

.captcha-refresh-btn:hover {
    background: #e5e7eb;
}

.captcha-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 8px;
    display: block;
}

/* =========================================
   RESPONSIVE
========================================= */
@media screen and (max-width: 991px) {
    .inner-banner-section {
        padding: 100px 0 55px;
    }

    .inner-banner-title {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 767px) {
    .inner-banner-section {
        padding: 90px 0 45px;
        text-align: center;
    }

    .inner-banner-label {
        margin-left: auto;
        margin-right: auto;
    }

    .inner-banner-description {
        margin-left: auto;
        margin-right: auto;
    }

    .inner-banner-breadcrumb {
        justify-content: center;
    }

    .inner-banner-points {
        align-items: center;
    }

    .inner-banner-title {
        font-size: 1.9rem;
    }
}

@media screen and (max-width: 480px) {
    .inner-banner-title {
        font-size: 1.6rem;
    }

    .inner-banner-section {
        padding: 85px 0 40px;
    }
}

/* =========================================
   RESPONSIVE
========================================= */
@media screen and (max-width: 991px) {
    .blogdetail-sidebar {
        position: relative;
        top: 0;
        margin-top: 20px;
    }

    .blogdetail-featured-img {
        height: 300px;
    }
}

@media screen and (max-width: 767px) {
    .blogdetail-section {
        padding: 30px 0 60px;
    }

    .blogdetail-title {
        font-size: 28px;
    }

    .blogdetail-featured-img {
        height: 240px;
    }

    .blogdetail-meta {
        gap: 12px;
    }

    .blogdetail-paragraph {
        font-size: 15px;
    }

    .blogdetail-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media screen and (max-width: 480px) {
    .blogdetail-title {
        font-size: 24px;
    }

    .blogdetail-featured-img {
        height: 200px;
    }

    .blogdetail-share-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

/* =========================================
   BLOG - Responsive
========================================= */
@media screen and (max-width: 991px) {
    .blog-hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .blog-hero-image-wrapper {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .blog-hero-section {
        padding: 40px 0 30px;
    }

    .blog-hero-title {
        font-size: 32px;
    }

    .blog-article-img {
        min-height: 200px;
        max-height: 240px;
    }

    .blog-article-body {
        padding: 16px;
    }

    .blog-features-section .blog-feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .blog-grid-section {
        padding: 40px 0 60px;
    }
}

@media screen and (max-width: 480px) {
    .blog-hero-title {
        font-size: 28px;
    }

    .blog-category-pill {
        padding: 8px 14px;
        font-size: 12px;
    }

    .blog-hero-shape {
        width: 220px;
        height: 220px;
    }
}

/* =========================================
   RESPONSIVE
========================================== */

@media screen and (max-width: 991px) {

    .course-detail-image-wrapper {
        min-height: 380px;
    }

    .course-detail-title {
        font-size: 42px;
    }
}

@media screen and (max-width: 767px) {

    .course-detail-section {
        padding: 50px 0 70px;
    }

    .course-detail-hero-card,
    .course-detail-tabs-card,
    .course-detail-sidebar-card {
        padding: 24px;
    }

    .course-detail-image-wrapper {
        min-height: 320px;
    }

    .course-detail-title {
        font-size: 32px;
    }

    .course-detail-section-title {
        font-size: 28px;
    }

    .other-course-item {
        flex-direction: column;
    }

    .other-course-image {
        width: 100%;
        height: 220px;
    }

    .course-detail-tabs {
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
    }

    .course-detail-tabs::-webkit-scrollbar {
        display: none;
    }
}

/* =========================================
   RESPONSIVE MEDIA QUERIES (Global)
========================================== */

@media screen and (max-width: 991px) {

    .home-hero-content,
    .about-content,
    .courses-hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .home-hero-title,
    .about-title,
    .courses-hero-title {
        font-size: 42px;
    }

    .courses-filter-sidebar {
        margin-bottom: 40px;
        position: relative;
        top: 0;
    }

    .home-stats-card,
    .about-stats-card {
        justify-content: center;
    }

    .about-mission-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media screen and (max-width: 767px) {
    .navbar-logo {
        max-height: 110px;
    }

    .footer-logo {
        max-height: 12vh;
    }

    .main-navbar {
        padding: 6px 0;
    }

    .navbar-menu {
        padding-top: 20px;
        padding-bottom: 20px;
        text-align: center;
    }

    .main-navbar .btn-custom {
        width: 100%;
    }

    .home-hero-section,
    .about-hero-section,
    .courses-hero-section {
        padding: 40px 0 30px;
    }

    .home-hero-title,
    .about-title,
    .courses-hero-title {
        font-size: 32px;
    }

    .home-hero-description,
    .about-description,
    .courses-hero-description {
        font-size: 14px;
    }

    .btn-custom {
        width: 100%;
        padding: 10px 20px;
    }

    .home-hero-button-group {
        flex-direction: column;
        gap: 12px;
    }

    .courses-search-wrapper {
        flex-direction: column;
    }

    .courses-search-btn {
        width: 100%;
    }

    .courses-hero-shape {
        width: 280px;
        height: 280px;
    }

    .courses-student-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-flex;
    }

    .home-ribbon-wrapper,
    .courses-ribbon-wrapper {
        padding: 30px 25px;
    }

    .home-ribbon-wrapper::before,
    .home-ribbon-wrapper::after,
    .courses-ribbon-wrapper::before,
    .courses-ribbon-wrapper::after {
        border-top-width: 15px;
    }

    .home-cta-heading,
    .courses-cta-heading,
    .about-cta-heading {
        font-size: 24px;
    }

    .footer-brand-wrapper,
    .footer-social-links {
        justify-content: center;
    }

    .footer-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-title,
    .footer-list,
    .footer-contact-item,
    .newsletter-wrap {
        text-align: center;
        justify-content: center;
    }

    .main-footer {
        padding: 45px 0 25px;
    }

    .home-stats-card,
    .about-stats-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .home-stats-number,
    .about-stats-number {
        font-size: 22px;
    }

    .home-stats-number {
        min-height: 45px;
    }

    .home-stats-icon,
    .about-stats-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .home-why-section,
    .home-mentors-section,
    .about-mission-section,
    .about-core-values-section,
    .about-journey-section,
    .courses-grid-section {
        padding: 50px 0;
    }

    .about-mission-title {
        font-size: 20px;
    }

    .about-value-title {
        font-size: 18px;
    }

    .home-mentor-img {
        max-height: 170px;
    }

    .courses-card {
        padding: 20px;
    }

    .courses-card h4 {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {

    .home-hero-title,
    .about-title,
    .courses-hero-title {
        font-size: 28px;
    }

    .home-stats-number,
    .about-stats-number {
        font-size: 20px;
    }

    .courses-category-pill {
        padding: 8px 18px;
        font-size: 12px;
    }

    .home-mentor-img {
        max-height: 140px;
    }

    .home-ribbon-wrapper,
    .courses-ribbon-wrapper {
        padding: 25px 20px;
    }

    .courses-hero-shape {
        width: 220px;
        height: 220px;
    }
}


/* =========================================
   CONTACT PAGE STYLES
========================================== */

.contact-page-section {
    padding: 80px 0;
    background: var(--gradient-hero);
}

.contact-info-wrapper {
    max-width: 500px;
}

.contact-page-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.contact-page-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: var(--color-text-light);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border-radius: var(--radius-md);
    background: var(--gradient-card-white);
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary-light);
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 14px;
    background: var(--gradient-primary);
    color: var(--color-white);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}

.contact-info-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info-text {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.contact-form-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
    display: block;
}

.contact-form-input {
    height: 54px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    padding: 12px 18px;
    font-size: 14px;
    font-family: var(--font-primary);
    box-shadow: none !important;
    transition: var(--transition-fast);
}

.contact-form-input:focus {
    border-color: var(--color-primary-light);
}

.contact-form-textarea {
    height: auto;
    resize: none;
    padding-top: 14px;
}

@media (max-width: 991px) {

    .contact-page-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

}

/* =========================================
   CAPTCHA
========================================= */

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

.captcha-image {
    height: 52px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.captcha-refresh-btn {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 12px;
    background: #f3f4f6;
    transition: 0.3s ease;
}

.captcha-refresh-btn:hover {
    background: #e5e7eb;
}

.captcha-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 8px;
    display: block;
}

/* =========================================
   ACCESSIBILITY FOCUS STATES
========================================== */

.btn-custom:focus-visible,
.nav-link:focus-visible,
.footer-link:focus-visible,
.newsletter-input:focus-visible,
.footer-social:focus-visible,
.home-carousel-ctrl-btn:focus-visible,
.home-ind:focus-visible,
.courses-search-btn:focus-visible,
.courses-category-pill:focus-visible {
    outline: 2px solid var(--color-primary-light);
    outline-offset: 2px;
}

/* =========================================
   ANIMATIONS
========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-why-card,
.home-mentor-card,
.about-feature-card,
.about-mission-card,
.about-value-card,
.about-journey-card,
.courses-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* ═══════════════════════════════════════════════════════
           FACULTY PAGE — SCOPED STYLES ONLY
           Naming: faculty-*
           All :root tokens, base reset, and shared component
           classes (.section-label, .btn-custom, .btn-outline-custom,
           .btn-primary-custom, etc.) live in main.css — not here.
        ════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────
           SECTION 1 · EXPERT FACULTIES GRID
        ───────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────
           PREMIUM FACULTY CARD DESIGN
───────────────────────────────────────────────────── */

.faculty-card {
    background: var(--gradient-card-white);
    border: 1px solid rgba(37, 99, 235, 0.08);
    border-radius: 26px;
    padding: 34px 24px 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.05),
        0 2px 10px rgba(37, 99, 235, 0.04);
}

/* Top glow effect */
.faculty-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle,
            rgba(37, 99, 235, 0.12) 0%,
            transparent 70%);
    transition: 0.4s ease;
}

/* Bottom accent line */
.faculty-card::after {
    content: "";
    position: absolute;
    left: 24px;
    bottom: 0;
    width: 0;
    height: 4px;
    border-radius: 20px;
    background: var(--gradient-primary);
    transition: width 0.35s ease;
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.08),
        0 8px 24px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.15);
    background: var(--gradient-card-hover);
}

.faculty-card:hover::after {
    width: calc(100% - 48px);
}

.faculty-card:hover::before {
    transform: scale(1.2);
}

/* Avatar */
.faculty-avatar-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.faculty-avatar {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(37, 99, 235, 0.12);
    padding: 4px;
    background: #fff;
    transition: all 0.35s ease;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
}

.faculty-card:hover .faculty-avatar {
    transform: scale(1.06);
    border-color: rgba(37, 99, 235, 0.28);
}

/* Name */
.faculty-name {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    color: var(--color-text);
    margin-bottom: 6px;
    line-height: 1.3;
}

/* Experience badge */
.faculty-exp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 auto 16px;
    padding: 7px 16px;
    border-radius: 40px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary-light);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    width: fit-content;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0.3px;
}

.faculty-exp::before {
    content: "★";
    font-size: 10px;
    color: var(--color-yellow);
}

/* Description */
.faculty-desc {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.75;
    text-align: center;
    margin-bottom: 18px;
    min-height: 72px;
    text-align: center;
   
}

/* Tags */
.faculty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.faculty-tag {
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 40px;
    transition: all 0.25s ease;
    border: 1px solid rgba(37, 99, 235, 0.08);
}

.faculty-tag:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .faculty-card {
        padding: 28px 18px 22px;
    }

    .faculty-name {
        font-size: 18px;
    }

    .faculty-avatar {
        width: 85px;
        height: 85px;
    }
}

/* ─────────────────────────────────────────────────────
           SECTION 2 · STATS BAR
        ───────────────────────────────────────────────────── */
.faculty-stats-section {
    background: var(--gradient-stats);
    padding: 52px 0;
}

.faculty-stats-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.faculty-stats-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition-base);
}

/* Icon colour variants — reuse main.css stat icon pattern */
.faculty-stats-icon-blue {
    background: var(--gradient-stats-icon);
    color: #93c5fd;
}

.faculty-stats-icon-yellow {
    background: rgba(245, 158, 11, .15);
    color: #fcd34d;
}

.faculty-stats-icon-green {
    background: rgba(16, 185, 129, .15);
    color: #6ee7b7;
}

.faculty-stats-icon-purple {
    background: rgba(139, 92, 246, .15);
    color: #c4b5fd;
}

.faculty-stats-card:hover .faculty-stats-icon {
    transform: scale(1.12);
}

.faculty-stats-number {
    font-size: 30px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 4px;
}

.faculty-stats-label {
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 0;
}

.faculty-stats-divider {
    width: 1px;
    height: 52px;
    background: rgba(255, 255, 255, .12);
    align-self: center;
}

/* ─────────────────────────────────────────────────────
           SECTION 3 · TEACHING APPROACH
           Light-blue bg | Left: illustration | Right: label +
           heading + 4 feature cards in a single row
        ───────────────────────────────────────────────────── */
.faculty-approach-section {
    padding: 70px 0;
    background: var(--color-blue-bg);
}

/* Left: illustration */
.faculty-approach-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.faculty-approach-img {
    width: 100%;
    max-width: 460px;
}

/* Right: text + cards column */
.faculty-approach-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.faculty-approach-heading {
    font-size: 18px;
    font-weight: 100;
    color: var(--color-text);
    line-height: 1.25;
    margin-bottom: 32px;
}

/* 4-column feature card grid */
.faculty-approach-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Individual feature card */
.faculty-approach-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 20px 14px 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(37, 99, 235, .08);
    transition: var(--transition-base);
}

.faculty-approach-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--color-primary-light);
}

.faculty-approach-card:hover .faculty-approach-icon {
    transform: scale(1.1);
}

/* Icon box */
.faculty-approach-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    transition: var(--transition-base);
}

/* Icon colour variants — reuse main.css colour tokens */
.faculty-approach-icon-blue {
    background: var(--color-blue-bg);
    color: var(--color-primary-light);
}

.faculty-approach-icon-green {
    background: var(--color-green-bg);
    color: var(--color-green);
}

.faculty-approach-icon-yellow {
    background: var(--color-yellow-bg);
    color: var(--color-yellow);
}

.faculty-approach-icon-purple {
    background: var(--color-purple-bg);
    color: var(--color-purple);
}

.faculty-approach-card-title {
    font-size: 13px !important;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: 7px;
}

.faculty-approach-card-desc {
    font-size: 8.5px !important;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ─────────────────────────────────────────────────────
           ANIMATIONS
        ───────────────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faculty-card,
.faculty-approach-card,
.faculty-stats-card {
    animation: fadeInUp .55s ease both;
}

.faculty-card:nth-child(1) {
    animation-delay: .05s;
}

.faculty-card:nth-child(2) {
    animation-delay: .13s;
}

.faculty-card:nth-child(3) {
    animation-delay: .21s;
}

.faculty-card:nth-child(4) {
    animation-delay: .29s;
}

.faculty-approach-card:nth-child(1) {
    animation-delay: .07s;
}

.faculty-approach-card:nth-child(2) {
    animation-delay: .15s;
}

.faculty-approach-card:nth-child(3) {
    animation-delay: .23s;
}

.faculty-approach-card:nth-child(4) {
    animation-delay: .31s;
}

/* ─────────────────────────────────────────────────────
           RESPONSIVE
        ───────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .faculty-stats-divider {
        display: none;
    }

    .faculty-stats-card {
        justify-content: center;
    }

    .faculty-approach-img-wrap {
        margin-bottom: 36px;
    }

    .faculty-approach-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .faculty-grid-section,
    .faculty-approach-section {
        padding: 50px 0;
    }

    .faculty-stats-section {
        padding: 40px 0;
    }

    .faculty-stats-card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .faculty-stats-number {
        font-size: 24px;
    }

    .faculty-approach-cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .faculty-pill {
        padding: 7px 16px;
        font-size: 13px;
    }

    .faculty-avatar {
        width: 76px;
        height: 76px;
    }
}

/* ═══════════════════════════════════════════════════════
   FACULTY TEACHING APPROACH CARDS - IMAGE STYLES
   (Preserves existing styles, adds image support)
════════════════════════════════════════════════════════ */

/* Image inside the icon box - replaces icon with image */
.faculty-approach-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-base);
}

/* Keep existing icon box styles but support images */
.faculty-approach-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    transition: var(--transition-base);
    overflow: hidden;
    /* Prevents image from overflowing */
}

/* Remove background color when image is present */
.faculty-approach-icon:has(img) {
    background: transparent !important;
    padding: 0;
}

/* Ensure images are properly centered in the icon box */
.faculty-approach-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hover effect for image inside icon box */
.faculty-approach-card:hover .faculty-approach-icon img {
    transform: scale(1.05);
}

/* Preserve all existing color variants for icons only (not images) */
.faculty-approach-icon-blue {
    background: var(--color-blue-bg);
    color: var(--color-primary-light);
}

.faculty-approach-icon-green {
    background: var(--color-green-bg);
    color: var(--color-green);
}

.faculty-approach-icon-yellow {
    background: var(--color-yellow-bg);
    color: var(--color-yellow);
}

.faculty-approach-icon-purple {
    background: var(--color-purple-bg);
    color: var(--color-purple);
}

/* Keep all existing card styles unchanged */
.faculty-approach-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 20px 14px 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(37, 99, 235, .08);
    transition: var(--transition-base);
}

.faculty-approach-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--color-primary-light);
}

.faculty-approach-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: 7px;
}

.faculty-approach-card-desc {
    font-size: 12.5px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

.faculty-approach-description {
    font-size: 12px !important;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Move entire cards section slightly upward */
.faculty-approach-cards-row {
    margin-top: 8px;
}

.faculty-approach-content .section-label {
    margin-bottom: 8px !important;
}

.faculty-approach-heading {
    margin-bottom: 16px !important;
}

.faculty-approach-description {
    margin-bottom: 24px !important;
}

.faculty-approach-heading{
    margin-bottom: 8px !important;
    line-height: 1.3;
}

.faculty-approach-description{
    margin-top: 0 !important;
}
/* =========================================
   COURSE HIGHLIGHTS
========================================= */

.course-highlight-card {
    transition: 0.4s ease;
}

.course-highlight-card:hover {
    transform: translateY(-8px);
}

.course-highlight-image {
    height: 320px;
    object-fit: cover;
    transition: 0.5s ease;
}

.course-highlight-card:hover .course-highlight-image {
    transform: scale(1.08);
}

/* =========================================
   HIGHLIGHT ICON BOX
========================================= */

.course-highlight-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    flex-shrink: 0;
}

/* =========================================
   ICON IMAGE
========================================= */

.highlight-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    color: var(--color-primary-light);
    font-size: 30px;
}

/* =========================================
   COURSE GALLERY
========================================= */

.course-gallery-card {
    transition: 0.4s ease;
}

.course-gallery-card:hover {
    transform: translateY(-6px);
}

.course-gallery-image {
    height: 260px;
    object-fit: cover;
    transition: 0.5s ease;
}

.course-gallery-card:hover .course-gallery-image {
    transform: scale(1.08);
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px) {

    .course-highlight-image {
        height: 240px;
    }

    .course-gallery-image {
        height: 200px;
    }

}
/* =========================================
   TESTIMONIALS PAGE STYLES
   ========================================= */

/* Section Base */
.testimonials-page-section {
    padding: 80px 0;
    background: var(--gradient-hero);
}

.testimonials-video-section {
    padding: 80px 0;
    background: var(--color-white);
}

.testimonials-header {
    margin-bottom: 48px;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary-light);
    margin-bottom: 12px;
    background: rgba(37, 99, 235, 0.1);
    padding: 6px 16px;
    border-radius: 40px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 16px;
}

.testimonials-subtitle {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

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

.testimonial-quote {
    font-size: 60px;
    line-height: 1;
    color: var(--color-primary-light);
    opacity: 0.3;
    margin-bottom: 20px;
    font-family: serif;
}

.testimonial-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Video Grid */
.testimonials-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Video Card */
.video-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-light);
}

.video-wrapper {
    position: relative;
    background: var(--color-primary-dark);
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.video-card:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
    font-size: 30px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.video-play-icon:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 16px 20px 20px;
}

.video-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0;
    line-height: 1.4;
}

/* CTA Section */
.testimonials-cta-section {
    padding: 70px 0;
    background: transparent;
}

.testimonials-cta-wrapper {
    background: var(--gradient-cta);
    border-radius: var(--radius-lg);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.testimonials-cta-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 12px;
}

.testimonials-cta-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.btn-testimonial-cta {
    background: var(--color-white);
    color: var(--color-primary-light);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-testimonial-cta:hover {
    background: var(--gradient-primary-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive */
@media screen and (max-width: 991px) {
    .testimonials-page-section,
    .testimonials-video-section {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .testimonials-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .testimonials-cta-wrapper {
        padding: 40px 30px;
    }
}

@media screen and (max-width: 767px) {
    .testimonials-page-section,
    .testimonials-video-section {
        padding: 50px 0;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-video-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-cta-wrapper {
        padding: 30px 25px;
        text-align: center;
    }
    
    .testimonials-cta-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .testimonial-card {
        padding: 20px 16px;
    }
    
    .testimonial-quote {
        font-size: 48px;
        margin-bottom: 16px;
    }
    
    .testimonial-content {
        font-size: 14px;
    }
    
    .testimonial-avatar {
        width: 48px;
        height: 48px;
    }
    
    .testimonial-name {
        font-size: 15px;
    }
    
    .video-play-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
/* =========================================
   CKEDITOR STYLES
========================================== */

.ck-editor__editable {

    height: 500px;

}

.ck-content img {

    max-width: 200px !important;

    height: auto;

}

.ck-content img {
    max-width: 200px !important;
    height: auto;
}
/* =========================================
   PARALLAX BACKGROUND — Why Choose Us & Faculty
   ========================================= */

/* Remove old background from these sections */
.home-why-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-white);
    padding: 80px 0;
}

.home-faculty-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-white);
}

/* ── Why Choose Us — your first image ── */
.home-why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/banner (1).webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    opacity: 0.13;
    z-index: 0;
    pointer-events: none;
}

/* ── Faculty / Meet Your Experts — second image ── */
.home-faculty-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/banner (1).png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    opacity: 0.13;
    z-index: 0;
    pointer-events: none;
}

/* ── Mobile: disable fixed on iOS ── */
@media (max-width: 991px) {

    .home-why-section::before,
    .home-faculty-section::before {
        background-attachment: scroll;
    }
}

/* Content above background */
.home-why-section .container,
.home-faculty-section .container {
    position: relative;
    z-index: 2;
}

/* Glass cards */
.home-why-card {
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08) !important;
}

.faculty-card {
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9) !important;
}

/* =========================================
   HOME - CAREER SECTION
========================================= */

.home-career-section {
    background: #f8fbff;
}

.home-career-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.home-career-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.home-career-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.home-career-icon img {
    color: #fff;
    font-size: 30px;
    align-items: center;
}

.home-career-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 18px;
    line-height: 1.3;
}

.home-career-desc {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* MOBILE */
@media (max-width: 767px) {

    .home-career-card {
        padding: 30px 24px;
    }

    .home-career-title {
        font-size: 24px;
    }

}


.home-section-description {
    max-width: 750px;
    margin: 0 auto;
    color: #6c757d;
    font-size: 16px;
    line-height: 1.8;
}

/* =========================================
   CTA SECTION — restore blue gradient
   ========================================= */
.home-cta-section {
    position: relative;
    z-index: 5;
    isolation: isolate;
    padding: 60px 0;
    background: transparent;
}

.home-ribbon-wrapper {
    background: var(--gradient-cta) !important;
    border-radius: var(--radius-lg);
    padding: 45px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}

/* =========================================
   STATS SHIMMER
   ========================================= */
.home-stats-section {
    background-size: 200% 100%;
    animation: statsShimmer 8s ease infinite;
}

@keyframes statsShimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* =========================================
   FOOTER — fully isolated
   ========================================= */
.main-footer {
    position: relative;
    z-index: 5;
    isolation: isolate;
    background-color: var(--color-secondary) !important;
}

/* =========================================
   CARD ANIMATIONS
   ========================================= */
.home-why-card,
.faculty-card {
    will-change: opacity, transform;
}

/* ── Mobile: disable fixed (bad on iOS) ── */
@media (max-width: 991px) {

    .home-why-section::before,
    .home-faculty-section::before {
        background-attachment: scroll;
    }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .home-stats-section {
        animation: none !important;
        background-size: 100% 100%;
    }
}
/* =========================================
   HOME - TESTIMONIALS SECTION
========================================== */

.home-testimonial-section {
    padding: 80px 0;
    background-color: var(--color-light-bg);
    position: relative;
    overflow: hidden;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

/* Image Wrapper */
.testimonial-image-wrapper {
    background: linear-gradient(135deg, var(--color-light-bg) 0%, var(--color-white) 100%);
    padding: 30px 20px 20px;
}

.testimonial-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid var(--color-white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Video Ratio */
.ratio-16x9 {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.ratio-16x9 iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Quote Icon */
.testimonial-quote-icon {
    font-size: 32px;
    color: var(--color-primary-light);
    opacity: 0.3;
    line-height: 1;
}

/* Content */
.testimonial-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-light);
}

.testimonial-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
}

.testimonial-role {
    font-size: 12px;
    color: var(--color-primary-light);
    font-weight: 600;
}

/* Carousel Controls */
.home-testimonial-section .carousel-control-prev,
.home-testimonial-section .carousel-control-next {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: var(--shadow-sm);
}

.home-testimonial-section .carousel-control-prev {
    left: -20px;
}

.home-testimonial-section .carousel-control-next {
    right: -20px;
}

.home-testimonial-section .carousel-control-prev-icon,
.home-testimonial-section .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.home-testimonial-section .carousel-control-prev:hover,
.home-testimonial-section .carousel-control-next:hover {
    background: var(--gradient-primary);
}

.home-testimonial-section .carousel-control-prev:hover .carousel-control-prev-icon,
.home-testimonial-section .carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(1);
}
/* Testimonial Image Wrapper */
.testimonial-image-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid var(--color-white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Video wrapper - no image, just video */
.ratio-16x9 {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.ratio-16x9 iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .home-testimonial-section .carousel-control-prev {
        left: -10px;
    }
    
    .home-testimonial-section .carousel-control-next {
        right: -10px;
    }
}

@media screen and (max-width: 767px) {
    .home-testimonial-section {
        padding: 60px 0;
    }
    
    .testimonial-image {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-title {
        font-size: 16px;
    }
    
    .testimonial-description {
        font-size: 13px;
    }
    
}

/* =========================================
   CUSTOM CURSOR DOT
========================================= */

/* The dot */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 11px;
    height: 11px;
    background: var(--color-primary-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(0, 0);
    will-change: transform;

    /* Subtle glow */
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.5);
}

/* Hide on touch devices */
@media (hover: none) {
    .cursor-dot {
        display: none;
    }
}

