/* ============================================
   DARK THEME CSS - INFIX LMS
   Version: 1.0
   ============================================ */

/* Root Variables */
:root {
    --dark-bg: #0A0C15;
    --dark-surface: #111827;
    --dark-surface-light: #1A1F2E;
    --accent-cyan: #06B6D4;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    --accent-orange: #F59E0B;
    --gradient-1: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    --gradient-2: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    --gradient-3: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    --text-white: #FFFFFF;
    --text-gray: #9CA3AF;
    --text-light: #E5E7EB;
    --cyan: #00e5ff;
    --cyan-dim: #00bcd4;
    --cyan-border: rgba(0, 229, 255, 0.3);
    --dark-bg: #0d1117;
    --card-bg: #111827;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--dark-bg);
    font-family: 'DM Sans', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

body,
html {
    padding: 0px;
    margin: 0px;
    overflow-x: hidden;
}

::-webkit-scrollbar-track {
    background: var(--dark-surface);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-cyan);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

/* Responsive Grid */
@media (max-width: 991px) {

    .col-lg-6,
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: floatSphere 15s ease-in-out infinite;
}

.sphere-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-cyan);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.sphere-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

.sphere-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-pink);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes floatSphere {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.2);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Hero Section */
.hero-section {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 15px 0 15px;
    position: relative;
}

.hero-left {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.4);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    color: var(--text-light);
}

.hero-badge i {
    color: var(--accent-cyan);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
}

.gradient-text {
    /* margin-top:10px; */
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-white);
}

.stat-item p {
    font-size: 14px;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-1);
    padding: 14px 32px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 14px 32px;
    border-radius: 50px;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    color: var(--text-white);
}

/* Hero Right */
.hero-right {
    position: relative;
    perspective: 1000px;
}

.hero-main-image {
    position: relative;
    z-index: 2;
}

.hero-main-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.float-card {
    position: absolute;
    background: var(--dark-surface);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.float-card i {
    font-size: 28px;
}

.float-card .card-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--text-white);
}

.float-card .card-content p {
    font-size: 11px;
    margin: 0;
    color: var(--text-gray);
}

.float-card-1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 20%;
    right: -40px;
    animation-delay: -1s;
}

.float-card-3 {
    top: 40%;
    right: -20px;
    animation-delay: -2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}


/* 2nd section top categories start */


.top-categories-section {
    padding: 90px 0;
    position: relative;
    z-index: 1;
}

/* subtle background glow */
.top-categories-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 16px;
    /* horizontal space */
    row-gap: 22px;
    gap: 16px;
    margin-top: 40px;
}

/* ===== CARD ===== */
.category-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 18px;

    /* 🔥 NEW BACKGROUND */
    background: linear-gradient(145deg, #0f172a, #111827);

    /* optional subtle inner glow */
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 10px 25px rgba(0, 0, 0, 0.4);

    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);

    position: relative;
    overflow: hidden;
    cursor: pointer;

    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* animated gradient border glow */
.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(120deg, #6366f1, #8b5cf6, #ec4899);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
}

/* hover glow layer */
.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #6366f1, #8b5cf6, #ec4899);
    opacity: 0;
    transition: 0.4s;
    z-index: 0;
}

/* HOVER EFFECT */
.category-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.category-card:hover::before {
    opacity: 0.08;
}

.category-card:hover::after {
    opacity: 1;
}

/* ===== ICON ===== */
.category-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;

    background: var(--gradient-1);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);

    transition: 0.4s;
    z-index: 1;
}

/* icon hover animation */
.category-card:hover .category-icon {
    /* transform: rotate(-8deg) scale(1.1); */
    box-shadow:
        0 10px 25px rgba(139, 92, 246, 0.6),
        inset 0 0 12px rgba(255, 255, 255, 0.2);
}

/* ===== TEXT ===== */
.category-content {
    z-index: 1;
}

.category-content h4 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    transition: 0.3s;
}

.category-card:hover h4 {
    color: #c4b5fd;
}

.category-content span {
    font-size: 13px;
    color: #9ca3af;
}

/* ===== HEADER ===== */
.section_header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
}

.section_header p {
    color: #9ca3af;
    margin-top: 10px;
}

.courses_header {
    display: flex;
    justify-content: space-between;
}

.courses_header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
}

.courses_header p {
    color: #9ca3af;
    margin-top: 10px;
}

@media (max-width:400px) {
    .courses_header {
        margin-left: 30px;
    }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .category-card {
        padding: 16px;
    }

    .category-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .categories-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* 2nd section top categories end */


/* 3rd section 2 card start */
.category {
    margin-top: 10px;
    padding: 20px 0px 50px 0px;
    position: relative;
    background: transparent;
}

.category .section-title {
    margin-bottom: 50px
}

.category .section-title h2 {
    margin-bottom: 40px;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 0%, #E5E7EB 50%, var(--text-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Outfit', sans-serif;
    position: relative;
    display: inline-block;
}

.category .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--accent-cyan);
}

.category .section-title p {
    font-size: 18px;
    line-height: 1.55556;
    color: var(--text-gray);
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .category .section-title {
        margin-bottom: 40px
    }

    .category .section-title h2 {
        margin-bottom: 24px;
        font-size: 34px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .category .section-title {
        margin-bottom: 36px
    }

    .category .section-title h2 {
        margin-bottom: 20px;
        font-size: 32px;
    }

    .category .section-title p {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .category .section-title {
        margin-bottom: 26px
    }

    .category .section-title h2 {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .category .section-title p {
        font-size: 16px;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1439px) {
    .category .section-title h2 {
        margin-bottom: 30px
    }
}

@media only screen and (max-width: 991px) {
    .category .section-title p {
        font-size: 16px
    }
}

.category-items {
    margin-bottom: 115px;
    row-gap: 28px;
    column-gap: 34px
}

@media only screen and (min-width: 1280px) and (max-width: 1439px) {
    .category-items {
        row-gap: 24px;
        column-gap: 26px
    }
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .category-items {
        row-gap: 20px;
        column-gap: 24px;
        margin-bottom: 90px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .category-items {
        gap: 20px;
        margin-bottom: 80px
    }
}

@media only screen and (max-width: 767px) {
    .category-items {
        gap: 16px;
        margin-bottom: 60px
    }
}

.category-item {
    --icon: 50px;
    border-radius: 18px;
    /* Dark theme card background - matches .category-card */
    background: linear-gradient(145deg, #0f172a, #111827);
    padding: 15px;
    width: calc(100% / 5 - 28px);
    flex: 0 0 auto;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Gradient border glow effect on hover - matches .category-card */
.category-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(120deg, #6366f1, #8b5cf6, #ec4899);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
}

.category-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #6366f1, #8b5cf6, #ec4899);
    opacity: 0;
    transition: 0.4s;
    z-index: 0;
    pointer-events: none;
    border-radius: 18px;
}

.category-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.category-item:hover::before {
    opacity: 0.08;
}

.category-item:hover::after {
    opacity: 1;
}

@media only screen and (min-width: 1280px) and (max-width: 1439px) {
    .category-item {
        width: calc(100% / 5 - 21px)
    }
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .category-item {
        width: calc(100% / 4 - 18px);
        --icon: 40px;
        padding: 12px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .category-item {
        width: calc(100% / 3 - 14px);
        padding: 12px
    }
}

@media only screen and (max-width: 767px) {
    .category-item {
        width: calc(100% / 2 - 8px);
        padding: 12px
    }
}

@media only screen and (max-width: 479px) {
    .category-item {
        width: calc(100% - 8px);
        padding: 14px;
        --icon: 40px
    }
}

.category-item .icon {
    width: var(--icon);
    height: var(--icon);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    transition: 0.4s;
    position: relative;
    z-index: 1;
}

.category-item:hover .icon {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.6);
}

/* Keep your original icon colors but enhance with subtle gradient */
.category-item .icon.bg-1 {
    background: linear-gradient(135deg, #4B64EC, #6366f1);
    box-shadow: 0 8px 20px rgba(75, 100, 236, 0.4);
}

.category-item .icon.bg-2 {
    background: linear-gradient(135deg, #2477FF, #06B6D4);
}

.category-item .icon.bg-3 {
    background: linear-gradient(135deg, #FF4545, #EF4444);
}

.category-item .icon.bg-4 {
    background: linear-gradient(135deg, #FBBC04, #F59E0B);
}

.category-item .icon.bg-5 {
    background: linear-gradient(135deg, #FF902A, #F97316);
}

.category-item .icon.bg-6 {
    background: linear-gradient(135deg, #BB64FF, #A855F7);
}

.category-item .icon.bg-7 {
    background: linear-gradient(135deg, #25B1FF, #0EA5E9);
}

.category-item .icon.bg-8 {
    background: linear-gradient(135deg, #1BB79C, #14B8A6);
}

.category-item .icon.bg-9 {
    background: linear-gradient(135deg, #C8DF3B, #A3E635);
}

.category-item .icon img,
.category-item .icon svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.category-item .content {
    width: calc(100% - var(--icon) - 16px);
    position: relative;
    z-index: 1;
}

.category-item .content h5 {
    font-size: 20px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: all .3s ease-in-out;
    color: var(--text-white);
    font-weight: 600;
}

.category-item:hover .content h5 {
    color: var(--accent-cyan);
}

.category-item .content p {
    color: var(--text-gray);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 13px;
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .category-item .content h5 {
        font-size: 18px
    }
}

@media only screen and (max-width: 991px) {
    .category-item .content h5 {
        font-size: 18px
    }
}

/* 5th section reward points start */
/* ============================================
   REWARD POINTS SECTION - PROFESSIONAL CLEAN DESIGN
   ============================================ */

.reward {
    padding: 60px 0;
    position: relative;
}

.reward .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Row Alignment */
.reward .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.reward .col-lg-4,
.reward .col-lg-8 {
    padding: 0 15px;
}

.reward .col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.reward .col-lg-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
}

/* Reward Image - Treasure Box with jumping animation */
.reward-img {
    width: 100%;
    max-width: 480px;
    position: relative;
    left: -40px;
    /* Jumping Animation */
    animation: floatTreasure 3s ease-in-out infinite;
}

.reward-img:hover {
    animation-play-state: paused;
}

/* Jumping animation for treasure box */
@keyframes floatTreasure {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

html[dir=rtl] .reward-img {
    right: -40px;
    left: auto;
}

.reward-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Reward Content Card - Enlarges on hover, NO border change */
.reward-content {
    background: linear-gradient(145deg, #0F172A, #111827);
    border-radius: 24px;
    padding: 50px 60px 50px 60px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
}

/* Card enlarges on hover - NO border change */
.reward-content:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    /* NO border color change */
}

html[dir=rtl] .reward-content {
    padding: 50px 60px 50px 60px;
}

/* Title Styling with Underline */
.reward-content h3 {
    margin-bottom: 20px;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: #FFFFFF;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

/* Underline that enlarges on hover */
.reward-content h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Underline enlarges on hover */
.reward-content:hover h3::after {
    width: 100px;
}

/* Description Text */
.reward-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #9CA3AF;
    margin-bottom: 28px;
    max-width: 90%;
}

/* Theme Button */
.reward-content .theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.reward-content .theme-btn:hover {
    transform: translateY(-2px);
    gap: 12px;
    opacity: 0.95;
}

/* Decorative Coin/Medal - Visible on desktop/tablet */
.reward-position {
    --shape-height: 160px;
    position: absolute;
    top: -50px;
    right: -20px;
    height: var(--shape-height);
    width: auto;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

html[dir=rtl] .reward-position {
    left: -20px;
    right: auto;
}

.reward-position img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   PERFECT RESPONSIVENESS
   ============================================ */

/* Desktop Large (1440px and above) */
@media only screen and (min-width: 1440px) {
    .reward-img {
        max-width: 520px;
        left: -50px;
    }

    .reward-position {
        --shape-height: 180px;
        top: -60px;
        right: -30px;
    }

    .reward-content:hover {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Desktop (1280px - 1439px) */
@media only screen and (min-width: 1280px) and (max-width: 1439px) {
    .reward-img {
        max-width: 480px;
        left: -40px;
    }

    .reward-position {
        --shape-height: 160px;
        top: -50px;
        right: -20px;
    }
}

/* Tablet Landscape (992px - 1279px) */
@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .reward {
        padding: 50px 0;
    }

    .reward-img {
        max-width: 380px;
        left: 0;
        margin-bottom: 25px;
    }

    @keyframes floatTreasure {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-8px);
        }
    }

    .reward-content {
        padding: 40px 45px;
        border-radius: 22px;
    }

    .reward-content:hover {
        transform: translateY(-4px) scale(1.015);
    }

    .reward-content h3 {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .reward-content h3::after {
        width: 55px;
        height: 3px;
        bottom: -10px;
    }

    .reward-content p {
        font-size: 15px;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .reward .col-lg-4,
    .reward .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .reward-img {
        text-align: center;
        margin: 0 auto 25px;
        max-width: 320px;
    }

    .reward-position {
        --shape-height: 130px;
        top: -40px;
        right: -10px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .reward {
        padding: 45px 0;
    }

    .reward-img {
        max-width: 300px;
        margin: 0 auto 25px;
        left: 0;
    }

    @keyframes floatTreasure {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-6px);
        }
    }

    .reward-content {
        padding: 35px 40px;
        border-radius: 20px;
    }

    .reward-content:hover {
        transform: translateY(-3px) scale(1.01);
    }

    .reward-content h3 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .reward-content h3::after {
        width: 50px;
        height: 3px;
        bottom: -8px;
    }

    .reward-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 22px;
        max-width: 100%;
    }

    .reward-content .theme-btn {
        padding: 11px 24px;
        font-size: 13px;
    }

    .reward .col-lg-4,
    .reward .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .reward-position {
        --shape-height: 110px;
        top: -35px;
        right: -5px;
    }
}

/* Mobile Large (576px - 767px) - Hide underline and coin, reduce scale */
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .reward {
        padding: 40px 0;
    }

    .reward .container {
        padding: 0 16px;
    }

    .reward-img {
        max-width: 260px;
        margin: 0 auto 20px;
        left: 0;
    }

    @keyframes floatTreasure {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-5px);
        }
    }

    .reward-content {
        padding: 28px 28px;
        border-radius: 18px;
    }

    /* No scale on mobile - just lift */
    .reward-content:hover {
        transform: translateY(-3px);
    }

    .reward-content h3 {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.3;
        display: block;
    }

    /* HIDE UNDERLINE ON MOBILE */
    .reward-content h3::after {
        display: none;
    }

    .reward-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .reward-content .theme-btn {
        padding: 10px 22px;
        font-size: 13px;
    }

    .reward .col-lg-4,
    .reward .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .reward .col-lg-4,
    .reward .col-lg-8 {
        padding: 0 12px;
    }

    /* Hide coin on mobile */
    .reward-position {
        display: none;
    }
}

/* Mobile Small (320px - 575px) - Hide underline and coin */
@media only screen and (max-width: 575px) {
    .reward {
        padding: 35px 0;
    }

    .reward .container {
        padding: 0 16px;
    }

    .reward-img {
        max-width: 220px;
        margin: 0 auto 20px;
        left: 0;
    }

    @keyframes floatTreasure {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-4px);
        }
    }

    .reward-content {
        padding: 24px 20px;
        border-radius: 16px;
    }

    /* No scale on mobile - just lift */
    .reward-content:hover {
        transform: translateY(-2px);
    }

    .reward-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
        line-height: 1.3;
        display: block;
    }

    /* HIDE UNDERLINE ON MOBILE */
    .reward-content h3::after {
        display: none;
    }

    .reward-content p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 18px;
        max-width: 100%;
    }

    .reward-content .theme-btn {
        padding: 9px 20px;
        font-size: 12px;
        gap: 8px;
    }

    .reward-content .theme-btn:hover {
        gap: 10px;
    }

    .reward .col-lg-4,
    .reward .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 12px;
    }

    /* Hide coin on mobile */
    .reward-position {
        display: none;
    }
}

/* Extra Small Devices (below 375px) - Hide underline and coin */
@media only screen and (max-width: 374px) {
    .reward {
        padding: 30px 0;
    }

    .reward-img {
        max-width: 190px;
        margin: 0 auto 15px;
    }

    @keyframes floatTreasure {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-3px);
        }
    }

    .reward-content {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .reward-content:hover {
        transform: translateY(-2px);
    }

    .reward-content h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    /* HIDE UNDERLINE ON MOBILE */
    .reward-content h3::after {
        display: none;
    }

    .reward-content p {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .reward-content .theme-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* For RTL Support */
@media only screen and (max-width: 991px) {
    html[dir=rtl] .reward-img {
        right: 0;
        left: auto;
        margin: 0 auto 25px;
    }

    html[dir=rtl] .reward-position {
        left: -10px;
        right: auto;
    }
}

@media only screen and (max-width: 767px) {
    html[dir=rtl] .reward-position {
        display: none;
    }
}

@media only screen and (max-width: 575px) {
    html[dir=rtl] .reward-img {
        margin: 0 auto 20px;
    }
}

/* Fix for any hidden overflow */
.reward,
.reward .container,
.reward .row,
.reward .col-lg-4,
.reward .col-lg-8,
.reward-img,
.reward-content,
.reward-position {
    overflow: visible !important;
}

/* 5th section reward points end */
/* ========== CTA CARDS - DARK THEME ========== */

.category-cta {
    border-radius: 20px;
    padding: 0px 42px;
    position: relative;
    padding-left: var(--padding);
    --img-width: 270px;
    --padding: 230px;
    --img-position: -30px;
    transition: all 0.3s ease;
}

/* White Card CTA - Dark theme version */
.category-cta.d-flex.align-items-center.bg-white {
    background: linear-gradient(145deg, #0f172a, #111827) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.category-cta.d-flex.align-items-center.bg-white:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.3);
}

/* Primary Card CTA - Dark theme version */
.category-cta.bg-primary {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(139, 92, 246, 0.12)) !important;
    border: 1px solid rgba(6, 182, 212, 0.25);
    backdrop-filter: blur(10px);
}

.category-cta.bg-primary:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 20px 45px rgba(6, 182, 212, 0.15);
}

html[dir=rtl] .category-cta {
    padding-left: 42px;
    padding-right: var(--padding);
}

@media only screen and (min-width: 1280px) and (max-width: 1439px) {
    .category-cta {
        --padding: 210px;
        --img-width: 260px
    }
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .category-cta {
        --padding: 180px;
        --img-width: 190px;
        --img-position: -20px
    }
}

@media only screen and (max-width: 991px) {
    .category-cta {
        margin-bottom: 24px;
    }

    .row .col-md-6:last-child .category-cta {
        margin-bottom: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .category-cta {
        padding: 24px !important
    }
}

@media only screen and (max-width: 767px) {
    .category-cta {
        padding: 20px 25px !important
    }
}

.category-cta.bg-primary {
    color: #fff;
    border-radius: 20px;
    padding-left: 1rem !important;
    padding-right: var(--padding);
}

html[dir=rtl] .category-cta.bg-primary {
    padding-right: 1rem !important;
    padding-left: var(--padding) !important;
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .category-cta.bg-primary {
        padding-left: 2rem !important
    }

    html[dir=rtl] .category-cta.bg-primary {
        padding-left: 0 !important;
        padding-right: 2rem !important;
    }
}

@media only screen and (max-width: 767px) {
    .category-cta.bg-primary {
        padding-right: inherit;
        margin-top: 30px
    }
}

.category-cta.bg-primary .category-cta-img {
    left: auto;
    right: var(--img-position)
}

html[dir=rtl] .category-cta.bg-primary .category-cta-img {
    right: auto;
    left: var(--img-position);
}

.category-cta.bg-primary h3,
.category-cta.bg-primary p {
    color: currentColor
}

/* CTA Buttons - matching theme buttons */
.category-cta .theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

/* White card button */
.category-cta.d-flex.align-items-center.bg-white .theme-btn {
    background: var(--gradient-1);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.category-cta.d-flex.align-items-center.bg-white .theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
    gap: 15px;
    color: #fff;
}

/* Primary card button */
.category-cta.bg-primary .theme-btn {
    background: #fff;
    color: var(--accent-cyan);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.category-cta.bg-primary .theme-btn:hover {
    background: var(--gradient-1);
    color: #fff;
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.category-cta-img {
    max-width: var(--img-width);
    flex: 0 0 100%;
    height: 340px;
    /* Taller than card */
    position: absolute;
    bottom: 0;
    left: var(--img-position);
}

html[dir=rtl] .category-cta-img {
    left: auto;
    right: var(--img-position);
    transform: scaleX(-1)
}

.category-cta-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@media only screen and (min-width: 1280px) and (max-width: 1439px) {
    .category-cta-img {
        height: 320px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .category-cta-img {
        height: 300px;
    }
}

@media only screen and (max-width: 991px) {
    .category-cta-img {
        display: none
    }
}

.category-cta-content {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 40px 0px;
    padding-left: 30px
}

html[dir=rtl] .category-cta-content {
    padding-left: 0;
    padding-right: 30px;
}

.category-cta-content h3 {
    font-size: 32px;
    line-height: 1.25;
    padding-right: 12%;
    margin-bottom: 12px;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
}

.category-cta.bg-primary .category-cta-content h3 {
    background: linear-gradient(135deg, #FFFFFF, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-cta-content p {
    margin-bottom: 18px;
    color: var(--text-gray);
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .category-cta-content {
        padding: 30px 0px
    }

    .category-cta-content h3 {
        font-size: 28px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .category-cta-content {
        padding: 0;
        max-width: 100%
    }

    .category-cta-content h3 {
        font-size: 26px
    }
}

@media only screen and (max-width: 767px) {
    .category-cta-content {
        padding: 20px 0px
    }

    .category-cta-content h3 {
        font-size: 24px
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1439px) {
    .category-cta-content h3 {
        font-size: 28px
    }
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .category-cta-content h3 {
        padding-right: 0;
        font-size: 24px
    }

    html[dir=rtl] .category-cta-content h3 {
        padding-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .category-cta-content h3 {
        padding: 0
    }
}

@media only screen and (max-width: 767px) {
    .category-cta-content h3 {
        padding-right: 0
    }

    html[dir=rtl] .category-cta-content h3 {
        padding-left: 0;
    }
}

.category-cta-content .theme-btn {
    --btn-padding-y: 9px;
    --btn-padding-x: 18px
}


/* 3rd section 2 card end */
/* Features Section */
.features-section {
    padding: 40px 0;
    position: relative;
    background: transparent;
}

.features-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(6, 182, 212, 0.4));
}

.section_header {
    text-align: center;
    margin-bottom: 50px;
}

.section_header h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF 0%, #E5E7EB 50%, var(--text-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
    position: relative;
    display: inline-block;
}

.section_header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--accent-cyan);
}

.section_header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 500px;
    margin: 10px auto 0;
    line-height: 1.6;
    opacity: 0.9;
}

/* Bento-style features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: rgba(17, 24, 39, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
    "icon title"
    "icon desc";
    gap: 4px 20px;
    align-content: center;
    text-align: left;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:nth-child(1) {
    grid-column: span 1;
}

.feature-card:nth-child(3) {
    grid-column: span 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-cyan) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(6, 182, 212, 0.15);
    background: rgba(17, 24, 39, 0.6);
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.feature-card:nth-child(1)::after {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent 70%);
}

.feature-card:nth-child(2)::after {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 70%);
}

.feature-card:nth-child(3)::after {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15), transparent 70%);
}

.feature-card:nth-child(4)::after {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15), transparent 70%);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    grid-area: icon;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
    margin: 0;
    z-index: 2;
}

.feature-card:nth-child(1) .feature-icon {
    background: rgba(6, 182, 212, 0.12);
    color: var(--accent-cyan);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.feature-card:nth-child(2) .feature-icon {
    background: rgba(139, 92, 246, 0.12);
    color: var(--accent-purple);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.feature-card:nth-child(3) .feature-icon {
    background: rgba(236, 72, 153, 0.12);
    color: var(--accent-pink);
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.feature-card:nth-child(4) .feature-icon {
    background: rgba(245, 158, 11, 0.12);
    color: var(--accent-orange);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.feature-card h3 {
    grid-area: title;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0;
    line-height: 1.2;
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 2;
    align-self: end;
}

.feature-card p {
    grid-area: desc;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    align-self: start;
}

/* claude feature section :start */

/* ═══════════════════════════════════════════
   FEATURES — Pinterest Masonry Layout
   ═══════════════════════════════════════════ */

.features-section {
    padding: 90px 0;
    position: relative;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* ── LEFT ── */
.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #22d3ee;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-radius: 99px;
    padding: 5px 14px;
    margin-bottom: 20px;
}

.features-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    font-weight: 800;
    color: #f0f9ff;
    line-height: 1.2;
    margin-bottom: 18px;
}

.features-heading-gradient {
    background: linear-gradient(135deg, #06b6d4, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-para {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    color: #64748b;
    line-height: 1.85;
    margin-bottom: 32px;
    max-width: 420px;
    border-left: 2px solid rgba(6, 182, 212, 0.35);
    padding-left: 16px;
}

/* stat 2x2 grid */
.features-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 28px;
    margin-bottom: 36px;
}

.features-stat-divider {
    grid-column: span 2;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.features-stat-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.features-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.dot-cyan {
    background: #06b6d4;
    box-shadow: 0 0 8px rgba(6, 182, 212, .7);
}

.dot-violet {
    background: #7c3aed;
    box-shadow: 0 0 8px rgba(124, 58, 237, .7);
}

.dot-pink {
    background: #ec4899;
    box-shadow: 0 0 8px rgba(236, 72, 153, .6);
}

.dot-amber {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, .6);
}

.features-stat-val {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #f0f9ff;
    line-height: 1;
    margin-bottom: 4px;
}

.features-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.4;
}

/* CTA button */
.features-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #06b6d4, #7c3aed);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 30px;
    border-radius: 99px;
    box-shadow: 0 0 28px rgba(6, 182, 212, 0.38);
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
}

.features-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 44px rgba(6, 182, 212, 0.55);
    color: #fff;
}

/* ── RIGHT: Masonry ── */
.features-masonry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
}

.masonry-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.masonry-col-2 {
    margin-top: 44px;
}

/* Pin base */
.mpin {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.mpin:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
}

/* Image pin */
.mpin-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.mpin-img-wrap img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s;
}

.mpin:hover .mpin-img-wrap img {
    transform: scale(1.06);
}

.mpin-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 14px 12px;
    background: linear-gradient(to top, rgba(2, 8, 24, .92) 0%, rgba(2, 8, 24, .4) 70%, transparent 100%);
}

.mpin-overlay-title {
    font-family: 'Outfit', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #f0f9ff;
    margin-bottom: 2px;
}

.mpin-overlay-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 10.5px;
    font-weight: 400;
    color: #94a3b8;
}

/* Stat pin */
.mpin-stat {
    background: #0d1b3e;
    padding: 18px 16px;
}

.mpin-stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 10px;
}

.mpin-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #f0f9ff;
    line-height: 1;
}

.mpin-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #64748b;
    margin-top: 4px;
}

.mpin-stat-bar {
    margin-top: 10px;
    height: 3px;
    border-radius: 99px;
    width: 55%;
}

/* Feature pill pin */
.mpin-feat {
    background: #0d1b3e;
    padding: 15px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mpin-feat-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.mpin-feat-title {
    font-family: 'Outfit', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #f0f9ff;
    margin-bottom: 3px;
}

.mpin-feat-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 10.5px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .features-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .features-para {
        max-width: 100%;
    }

    .features-masonry {
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .features-stat-grid {
        grid-template-columns: 1fr;
    }

    .features-stat-divider {
        grid-column: span 1;
    }

    .masonry-col-2 {
        margin-top: 24px;
    }
}

/* claude feature section end */



/* Stats Section */
.stats-section {
    /* new */
    padding: 60px 0;

    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(139, 92, 246, 0.05));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    /* new */
    gap: 24px;
    text-align: left;
}

.stat-box {
    background: rgba(17, 24, 39, 0.4);
    /* new */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 24px 0 0 24px;
    background: var(--gradient-1);
    box-shadow: 0 0 15px var(--accent-cyan);
}

.stat-box:nth-child(2)::before {
    background: var(--gradient-2);
    box-shadow: 0 0 15px var(--accent-purple);
}

.stat-box:nth-child(3)::before {
    background: var(--gradient-1);
    box-shadow: 0 0 15px var(--accent-cyan);
}

.stat-box:nth-child(4)::before {
    background: var(--gradient-2);
    box-shadow: 0 0 15px var(--accent-purple);
}

.stat-box:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(6, 182, 212, 0.2);
    background: rgba(17, 24, 39, 0.6);
}

.stat-box i {
    font-size: 32px;
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.25);
}

.stat-box:nth-child(2) i {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.25);
}

.stat-box:nth-child(3) i {
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.25);
}

.stat-box:nth-child(4) i {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.25);
}

.stat-box-content {
    flex: 1;
    min-width: 0;
}

/* till this */

.stat-number-lg {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-white);
    margin: 0 0 4px;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.stat-box p {
    color: var(--text-gray);
    font-size: 13px;
    margin: 0;
    white-space: nowrap;
}


.course {
    padding-top: 50px;
}


.course-slider {
    margin-top: 40px;
    position: relative;
    padding: 0 50px;
}


.course-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    margin: 0;
}

.course-slider .owl-prev,
.course-slider .owl-next {
    pointer-events: all;
    width: 44px;
    height: 44px;
    background: rgba(6, 182, 212, 0.15) !important;
    border: 1px solid rgba(6, 182, 212, 0.4) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan) !important;
    font-size: 18px !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.course-slider .owl-prev:hover,
.course-slider .owl-next:hover {
    background: var(--accent-cyan) !important;
    color: #fff !important;
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.4);
}

.course-slider .owl-prev.disabled,
.course-slider .owl-next.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Keep arrows visible (dimmed) instead of Owl Carousel's default
   display:none when there's nothing left to page to */
.course-slider .owl-nav.disabled,
.quiz-slider-v7 .owl-nav.disabled,
.live-class-slider-v7 .owl-nav.disabled {
    display: flex !important;
}



.course-slider .owl-stage-outer {
    padding: 15px 5px 40px;
    margin: -15px -5px -40px;
}

.course-slider .owl-stage {
    display: flex;
    align-items: stretch;
}

.course-slider .owl-item {
    height: auto;
}

.course-item {
    background: rgba(17, 24, 39, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: calc(100% - 20px);
    margin: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.course-item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(6, 182, 212, 0.15);
    background: rgba(17, 24, 39, 0.7);
}

.course-image {
    height: 160px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1a1f2e, #111827);
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-item:hover .course-image img {
    transform: scale(1.05);
}

.course-image .placeholder-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: rgba(6, 182, 212, 0.5);
}

.course-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.course-content h4 {
    color: var(--text-white);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 48px;
}

.course-meta {
    display: flex;
    gap: 15px;
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 15px;
}

.course-meta i {
    margin-right: 5px;
}

.course-rating {
    color: #F59E0B;
    font-size: 12px;
    margin-bottom: 15px;

}

.course-price {
    margin-bottom: 20px;
    margin-top: auto;

}

.current-price {
    color: var(--accent-cyan);
    font-size: 20px;
    font-weight: 700;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 14px;
    margin-left: 10px;
}

/* deepseek :start */


/* deepseek end */
/* claude 5 rows start  */

/* claude 5 rows end */

.btn-enroll {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-enroll::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-enroll:hover::before {
    opacity: 1;
}

.btn-enroll:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.4);
    color: white;
    letter-spacing: 1.5px;
}

.popular-tags {
    text-align: center;
    flex: 1;
}

.section_header.withBtn .popular-tags,
.section_head.withBtn .popular-tags {
    margin-right: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;

}

.popular-tags h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF 0%, #E5E7EB 40%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    position: relative;
    display: inline-block;
}

.popular-tags h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--accent-purple);
}

.popular-tags p {
    color: var(--text-white) !important;
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin: 10px auto 0;
}

/* Testimonials Slider */
/* .testimonials-slider {
    margin-top: 40px;
}

.testimonials-slider .owl-stage {
    display: flex;
    align-items: stretch;
}

.testimonials-slider .owl-item {
    height: auto;
}

.testimonial-item {
    background: rgba(17, 24, 39, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: calc(100% - 20px);
    margin: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.15);
    background: rgba(17, 24, 39, 0.7);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--gradient-1);
}

.testimonial-author h5 {
    color: var(--text-white);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-gray);
    font-size: 12px;
}

.testimonial-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-rating {
    color: #F59E0B;
    font-size: 14px;
} */
/* ═══════════════════════════════════════════
   TESTIMONIALS — Floating Badge Cards
   ═══════════════════════════════════════════ */

.testimonials-slider {
    margin-top: 48px;
    position: relative;
    padding: 0 50px;
}

.testimonials-slider .owl-stage {
    display: flex;
    align-items: stretch;
}

.testimonials-slider .owl-item {
    height: auto;
}

.testimonial-item {
    background: #0d1b3e;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px 40px 4px 40px;
    padding: 40px 26px 28px;
    position: relative;
    margin: 32px 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
    height: calc(100% - 42px);
    cursor: default;
}

.testimonial-item:hover {
    transform: translateY(-7px);
    border-color: rgba(6, 182, 212, 0.42);
    box-shadow: 0 0 36px rgba(6, 182, 212, 0.1);
}

/* ── Floating pill badge ── */
.testimonial-badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #06b6d4, #7c3aed);
    border-radius: 4px 22px 4px 22px;
    padding: 9px 22px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.45);
    min-width: 150px;
    z-index: 2;
}

.testimonials-slider .owl-item:nth-child(2) .testimonial-badge {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.45);
}

.testimonials-slider .owl-item:nth-child(3) .testimonial-badge {
    background: linear-gradient(135deg, #ec4899, #f59e0b);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4);
}

.testimonials-slider .owl-item:nth-child(4) .testimonial-badge {
    background: linear-gradient(135deg, #06b6d4, #7c3aed);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.45);
}

.testimonials-slider .owl-item:nth-child(5) .testimonial-badge {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.45);
}

.testimonials-slider .owl-item:nth-child(6) .testimonial-badge {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

.testimonial-badge .badge-stars {
    font-size: 13px;
    color: #fef08a;
    letter-spacing: 2px;
    line-height: 1;
}

.testimonial-badge .badge-label {
   
    font-size: 11.5px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
}

/* ── Review text ── */
.testimonial-content {
    flex: 1;
    margin-bottom: 22px;
}

.testimonial-content p {
    
    font-size: 13.5px;
    color: #94a3b8;
    line-height: 1.75;
}

/* ── Divider ── */
.testimonial-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin-bottom: 20px;
}

/* ── Author row ── */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar-wrap {
    flex-shrink: 0;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #06b6d4, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    border: 2px solid rgba(6, 182, 212, 0.4);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.08);
}

.testimonial-author {
    text-align: left;
}

.testimonial-company {
    display: block;  
    font-size: 11px;
    color: #475569;
    margin-bottom: 3px;
}

.testimonial-author h5 {
    font-size: 15px;
    font-weight: 700;
    color: #f0f9ff;
    margin: 0;
}

/* ── Owl nav ── */
.testimonials-slider .owl-nav {
    position: absolute !important;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex !important;
    justify-content: space-between !important;
    pointer-events: none;
    z-index: 100;
    gap: 0 !important;
    margin: 0 !important;
}

.testimonials-slider .owl-nav button.owl-prev,
.testimonials-slider .owl-nav button.owl-next {
    pointer-events: all;
    width: 44px;
    height: 44px;
    background: rgba(6, 182, 212, 0.15) !important;
    border: 1px solid rgba(6, 182, 212, 0.4) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan) !important;
    font-size: 18px !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.testimonials-slider .owl-nav button:hover {
    background: linear-gradient(135deg, #06b6d4, #7c3aed) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4) !important;
}

.testimonials-slider .owl-nav button.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonials-slider .owl-dots {
    display: flex !important;
    justify-content: center;
    gap: 6px;
    margin-top: 16px !important;
}

.testimonials-slider .owl-dots .owl-dot span {
    width: 6px !important;
    height: 6px !important;
    background: #475569 !important;
    border-radius: 99px !important;
    transition: all 0.25s !important;
}

.testimonials-slider .owl-dots .owl-dot.active span {
    background: #06b6d4 !important;
    width: 22px !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .testimonial-item {
        border-radius: 4px 28px 4px 28px;
        margin: 28px 8px 8px;
    }

    .testimonial-badge {
        border-radius: 4px 16px 4px 16px;
        min-width: 130px;
    }
}

/* Instructors Slider */
/* ═══════════════════════════════════════════
   POPULAR INSTRUCTORS — Leaf Edge Badge Cards
   ═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   POPULAR INSTRUCTORS — Photo Overlap Cards
   ═══════════════════════════════════════════ */

.instructors-slider {
    margin-top: 48px;
    padding-bottom: 20px;
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
}

.instructors-slider .owl-stage {
    display: flex;
    align-items: stretch;
    padding: 20px 0 30px;
}

.instructors-slider .owl-item {
    height: auto;
}

/* ── Outer card wrapper — carries the big shadow ── */
.icard {
    position: relative;
    margin: 10px 12px 20px;
    transition: transform 0.35s cubic-bezier(.22, 1, .36, 1);
    cursor: pointer;
}

.icard:hover {
    transform: translateY(-10px);
}

/* ── Gradient photo area ── */
.icard-photo {
    border-radius: 24px 24px 0 0;
    height: 290px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icard-photo-1 {
    background: linear-gradient(160deg, #4c1d95 0%, #7c3aed 40%, #ec4899 100%);
}

.icard-photo-2 {
    background: linear-gradient(160deg, #164e63 0%, #06b6d4 45%, #7c3aed 100%);
}

.icard-photo-3 {
    background: linear-gradient(160deg, #78350f 0%, #f59e0b 45%, #ec4899 100%);
}

.icard-photo-4 {
    background: linear-gradient(160deg, #0c4a6e 0%, #0ea5e9 45%, #06b6d4 100%);
}

.icard-photo-5 {
    background: linear-gradient(160deg, #134e4a 0%, #14b8a6 45%, #06b6d4 100%);
}

.icard-photo-6 {
    background: linear-gradient(160deg, #1e1b4b 0%, #6366f1 45%, #a78bfa 100%);
}

/* Shimmer overlay on photo */
.icard-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.12) 0%,
            transparent 50%,
            rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

/* Photo bottom fade into info panel */
.icard-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(10, 18, 40, 0.6));
    z-index: 2;
}

/* Real image */
.icard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform 0.5s ease;
}

.icard:hover .icard-img {
    transform: scale(1.05);
}

/* Initials fallback */
.icard-figure {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.icard-initials {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 3px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

/* ── Info panel — floats over photo bottom ── */
.icard-info {
    background: rgb(6, 6, 33);
    border-radius: 20px;
    margin: -28px 8px 0;
    padding: 24px 20px 22px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.09);
    text-align: center;
}

/* Colored glow under info panel per card */
.icard:nth-child(1) .icard-info {
    box-shadow: 0 -8px 32px rgba(124, 58, 237, 0.25);
}

.icard:nth-child(2) .icard-info {
    box-shadow: 0 -8px 32px rgba(6, 182, 212, 0.22);
}

.icard:nth-child(3) .icard-info {
    box-shadow: 0 -8px 32px rgba(245, 158, 11, 0.22);
}

.icard:nth-child(4) .icard-info {
    box-shadow: 0 -8px 32px rgba(14, 165, 233, 0.22);
}

.icard:nth-child(5) .icard-info {
    box-shadow: 0 -8px 32px rgba(20, 184, 166, 0.22);
}

.icard:nth-child(6) .icard-info {
    box-shadow: 0 -8px 32px rgba(99, 102, 241, 0.22);
}

/* Thin colored top line on info panel */
.icard-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    border-radius: 99px;
}

.icard:nth-child(1) .icard-info::before {
    background: linear-gradient(90deg, #7c3aed, #ec4899);
}

.icard:nth-child(2) .icard-info::before {
    background: linear-gradient(90deg, #06b6d4, #7c3aed);
}

.icard:nth-child(3) .icard-info::before {
    background: linear-gradient(90deg, #f59e0b, #ec4899);
}

.icard:nth-child(4) .icard-info::before {
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
}

.icard:nth-child(5) .icard-info::before {
    background: linear-gradient(90deg, #14b8a6, #06b6d4);
}

.icard:nth-child(6) .icard-info::before {
    background: linear-gradient(90deg, #6366f1, #a78bfa);
}

.icard-name {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #f0f9ff;
    margin-bottom: 5px;
    letter-spacing: 0.01em;
}

.icard-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.4;
}

/* ── Social icons ── */
.icard-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.icard-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all 0.25s;
}

.icard:nth-child(1) .icard-social a:hover {
    background: rgba(124, 58, 237, 0.3);
    border-color: rgba(124, 58, 237, 0.6);
    color: #c4b5fd;
    box-shadow: 0 0 14px rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}

.icard:nth-child(2) .icard-social a:hover {
    background: rgba(6, 182, 212, 0.25);
    border-color: rgba(6, 182, 212, 0.55);
    color: #67e8f9;
    box-shadow: 0 0 14px rgba(6, 182, 212, 0.35);
    transform: translateY(-2px);
}

.icard:nth-child(3) .icard-social a:hover {
    background: rgba(245, 158, 11, 0.25);
    border-color: rgba(245, 158, 11, 0.55);
    color: #fcd34d;
    box-shadow: 0 0 14px rgba(245, 158, 11, 0.35);
    transform: translateY(-2px);
}

.icard:nth-child(4) .icard-social a:hover {
    background: rgba(14, 165, 233, 0.25);
    border-color: rgba(14, 165, 233, 0.55);
    color: #7dd3fc;
    box-shadow: 0 0 14px rgba(14, 165, 233, 0.35);
    transform: translateY(-2px);
}

.icard:nth-child(5) .icard-social a:hover {
    background: rgba(20, 184, 166, 0.25);
    border-color: rgba(20, 184, 166, 0.55);
    color: #5eead4;
    box-shadow: 0 0 14px rgba(20, 184, 166, 0.35);
    transform: translateY(-2px);
}

.icard:nth-child(6) .icard-social a:hover {
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.55);
    color: #a5b4fc;
    box-shadow: 0 0 14px rgba(99, 102, 241, 0.35);
    transform: translateY(-2px);
}

/* ── Owl nav arrows ── */
.instructors-slider .owl-nav {
    position: absolute !important;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex !important;
    justify-content: space-between !important;
    pointer-events: none;
    z-index: 100;
    gap: 0 !important;
    margin: 0 !important;
}

.instructors-slider .owl-nav button.owl-prev,
.instructors-slider .owl-nav button.owl-next {
     pointer-events: all;
    width: 44px;
    height: 44px;
    background: rgba(6, 182, 212, 0.15) !important;
    border: 1px solid rgba(6, 182, 212, 0.4) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan) !important;
    font-size: 18px !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.instructors-slider .owl-nav button:hover {
    background: linear-gradient(135deg, #06b6d4, #7c3aed) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 0 24px rgba(6, 182, 212, 0.45) !important;
}

.instructors-slider .owl-nav button.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.instructors-slider .owl-dots {
    display: flex !important;
    justify-content: center;
    gap: 6px;
    margin-top: 16px !important;
}

.instructors-slider .owl-dots .owl-dot span {
    width: 6px !important;
    height: 6px !important;
    background: #1e3a5f !important;
    border-radius: 99px !important;
    transition: all 0.25s !important;
}

.instructors-slider .owl-dots .owl-dot.active span {
    background: #06b6d4 !important;
    width: 22px !important;
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.5) !important;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .icard-photo {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .icard {
        margin: 10px 8px 16px;
    }

    .icard-photo {
        height: 220px;
    }

    .icard-initials {
        width: 80px;
        height: 80px;
        font-size: 22px;
    }

    .icard-info {
        margin: -22px 6px 0;
        padding: 20px 16px 18px;
    }
}

.team-section.team-text {
    text-align: center !important;
}

.section_header.withBtn,
.section_head.withBtn {
    display: block;
    text-align: center;
    position: relative;
    margin-bottom: 50px;
}

.team-section {
    width: 100%;
    text-align: center;
}

.team-section.text-center {
    text-align: center;
}

/* Add specific team-section styling */
.team-section h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF 0%, #E5E7EB 50%, var(--text-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    position: relative;
    display: inline-block;
}

.team-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--accent-cyan);
}

.team-section.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.view-all-btn {
    text-align: center;
    margin-top: 20px;
    margin-right: 60px;
    color: var(--gradient-1);
}

.section_header.withBtn .view-all-btn,
.section_head.withBtn .view-all-btn {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 20px;
    white-space: nowrap;

}

/* Base utility for text centering */
.team-section {
    text-align: center !important;
}

.team-section p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 10px auto 0;
    line-height: 1.6;
    opacity: 0.9;
}

.view-all-btn {
    margin-top: 0;
    flex: unset;
}

.fas fa-comments {
    color: white;
}

.view-all-btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-1);
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.view-all-btn a:hover {
    gap: 14px;
    background: var(--gradient-1);
    border-color: transparent;
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

/* CTA Section */
/* .cta-section {
    margin: 80px 0;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 48px;
    padding: 60px;
    text-align: center;
}

.cta-section h2 {
    color: var(--text-white);
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-white-btn {
    background: white;
    color: var(--accent-cyan);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-white-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--accent-cyan);
}



/* 
   CTA SECTION - ULTRA COMPACT DESIGN
   Minimal Height, Maximum Impact
    */

/* CTA Section */
.cta-section {
    margin: 40px 0;
    position: relative;
    border-radius: 32px;
    padding: 30px 40px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(135deg,
            rgba(6, 182, 212, 0.08) 0%,
            rgba(139, 92, 246, 0.08) 100%);
    transition: all 0.3s ease;
}

/* Hover Effect */
.cta-section:hover {
    /* border-color: rgba(6, 182, 212, 0.5); */
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.1);
}

/* Animated Gradient Background */
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(6, 182, 212, 0.08) 0%,
            rgba(139, 92, 246, 0.08) 25%,
            rgba(236, 72, 153, 0.06) 50%,
            rgba(139, 92, 246, 0.08) 75%,
            rgba(6, 182, 212, 0.08) 100%);
    z-index: -2;
    animation: gradientShift 8s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Glowing Border Effect */
.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(135deg,
            var(--accent-cyan) 0%,
            var(--accent-purple) 50%,
            var(--accent-pink) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.cta-section:hover::after {
    opacity: 0.8;
}

/* Icon styling - Compact */
.cta-section i.fa-bolt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: 50%;
    font-size: 24px;
    color: var(--accent-cyan);
    margin-bottom: 10px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Main Heading - Compact */
.cta-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 16px 0 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-cyan) 50%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    max-width: 800px;
}

/* Animated Underline - Thinner */
.cta-section h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--accent-pink));
    border-radius: 3px;
    animation: underlinePulse 2s ease-in-out infinite;
}

@keyframes underlinePulse {

    0%,
    100% {
        width: 50px;
        opacity: 0.6;
    }

    50% {
        width: 80px;
        opacity: 1;
    }
}

/* Description Text - Compact */
.cta-section p {
    font-size: 24px;
    color: var(--text-gray);
    max-width: 500px;
    margin: 8px auto 16px;
    line-height: 1.4;
}

/* CTA Button - Compact */
.cta-white-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: white;
    padding: 16px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
    border: none;
    cursor: pointer;
}

.cta-white-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-white-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.35);
    gap: 10px;
    color: white;
}

.cta-white-btn:hover::before {
    left: 100%;
}

.cta-white-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.cta-white-btn:hover i {
    transform: translateX(3px);
}

/* ============================================
   MOBILE RESPONSIVENESS - EXTRA COMPACT
   ============================================ */

@media (max-width: 991px) {
    .cta-section {
        margin: 30px 0;
        padding: 24px 32px;
        border-radius: 28px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 13px;
        margin: 6px auto 14px;
    }

    .cta-white-btn {
        padding: 8px 22px;
        font-size: 13px;
    }

    .cta-section i.fa-bolt {
        width: 34px;
        height: 34px;
        font-size: 16px;
        margin-bottom: 8px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        margin: 25px 0;
        padding: 20px 24px;
        border-radius: 24px;
    }

    .cta-section h2 {
        font-size: 24px;
        margin: 6px 0 6px;
    }

    .cta-section h2::after {
        bottom: -5px;
        width: 40px;
    }

    @keyframes underlinePulse {

        0%,
        100% {
            width: 40px;
        }

        50% {
            width: 60px;
        }
    }

    .cta-section p {
        font-size: 12px;
        margin: 6px auto 12px;
        max-width: 400px;
    }

    .cta-white-btn {
        padding: 7px 20px;
        font-size: 12px;
        gap: 6px;
    }

    .cta-white-btn:hover {
        gap: 8px;
    }

    .cta-white-btn i {
        font-size: 11px;
    }

    .cta-section i.fa-bolt {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        margin: 20px 16px;
        padding: 18px 20px;
        border-radius: 20px;
    }

    .cta-section h2 {
        font-size: 20px;
        margin: 5px 0 5px;
    }

    .cta-section h2::after {
        bottom: -4px;
        width: 35px;
        height: 1.5px;
    }

    @keyframes underlinePulse {

        0%,
        100% {
            width: 35px;
        }

        50% {
            width: 50px;
        }
    }

    .cta-section p {
        font-size: 11px;
        margin: 5px auto 10px;
        line-height: 1.3;
    }

    .cta-white-btn {
        padding: 6px 18px;
        font-size: 11px;
        gap: 5px;
    }

    .cta-white-btn i {
        font-size: 10px;
    }

    .cta-section i.fa-bolt {
        width: 28px;
        height: 28px;
        font-size: 13px;
        margin-bottom: 6px;
    }
}

/* Animation for elements on scroll */
.cta-section {
    opacity: 0;
    transform: translateY(20px);
    animation: ctaReveal 0.6s ease forwards;
    animation-delay: 0.1s;
}

@keyframes ctaReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Store Buttons */
.store-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    background: var(--gradient-1);
    color: #fff !important;
    padding: 8px 24px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.store-btn:hover {
    transform: translateY(-3px);
    background: var(--gradient-1);
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.2);
}

.store-btn i {
    font-size: 28px;
    margin-right: 12px;
}

.store-btn .btn-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.store-btn .btn-text span {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    line-height: 1;
}

.store-btn .btn-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 576px) {
    .store-buttons {
        gap: 20px;
    }
    .store-btn {
        min-width: 160px;
        padding: 6px 18px;
    }
    .store-btn i {
        font-size: 22px;
    }
    .store-btn .btn-text strong {
        font-size: 15px;
    }
}


/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px;
    color: var(--text-gray);
    background: var(--dark-surface);
    border-radius: 24px;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Owl Carousel Custom Styles */
.owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    gap: 10px;
}

.owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: var(--dark-surface) !important;
    border: 1px solid rgba(6, 182, 212, 0.3) !important;
    color: var(--text-white) !important;
    font-size: 20px !important;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: var(--gradient-1) !important;
    border-color: transparent !important;
}

.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: var(--text-gray);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.owl-dots .owl-dot.active span {
    background: var(--accent-cyan);
    width: 30px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 44px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .float-card {
        display: none;
    }

    .hero-main-image {
        margin-top: 50px;
        text-align: center;
    }

    .hero-main-image img {
        max-width: 100%;
    }

    .section_header.withBtn,
    .section_head.withBtn {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .owl-nav {
        position: relative;
        top: 0;
        justify-content: center;
        margin-top: 20px;
    }

    .section_header.withBtn .popular-tags,
    .section_header.withBtn .team-section {
        margin-right: 0;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
        text-align: center;
    }

    .hero-description {
        text-align: center;
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        margin: 0 auto 30px;
        display: inline-flex;
    }

    .hero-left {
        text-align: center;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .section_header h2 {
        font-size: 32px;
    }

    .section_header p {
        font-size: 14px;
    }

    .view-all-btn a {
        font-size: 14px;
        padding: 6px 12px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ============================================
   V7 POPULAR COURSES DESIGN - FULLY FIXED
   ============================================ */

/* Course Section Container */
.course {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.course .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.top-courses-header {
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 80px;
    margin-right: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.top-courses-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: var(--text-white);
}

.all-course-btn {
    background: var(--accent-cyan);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.all-course-btn:hover {
    background: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.4);
    color: white;
    gap: 12px;
}

/* Owl Carousel Container */
.course-slider {
    margin-top: 20px;
    position: relative;
    padding: 0 45px;
}

/* Owl Stage - Fixed to prevent half cards */
.course-slider .owl-stage-outer {
    overflow: hidden;
    padding: 20px 5px 40px;
    margin: -20px -5px -40px;
}

.course-slider .owl-stage {
    display: flex;
    align-items: stretch;
}

.course-slider .owl-item {
    height: auto;
}

/* Navigation Arrows */
.course-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: -30px;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 100;
}

.course-slider .owl-prev,
.course-slider .owl-next {
    pointer-events: all;
    width: 48px;
    height: 48px;
    background: rgba(6, 182, 212, 0.15) !important;
    border: 1.5px solid rgba(6, 182, 212, 0.4) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan) !important;
    font-size: 18px !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.course-slider .owl-prev:hover,
.course-slider .owl-next:hover {
    background: linear-gradient(135deg, #06B6D4, #8B5CF6) !important;
    color: #fff !important;
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.5);
    transform: scale(1.05);
}

.course-slider .owl-prev.disabled,
.course-slider .owl-next.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Dots - Visible only on mobile */
.course-slider .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.course-slider .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: #374151;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.course-slider .owl-dots .owl-dot.active span {
    background: #06B6D4;
    width: 28px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

/* Card V7 */
.course-card-v7 {
    background: linear-gradient(145deg, #0F172A, #111827);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 10px;
    position: relative;
}

/* Gradient border glow on hover */
.course-card-v7::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6, #EC4899);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.course-card-v7:hover::after {
    opacity: 1;
}

.course-card-v7:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.2);
}

.course-image-v7 {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image-v7 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card-v7:hover .course-image-v7 img {
    transform: scale(1.08);
}

/* Badge Overlay - FIXED: Full width on mobile */
.badge-overlay-v7 {
    position: relative;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    display: flex;
    justify-content: space-around;
    padding: 12px 15px;
    z-index: 10;
    margin: -25px 10px 10px 10px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    flex-wrap: nowrap;
    gap: 8px;
}

@media (max-width: 768px) {
    .badge-overlay-v7 {
        margin: -35px 12px -10px 12px;
        padding: 10px 12px;
        gap: 6px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .badge-overlay-v7 {
        margin: -25px 10px 10px 10px;
        padding: 8px 10px;
        gap: 20px;
    }
}

.badge-v7 {
    background: white;
    color: #06B6D4;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

@media (max-width: 480px) {
    .badge-v7 {
        padding: 4px 8px;
        font-size: 9px;
        gap: 3px;
    }
    
    .badge-v7 i {
        font-size: 9px;
    }
}

.badge-v7 i {
    font-size: 11px;
    color: #06B6D4;
}

/* Course Body */
.course-body-v7 {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

@media (max-width: 768px) {
    .course-body-v7 {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .course-body-v7 {
        padding: 15px;
    }
}

.instructor-row-v7 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.instructor-avatar-v7 {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #06B6D4;
    flex-shrink: 0;
}

.instructor-avatar-v7 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-details-v7 h5 {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 3px 0;
}

.stars-v7 {
    color: #FBBF24;
    font-size: 10px;
    display: flex;
    gap: 2px;
}

.stars-v7 i.far {
    color: #4B5563;
}

.course-cat-v7 {
    font-size: 12px;
    color: #06B6D4;
    margin-bottom: 8px;
    font-weight: 500;
}

.course-cat-v7 span {
    color: #9CA3AF;
    font-weight: 400;
}

.course-title-v7 {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.4;
    margin-bottom: 20px;
    flex: 1;
}

@media (max-width: 768px) {
    .course-title-v7 {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

.course-footer-v7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    gap: 12px;
}

@media (max-width: 480px) {
    .course-footer-v7 {
        flex-direction: column;
        align-items: stretch;
    }
}

.get-started-btn-v7 {
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .get-started-btn-v7 {
        justify-content: center;
        width: 45%;
        margin-left: 0px;
    }
}

.get-started-btn-v7:hover {
    transform: translateY(-2px);
    gap: 10px;
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.4);
    color: white;
}

.price-v7 {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
}

@media (max-width: 480px) {
    .price-v7 {
        justify-content: space-between;
        width: 100%;
        margin-left: 10px;
    }
}

.old-price-v7 {
    font-size: 12px;
    color: #6B7280;
    text-decoration: line-through;
}

.current-price-v7 {
    font-size: 18px;
    font-weight: 800;
    color: #06B6D4;
}

.placeholder-icon-v7 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1F2937;
    font-size: 48px;
    color: #06B6D4;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #9CA3AF;
    background: rgba(17, 24, 39, 0.4);
    border-radius: 24px;
}

.empty-state i {
    font-size: 48px;
    color: rgba(6, 182, 212, 0.3);
    margin-bottom: 16px;
    display: block;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet Landscape */
@media (max-width: 992px) {
    .course {
        padding: 30px 0;
    }
    
    .top-courses-header {
        margin-left: 40px;
        margin-right: 40px;
        padding: 12px 25px;
    }
    
    .top-courses-header h2 {
        font-size: 24px;
    }
    
    .course-slider {
        padding: 0 30px;
    }
    
    .course-slider .owl-nav {
        left: -15px;
        right: -15px;
    }
    
    .course-slider .owl-prev,
    .course-slider .owl-next {
        width: 42px;
        height: 42px;
        font-size: 16px !important;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .course {
        padding: 40px 0;
    }
    
    .top-courses-header {
        margin-left: 20px;
        margin-right: 20px;
        padding: 12px 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .top-courses-header h2 {
        font-size: 22px;
    }
    
    .all-course-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .course-slider {
        padding: 0 15px;
    }
    
    /* Hide arrows on mobile */
    .course-slider .owl-nav {
        display: none !important;
    }
    
    /* Show dots on mobile */
    .course-slider .owl-dots {
        display: flex;
    }
    
    /* Fix stage to prevent half cards */
    .course-slider .owl-stage-outer {
        padding: 15px 2px 30px;
        margin: -15px -2px -30px;
    }
}

/* Mobile Small */
@media (max-width: 576px) {
    .course {
        padding: 30px 0 0px 0;
    }
    
    .course .container {
        padding: 0 15px;
    }
    
    .top-courses-header {
        margin-left: 0;
        margin-right: 0;
        padding: 12px 15px;
    }
    
    .top-courses-header h2 {
        font-size: 20px;
    }
    
    .course-slider {
        padding: 0 10px;
    }
    
    .course-card-v7 {
        margin: 5px;
    }
    
    .instructor-row-v7 {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .instructor-avatar-v7 {
        width: 36px;
        height: 36px;
    }
    
    .instructor-details-v7 h5 {
        font-size: 13px;
    }
    
    .course-cat-v7 {
        font-size: 11px;
    }
}

/* Hide dots on desktop, show on mobile */
@media (min-width: 769px) {
    .course-slider .owl-dots {
        display: none;
    }
}

/* RTL Support */
html[dir="rtl"] .top-courses-header {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    html[dir="rtl"] .top-courses-header {
        flex-direction: column;
    }
}

/* ============================================
           QUIZ SECTION V7 - DARK THEME
           ============================================ */

.quiz-v7-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.quiz-v7-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.quiz-v7-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.section_header {
    text-align: center;
}

.section_header h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 0%, #E5E7EB 40%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.section_header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.section_header p {
    font-size: 15px;
    color: #9CA3AF;
    margin-top: 20px;
    line-height: 1.4;
}

.all-quiz-btn {
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: fit-content;
}

.all-quiz-btn:hover {
    transform: translateY(-3px);
    gap: 12px;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
    color: white;
}

/* Empty state (no quizzes / no upcoming classes) — centered card,
   matches the shared pattern used on classes_new/courses_dark/quizzes_dark */
.empty-state-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    width: 100%;
}

.empty-state-card {
    background: rgba(17, 24, 39, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.2) !important;
    border-radius: 32px !important;
    padding: 45px 35px !important;
    text-align: center;
    max-width: 420px !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.empty-state-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.4) !important;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(6, 182, 212, 0.1) !important;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.empty-state-icon i {
    font-size: 32px !important;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 10px rgba(6, 182, 212, 0.2));
    margin: 0 !important;
}

.empty-state-card h3 {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.5px;
}

.empty-state-card p {
    color: #9CA3AF !important;
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
    max-width: 300px !important;
}

/* Owl Carousel Container */
.quiz-slider-v7 {
    margin-top: 20px;
    position: relative;
}

/* Navigation Arrows - Matching your theme */
.quiz-slider-v7 .owl-nav {
    position: absolute;
    top: 50%;
    left: -65px;
    right: -65px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}


.quiz-slider-v7 .owl-prev,
.quiz-slider-v7 .owl-next {
    pointer-events: all;
    width: 48px;
    height: 48px;
    background: rgba(6, 182, 212, 0.12) !important;
    border: 1.5px solid rgba(6, 182, 212, 0.4) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #06B6D4 !important;
    font-size: 20px !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.quiz-slider-v7 .owl-prev:hover,
.quiz-slider-v7 .owl-next:hover {
    background: linear-gradient(135deg, #06B6D4, #8B5CF6) !important;
    color: #fff !important;
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.5);
    transform: scale(1.05);
}

.quiz-slider-v7 .owl-prev.disabled,
.quiz-slider-v7 .owl-next.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Owl Stage - Prevent side clipping while allowing hover space */
.quiz-slider-v7.owl-carousel .owl-stage-outer {
    overflow: hidden;
    /* Restore horizontal clipping */
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: -40px;
    margin-bottom: -40px;
}

.quiz-slider-v7 .owl-stage {
    display: flex;
    align-items: stretch;
}

.quiz-slider-v7 .owl-item {
    height: auto;
}

/* Owl Dots - Matching your theme */
.quiz-slider-v7 .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.quiz-slider-v7 .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: #374151;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.quiz-slider-v7 .owl-dots .owl-dot.active span {
    background: #06B6D4;
    width: 28px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

/* Quiz Card V7 - Dark Theme */
.quiz-card-v7 {
    background: linear-gradient(145deg, #0F172A, #111827);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Gradient border glow on hover */
.quiz-card-v7::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6, #EC4899);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.quiz-card-v7:hover::after {
    opacity: 1;
}

.quiz-card-v7:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.2);
}

/* Quiz Card Header - Gradient Backgrounds */
.quiz-card-header {
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
    color: white;
}

/* Hide background images */
.quiz-header-bg {
    display: none;
}

.gradient-pink {
    background: linear-gradient(135deg, #EC4899, #8B5CF6);
}

.gradient-red {
    background: linear-gradient(135deg, #EF4444, #F59E0B);
}

.gradient-blue {
    background: linear-gradient(135deg, #06B6D4, #3B82F6);
}

.quiz-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

/* Hide icon images - show only icons */
.quiz-icon-img {
    display: none;
}

.question-mark {
    display: none;
}

.quiz-card-header h4 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Stats Bar - Dark Theme */
.quiz-stats-bar {
    background: rgba(6, 182, 212, 0.12);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 10px 5px;
    color: #06B6D4;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.quiz-stats-bar .stat {
    border-right: 1px solid rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.quiz-stats-bar .stat:last-child {
    border-right: none;
}

/* .quiz-stats-bar had no mobile override anywhere in this file — on a
   narrow single-column quiz card (homepage carousel, mobile widths) the 3
   stat columns' 11px text/10px padding gets very tight. Ease it slightly
   rather than dropping columns, since 3 short stats (questions/duration/
   attempts) read best staying on one row even when compact. */
@media (max-width: 430px) {
    .quiz-stats-bar {
        padding: 8px 2px;
        font-size: 10px;
        column-gap: 2px;
    }
    .quiz-stats-bar .stat {
        gap: 3px;
    }
}

/* Quiz Card Body - Dark Theme */
.quiz-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quiz-cat {
    color: #9CA3AF;
    font-size: 12px;
    margin-bottom: 8px;
}

.quiz-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.badge-pro {
    background: rgba(6, 182, 212, 0.15);
    color: #06B6D4;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.badge-students {
    background: rgba(255, 255, 255, 0.05);
    color: #9CA3AF;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quiz-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.3;
}

/* Quiz Footer */
.quiz-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-get-started {
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    color: white !important;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-get-started:hover {
    transform: translateY(-2px);
    gap: 10px;
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.4);
    color: white;
}

.quiz-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.quiz-price .old-price {
    font-size: 11px;
    color: #6B7280;
    text-decoration: line-through;
    margin: 0;
}

.quiz-price .current-price {
    font-size: 22px;
    font-weight: 800;
    color: #06B6D4;
    line-height: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .quiz-slider-v7 .owl-nav {
        left: -20px;
        right: -20px;
    }
}

@media (max-width: 992px) {
    .quiz-slider-v7 .owl-nav {
        left: -10px;
        right: -10px;
    }

    .quiz-slider-v7 .owl-prev,
    .quiz-slider-v7 .owl-next {
        width: 40px;
        height: 40px;
        font-size: 18px !important;
    }
}

@media (max-width: 768px) {
    .quiz-v7-section {
        padding: 50px 0;
    }

    .quiz-v7-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .section_header h2 {
        font-size: 32px;
    }

    .section_header h2::after {
        width: 50px;
    }

    .quiz-slider-v7 .owl-nav {
        display: none;
    }

    .quiz-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-get-started {
        justify-content: center;
    }

    .quiz-price {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
}

/* RTL Support */
html[dir="rtl"] .quiz-v7-header {
    flex-direction: row-reverse;
}

html[dir="rtl"] .quiz-stats-bar .stat {
    border-right: none;
    border-left: 1px solid rgba(6, 182, 212, 0.2);
}

html[dir="rtl"] .quiz-stats-bar .stat:last-child {
    border-left: none;
}

html[dir="rtl"] .section_header h2::after {
    left: auto;
    right: 0;
}

@media (max-width: 768px) {
    html[dir="rtl"] .quiz-v7-header {
        flex-direction: column;
        align-items: flex-start;
    }
}



.about {
    position: relative;
    z-index: 0;
}

.about .section-title {
    margin-bottom: 10px
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about .section-title {
        margin-bottom: 70px
    }
}

@media only screen and (max-width: 767px) {
    .about .section-title {
        margin-bottom: 200px
    }
}

.about .section-title h2 {
    color: #F0F3F8 !important
}

.about .section-title p {
    color: #98A6B4 !important
}

.about-inner {
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 5px 21px 60px 3px rgba(0, 0, 0, 0.15);
    border-radius: 36px;
    border-bottom-left-radius: 237px;
    padding-top: 10px;
    padding-bottom: 72px
}

html[dir=rtl] .about-inner {
    border-bottom-right-radius: 237px;
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .about-inner {
        padding-top: 50px;
        padding-bottom: 62px;
        border-bottom-left-radius: 136px
    }

    html[dir=rtl] .about-inner {
        border-bottom-right-radius: 136px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-inner {
        border-radius: 30px;
        padding: 30px
    }
}


@media only screen and (max-width: 767px) {
    .about-inner {
        border-radius: 30px;
        padding: 20px
    }
}

.about-video {
    width: 100%;
    padding-bottom: 64%;
    overflow: hidden;
    border-radius: 36px;
    margin-left: -50px
}

html[dir=rtl] .about-video {
    margin-left: 0;
    margin-right: -50px;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .about-video {
        margin-left: -30px
    }

    html[dir=rtl] .about-video {
        margin-left: 0;
        margin-right: -30px;
    }

}

@media only screen and (min-width: 1280px) and (max-width: 1439px) {
    .about-video {
        margin-left: -20px
    }

    html[dir=rtl] .about-video {
        margin-left: 0;
        margin-right: -20px;
    }

}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .about-video {
        width: 90%;
        margin-left: 20px
    }

    html[dir=rtl] .about-video {
        margin-left: 0;
        margin-right: 20px;
    }

}

@media only screen and (max-width: 991px) {
    .about-video {
        margin-left: 0
    }

    html[dir=rtl] .about-video {
        margin-right: 0;
    }

}

.about-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    z-index: 1
}

.about-video-play {
    --play-width: 100px;
    width: var(--play-width);
    height: var(--play-width);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: var(--system_primery_color);
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 24px
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .about-video-play {
        --play-width: 80px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-video-play {
        --play-width: 80px
    }
}

@media only screen and (max-width: 767px) {
    .about-video-play {
        --play-width: 60px
    }
}

.about-video-play:hover {
    background: var(--system_primery_color);
    background-size: 200% auto;
    color: #fff
}

.about-video-play i {
    margin-left: 12px
}

.about-content {
    padding-right: 76px;
    position: relative;
    padding-left: 30px;
    margin-left: 30px;


}

@media only screen and (max-width: 991px) {
    .about-content {
        margin-top: 24px;
        padding-left: 20px;
        padding-bottom: 20px;
        margin-left: 60px;
    }
}

.about-content h3 {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 600;
    margin-bottom: 20px;
    color: #F0F3F8 !important
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .about-content h3 {
        font-size: 28px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-content h3 {
        font-size: 26px
    }
}

@media only screen and (max-width: 767px) {
    .about-content h3 {
        font-size: 24px
    }

    .about-content {
        margin-top: 24px;
        padding-left: 5px;
        padding-bottom: 20px;
        margin-left: 15px;
        padding-right: 5px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .about-content h3 {
        margin-bottom: 14px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about-content h3 {
        font-size: 28px
    }
}

@media only screen and (max-width: 991px) {
    .about-content h3 {
        margin-bottom: 10px
    }
}

.about-content p {
    line-height: 1.5;
    margin-bottom: 26px;
    color: #98A6B4
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .about-content p {
        margin-bottom: 16px
    }
}

@media only screen and (max-width: 991px) {
    .about-content p {
        margin-bottom: 14px
    }
}

@media only screen and (max-width: 479px) {
    .about-content p {
        font-size: 14px;
        line-height: 1.683
    }
}

.about-content a {
    --btn-padding-y: 9px;
    min-width: 120px
}

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .about-content a {
        margin-top: 10px
    }
}

@media only screen and (max-width: 991px) {
    .about-content a {
        margin-top: 10px
    }
}

.sponsor-title h4 {
    color: #98A6B4 !important
}

.sponsor-single {
    box-shadow: 0 0 0 !important
}

/* ============================================
   ABOUT US SECTION - PROFESSIONAL DARK THEME
   ============================================ */

.about {
    position: relative;
    z-index: 0;
    padding: 60px 0;
    background: transparent;
    overflow: hidden;
}

/* Animated Background Orbs */
.about::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08), transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: floatBg1 20s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: floatBg2 15s ease-in-out infinite;
}

@keyframes floatBg1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

@keyframes floatBg2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-30px, 30px) scale(1.1);
    }

    66% {
        transform: translate(20px, -20px) scale(0.95);
    }
}

.about .section-title {
    margin-bottom: 90px;
    text-align: center;
    position: relative;
}

.about .section-title h2 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 0%, #E5E7EB 40%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.about .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.6);
}

.about .section-title p {
    font-size: 16px;
    color: #9CA3AF;
    margin-top: 20px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Inner Card - Only Bottom-Left Curved */
.about-inner {
    background: linear-gradient(145deg, #0F172A, #0A0F1A);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 32px;
    border-bottom-left-radius: 150px;
    border-top-right-radius: 150px;
    padding: 60px;
    position: relative;

    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    backdrop-filter: blur(10px);
}

/* Gradient Border Glow */
.about-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;
    border-bottom-left-radius: 150px;
    border-top-right-radius: 150px;
    padding: 1.5px;
    background: var(--gradient-1);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.about-inner:hover::after {
    opacity: 1;
}

.about-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Overlay Child Image */
.about-inner-overlay-img {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    opacity: 0.12;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.about-inner:hover .about-inner-overlay-img {
    opacity: 0.2;
}

.about-inner-overlay-img img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Video Section - Moved left (negative margin) */
.about-video {
    width: 100%;
    padding-bottom: 64%;
    overflow: hidden;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    margin: 0;
    margin-right: 40px;
    background: linear-gradient(135deg, #1A1F2E, #111827);
    transition: all 0.4s ease;
}


html[dir=rtl] .about-video {
    margin-left: 0;
    margin-right: -40px;
}

.about-inner:hover .about-video {
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.2);
}

.about-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    margin-right: -40px;
    transition: transform 0.6s ease;
}

.about-inner:hover .about-video img {
    transform: scale(1.05);
}

/* Play Button */
.about-video-play {
    --play-width: 100px;
    width: var(--play-width);
    height: var(--play-width);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 26px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(6, 182, 212, 0);
    }
}

.about-video-play:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 45px rgba(6, 182, 212, 0.8);
    color: #fff;
}

.about-video-play i {
    margin-left: 6px;
}

/* About Content */
.about-content {
    padding-left: 50px;
    position: relative;
    z-index: 2;
}

/* About Content H3 - No underline, just gradient text */
.about-content h3 {
    font-size: 36px;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 24px;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    position: relative;
}

/* REMOVED the line (::before) */
.about-content h3 span {
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* About Content Paragraphs */
.about-content p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #9CA3AF;
    font-size: 15px;
    position: relative;
}

.about-content p:first-of-type {
    font-size: 16px;
    color: #E5E7EB;
    font-weight: 500;
}

/* Theme Button - Cyan/Purple gradient only (no pink) */
.about-content .theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    min-width: 140px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Button hover - Intensify the gradient, no pink */
.about-content .theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    transition: left 0.4s ease;
    z-index: -1;
}

.about-content .theme-btn:hover::before {
    left: 0;
}

.about-content .theme-btn:hover {
    transform: translateY(-3px);
    gap: 16px;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
    color: #fff;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media only screen and (min-width: 992px) and (max-width: 1279px) {
    .about {
        padding: 80px 0;
    }

    .about-inner {
        padding: 45px;
        border-bottom-left-radius: 136px;
    }

    .about-inner::after {
        border-bottom-left-radius: 136px;
    }

    .about-content h3 {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .about-content {
        padding-left: 35px;
    }

    .about-video {
        margin-left: -25px;
    }

    html[dir=rtl] .about-video {
        margin-right: -25px;
        margin-left: 0;
    }

    .about-video-play {
        --play-width: 80px;
        font-size: 22px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .about {
        padding: 70px 0;
    }

    .about .section-title {
        margin-bottom: 70px;
    }

    .about .section-title h2 {
        font-size: 36px;
    }

    .about-inner {
        border-radius: 30px;
        border-bottom-left-radius: 100px;
        padding: 40px;
    }

    .about-inner::after {
        border-radius: 30px;
        border-bottom-left-radius: 100px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .about-video {
        margin-left: 0;
    }

    html[dir=rtl] .about-video {
        margin-right: 0;
    }

    .about-content h3 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .about-video-play {
        --play-width: 70px;
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .about {
        padding: 60px 0;
    }

    .about .section-title {
        margin-bottom: 50px;
    }

    .about .section-title h2 {
        font-size: 30px;
    }

    .about .section-title h2::after {
        width: 50px;
        height: 3px;
        bottom: -8px;
    }

    .about-inner {
        border-radius: 24px;
        border-bottom-left-radius: 60px;
        padding: 25px;
    }

    .about-inner::after {
        border-radius: 24px;
        border-bottom-left-radius: 60px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 25px;
    }

    .about-video {
        margin-left: 0;
    }

    html[dir=rtl] .about-video {
        margin-right: 0;
    }

    .about-content h3 {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .about-content p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .about-content p:first-of-type {
        font-size: 15px;
    }

    .about-video-play {
        --play-width: 55px;
        font-size: 16px;
    }

    .about-video-play i {
        margin-left: 4px;
    }

    .about-content .theme-btn {
        padding: 11px 26px;
        font-size: 12px;
        min-width: 120px;
    }

    .about-inner-overlay-img {
        opacity: 0.08;
        margin-left: 100px;
    }

    .about-inner-overlay-img img {
        max-width: 150px;
    }
}

/* Small devices */
@media only screen and (max-width: 480px) {
    .about {
        padding: 50px 0;
    }

    .about .section-title h2 {
        font-size: 26px;
    }

    .about-inner {
        padding: 20px;
        border-bottom-left-radius: 40px;
    }

    .about-inner::after {
        border-bottom-left-radius: 40px;
    }

    .about-content h3 {
        font-size: 22px;
    }

    .about-video-play {
        --play-width: 48px;
        font-size: 14px;
    }
}

/* RTL Support */
html[dir=rtl] .about-inner {
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 237px;
}

html[dir=rtl] .about-inner::after {
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 237px;
}

html[dir=rtl] .about-content {
    padding-left: 0;
    padding-right: 50px;
}

@media only screen and (max-width: 991px) {
    html[dir=rtl] .about-inner {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 100px;
    }

    html[dir=rtl] .about-content {
        padding-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    html[dir=rtl] .about-inner {
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 60px;
    }
}

/* Smooth Entrance Animation */
.about-inner {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   PARTNER SECTION - DARK INNOVATIVE THEME
   ============================================ */
.partner-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: transparent;
}

.partner-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #f0f9ff;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
}

.partner-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.partner-slider {
    position: relative;
    padding: 20px 0;
}

.partner-slider .owl-stage-outer {
    padding: 20px 5px;
    margin: -20px -5px;
}

/* Partner Card - Glassmorphism Dark Style */
.partner-card {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(17, 24, 39, 0.95));
    border-radius: 20px;
    padding: 25px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    /* Let slider handle margins */
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Glow border on hover */
.partner-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
}

.partner-card:hover::after {
    opacity: 1;
}

.partner-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1) grayscale(100%);
    opacity: 0.7;
    transition: all 0.5s ease;
}

.partner-card:hover img {
    filter: brightness(1.1) contrast(1.2) grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Side Navigation Buttons - Perfectly Centered */
.partner-slider .owl-nav {
    position: absolute;
    top: 40%;
    /* Offset to center relative to cards, above dots */
    left: -80px;
    right: -80px;
    transform: translateY(-50%);
    display: flex !important;
    justify-content: space-between;
    pointer-events: none;
    z-index: 20;
}

.partner-slider .owl-nav button {
    width: 56px !important;
    height: 56px !important;
    background: rgba(17, 24, 39, 0.8) !important;
    color: #06B6D4 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(6, 182, 212, 0.4) !important;
    pointer-events: all;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    backdrop-filter: blur(10px);
}

.partner-slider .owl-nav button:hover {
    background: linear-gradient(135deg, #06B6D4, #8B5CF6) !important;
    color: #FFFFFF !important;
    transform: scale(1.00) !important;
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.5) !important;
    border-color: transparent !important;
}

.partner-slider .owl-nav button span {
    display: none;
}

/* Dots at Bottom */
.partner-slider .owl-dots {
    display: flex !important;
    justify-content: center;
    gap: 12px;
    margin-top: 50px !important;
}

.partner-slider .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: rgba(156, 163, 175, 0.2) !important;
    border-radius: 50% !important;
    display: block;
    transition: all 0.4s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.partner-slider .owl-dot.active span {
    background: #06B6D4 !important;
    width: 32px !important;
    border-radius: 10px !important;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.5) !important;
}

/* Responsive Support */
@media (max-width: 1500px) {
    .partner-slider .owl-nav {
        left: -30px;
        right: -30px;
    }
}

@media (max-width: 1200px) {
    .partner-slider .owl-nav {
        display: none !important;
    }

    .partner-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .partner-title {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .partner-card {
        height: 90px;
        padding: 15px;
    }

    .partner-slider .owl-stage-outer {
        padding: 20px 0;
        margin: -20px 0;
    }
}

/* ============================================
   LIVE CLASS SECTION V7 - DARK THEME (FIXED)
   ============================================ */

.live-class-section-v7 {
    padding: 80px 0;
    position: relative;
    background: transparent;
    overflow: hidden;
}

.live-class-section-v7 .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;

    position: relative;
}

/* Header Section */
.live-class-header-v7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    width: 100%;
}

.live-class-header-v7 h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 0%, #E5E7EB 40%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.live-class-header-v7 h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.all-live-btn-v7 {
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.all-live-btn-v7:hover {
    transform: translateY(-3px);
    gap: 12px;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
    color: white;
}

/* Owl Carousel Container - FIXED */
.live-class-slider-v7 {
    margin-top: 20px;
    position: relative;
    padding: 0 45px;
}

/* Owl Stage - FIXED to allow hover lift without cutting off */
.live-class-slider-v7.owl-carousel .owl-stage-outer {
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: -40px;
    margin-bottom: -40px;
}

.live-class-slider-v7 .owl-stage {
    display: flex;
    align-items: stretch;
}

.live-class-slider-v7 .owl-item {
    height: auto;
}

/* Navigation Arrows - VISIBLE AND WORKING - WIDER BUTTONS */
.live-class-slider-v7 .owl-nav {
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    transform: translateY(-50%);
    display: flex !important;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1000;
    width: calc(100% + 40px);
}


.live-class-slider-v7 .owl-prev,
.live-class-slider-v7 .owl-next {
    pointer-events: all;
    width: 52px !important;
    height: 52px !important;
    background: rgba(6, 182, 212, 0.15) !important;
    border: 1px solid rgba(6, 182, 212, 0.4) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan) !important;
    font-size: 20px !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
    position: relative;
    z-index: 101;
}

.live-class-slider-v7 .owl-prev {
    margin-left: 0;
}

.live-class-slider-v7 .owl-next {
    margin-right: 0;
}

.live-class-slider-v7 .owl-prev:hover,
.live-class-slider-v7 .owl-next:hover {
    background: linear-gradient(135deg, #06B6D4, #8B5CF6) !important;
    color: #fff !important;
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.5);
    transform: scale(1.05);
}

.live-class-slider-v7 .owl-prev.disabled,
.live-class-slider-v7 .owl-next.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Dots Styling */
.live-class-slider-v7 .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.live-class-slider-v7 .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: #374151;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.live-class-slider-v7 .owl-dots .owl-dot.active span {
    background: #06B6D4;
    width: 28px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

/* Live Card - Dark Theme */
.live-card-v7 {
    background: linear-gradient(145deg, #0F172A, #111827);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 10px;
    position: relative;
}

/* Gradient border glow on hover */
.live-card-v7::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, #06B6D4, #8B5CF6, #EC4899);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.live-card-v7:hover::after {
    opacity: 1;
}

.live-card-v7:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.2);
}

/* Live Image */
.live-image-v7 {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.live-image-v7 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.live-card-v7:hover .live-image-v7 img {
    transform: scale(1.08);
}

.live-tag-v7 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #EF4444;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.live-tag-v7 i {
    font-size: 8px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Pills Styling - ALL IN ONE LINE (NO WRAP) */
.live-pills-v7 {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow-x: auto;
    white-space: nowrap;
}

/* Hide scrollbar for clean look */
.live-pills-v7::-webkit-scrollbar {
    display: none;
}

.lp-pill {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.lp-live {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.lp-business {
    background: rgba(6, 182, 212, 0.15);
    color: #06B6D4;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.lp-time {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.lp-students {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Live Content */
.live-content-v7 {
    padding: 0 16px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.live-date-v7 {
    font-size: 11px;
    color: #9CA3AF;
    padding: 14px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow-x: auto;
}

.live-date-v7::-webkit-scrollbar {
    display: none;
}

.live-date-v7::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 10px;
    color: #06B6D4;
}

.live-title-v7 {
    font-size: 17px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.4;
    flex: 1;
}

/* Live Footer */
.live-footer-v7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 14px;
    border-radius: 12px;
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.live-price-v7 {
    font-size: 18px;
    font-weight: 800;
    color: #06B6D4;
}

.live-btn-v7 {
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.live-btn-v7:hover {
    transform: translateY(-2px);
    gap: 8px;
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.4);
    color: white;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .live-class-slider-v7,
    .course-slider {
        padding: 0 0px;
    }

    .live-class-slider-v7 .owl-prev,
    .live-class-slider-v7 .owl-next {
        width: 48px !important;
        height: 48px !important;
        font-size: 18px !important;
    }
}

@media (max-width: 992px) {
    .live-class-section-v7 {
        padding: 60px 0;
    }

    .live-class-header-v7 h2 {
        font-size: 32px;
    }

    .live-class-slider-v7 {
        padding: 0 20px;
    }

    .live-class-slider-v7 .owl-prev {
        margin-left: -15px;
    }

    .live-class-slider-v7 .owl-next {
        margin-right: -15px;
    }

    .live-class-slider-v7 .owl-prev,
    .live-class-slider-v7 .owl-next {
        width: 44px !important;
        height: 44px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .live-class-section-v7 {
        padding: 50px 0;
    }

    .live-class-header-v7 {
        flex-direction: column;
        align-items: flex-start;
    }

    .live-class-header-v7 h2 {
        font-size: 28px;
    }

    .live-class-header-v7 h2::after {
        width: 50px;
        height: 3px;
        bottom: -8px;
    }

    .live-class-slider-v7 {
        padding: 0 0px;
    }

    .live-class-slider-v7 .owl-nav {
        display: none !important;
    }

    .lp-pill {
        font-size: 9px;
        padding: 3px 8px;
    }

    .live-title-v7 {
        font-size: 15px;
    }

    .live-price-v7 {
        font-size: 16px;
    }

    .live-btn-v7 {
        padding: 5px 12px;
        font-size: 10px;
    }

    .course-slider .owl-nav,
    .live-class-slider-v7 .owl-nav,
    .testimonials-slider .owl-nav,
    .instructors-slider .owl-nav {
        display: none !important;
    }
}




/* RTL Support */
html[dir="rtl"] .live-class-header-v7 {
    flex-direction: row-reverse;
}

html[dir="rtl"] .live-class-header-v7 h2::after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .live-tag-v7 {
    right: auto;
    left: 15px;
}

html[dir="rtl"] .live-class-slider-v7 .owl-prev {
    margin-left: 0;
    margin-right: -25px;
}

html[dir="rtl"] .live-class-slider-v7 .owl-next {
    margin-right: 0;
    margin-left: -25px;
}

@media (max-width: 768px) {
    html[dir="rtl"] .live-class-header-v7 {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Animation */
.live-card-v7 {
    animation: fadeInUp 0.6s ease-out;
}

    to {
        opacity: 1;
        transform: translateY(0);
    }


/* Disable Hover Effects on Mobile */
@media (max-width: 992px) {
    .live-card-v7:hover,
    .course-card-v7:hover,
    .quiz-card-v7:hover,
    .partner-card:hover,
    .testimonial-item:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .live-card-v7:hover::after,
    .course-card-v7:hover::after,
    .quiz-card-v7:hover::after,
    .partner-card:hover::after {
        opacity: 0 !important;
    }

    .live-card-v7:hover .live-image-v7 img,
    .course-card-v7:hover .course-image-v7 img,
    .quiz-card-v7:hover .quiz-image-v7 img,
    .partner-card:hover img {
        transform: none !important;
    }
}

/* ============================================
   FIX: STATS SECTION VISIBILITY
   ============================================ */

/* Ensure stats-grid is fully visible */
.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    margin-top: 70px !important;
    margin-bottom: 30px !important;
    position: relative !important;
    z-index: 5 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure stat boxes are visible */
.stat-box {
    background: rgba(17, 24, 39, 0.6) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border-radius: 24px !important;
    padding: 28px 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    margin: 0 !important;
    width: 100% !important;
    min-height: 120px !important;
}

/* Stats number styling */
.stat-number-lg {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    margin: 0 0 4px !important;
    line-height: 1 !important;
    font-family: 'Outfit', sans-serif !important;
}

.stat-box p {
    color: #9CA3AF !important;
    font-size: 13px !important;
    margin: 0 !important;
    white-space: nowrap !important;
}

.stat-box i {
    font-size: 32px !important;
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(6, 182, 212, 0.12) !important;
    border: 1px solid rgba(6, 182, 212, 0.25) !important;
}

.stat-box-content {
    flex: 1 !important;
    min-width: 0 !important;
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-top: 40px !important;
    }
    
    .stat-box {
        padding: 20px 20px !important;
    }
}

.stat-box {
    animation: statReveal 0.8s ease-out forwards;
}

.stat-box:nth-child(1) { animation-delay: 0.1s; }
.stat-box:nth-child(2) { animation-delay: 0.25s; }
.stat-box:nth-child(3) { animation-delay: 0.4s; }
.stat-box:nth-child(4) { animation-delay: 0.55s; }

@keyframes statReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}