/*
Theme Name: MathVedic - Math & Vedic Learning Platform
Theme URI: https://mathvedic.com
Author: MathVedic Team
Author URI: https://mathvedic.com
Description: A premium after-school online learning platform for Math and Vedic Mathematics. Built with TutorLMS integration for a seamless course management experience targeting K-12 students.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mathvedic
Tags: education, learning, lms, mathematics, elearning, responsive, tutor-lms, courses, after-school

This theme is designed for integration with TutorLMS plugin.
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
    /* Brand Colors */
    --color-primary: #1A3A6E;        /* Deep Navy - authority, trust */
    --color-primary-dark: #0F2347;
    --color-primary-light: #2D5BA3;
    --color-secondary: #F5A623;      /* Warm Saffron - Vedic, energy */
    --color-secondary-dark: #D4881A;
    --color-secondary-light: #FFB847;
    --color-accent: #00C896;         /* Emerald - success, growth */
    --color-accent-dark: #00A07A;

    /* Neutrals */
    --color-white: #FFFFFF;
    --color-off-white: #F8F9FE;
    --color-light-gray: #EEF0F8;
    --color-mid-gray: #9AA3B8;
    --color-dark-gray: #4A5568;
    --color-text: #1E2642;
    --color-text-light: #6B7280;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #1A3A6E 0%, #0F2347 50%, #1A3A6E 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8f9fe 100%);
    --gradient-gold: linear-gradient(135deg, #F5A623 0%, #FFB847 100%);
    --gradient-accent: linear-gradient(135deg, #00C896 0%, #00A07A 100%);

    /* Typography */
    --font-display: 'Cinzel', 'Georgia', serif;
    --font-heading: 'Nunito', 'Helvetica Neue', sans-serif;
    --font-body: 'Nunito', 'Helvetica Neue', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 58, 110, 0.08);
    --shadow-md: 0 8px 24px rgba(26, 58, 110, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 58, 110, 0.18);
    --shadow-gold: 0 8px 24px rgba(245, 166, 35, 0.30);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Container */
    --container-max: 1280px;
    --container-padding: 24px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

a:hover { color: var(--color-secondary); }

ul, ol { list-style: none; }

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

.display-font { font-family: var(--font-display); }

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; color: var(--color-text-light); }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-white { color: var(--color-white); }

/* =============================================
   LAYOUT
   ============================================= */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-3xl) 0;
}

.section-sm {
    padding: var(--space-2xl) 0;
}

.grid {
    display: grid;
    gap: var(--space-lg);
}

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

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
#site-header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition-base);
}

#site-header.scrolled {
    background: rgba(15, 35, 71, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--color-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Primary Navigation */
#primary-nav {
    display: flex;
    align-items: center;
    /*gap: var(--space-xl);*/
    gap: 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-menu li a {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
    position: relative;
    padding: 4px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: var(--color-white);
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after {
    width: 100%;
}

/* Dropdown */
.nav-menu .menu-item-has-children {
    position: relative;
}

.nav-menu .sub-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.nav-menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 8px);
}

.nav-menu .sub-menu li a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--color-text);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.nav-menu .sub-menu li a:hover {
    background: var(--color-off-white);
    color: var(--color-primary);
}

.nav-menu .sub-menu li a::after { display: none; }

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 166, 35, 0.45);
    color: var(--color-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.4);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
    color: var(--color-white);
    transform: translateY(-2px);
}

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

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

.btn-accent {
    background: var(--gradient-accent);
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(0, 200, 150, 0.30);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 200, 150, 0.45);
    color: var(--color-white);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.825rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--color-white);
    /*background: #f8f9fc;*/
    clip-path: ellipse(60% 100% at 50% 100%);
}

/* Floating geometric shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    opacity: 0.06;
    animation: float linear infinite;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    top: 10%;
    right: -100px;
    animation-duration: 20s;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-accent);
    transform: rotate(45deg);
    bottom: 20%;
    left: -50px;
    animation-duration: 15s;
    animation-direction: reverse;
}

.hero-shape-3 {
    width: 80px;
    height: 80px;
    background: var(--color-secondary);
    border-radius: 20px;
    top: 30%;
    right: 20%;
    animation-duration: 12s;
    opacity: 0.12;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 160px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-2xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    color: var(--color-secondary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--color-secondary);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    opacity: 0.5;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: var(--space-xl);
    max-width: 540px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.hero-main-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: 0 32px 64px rgba(0,0,0,0.3);
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.hero-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.hero-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-white);
}

.hero-card-subtitle {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.hero-progress-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hero-progress-item {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
}

.hero-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
    font-weight: 600;
}

.hero-progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.hero-progress-fill {
    height: 100%;
    border-radius: var(--radius-full);
    background: var(--gradient-gold);
    transition: width 1s ease;
}

.hero-floating-badge {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    animation: float-badge 3s ease infinite;
}

.hero-floating-badge-1 {
    top: -20px;
    left: -30px;
    animation-delay: 0s;
}

.hero-floating-badge-2 {
    bottom: 20px;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-icon { font-size: 1.5rem; margin-bottom: 4px; }
.badge-val { font-weight: 800; color: var(--color-primary); font-size: 0.9rem; }
.badge-lbl { font-size: 0.7rem; color: var(--color-text-light); }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
}

.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--color-secondary);
    opacity: 0.5;
}

.section-title {
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.section-description {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* =============================================
   SUBJECTS / PROGRAMS SECTION
   ============================================= */
.programs-section {
    background: var(--color-off-white);
}

.program-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--color-light-gray);
    position: relative;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.program-card-header {
    padding: var(--space-xl) var(--space-xl) 0;
    position: relative;
}

.program-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-lg);
}

.program-icon-math {
    background: linear-gradient(135deg, #E8F0FE, #C2D4FF);
}

.program-icon-vedic {
    background: linear-gradient(135deg, #FFF3D6, #FFE4A0);
}

.program-card-tag {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tag-popular {
    background: rgba(245, 166, 35, 0.15);
    color: var(--color-secondary-dark);
}

.tag-featured {
    background: rgba(0, 200, 150, 0.12);
    color: var(--color-accent-dark);
}

.program-card-body {
    padding: var(--space-lg) var(--space-xl) var(--space-xl);
}

.program-card-title {
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
}

.program-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    color: var(--color-text-light);
}

.program-meta {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--color-light-gray);
    border-bottom: 1px solid var(--color-light-gray);
}

.program-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--color-text-light);
    font-weight: 600;
}

.program-meta-icon { font-size: 1rem; }

.program-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--space-lg);
}

.program-topic-chip {
    padding: 4px 12px;
    background: var(--color-off-white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-dark-gray);
    border: 1px solid var(--color-light-gray);
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-section {
    background: var(--color-white);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
}

.how-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 36px);
    right: calc(12.5% + 36px);
    height: 2px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    opacity: 0.2;
}

.how-step {
    text-align: center;
    position: relative;
    padding: var(--space-lg);
}

.how-step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-hero);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--color-white);
}

.how-step:nth-child(2) .how-step-num { background: var(--gradient-gold); color: var(--color-primary); }
.how-step:nth-child(3) .how-step-num { background: var(--gradient-accent); }
.how-step:nth-child(4) .how-step-num { background: linear-gradient(135deg, #7C3AED, #5B21B6); }

.how-step-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.how-step-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
}

.how-step-desc {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* =============================================
   GRADE LEVELS / AGE GROUPS
   ============================================= */
.grades-section {
    background: linear-gradient(180deg, var(--color-off-white) 0%, var(--color-white) 100%);
}

.grade-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.grade-card {
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base);
}

.grade-card:hover { transform: translateY(-6px); }

.grade-card-1 {
    background: linear-gradient(135deg, #EEF2FF, #C7D7FF);
    border: 1px solid #B8CEFF;
}

.grade-card-2 {
    background: linear-gradient(135deg, #FFF7E6, #FFE8A0);
    border: 1px solid #FFD870;
}

.grade-card-3 {
    background: linear-gradient(135deg, #E8FFF6, #B8FFDF);
    border: 1px solid #7CEFB8;
}

.grade-card-emoji {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.grade-card-level {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.grade-card-1 .grade-card-level { color: #3B5BDB; }
.grade-card-2 .grade-card-level { color: var(--color-secondary-dark); }
.grade-card-3 .grade-card-level { color: var(--color-accent-dark); }

.grade-card-title {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.grade-card-desc {
    font-size: 0.875rem;
    color: var(--color-dark-gray);
    margin-bottom: var(--space-lg);
}

.grade-card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.grade-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--color-dark-gray);
    font-weight: 600;
}

.grade-feature::before {
    content: '✓';
    width: 18px;
    height: 18px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* =============================================
   FEATURES / WHY US
   ============================================= */
.features-section {
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
}

.features-section .section-title,
.features-section .section-description {
    color: var(--color-white);
}

.features-section .section-description {
    color: rgba(255,255,255,0.7);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.feature-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    border-color: rgba(245,166,35,0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(245, 166, 35, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.feature-title {
    font-size: 1.05rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.feature-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* =============================================
   COURSES GRID (TutorLMS)
   ============================================= */
.courses-section {
    background: var(--color-white);
}

.courses-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-light-gray);
    background: var(--color-white);
    color: var(--color-text-light);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

/* TutorLMS Course Card Override/Styling */
.tutor-course-loop-wrap,
.course-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light-gray);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.tutor-course-loop-wrap:hover,
.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.course-thumb,
.tutor-course-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.course-thumb img,
.tutor-course-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.course-level-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.level-beginner { background: rgba(0,200,150,0.9); color: white; }
.level-intermediate { background: rgba(245,166,35,0.9); color: white; }
.level-advanced { background: rgba(26,58,110,0.9); color: white; }

.course-body {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-category {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
}

.course-title {
    font-size: 1.05rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.35;
}

.course-title a { color: inherit; }
.course-title a:hover { color: var(--color-secondary); }

.course-desc {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    flex: 1;
}

.course-meta {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--color-light-gray);
    border-bottom: 1px solid var(--color-light-gray);
    margin-bottom: var(--space-md);
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    color: var(--color-text-light);
    font-weight: 600;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: var(--space-md);
}

.course-stars {
    color: var(--color-secondary);
    font-size: 0.85rem;
}

.course-rating-count {
    font-size: 0.78rem;
    color: var(--color-text-light);
}

.course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.course-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-display);
}

.course-price .original-price {
    text-decoration: line-through;
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-right: 6px;
}

.course-price-free {
    color: var(--color-accent);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
    background: var(--color-off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light-gray);
    position: relative;
    transition: transform var(--transition-base);
}

.testimonial-card:hover { transform: translateY(-4px); }

.testimonial-quote {
    font-size: 3rem;
    color: var(--color-secondary);
    line-height: 1;
    font-family: Georgia, serif;
    margin-bottom: var(--space-md);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-dark-gray);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--color-text-light);
}

.testimonial-stars {
    color: var(--color-secondary);
    font-size: 0.8rem;
    margin-top: 2px;
}

/* =============================================
   INSTRUCTORS
   ============================================= */
.instructors-section {
    background: var(--color-white);
}

.instructor-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.instructor-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-light-gray);
    transition: all var(--transition-base);
}

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

.instructor-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--space-md);
    border: 4px solid var(--color-light-gray);
    overflow: hidden;
}

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

.instructor-name {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.instructor-title {
    font-size: 0.78rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.instructor-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

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

.instructor-stat-num {
    font-weight: 800;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.instructor-stat-label {
    font-size: 0.72rem;
    color: var(--color-text-light);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    background: var(--gradient-hero);
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(245,166,35,0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.cta-title {
    color: var(--color-white);
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.cta-description {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin-bottom: var(--space-xl);
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-guarantee {
    margin-top: var(--space-lg);
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
    background: #0A1628;
    color: rgba(255,255,255,0.7);
    padding: var(--space-3xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: var(--space-lg);
}

.footer-brand .logo-name { color: var(--color-white); }

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin: var(--space-md) 0 var(--space-lg);
    color: rgba(255,255,255,0.55);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.social-link:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-menu a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition-fast);
}

.footer-menu a:hover { color: var(--color-secondary); }

.footer-bottom {
    padding: var(--space-lg) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
}

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

/* =============================================
   TUTOR LMS INTEGRATION STYLES
   ============================================= */
/* Override TutorLMS default styles to match our theme */

.tutor-wrap {
    font-family: var(--font-body) !important;
}

/* Course Archive */
.tutor-course-archive-header {
    background: var(--gradient-hero);
    padding: var(--space-3xl) 0;
    color: var(--color-white);
    text-align: center;
}

.tutor-course-archive-header h1 {
    color: var(--color-white);
    font-family: var(--font-display);
}

/* Course Single */
.tutor-single-course {
    padding-top: 80px;
}

.tutor-course-header {
    background: var(--gradient-hero);
    padding: var(--space-2xl) 0;
    color: var(--color-white);
}

.tutor-single-course .tutor-course-header h1 {
    color: var(--color-white);
    font-family: var(--font-display);
}

.tutor-enroll-btn,
.tutor-btn-primary {
    background: var(--gradient-gold) !important;
    color: var(--color-primary) !important;
    border: none !important;
    border-radius: var(--radius-full) !important;
    font-weight: 700 !important;
    padding: 14px 32px !important;
    font-family: var(--font-body) !important;
    box-shadow: var(--shadow-gold) !important;
    transition: all var(--transition-base) !important;
}

.tutor-enroll-btn:hover,
.tutor-btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 32px rgba(245, 166, 35, 0.45) !important;
}

/* Student Dashboard */
.tutor-dashboard {
    padding-top: 80px;
    background: var(--color-off-white);
    min-height: 100vh;
}

.tutor-dashboard-nav {
    background: var(--color-white);
    border-right: 1px solid var(--color-light-gray);
}

.tutor-dashboard-nav .tutor-nav-item.is-active a,
.tutor-dashboard-nav .tutor-nav-item a:hover {
    color: var(--color-primary) !important;
    background: var(--color-off-white) !important;
}

/* Quiz Styles */
.tutor-quiz-wrap {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-light-gray);
}

/* Progress Bar */
.tutor-progress-bar .tutor-progress-value {
    background: var(--gradient-accent) !important;
}

/* Ratings */
.tutor-star-rating .tutor-star:before,
.tutor-star-rating .tutor-star.is-active:before {
    color: var(--color-secondary) !important;
}

/* Lesson Video */
.tutor-course-video {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* =============================================
   BREADCRUMBS
   ============================================= */
.breadcrumbs {
    padding: var(--space-md) 0;
    font-size: 0.82rem;
    color: var(--color-text-light);
}

.breadcrumbs a { color: var(--color-primary); }
.breadcrumbs a:hover { color: var(--color-secondary); }
.breadcrumbs span { margin: 0 6px; color: var(--color-mid-gray); }

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-2xl) 0;
}

.page-numbers {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    border: 2px solid var(--color-light-gray);
    color: var(--color-text-light);
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* =============================================
   VEDIC MATH SPECIAL SECTION
   ============================================= */
.vedic-highlight {
    background: linear-gradient(135deg, #FFF8E1, #FFF3CC);
    border: 2px solid rgba(245, 166, 35, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.vedic-highlight::before {
    content: 'ॐ';
    position: absolute;
    right: -20px;
    top: -30px;
    font-size: 180px;
    color: rgba(245, 166, 35, 0.06);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
}

.vedic-formula-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.vedic-formula-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    border: 1px solid rgba(245, 166, 35, 0.2);
    transition: transform var(--transition-base);
}

.vedic-formula-card:hover { transform: scale(1.03); }

.vedic-sutra {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--color-secondary-dark);
    margin-bottom: 4px;
}

.vedic-sutra-meaning {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

/* =============================================
   SEARCH & FILTERS
   ============================================= */
.search-hero {
    background: var(--gradient-hero);
    padding: var(--space-2xl) 0;
    text-align: center;
}

.search-bar {
    display: flex;
    max-width: 600px;
    margin: var(--space-lg) auto 0;
    background: var(--color-white);
    border-radius: var(--radius-full);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.search-bar input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--color-text);
}

.search-bar button {
    padding: 12px 28px;
    background: var(--gradient-gold);
    border: none;
    color: var(--color-primary);
    font-weight: 700;
    cursor: pointer;
    border-radius: var(--radius-full);
    margin: 6px;
    transition: all var(--transition-fast);
}

.search-bar button:hover { box-shadow: var(--shadow-gold); }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.hidden { display: none; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* =============================================
   RESPONSIVE - TABLET (768px - 1024px)
   ============================================= */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-description { max-width: 100%; }
    .hero-stats { justify-content: center; }
    .hero-actions { justify-content: center; }
    .hero-visual { display: none; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .how-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid::before { display: none; }
    .instructor-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .vedic-formula-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-cards { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   RESPONSIVE - MOBILE (< 768px)
   ============================================= */
@media (max-width: 768px) {
    :root {
        --container-padding: 16px;
        --space-3xl: 60px;
        --space-2xl: 40px;
    }

    #primary-nav .nav-menu { display: none; }

    #primary-nav.mobile-open .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-primary-dark);
        padding: var(--space-lg);
        gap: var(--space-md);
        z-index: 999;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .menu-toggle { display: flex; }

    .grid-2,
    .grid-3,
    .grid-4 { grid-template-columns: 1fr; }

    .how-grid { grid-template-columns: 1fr; }
    .grade-cards { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .instructor-cards { grid-template-columns: repeat(2, 1fr); }
    .courses-grid { grid-template-columns: 1fr; }
    .feature-cards { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .hero-stats { flex-wrap: wrap; gap: var(--space-lg); }
    .hero-actions { flex-direction: column; align-items: center; }

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

    .cta-actions { flex-direction: column; align-items: center; }

    .courses-filter { justify-content: flex-start; overflow-x: auto; padding-bottom: var(--space-sm); }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Scroll-based animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   LOADING STATE
   ============================================= */
.skeleton {
    background: linear-gradient(90deg, var(--color-light-gray) 25%, #e8e8e8 50%, var(--color-light-gray) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
    #site-header, #site-footer, .hero-shapes { display: none; }
    body { color: #000; }
    a { color: #000; }
}

/********************** NEW CSS **********************/

@media(max-width:768px) {
    nav#primary-nav {
        gap: 4px;
        padding: 0px 10px;
    }
    .btn-sm {
        font-size: 0.625rem;
    }
    #site-header {
        top: 85px;
    }
    a.custom-logo-link {
        width: 35% !important;
    }
}

a.custom-logo-link {
    width: 17%;
}
a.custom-logo-link img {
    width: 100%;
}

.hero-content .hero-grid .hero-left h1.hero-title {
    font-size: 2.3rem;
}
.hero-floating-badge.hero-floating-badge-1 {
    z-index: 20;
    padding: 10px;
    top: -60px;
    left: -60px;
}
#courses-grid {
    display: none !important;
}

.form-all {
    max-width: 100% !important;
}

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

.mission-vision .box {
    padding: 25px;
    border-radius: 10px;
    background: #eef2ff;
}

.about-cta {
    background: var(--gradient-hero);
    padding: 70px 20px;
    text-align: center;
}

.about-cta h2 {
    color: #fff;
}

.about-cta p {
    color: #dbeafe;
}

.about-cta a {
    display: inline-block;
    margin-top: 20px;
    background: #f59e0b;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.about-cta a:hover {
    background: #444;
    color: #f59e0b;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    margin-bottom: 10px;
}

.faq-cta {
    margin-top: 40px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 10px;
    text-align: center;
}

/* INSTRUCTOR PAGE */

.mj-master-wrap {
    max-width: 1400px;
    margin: 50px auto;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,.08);
}
.mj-profile-container{
    max-width:1400px;
    margin:0 auto;
    display:flex;
    align-items:center;
    gap:70px;
    padding:60px;
    border-radius:0px;
}
.mj-profile-image{
    flex:0 0 420px;
}
.mj-profile-image img{
    width:100%;
    height:560px;
    object-fit:cover;
    border-radius:22px;
    display:block;
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}
.mj-profile-content{
    flex:1;
}
.mj-profile-title{
    font-size:48px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:18px;
    color:#111827;
}
.mj-profile-subtitle {
    font-size: 20px;
    color: #15284c;
    margin-bottom: 28px;
    line-height: 1.6;
}
.mj-profile-text{
    font-size:17px;
    line-height:1.9;
    color:#4b5563;
    margin-bottom:20px;
}
.mj-profile-text:last-child{
    margin-bottom:0;
}
/* Tablet */
/*@media(max-width:1100px){

    .mj-profile-container{
        gap:40px;
        padding:40px;
    }
    .mj-profile-image{
        flex:0 0 320px;
    }
    .mj-profile-image img{
        height:460px;
    }
    .mj-profile-title{
        font-size:38px;
    }
}*/
/* Mobile */
/*@media(max-width:768px){

    .mj-profile-section{
        padding:50px 16px;
    }
    .mj-profile-container{
        flex-direction:column;
        padding:28px;
        gap:30px;
    }
    .mj-profile-image{
        width:100%;
        flex:none;
    }
    .mj-profile-image img{
        height:auto;
    }
    .mj-profile-title{
        font-size:32px;
    }
    .mj-profile-subtitle{
        font-size:18px;
    }
    .mj-profile-text{
        font-size:16px;
        line-height:1.8;
    }
}
.mj-highlight-section{
    padding:70px 60px;
}
.mj-highlight-container{
    max-width:1400px;
    margin:auto;
}
.mj-highlight-title{
    font-size:42px;
    text-align:center;
    margin-bottom:50px;
    color:#111827;
    font-weight:700;
}
.mj-highlight-list{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}
.mj-highlight-item{
    background:#fff;
    padding:35px;
    font-size:18px;
    line-height:1.7;
    color:#374151;
    border-left:6px solid #15284c;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}
.mj-approach-section{
    padding:70px 60px;
}
.mj-approach-container{
    max-width:1400px;
    margin:auto;
}
.mj-approach-title{
    font-size:42px;
    text-align:center;
    margin-bottom:80px;
    color:#111827;
    font-weight:700;
}
.mj-approach-list{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    justify-content:space-between;
    position:relative;
    gap:20px;
}
.mj-approach-list::before{
    content:"";
    position:absolute;
    top:18px;
    left:0;
    width:100%;
    height:2px;
    background:#dbe3ef;
    z-index:0;
}
.mj-approach-item{
    flex:1;
    text-align:center;
    position:relative;
    z-index:1;
    font-size:17px;
    font-weight:600;
    color:#15284c;
    line-height:1.7;
    padding-top:55px;
}

.mj-approach-item::before{
    content:"";
    width:38px;
    height:38px;
    border-radius:50%;
    background:#15284c;
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    box-shadow:0 8px 20px rgba(21,40,76,.18);
}

.mj-approach-item:hover::before{
    transform:translateX(-50%) scale(1.12);
    transition:.3s ease;
}*/

/* Mobile */

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

    .mj-approach-title{
        font-size:30px;
        margin-bottom:45px;
    }

    .mj-approach-list{
        flex-direction:column;
        gap:35px;
    }

    .mj-approach-list::before{
        display:none;
    }

    .mj-approach-item{
        padding-top:50px;
    }
}*/

/*Venkatesh M*/

/*.vm-master-wrap {
    max-width: 1400px;
    margin: 50px auto;
    background: linear-gradient(135deg,#1A3A6E 0%,#0F2347 50%,#1A3A6E 100%);
    box-shadow: 0 15px 50px rgba(0,0,0,.18);
    overflow: hidden;
}*/

/* PROFILE */

/*.vm-profile-container {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 60px;
}

.vm-profile-image {
    flex: 0 0 420px;
}

    .vm-profile-image img {
        width: 100%;
        height: 560px;
        object-fit: cover;
        border-radius: 22px;
        display: block;
        box-shadow: 0 20px 40px rgba(0,0,0,.22);
    }

.vm-profile-content {
    flex: 1;
}

.vm-profile-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.vm-profile-subtitle {
    font-size: 20px;
    color: #f9ad31;
    margin-bottom: 28px;
    line-height: 1.6;
}

.vm-profile-text {
    font-size: 17px;
    line-height: 1.9;
    color: #8898ad;
    margin-bottom: 20px;
}*/


/* COMMON SECTION TITLE */

/*.vm-experience-title,
.vm-expertise-title,
.vm-certification-title,
.vm-philosophy-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 55px;
    color: #fff;
    font-weight: 700;
}*/


/* EXPERIENCE */

/*.vm-experience-section,
.vm-expertise-section,
.vm-certification-section,
.vm-philosophy-section {
    padding: 70px 60px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.vm-experience-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-experience-item {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    padding: 35px;
    color: #d8e0eb;
    border-left: 5px solid #f9ad31;
    line-height: 1.8;
}*/


/* EXPERTISE */

/*.vm-expertise-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    align-items: flex-start;
    padding-top: 20px;
}

.vm-expertise-list::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #dbe3ef;
    z-index: 0;
}

.vm-expertise-item {
    flex: 1;
    text-align: center;
    color: #fff;
    font-weight: 600;
    padding-top: 55px;
    position: relative;
    line-height: 1.7;
}

    .vm-expertise-item:before {
        content: "";
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #f9ad31;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .vm-expertise-item:hover::before {
        transform: translateX(-50%) scale(1.12);
        transition: .3s ease;
    }*/


/* CERTIFICATION */

/*.vm-certification-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.vm-certification-item {
    background: rgba(249,173,49,.12);
    border: 1px solid rgba(249,173,49,.28);
    color: #fff;
    padding: 22px 35px;
    font-weight: 600;
}*/


/* PHILOSOPHY */

/*.vm-philosophy-text {
    max-width: 1100px;
    margin: 0 auto 24px;
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
    color: #8898ad;
}*/


/* MOBILE */

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

    .vm-profile-container {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }

    .vm-profile-image {
        flex: none;
        width: 100%;
        max-width: 420px;
    }

    .vm-experience-list {
        grid-template-columns: 1fr;
    }

    .vm-expertise-list {
        flex-direction: column;
        gap: 35px;
    }
}

@media(max-width:768px) {

    .vm-master-wrap {
        margin: 25px 16px;
    }

    .vm-profile-title {
        font-size: 32px;
    }

    .vm-experience-title,
    .vm-expertise-title,
    .vm-certification-title,
    .vm-philosophy-title {
        font-size: 28px;
    }

    .vm-experience-section,
    .vm-expertise-section,
    .vm-certification-section,
    .vm-philosophy-section {
        padding: 40px 24px;
    }
}*/

/*INSTRUCTORS PAGE*/

.educators-grid {
    max-width: 1400px;
    margin: 60px 60px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    padding: 0 20px;
}

.educator-card {
    background: linear-gradient(to bottom, #1A3A6E, #0F2347);
    /*box-shadow: 0 15px 50px rgba(0,0,0,.099);*/
    box-shadow: 6px 8px 8px #888888ba;
    overflow: hidden;
    transition: .35s ease;
}

.educator-card:hover {
    transform: translateY(-8px);
}

.educator-image {
    margin-bottom: 0px;
}

.educator-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    object-position: top;
}

.educator-content {
    padding: 10px;
    background: linear-gradient(to bottom, #1A3A6E, #0F2347);
}

.educator-content h2 {
    font-size: 28px;
    margin-bottom: 0px;
    color: #fff;
}

.educator-content h4 {
    font-size: 16px;
    color: #f5a623;
    margin-bottom: 10px;
}

.educator-content p {
    font-size: 15px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 0.6rem;
}

.educator-content a {
    color: #f8ac2f !important;
}

.educator-content a:hover {
    color: #f9ae34d6;
    text-decoration: underline;
}

@media(max-width:900px) {

    .educators-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
        margin: 20px 0px
    }

    .educator-image img {
        height: 300px;
    }

    .educator-content h2 {
        font-size: 24px;
    }
}

.about-section {
    padding: 60px 20px;
}
.bg-light {
    background: #f8fafc;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 25px 0;
    padding: 0;
    list-style: none;
}
.features-grid li {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    text-align: center;
}
section.about-section.sec-first {
    background: linear-gradient(135deg, #1A3A6E 0%, #0F2347 50%, #1A3A6E 100%);
}
section.about-section.sec-first h2 {
    color: #fff;
}
section.about-section.sec-first p {
    color: #DCE;
}
.instructor-profile {
    max-width: 900px;
}
.instructor-content h2 {
    margin-bottom: 5px;
}
.instructor-content p {
    margin-bottom: 15px;
}


.policy-container h2 {
    margin-top: 30px;
}

/* CONTACT PAGE */

.contact-hero {
    text-align: center;
    padding: 50px 20px;
}
.contact-hero .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}
.contact-hero h1 {
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-hero p {
    color: #555;
    font-size: 15px;
}
.contact-section {
    padding: 50px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-content h2 {
    font-size: 22px;
    margin-bottom: 12px;
}
.contact-content h3 {
    margin-top: 25px;
    margin-bottom: 10px;
}
.contact-content p {
    margin-bottom: 12px;
    line-height: 1.6;
}
.contact-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}
.contact-content li {
    margin-bottom: 8px;
}
.contact-content hr {
    margin: 25px 0;
}
.contact-form-box {
    /*background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);*/
}
.contact-form-box h3 {
    margin-bottom: 20px;
    font-weight: 600;
}
.contact-form-box label {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}
.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}
.contact-form-box textarea {
    height: 120px;
    resize: none;
}
.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    border-color: #f59e0b;
}
.contact-form-box .wpcf7-list-item {
    margin-right: 15px;
}
.contact-form-box .wpcf7-acceptance {
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}
.contact-form-box input[type="submit"] {
    width: 100%;
    background: #f59e0b;
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contact-form-box input[type="submit"]:hover {
    background: #d97706;
}
.contact-form-box .wpcf7-acceptance {
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-form-box .wpcf7-acceptance input {
    width: auto;
    margin: 0;
}
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 22px;
    }
}

/* Thank You Page */

.custom-success-box {
    max-width: 500px;
    margin: 80px auto;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #22c55e;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    line-height: 60px;
    border-radius: 50%;
}
.custom-success-box h2 {
    font-size: 22px;
    margin-bottom: 10px;
}
.custom-success-box p {
    color: #555;
}

/*    HOMEPAGE    */

.section-headline {
    font-size: 25px;
    color: #f1f1f1;
    font-family: var( );
    margin-bottom: 10px;
}

.program-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.program-benefit-card {
    background: #ffffff;
    padding: 35px 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.program-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.program-benefit-card h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    color: #1f2937;
}

/* Tablet */
@media (max-width: 992px) {
    .program-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .program-benefits {
        grid-template-columns: 1fr;
    }

    .program-benefit-card {
        padding: 28px 22px;
    }

    .program-benefit-card h3 {
        font-size: 18px;
    }
}

.curriculum-section {
    background: linear-gradient(to left, #172a4d 0%, #4d1717 100%);
    padding: 90px 0;
}

section.section.curriculum-section .section-header {
    max-width: none !important;
}

.curriculum-title {
    text-align: center;
    white-space: nowrap;
    color: #f1f1f1;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.curriculum-item {
    background: #ffffff;
    padding: 38px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.curriculum-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
}

.curriculum-item h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.5;
    font-weight: 600;
    color: #1e293b;
}

/* Tablet */
@media (max-width: 992px) {

    .curriculum-title {
        white-space: normal;
    }

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

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

    .curriculum-section {
        padding: 70px 0;
    }

    .curriculum-item {
        padding: 30px 22px;
    }

    .curriculum-item h3 {
        font-size: 18px;
    }
}

.math-grade-section {
    padding: 90px 0;
    background: #fff;
}

.math-grade-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 50px;
}

.math-grade-box {
    background: #ffffff;
    border: 1px solid #e9eef5;
    border-radius: 18px;
    padding: 30px 18px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.math-grade-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.grade-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.grade-badge.blue {
    background: #3b82f6;
}

.grade-badge.green {
    background: #10b981;
}

.grade-badge.yellow {
    background: #f59e0b;
}

.grade-badge.purple {
    background: #8b5cf6;
}

.grade-badge.orange {
    background: #f97316;
}

.grade-badge.sky {
    background: #0ea5e9;
}

.grade-badge.teal {
    background: #14b8a6;
}

.math-grade-box h3 {
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #1e293b;
}

.math-grade-box p {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

.math-grade-box strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

/* Laptop */
@media (max-width: 1200px) {
    .math-grade-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet */
@media (max-width: 768px) {
    .math-grade-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .math-grade-section {
        padding: 70px 0;
    }

    .math-grade-grid {
        grid-template-columns: 1fr;
    }

    .math-grade-box {
        padding: 28px 20px;
    }
}

.learning-terms-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
}

.learning-terms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.learning-term-card {
    position: relative;
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.learning-term-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
}

.term-badge {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #173361;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.learning-term-card h3 {
    margin-bottom: 22px;
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.learning-term-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.learning-term-card ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.learning-term-card ul li:last-child {
    margin-bottom: 0;
}

.learning-term-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #444;
}

/* Tablet */
@media (max-width: 992px) {

    .learning-terms-grid {
        grid-template-columns: 1fr;
    }
}

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

    .learning-terms-section {
        padding: 70px 0;
    }

    .learning-term-card {
        padding: 32px 24px;
    }

    .learning-term-card h3 {
        font-size: 21px;
    }
}

.child-skills-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

.child-skills-title {
    color: #ffffff;
}

.child-skills-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 50px;
}

.child-skill-item {
    position: relative;
    padding: 16px 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    width: 25%;
    text-align: center;
}

.child-skill-item:hover {
    transform: translateY(-4px) scale(1.03);
    background: rgba(255, 255, 255, 0.14);
}

.child-skill-item span {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

/* Tablet */
@media (max-width: 768px) {

    .child-skills-wrapper {
        gap: 14px;
    }

    .child-skill-item {
        padding: 14px 22px;
    }

    .child-skill-item span {
        font-size: 15px;
    }
}

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

    .child-skills-section {
        padding: 70px 0;
    }

    .child-skills-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .child-skill-item {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

.math-assessment-section {
    padding: 20px 0;
    background: #f8fbff;
}

.math-assessment-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 70px 60px;
    background: linear-gradient(135deg, #1A3A6E 0%, #0F2347 50%, #1A3A6E 100%);
    box-shadow: 0 30px 70px rgba(37, 99, 235, 0.18);
}

.math-assessment-box::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.math-assessment-box::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -100px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.math-assessment-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.assessment-label {
    display: inline-block;
    padding: 10px 18px;
    margin-bottom: 24px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.math-assessment-title {
    margin-bottom: 18px;
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
}

.math-assessment-subtitle {
    margin-bottom: 22px;
    font-size: 28px;
    line-height: 1.4;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.math-assessment-description {
    /*max-width: 900px;*/
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
}

.assessment-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 35px;
}

.assessment-info-card {
    padding: 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-align: left;
}

.assessment-info-card h4 {
    margin-bottom: 22px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.assessment-info-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.assessment-info-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.assessment-info-card ul li:last-child {
    margin-bottom: 0;
}

.assessment-info-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.assessment-note {
    margin-bottom: 38px;
    padding: 24px 28px;
    border-left: 4px solid #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.assessment-note p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
}

.assessment-button-wrap {
    margin-top: 10px;
}

.assessment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 34px;
    border-radius: 100px;
    background: #ffffff;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.assessment-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.22);
}

/* Tablet */
@media (max-width: 992px) {

    .math-assessment-box {
        padding: 60px 40px;
    }

    .math-assessment-title {
        font-size: 40px;
    }

    .math-assessment-subtitle {
        font-size: 24px;
    }

    .assessment-info-grid {
        grid-template-columns: 1fr;
    }
}

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

    .math-assessment-section {
        padding: 70px 0;
    }

    .math-assessment-box {
        padding: 45px 24px;
        border-radius: 24px;
    }

    .math-assessment-title {
        font-size: 32px;
    }

    .math-assessment-subtitle {
        font-size: 21px;
    }

    .math-assessment-description,
    .assessment-note p {
        font-size: 16px;
        line-height: 1.7;
    }

    .assessment-info-card {
        padding: 26px 22px;
    }

    .assessment-info-card h4 {
        font-size: 21px;
    }

    .assessment-btn {
        width: 100%;
    }
}


.learning-steps-section {
    padding: 90px 0;
    background: linear-gradient(to left, #fbb23b, #FFF);
}

.learning-steps-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.learning-step-card {
    position: relative;
    padding: 38px 26px;
    border-radius: 24px;
    background: #ffffff;
    text-align: center;
    border: 1px solid #e9eef5;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.learning-step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #fab038, #172a4d);
}

.learning-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.step-number {
    width: 68px;
    height: 68px;
    margin: 0 auto 24px;
    border-radius: 20px;
    background: linear-gradient(to left, #fab038, #172a4d);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
}

.learning-step-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 600;
    color: #0f172a;
}

/* Tablet */
@media (max-width: 992px) {

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

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

    .learning-steps-section {
        padding: 70px 0;
    }

    .learning-steps-wrapper {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 45px;
    }

    .learning-step-card {
        padding: 32px 22px;
    }

    .learning-step-card h3 {
        font-size: 20px;
    }
}

.progress-assessment-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
}

.progress-assessment-wrapper {
    position: relative;
    overflow: hidden;
    padding: 70px 60px;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.progress-assessment-wrapper::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.05);
}

.progress-assessment-wrapper::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.05);
}

.progress-assessment-content {
    position: relative;
    z-index: 2;
}

.assessment-tag {
    display: inline-block;
    padding: 10px 18px;
    margin-bottom: 24px;
    border-radius: 100px;
    background: #eff6ff;
    color: #172a4d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.progress-assessment-title {
    margin-bottom: 20px;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
}

.progress-assessment-text {
    margin-bottom: 45px;
    max-width: 760px;
    font-size: 18px;
    line-height: 1.9;
    color: #64748b;
}

.progress-assessment-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.assessment-list-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 28px;
    border-radius: 22px;
    background: #f8fbff;
    border: 1px solid #e8eef9;
    transition: all 0.3s ease;
}

.assessment-list-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.assessment-icon {
    min-width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #172a4d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.18);
}

.assessment-list-item h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.5;
    font-weight: 700;
    color: #0f172a;
}

/* Tablet */
@media (max-width: 992px) {

    .progress-assessment-wrapper {
        padding: 55px 40px;
    }

    .progress-assessment-title {
        font-size: 38px;
    }

    .progress-assessment-list {
        grid-template-columns: 1fr;
    }
}

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

    .progress-assessment-section {
        padding: 70px 0;
    }

    .progress-assessment-wrapper {
        padding: 42px 24px;
        border-radius: 24px;
    }

    .progress-assessment-title {
        font-size: 30px;
    }

    .progress-assessment-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .assessment-list-item {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .assessment-list-item h3 {
        font-size: 18px;
    }
}

.learning-paths-section {
    padding: 20px 0;
    background: #ffffff;
}

.learning-paths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 55px;
}

.learning-path-card {
    position: relative;
    padding: 38px 32px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e8eef7;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
}

.learning-path-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #4f46e5);
}

.learning-path-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

.path-level {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    margin-bottom: 22px;
    border-radius: 100px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.learning-path-card h3 {
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 800;
    color: #0f172a;
}

.learning-path-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
}

/* Laptop */
@media (max-width: 1200px) {

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

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

    .learning-paths-section {
        padding: 70px 0;
    }

    .learning-paths-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 45px;
    }

    .learning-path-card {
        padding: 30px 24px;
        border-radius: 22px;
    }

    .learning-path-card h3 {
        font-size: 24px;
    }

    .learning-path-card p {
        font-size: 15px;
        line-height: 1.7;
    }
}

.learning-tools-section {
    padding: 95px 0;
    background: linear-gradient(135deg, #fcb23c 0%, #f8fbff 100%);
}

.learning-tools-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 55px;
}

.learning-tool-item {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 0 0 22px;
    border-bottom: 1px solid #e5eaf2;
    transition: all 0.3s ease;
}

.learning-tool-item:hover {
    transform: translateX(8px);
    border-color: #2563eb;
}

.tool-count {
    min-width: 72px;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    color: rgba(37, 99, 235, 0.12);
    transition: all 0.3s ease;
}

.learning-tool-item:hover .tool-count {
    color: #2563eb;
}

.learning-tool-item h3 {
    margin: 0;
    font-size: 32px;
    line-height: 1.4;
    font-weight: 700;
    color: #0f172a;
    transition: color 0.3s ease;
}

.learning-tool-item:hover h3 {
    color: #2563eb;
}

/* Tablet */
@media (max-width: 768px) {

    .learning-tool-item {
        gap: 20px;
    }

    .tool-count {
        min-width: 56px;
        font-size: 40px;
    }

    .learning-tool-item h3 {
        font-size: 24px;
    }
}

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

    .learning-tools-section {
        padding: 70px 0;
    }

    .learning-tools-list {
        margin-top: 40px;
    }

    .learning-tool-item {
        gap: 16px;
        padding-bottom: 18px;
    }

    .tool-count {
        min-width: 42px;
        font-size: 30px;
    }

    .learning-tool-item h3 {
        font-size: 19px;
        line-height: 1.5;
    }
}

.parent-testimonials-section {
    padding: 95px 0;
    background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
    overflow: hidden;
}

.parent-testimonials-section .section-title {
    color: #ffffff;
}

.parent-testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.parent-testimonial-item {
    position: relative;
    padding: 42px 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

.parent-testimonial-item::before {
    content: "“";
    position: absolute;
    top: 18px;
    left: 26px;
    font-size: 90px;
    line-height: 1;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
}

.parent-testimonial-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.parent-testimonial-item p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 24px;
    line-height: 1.7;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

/* Tablet */
@media (max-width: 992px) {

    .parent-testimonials-wrapper {
        grid-template-columns: 1fr;
    }

    .parent-testimonial-item p {
        font-size: 22px;
    }
}

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

    .parent-testimonials-section {
        padding: 70px 0;
    }

    .parent-testimonials-wrapper {
        margin-top: 45px;
        gap: 22px;
    }

    .parent-testimonial-item {
        padding: 34px 24px;
        border-radius: 22px;
    }

    .parent-testimonial-item::before {
        top: 14px;
        left: 18px;
        font-size: 70px;
    }

    .parent-testimonial-item p {
        font-size: 18px;
        line-height: 1.6;
    }
}

.expert-educators-section {
    padding: 20px 0;
    background: #ffffff;
}

.expert-educators-box {
    position: relative;
    overflow: hidden;
    padding: 65px 60px;
    border-radius: 30px;
    background: linear-gradient(135deg, #eff6ff 0%, #f8fbff 100%);
    border: 1px solid #dbe7ff;
}

.expert-educators-box::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.06);
}

.expert-educators-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.educator-label {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 18px;
    border-radius: 100px;
    background: #2563eb;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.expert-educators-title {
    margin-bottom: 20px;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
}

.expert-educators-text {
    margin: 0;
    font-size: 19px;
    line-height: 1.9;
    color: #475569;
}

/* Tablet */
@media (max-width: 992px) {

    .expert-educators-box {
        padding: 55px 40px;
    }

    .expert-educators-title {
        font-size: 38px;
    }
}

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

    .expert-educators-section {
        padding: 70px 0;
    }

    .expert-educators-box {
        padding: 42px 24px;
        border-radius: 22px;
    }

    .expert-educators-title {
        font-size: 30px;
    }

    .expert-educators-text {
        font-size: 16px;
        line-height: 1.7;
    }
}

.final-cta-section {
    padding: 30px 0;
    background: linear-gradient(
        135deg,
        rgb(26, 58, 110) 0%,
        rgb(15, 35, 71) 50%,
        rgb(26, 58, 110) 100%
    );
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.final-cta-section::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.final-cta-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-label {
    display: inline-block;
    margin-bottom: 24px;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.final-cta-title {
    margin-bottom: 24px;
    font-size: 58px;
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
}

.final-cta-text {
    max-width: 760px;
    margin: 0 auto 40px;
    font-size: 19px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 34px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #ffffff;
    color: #0f2347;
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.18);
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
}

/* Tablet */
@media (max-width: 992px) {

    .final-cta-title {
        font-size: 44px;
    }

    .final-cta-text {
        font-size: 17px;
    }
}

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

    .final-cta-section {
        padding: 80px 0;
    }

    .final-cta-title {
        font-size: 32px;
    }

    .final-cta-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .final-cta-btn {
        width: 100%;
    }
}

/*=========== ||nd sec ===================*/

.programs-section {
    padding: 20px 0;
    background: #fff;
}

/* Hero Layout */
.programs-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 80px;
}

.section-header {
    flex: 1;
}

.programs-hero .section-title {
    font-size: 51px;
    font-weight: 700;
    line-height: 1.2;
    color: #12284c;
    margin-bottom: 25px;
    text-align: left
}

.programs-hero .section-description {
    font-size: 20px;
    line-height: 1.8;
    color: #5f6b7a;
    max-width: 650px;
    text-align: left;
}

.exp-but {
    display: block;
    text-align: left;
    padding: 10px 15px;
    border-radius: 25px;
    width: 32%;
    margin: unset;
    background: linear-gradient(15deg, #0690f1, transparent);
}

.exp-but:hover {
    color: #fff;
}

/* Image */
.program-image {
    flex: 1;
    text-align: center;
}

.program-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Benefit Cards */
.program-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.program-benefit-card {
    background: #fff;
    padding: 25px 10px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all .3s ease;
}

.program-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Icon */
.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #eef3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.program-benefit-card h3 {
    font-size: 18px;
    line-height: 1.3;
    color: #12284c;
    font-weight: 600;
    margin: 0px 25px;
}

/* Responsive */
@media (max-width: 991px) {
    .programs-hero {
        flex-direction: column;
        text-align: center;
    }

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

    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .programs-hero .section-title {
        font-size: 42px;
    }
    a.exp-but {
        font-size: 15px;
        width: 44%;
    }
    .program-benefits {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 34px;
    }

    .section-description {
        font-size: 18px;
    }
}

/*3rd Sec*/

.curriculum-section {
    padding: 20px 0;
    background: #f8f9fc;
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: #fff5dd;
    color: #d89c00;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.curriculum-title {
    color: #12284c;
    margin-bottom: 20px;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 60px;
}

.curriculum-item {
    background: #f8f9fc;
    padding: 30px 20px;
    border-radius: 22px;
    transition: .35s ease;
    border: 2px solid transparent;
}

.curriculum-item:hover {
    transform: translateY(-12px);
    border-color: #f4b63d;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.curriculum-flag {
    font-size: 55px;
    margin-bottom: 25px;
}

.curriculum-item h3 {
    font-size: 24px;
    color: #12284c;
    margin-bottom: 18px;
}

.curriculum-item p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 17px;
}

@media(max-width:991px){
    .curriculum-grid{
        grid-template-columns:1fr;
    }
}

/*4th sec*/

.math-grade-section {
    padding: 20px 0;
    background: linear-gradient(to top, #f8fbff 0%, #eef4ff 100%);
}

.math-grade-section .section-header {
    max-width: 900px;
}

.grade-tabs{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin:60px 0;
}

.grade-tab{
    padding:14px 28px;
    border:none;
    border-radius:50px;
    background:#fff;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.grade-tab.active{
    background:#12284c;
    color:#fff;
}

.grade-content{
    max-width:1000px;
    margin:auto;
}

.grade-panel{
    display:none;
    align-items:center;
    gap:60px;
    background:#fff;
    padding:60px;
    border-radius:28px;
    box-shadow:0 15px 40px rgba(0,0,0,.07);
}

.grade-panel.active{
    display:flex;
}

.grade-number{
    min-width:180px;
    height:180px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:70px;
    color:#fff;
    font-weight:700;
}

.grade-info h3{
    font-size:36px;
    color:#12284c;
    margin-bottom:20px;
}

.grade-info p{
    font-size:18px;
    color:#6b7280;
    line-height:1.8;
    margin-bottom:25px;
}

.grade-info strong{
    background:#fff5dd;
    color:#d89c00;
    padding:12px 22px;
    border-radius:40px;
}

/* colors */
.blue{background:#3b82f6;}
.green{background:#22c55e;}
.yellow{background:#facc15;}
.purple{background:#8b5cf6;}
.orange{background:#f97316;}
.sky{background:#0ea5e9;}
.teal{background:#14b8a6;}

@media(max-width:991px){
    .grade-panel{
        flex-direction:column;
        text-align:center;
    }

    .grade-info h3{
        font-size:28px;
    }
}

/*5th sec*/

.learning-terms-section{
    padding:20px 0;
    background:#fff;
}

.learning-term-row{
    display:flex;
    align-items:center;
    gap:80px;
    margin-top:100px;
}

.learning-term-row.reverse{
    flex-direction:row-reverse;
}

.term-image{
    flex:1;
}

.term-image img{
    width:100%;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.term-content{
    flex:1;
}

.term-badge{
    display:inline-block;
    background:#12284c;
    color:#fff;
    padding:12px 15px;
    border-radius:40px;
    font-weight:700;
    margin-bottom:25px;
}

.term-content h3{
    font-size:40px;
    color:#12284c;
    margin-bottom:25px;
}

.term-content ul{
    list-style:none;
    padding:0;
}

.term-content ul li{
    position:relative;
    padding-left:35px;
    margin-bottom:18px;
    font-size:18px;
    color:#5f6b7a;
}

.term-content ul li:before{
    content:"✓";
    position:absolute;
    left:0;
    color:#f4b63d;
    font-weight:700;
    font-size:20px;
}

@media(max-width:991px){

    .learning-term-row,
    .learning-term-row.reverse{
        flex-direction:column;
        gap:40px;
        text-align:center;
    }

    .term-content ul li{
        padding-left:0;
    }

    .term-content ul li:before{
        display:none;
    }

    .term-content h3{
        font-size:30px;
    }
}

/*6th Sec*/

.child-skills-section{
    padding:20px 0;
    background:linear-gradient(135deg, #1A3A6E 0%, #0F2347 50%, #1A3A6E 100%);
}

.skills-showcase{
    display:flex;
    align-items:center;
    gap:80px;
    margin-top:80px;
}

.skills-image{
    flex:1;
}

.skills-image img{
    width:100%;
    border-radius:28px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.skills-list{
    flex:1;
}

.skill-highlight{
    background:#fff;
    padding:24px 35px;
    border-radius:60px;
    margin-bottom:22px;
    font-size:20px;
    font-weight:600;
    color:#12284c;
    box-shadow:0 12px 25px rgba(0,0,0,.06);
    transition:.3s ease;
}

.skill-highlight.offset{
    margin-left:60px;
}

.skill-highlight:hover{
    transform:translateX(10px);
    box-shadow:0 18px 35px rgba(0,0,0,.1);
}

@media(max-width:991px){

.skills-showcase{
    flex-direction:column;
}

.skill-highlight.offset{
    margin-left:0;
}

}

/*7th Sec*/

.learning-steps-section{
    padding:20px 0;
    background:#fff;
    text-align:center;
}

.learning-flow{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-top:90px;
    position:relative;
}

/* connecting line */
.learning-flow:before{
    content:"";
    position:absolute;
    top:70px;
    left:12%;
    width:76%;
    height:4px;
    background:#eef2f8;
    z-index:0;
}

.learning-step{
    position:relative;
    z-index:2;
    width:22%;
}

.step-circle{
    width:140px;
    height:140px;
    border-radius:50%;
    background:#12284c;
    margin:0 auto 30px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    box-shadow:0 20px 40px rgba(18,40,76,.15);
}

.step-circle img{
    width:55px;
}

.step-circle span{
    position:absolute;
    top:-8px;
    right:-8px;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#f4b63d;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    color:#12284c;
}

.learning-step h3{
    font-size:22px;
    color:#12284c;
    line-height:1.5;
}

.learning-step:hover .step-circle{
    transform:translateY(-12px);
    transition:.3s ease;
}

@media(max-width:991px){

.learning-flow{
    flex-direction:column;
    gap:60px;
}

.learning-flow:before{
    display:none;
}

.learning-step{
    width:100%;
}
}

/*HOW it work*/

.how-it-works-section{
    padding:20px 0;
    background:#fff;
}

.how-steps{
    margin-top:40px;
    position:relative;
}

.how-steps:before{
    content:"";
    position:absolute;
    left:45px;
    top:0;
    width:4px;
    height:100%;
    background:#eef2f8;
}

.how-step{
    display:flex;
    gap:40px;
    margin-bottom:0px;
    position:relative;
}

.step-count{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#12284c;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    font-weight:700;
    z-index:2;
}

.step-content{
    flex:1;
    display:flex;
    align-items:center;
    gap:50px;
    background:#f8f9fc;
    padding:40px;
    border-radius:24px;
}

.step-image{
    flex:1;
}

.step-image img{
    /*width:100%;*/
    border-radius:20px;
    height: 280px;
    object-fit: contain;
    object-position: center;
}

.step-text{
    flex:1;
}

.step-text h3{
    font-size:34px;
    color:#12284c;
    margin-bottom:20px;
}

.step-text p{
    font-size:18px;
    line-height:1.8;
    color:#5f6b7a;
}

@media(max-width:991px){

.step-content{
    flex-direction:column;
    padding: 20px 0px;
    gap: 10px;
}

.how-step{
    flex-direction:column;
}

.how-steps:before{
    display:none;
}
}

/*Live 1-on-1 math support*/

.tuition-experience-section{
    padding:20px 0;
    background:#fff;
}

.tuition-wrapper{
    display:flex;
    align-items:center;
    gap:80px;
}

.tuition-content{
    flex:1;
}

.tuition-image{
    flex:1;
}

.tuition-image img{
    width:100%;
    border-radius:28px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.tuition-points{
    margin-top:40px;
}

.tuition-point{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    padding:20px 28px;
    border-radius:18px;
    margin-bottom:18px;
    font-size:18px;
    font-weight:600;
    color:#12284c;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s ease;
}

.tuition-point:hover{
    transform:translateX(10px);
}

.tuition-point span{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#f4b63d;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#12284c;
    font-weight:700;
}

@media(max-width:991px){

.tuition-wrapper{
    flex-direction:column;
    text-align:center;
}

.tuition-point{
    justify-content:center;
}
}

/*Why choose parents*/

.why-choose-section{
    padding:20px 0;
    background:#f8f9fc;
}

.why-choose-wrapper{
    display:flex;
    gap:80px;
    align-items:flex-start;
}

.why-content{
    flex:1.2;
}

.why-stats{
    flex:1;
}

.why-point{
    margin-bottom:28px;
    padding-bottom:20px;
    border-bottom:1px solid #eef2f8;
}

.why-point h4{
    font-size:22px;
    color:#12284c;
    margin-bottom:10px;
}

.why-point p{
    color:#6b7280;
    line-height:1.7;
}

.stat-card{
    background:#12284c;
    color:#fff;
    padding:35px;
    border-radius:24px;
    margin-bottom:25px;
    text-align:center;
}

.stat-card h3{
    font-size:52px;
    margin-bottom:10px;
    color:#fff;
}

.testimonial-card{
    background:#f8f9fc;
    padding:28px;
    border-radius:20px;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.testimonial-card p{
    color:#5f6b7a;
    line-height:1.8;
    margin-bottom:15px;
}

.testimonial-card strong{
    color:#12284c;
}

@media(max-width:991px){

.why-choose-wrapper{
    flex-direction:column;
}

}

/********* PRICING PAGE *********/

.pricing-table-wrapper-cta {
    margin-top: 50px;
    display: flex;
}
.left-side-con {
    width: 50%;
}
.left-side-con h2 {
    margin-bottom: 20px;
}
.left-side-con ul li {
    margin-bottom: 10px;
}

.pricing-section{
    padding:120px 0;
    background:#f8f9fc;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:80px;
}

.pricing-card{
    background:#fff;
    padding:50px 35px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    position:relative;
}

.pricing-card.featured{
    background:#12284c;
    color:#fff;
    transform:scale(1.05);
}

.pricing-card.featured h3 {
    color: #fff;
}

.popular-badge{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#f4b63d;
    color:#12284c;
    padding:10px 20px;
    border-radius:40px;
    font-weight:700;
}

.price{
    font-size:56px;
    font-weight:700;
    margin:25px 0;
}

.price span{
    font-size:18px;
}

.pricing-card ul{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.pricing-card ul li{
    margin-bottom:16px;
    font-size:17px;
}

.pricing-btn{
    display:inline-block;
    padding:15px 35px;
    border-radius:50px;
    background:#f4b63d;
    color:#12284c;
    font-weight:700;
    text-decoration:none;
}

.pricing-btn:hover {
    color: #fff;
}

.pricing-table-wrapper{
    margin-top:120px;
}

.pricing-table-wrapper {
    margin-top: 0px !important;
    padding: 40px 0px !important;
}

.pricing-table{
    width:100%;
    border-collapse:collapse;
    margin-top:35px;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
}

.pricing-table th,
.pricing-table td{
    padding:22px;
    border-bottom:1px solid #eef2f8;
    text-align:center;
}

.pricing-table th{
    background:#12284c;
    color:#fff;
}

.pricing-cta{
    margin-top:100px;
    background:#12284c;
    color:#fff;
    text-align:center;
    padding:70px;
    border-radius:28px;
}

.pricing-cta h2 {
    color: #fff;
}

.cta-btn{
    display:inline-block;
    margin-top:25px;
    background:#f4b63d;
    color:#12284c;
    padding:16px 40px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.cta-btn:hover {
    color: #fff;
}

@media(max-width:991px){

.pricing-table-wrapper-cta {
    margin-top: 0px;
    display: block;
}
.left-side-con {
    width: auto;
}
.left-side-con ul li {
    margin-bottom: 0px;
}
.pricing-cta {
    padding: 25px !important;
    margin: 20px 0px !important;
}
.pricing-cta a {
    margin-top: 0px;
}
.pricing-grid{
grid-template-columns:1fr;
}

.pricing-card.featured{
transform:none;
}
}

/*Whatsapp*/

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: #fcb23c;
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 800;
}

.whatsapp-float:hover{
    color: #fff;
}

.whatsapp-float img{
    width: 60px;
    height: auto;
    display: block;
}

/*Summer Camp Page*/
/*Section1*/

.summer-hero{
    padding:60px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.summer-hero::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:500px;
    height:500px;
    background:linear-gradient(135deg,#dbeafe,#eff6ff);
    border-radius:50%;
    z-index:0;
}

.summer-hero::after{
    content:"";
    position:absolute;
    bottom:-140px;
    left:-140px;
    width:380px;
    height:380px;
    background:linear-gradient(135deg,#fef3c7,#fff7ed);
    border-radius:50%;
    z-index:0;
}

.summer-hero-grid {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.summer-hero-content,
.summer-hero-image {
    flex: 1;
}

.badge{
    display:inline-block;
    background:#f4b63d;
    color:#12284c;
    padding:12px 24px;
    border-radius:50px;
    font-weight:700;
    font-size:15px;
    margin-bottom:24px;
}

.summer-hero-content h1 {
    font-size: 50px;
    line-height: 1.05;
    color: #12284c;
    margin-bottom: 18px;
    font-weight: 800;
}

.summer-hero-content h3 {
    font-size: 24px;
    color: #888;
    margin-bottom: 22px;
    font-weight: 700;
}

.summer-hero-content p {
    color: #64748b;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 20px;
}

.summer-hero-content ul {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    margin: 0 0 0px;
    padding: 0;
    list-style: none;
}

.summer-hero-content ul li{
    background:#f8fafc;
    border:1px solid #e2e8f0;
    padding:12px 14px;
    border-radius:18px;
    color:#12284c;
    font-size: 15px;
    font-weight:600;
    transition:.3s ease;
}

.summer-hero-content ul li:hover{
    transform:translateY(-5px);
    box-shadow:0 14px 30px rgba(37,99,235,.08);
}

.summer-hero-content ul li::before{
    content:"✓";
    color:#2563eb;
    font-weight:700;
    margin-right:10px;
}

.cta-btn {
    display: inline-block;
    padding: 18px 42px;
    /*background:#12284c;*/
    background: #8c97a826;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: .3s ease;
    box-shadow: 0 14px 30px rgba(18,40,76,.16);
}

.cta-btn:hover{
    transform:translateY(-4px);
}

.summer-hero-image {
    position: relative;
}

.summer-hero-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    border:10px solid #fff;
}

.summer-hero-image::before{
    content:"";
    position:absolute;
    inset:-20px;
    border:2px dashed #dbeafe;
    border-radius:40px;
    z-index:-1;
}

@media(max-width:991px){

.summer-hero-grid{
    flex-direction:column;
    gap:50px;
}

.summer-hero-content h1{
    font-size:42px;
}

summer-.hero-content h3{
    font-size:22px;
}

summer-.hero-content ul{
    grid-template-columns:1fr;
}

}

/*section 2*/

.why-join{
    padding:20px 0;
    background:#f8f9fc;
    position:relative;
    overflow:hidden;
}

/*.why-join::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:320px;
    height:320px;
    background:#e0f2fe;
    border-radius:50%;
    opacity:.5;
}*/

/*.why-join::after{
    content:"";
    position:absolute;
    bottom:-100px;
    left:-100px;
    width:260px;
    height:260px;
    background:#fef3c7;
    border-radius:50%;
    opacity:.45;
}*/

.why-join .container{
    position:relative;
    z-index:2;
}

.why-join h2{
    text-align:center;
    font-size:50px;
    color:#12284c;
    margin-bottom:70px;
    font-weight:800;
    position:relative;
}

/*.why-join h2::after{
    content:"";
    width:100px;
    height:5px;
    background:#f4b63d;
    display:block;
    margin:20px auto 0;
    border-radius:50px;
}*/

.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:#fff;
    border-radius:28px;
    padding:30px 30px;
    text-align:center;
    font-size:18px;
    font-weight:700;
    color:#12284c;
    position:relative;
    box-shadow:0 20px 45px rgba(0,0,0,.06);
    transition:.35s ease;
    border:1px solid #eef2f8;
    min-height:150px;
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:1.5;
}

.card::before{
    content:"★";
    position:absolute;
    top:10px;
    left:10px;
    width:40px;
    height:40px;
    border-radius:50%;
    background:#f4b63d;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    color:#12284c;
    font-weight:900;
}

.card:hover{
    transform:translateY(-14px);
    box-shadow:0 25px 60px rgba(37,99,235,.12);
    border-color:#bfdbfe;
}

.card:nth-child(2)::before,
.card:nth-child(5)::before{
    background:#dbeafe;
    color:#2563eb;
}

.card:nth-child(3)::before,
.card:nth-child(6)::before{
    background:#dcfce7;
    color:#16a34a;
}

.card:nth-child(4)::before{
    background:#fef3c7;
    color:#d97706;
}

@media(max-width:991px){

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

.why-join h2{
    font-size:38px;
}

.card{
    min-height:auto;
    padding:38px 24px;
    font-size:20px;
}

}

/*section 3*/

.camp-levels{
    padding:30px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.camp-levels::before{
    content:"";
    position:absolute;
    top:-150px;
    left:-150px;
    width:380px;
    height:380px;
    background:#eff6ff;
    border-radius:50%;
    z-index:0;
}

.camp-levels::after{
    content:"";
    position:absolute;
    bottom:-120px;
    right:-120px;
    width:300px;
    height:300px;
    background:#fef3c7;
    border-radius:50%;
    z-index:0;
    opacity:.55;
}

.camp-levels .container{
    position:relative;
    z-index:2;
}

.camp-levels h2{
    text-align:center;
    font-size:54px;
    color:#12284c;
    margin-bottom:80px;
    font-weight:800;
    position:relative;
}

.camp-levels h2::after{
    content:"";
    width:100px;
    height:5px;
    background:#f4b63d;
    display:block;
    margin:20px auto 0;
    border-radius:50px;
}

.levels-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.level-card {
    background: #fff;
    padding: 55px 35px;
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
    border: 1px solid #eef2f8;
    position: relative;
    transition: .35s ease;
}

.level-card::before{
    /*content:"LEVEL";
    position:absolute;
    top:10px;
    right:24px;
    background:#eff6ff;
    color:#2563eb;
    font-size:12px;
    font-weight:700;
    padding:8px 14px;
    border-radius:50px;
    letter-spacing:1px;*/
}

.level-card h3{
    font-size:22px;
    color:#12284c;
    margin-bottom:25px;
    font-weight:800;
    line-height:1.3;
}

.level-card ul{
    margin:0 0 28px;
    padding:0;
    list-style:none;
}

.level-card ul li{
    padding:14px 0;
    color:#334155;
    font-weight:600;
    border-bottom:1px solid #eef2f8;
    position:relative;
    padding-left:28px;
}

.level-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#2563eb;
    font-weight:800;
}

.level-card p{
    color:#64748b;
    line-height:1.9;
    font-size:15px;
}

.level-card:hover{
    transform:translateY(-14px);
    box-shadow:0 25px 65px rgba(37,99,235,.12);
}

.level-card.featured{
    background:#12284c;
    color:#fff;
    transform:scale(1.06);
    box-shadow:0 28px 70px rgba(18,40,76,.22);
}

.level-card.featured::before{
    /*content:"MOST POPULAR";
    background:#f4b63d;
    color:#12284c;*/
}

.level-card.featured h3,
.level-card.featured ul li,
.level-card.featured p{
    color:#fff;
}

.level-card.featured ul li{
    border-color:rgba(255,255,255,.15);
}

.level-card.featured ul li::before{
    color:#f4b63d;
}

a.cta-btn.math-Magicians {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 60px;
    background: #12284c;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 20px 45px rgba(244, 182, 61, .28);
    transition: .35s ease;
    margin-bottom: 20px;
    margin-top: 10px;
}

a.cta-btn.math-ninja {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 60px;
    background: #f4b63d;
    color: #12284c;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 20px 45px rgba(244, 182, 61, .28);
    transition: .35s ease;
    margin-bottom: 20px;
    margin-top: 10px;
}

@media(max-width:991px){

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

.level-card.featured{
    transform:none;
}

.camp-levels h2{
    font-size:40px;
}

.level-card{
    padding:42px 25px;
}

.level-card h3{
    font-size:24px;
}

}

/*section 4*/

.camp-roadmap{
    padding:40px 0;
    background:#f8f9fc;
}

.camp-roadmap h2{
    text-align:center;
    font-size:54px;
    font-weight:800;
    color:#12284c;
    margin-bottom:80px;
}

.roadmap-grid{
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:35px;
}

.roadmap-card{
    background:#fff;
    border-radius:30px;
    padding:40px;
    box-shadow:0 18px 45px rgba(0,0,0,.06);
}

.roadmap-card h3{
    font-size:28px;
    margin-bottom:30px;
    color:#12284c;
    font-weight:800;
}

.roadmap-card table{
    width:100%;
    border-collapse:collapse;
}

.roadmap-card th{
    background:#12284c;
    color:#fff;
    padding:18px;
    text-align:left;
}

.roadmap-card td{
    padding:14px;
    border-bottom:1px solid #eef2f8;
    font-weight:600;
    color:#334155;
}

.roadmap-card tr:hover td{
    background:#f8fbff;
}

.roadmap-card td:first-child{
    color:#444;
    font-weight:800;
}

@media(max-width:991px){

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

.camp-roadmap h2{
font-size:40px;
}

.roadmap-card{
padding:25px;
}

}

/*section 5*/

.camp-plans{
    padding:40px 0;
    background:#fff;
}

.camp-plans h2{
    text-align:center;
    font-size:50px;
    color:#12284c;
    font-weight:800;
    margin-bottom:40px;
}

.plans-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:35px;
}

.plans-card{
    background:#fff;
    border-radius:30px;
    padding:40px;
    box-shadow:0 18px 45px rgba(0,0,0,.06);
    border:1px solid #eef2f8;
}

.plans-card h3{
    font-size:28px;
    color:#12284c;
    margin-bottom:30px;
    font-weight:800;
}

.plans-card table{
    width:100%;
    border-collapse:collapse;
    margin-bottom:25px;
}

.plans-card th{
    background:#12284c;
    color:#fff;
    padding:18px;
    text-align:left;
}

.plans-card td{
    padding:14px;
    border-bottom:1px solid #eef2f8;
    color:#334155;
    font-weight:600;
    font-size: 14px;
}

.plans-card tr:hover td{
    background:#f8fbff;
}

.plans-card td:first-child{
    color:#444;
    font-weight:800;
}

.featured-row td{
    background:#eff6ff;
    color:#12284c;
    font-weight:800;
}

.offers{
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    gap:14px;
}

.offers li{
    background:#f8fbff;
    padding:16px 18px;
    border-radius:16px;
    font-weight:700;
    color:#12284c;
}

.offers li::before{
    content:"✓ ";
    color:#2563eb;
    font-weight:900;
}

@media(max-width:991px){

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

.camp-plans h2{
font-size:40px;
}

.plans-card{
padding:25px;
overflow:auto;
}

table{
/*min-width:700px;*/
min-width: auto;
}

}

/*section 6*/
.camp-benefits{
    padding:30px 0;
    background:#f8f9fc;
}

.camp-benefits h2{
    text-align:center;
    font-size:50px;
    color:#12284c;
    font-weight:800;
    margin-bottom:40px;
}

.benefits-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

.benefits-card{
    background:#fff;
    border-radius:30px;
    padding:45px;
    box-shadow:0 18px 45px rgba(0,0,0,.06);
    border:1px solid #eef2f8;
}

.benefits-card h3{
    font-size:30px;
    margin-bottom:35px;
    color:#12284c;
    font-weight:800;
}

.bonus-items{
    display:grid;
    gap:18px;
}

.bonus-box{
    background:#f8fbff;
    padding:20px 24px;
    border-radius:18px;
    font-weight:700;
    color:#12284c;
    transition:.3s ease;
}

.bonus-box:hover{
    transform:translateX(8px);
    background:#eff6ff;
}

.bonus-box::before{
    content:"🎁 ";
}

.why-card{
    background:#12284c;
    color:#fff;
}

.why-card h3{
    color:#fff;
}

.why-card ul{
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    gap:22px;
}

.why-card li{
    background:rgba(255,255,255,.08);
    padding:18px 20px;
    border-radius:18px;
    font-weight:600;
    line-height:1.6;
}

.why-card li::before{
    content:"✓ ";
    color:#f4b63d;
    font-weight:900;
}

@media(max-width:991px){

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

.camp-benefits h2{
font-size:40px;
}

.benefits-card{
padding:25px;
}

}

/*section 7*/
.faq{
    padding:40px 0;
    background:
        radial-gradient(circle at top right,#dbeafe 0%,transparent 35%),
        radial-gradient(circle at bottom left,#fef3c7 0%,transparent 30%),
        linear-gradient(135deg,#12284c 0%,#1e3a8a 100%);
    position:relative;
    overflow:hidden;
}

/*.faq .container{
    max-width:1100px;
    margin:auto;
}*/

.faq h2{
    text-align:center;
    font-size:50px;
    color:#fff;
    margin-bottom:40px;
    font-weight:800;
    position:relative;
    line-height:1.2;
}

/*.faq h2::after{
    content:"";
    width:110px;
    height:5px;
    background:#f4b63d;
    display:block;
    margin:20px auto 0;
    border-radius:50px;
}*/

.faq-item{
    position:relative;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.14);
    border-radius:24px;
    padding:20px 25px 20px 95px;
    margin-bottom:22px;
    transition:.35s ease;
}

.faq-item::before{
    content:"?";
    position:absolute;
    left:28px;
    top:50%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    border-radius:50%;
    background:#f4b63d;
    color:#12284c;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:800;
    box-shadow:0 10px 25px rgba(244,182,61,.35);
}

.faq-item:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.14);
    border-color:rgba(255,255,255,.24);
}

.faq-item h4{
    color:#fff;
    font-size:24px;
    margin-bottom:0px;
    font-weight:700;
    line-height:1.4;
}

.faq-item p{
    color:#dbeafe;
    line-height:1.9;
    font-size:17px;
    margin:0;
}

@media(max-width:991px){

    .faq{
        padding:100px 0;
    }

    .faq h2{
        font-size:40px;
        margin-bottom:50px;
    }

    .faq-item{
        padding:24px 22px 24px 80px;
    }

    .faq-item::before{
        width:38px;
        height:38px;
        left:22px;
        font-size:18px;
    }

    .faq-item h4{
        font-size:20px;
    }

    .faq-item p{
        font-size:16px;
    }

}

/*section 8*/
.final-cta{
    padding:40px 0;
    background:
        radial-gradient(circle at top left,#60a5fa 0%,transparent 25%),
        radial-gradient(circle at bottom right,#f4b63d 0%,transparent 20%),
        linear-gradient(135deg,#08142d 0%,#12284c 45%,#1e3a8a 100%);
    position:relative;
    overflow:hidden;
    text-align:center;
}

.final-cta::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}

.final-cta::after{
    content:"";
    position:absolute;
    bottom:-160px;
    left:-160px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(244,182,61,.08);
}

/*.final-cta .container{
    position:relative;
    z-index:2;
    max-width:1050px;
}*/

.final-cta h2{
    font-size:50px;
    color:#fff;
    font-weight:900;
    margin-bottom:10px;
    line-height:1.08;
    letter-spacing:-1px;
}

.final-cta h2 span{
    color:#f4b63d;
}

.final-cta > .container > p:first-of-type{
    font-size:15px;
    color:#dbeafe;
    line-height:1.5;
    max-width:850px;
    margin:0 auto 40px;
}

.final-cta ul{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
    margin:0 0 40px;
    padding:0;
    list-style:none;
}

.final-cta ul li{
    background:rgba(255,255,255,.1);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.12);
    padding:10px 20px;
    border-radius:50px;
    color:#fff;
    font-weight:700;
    font-size:16px;
    transition:.35s ease;
}

.final-cta ul li:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.16);
}

.final-cta ul li::before{
    content:"✓ ";
    color:#f4b63d;
    font-weight:900;
}

.final-cta .cta-btn{
    display:inline-block;
    padding:10px 25px;
    border-radius:60px;
    background:#f4b63d;
    color:#12284c;
    text-decoration:none;
    font-size:17px;
    font-weight:800;
    box-shadow:0 20px 45px rgba(244,182,61,.28);
    transition:.35s ease;
    margin-bottom:20px;
    margin-top: 10px;
}

.final-cta .cta-btn:hover{
    transform:translateY(-8px) scale(1.03);
    box-shadow:0 28px 60px rgba(244,182,61,.35);
}

.final-cta > .container > p:last-of-type{
    color:#dbeafe;
    font-size:16px;
    font-weight:600;
    letter-spacing:.5px;
    opacity:.95;
}

/*.final-cta > .container > a:last-of-type::before{
    content:"✉ ";
    color:#f4b63d;
}*/

@media(max-width:991px){

.final-cta{
padding:110px 0;
}

.final-cta h2{
font-size:44px;
}

.final-cta > .container > p:first-of-type{
font-size:18px;
}

.final-cta ul{
flex-direction:column;
align-items:center;
}

.final-cta .cta-btn{
padding:18px 42px;
font-size:18px;
}

}

/*Aboutus new design*/

.section-tag{
display:inline-block;
padding:10px 18px;
background:#eff6ff;
color:#2563eb;
border-radius:40px;
font-weight:700;
margin-bottom:20px;
}

.about-intro{
padding:20px 0;
text-align:center;
}

.about-intro h2{
font-size:50px;
margin:0 auto 30px;
line-height:1.1;
color:#12284c;
}

span.educator-label-link a {
    padding: 8px 15px;
    font-size: 14px;
    background: #172a4d;
    color: #fff;
    border-radius: 25px;
}

span.educator-label-link a:hover {
    color: #f5a623;
}

/*.about-intro p{
max-width:900px;
margin:0 auto 20px;
font-size:18px;
line-height:1.9;
color:#4b5563;
}*/

.about-story,
.trust-section,
.parents-section{
padding:40px 0;
}

.story-grid,
.trust-grid,
.parents-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
}

.story-image img,
.trust-image img,
.parents-image img{
width:100%;
border-radius:30px;
display:block;
height: 380px;
object-fit: cover;
}

.story-content h2,
.trust-content h2,
.parents-content h2{
font-size:45px;
margin-bottom:25px;
color:#12284c;
}

.story-content p,
.parents-content p {
    /*font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;*/
    text-align: justify;
    letter-spacing: -0.19px;
}

.methodology{
padding:20px 0;
background:#f8fbff;
}

.section-heading{
text-align:center;
margin-bottom:30px;
}

.section-heading h2{
font-size:50px;
color:#12284c;
}

.method-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.method-card{
background:#fff;
padding:35px;
border-radius:24px;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.method-card h3{
margin-bottom:15px;
color:#12284c;
}

/*.method-card p{
line-height:1.8;
}*/

.trust-content ul{
list-style:none;
padding:0;
margin:0;
display:grid;
gap:8px;
}

.trust-content li{
padding:10px 22px;
background:#f8fbff;
border-radius:16px;
font-weight:600;
}

.trust-content li:before{
content:"✓ ";
color:#2563eb;
font-weight:800;
}

.parents-section {
    background: #f8fbff;
}

.mission-vision-section{
padding:30px 0;
background:#12284c;
}

.mv-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.mv-card{
background:rgba(255,255,255,.08);
padding:45px;
border-radius:30px;
}

.mv-card h3{
color:#fff;
font-size:32px;
margin-bottom:20px;
}

.mv-card p{
color:#dbeafe;
line-height:1.9;
}

@media(max-width:991px) {

    .about-intro-content {
        text-align: left;
    }

span.educator-label-link a {
    padding: 8px 11px;
    font-size: 10px;
}

.story-grid,
.trust-grid,
.parents-grid,
.mv-grid,
.method-grid{
grid-template-columns:1fr;
}

.about-intro h2{
font-size:36px;
}

.story-content h2,
.trust-content h2,
.parents-content h2,
.section-heading h2{
font-size:36px;
}

}


/*FAQ PAGE*/

.faq-page-section{
padding:50px 0;
background:#f8fafc;
}

.faq-header{
text-align:center;
max-width:850px;
margin:0 auto 60px;
}

.faq-badge{
display:inline-block;
padding:10px 18px;
background:#dbeafe;
color:#2563eb;
font-weight:600;
border-radius:30px;
margin-bottom:20px;
}

.faq-header h2{
font-size:45px;
margin-bottom:20px;
color:#0f172a;
}

.faq-header p{
font-size:18px;
line-height:1.8;
color:#64748b;
}

.faq-list{
display:grid;
gap:25px;
}

.faq-card{
background:#fff;
padding:35px;
border-radius:22px;
box-shadow:0 15px 40px rgba(0,0,0,.05);
border-left:5px solid #2563eb;
transition:.3s;
}

.faq-card:hover{
transform:translateY(-4px);
}

.faq-card h3{
font-size:24px;
margin-bottom:18px;
color:#0f172a;
}

.faq-card p{
line-height:1.9;
color:#475569;
margin-bottom:15px;
}

.faq-card ul{
padding-left:20px;
margin:15px 0;
}

.faq-card li{
margin-bottom:10px;
line-height:1.7;
color:#475569;
}

.faq-contact-box{
margin-top:70px;
text-align:center;
background:#0f172a;
padding:40px 40px;
border-radius:30px;
}

.faq-contact-box h3{
font-size:40px;
color:#fff;
margin-bottom:20px;
}

.faq-contact-box p{
max-width:700px;
margin:0 auto 30px;
color:#cbd5e1;
line-height:1.8;
}

.faq-btn{
display:inline-block;
padding:15px 35px;
background:#2563eb;
color:#fff;
text-decoration:none;
border-radius:50px;
font-weight:600;
}

.faq-btn:hover{
background:#1d4ed8;
}

@media(max-width:768px){

.faq-header h2{
font-size:36px;
}

.faq-card{
padding:25px;
}

.faq-card h3{
font-size:20px;
}

}

/******** WHAT WE TECH ********/

.teach-hero{
    padding:100px 0;
    background:#fff;
    overflow:hidden;
}

.tech-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:center;
}

.tech-content h1{
    font-size:45px;
    line-height:1.15;
    font-weight:800;
    color:#0f172a;
    margin-bottom:25px;
    max-width:700px;
}

.tech-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
    word-spacing: -0.2px;
    text-align: justify;
}

.tech-content p:last-child{
    margin-bottom:0;
}

.tech-image{
    position:relative;
}

.tech-image::before{
    content:'';
    position:absolute;
    width:320px;
    height:320px;
    background:linear-gradient(
        135deg,
        rgba(37,99,235,.15),
        rgba(14,165,233,.12)
    );
    border-radius:50%;
    top:-40px;
    right:-50px;
    z-index:1;
}

.tech-image::after{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(59,130,246,.08);
    border-radius:50%;
    bottom:-30px;
    left:-30px;
    z-index:1;
}

.tech-image img{
    width:100%;
    display:block;
    border-radius:30px;
    position:relative;
    z-index:2;
    box-shadow:
    0 25px 60px rgba(15,23,42,.12);
}

@media(max-width:991px){

    .teach-hero{
        padding:70px 0;
    }

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

    .tech-content{
        text-align:center;
    }

    .tech-content h1{
        font-size:38px;
        margin:auto auto 20px;
    }

    .tech-image::before,
    .tech-image::after{
        display:none;
    }
}
.learning-path{
    padding:50px 0;
    background:linear-gradient(
        180deg,
        #f8fbff 0%,
        #eef6ff 100%
    );
}

.learn-section-header{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.learn-section-header h2{
    font-size:42px;
    color:#0f172a;
    margin-bottom:15px;
}

.learn-section-header p{
    font-size:18px;
    color:#64748b;
}

.path-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.path-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    position:relative;
    box-shadow:0 15px 40px rgba(15,23,42,.06);
    transition:.35s;
    display:flex;
    flex-direction:column;
    height:100%;
    overflow:hidden;
}

.path-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(15,23,42,.12);
}

.path-card span{
    display:inline-flex;
    width:max-content;
    padding:8px 18px;
    border-radius:50px;
    background:#eff6ff;
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.path-card h3{
    font-size:28px;
    color:#0f172a;
    margin-bottom:20px;
}

.path-card h4{
    font-size:16px;
    color:#2563eb;
    margin-bottom:15px;
}

.path-card ul{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}

.path-card ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:12px;
    line-height:1.6;
    color:#475569;
}

.path-card ul li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#10b981;
    font-weight:700;
}

.outcome{
    margin-top:auto;
    background:#f8fafc;
    border-radius:16px;
    padding:20px;
    border-left:4px solid #2563eb;
}

.outcome strong{
    display:block;
    color:#0f172a;
    margin-bottom:10px;
}

.outcome p{
    margin:0;
    color:#64748b;
    line-height:1.7;
}

.path-card-featured{
    /*background:linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );*/
    background: #172a4d;
    color:#fff;
}

.path-card-featured span{
    background:rgba(255,255,255,.15);
    color:#fff;
}

.path-card-featured h3,
.path-card-featured h4{
    color:#fff;
}

.path-card-featured ul li{
    color:rgba(255,255,255,.92);
}

.path-card-featured ul li:before{
    color:#fff;
}

.path-card-featured .outcome{
    background:rgba(255,255,255,.12);
    border-left:4px solid #fff;
}

.path-card-featured .outcome strong,
.path-card-featured .outcome p{
    color:#fff;
}

@media(max-width:768px){

    .learning-path{
        padding:70px 0;
    }

    .learn-section-header h2{
        font-size:32px;
    }

    .path-card{
        padding:25px;
    }

    .path-card h3{
        font-size:24px;
    }
}

.math-areas{
    padding:30px 0;
    background:#fff;
}

.math-areas h2{
    text-align:center;
    margin-bottom:60px;
    font-size:42px;
}

.areas-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.area-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-top:5px solid #2563eb;
    border-radius:18px;
    padding:30px;
    transition:.3s;
}

.area-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.area-card h3{
    margin-bottom:12px;
    font-size:22px;
}

.curriculum-align{
    padding:30px 0;
    background:#f8f8fc;
}

.align-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.align-content h2{
    font-size:42px;
    margin-bottom:25px;
}

.align-content ul{
    margin:20px 0;
    padding-left:0;
    list-style:none;
}

.align-content li{
    margin-bottom:7px;
    padding-left:30px;
    position:relative;
}

.align-content li:before{
    content:"✓";
    position:absolute;
    left:0;
    color:#2563eb;
    font-weight:700;
}

.align-image img{
    width:100%;
    border-radius:24px;
    box-shadow:0 30px 60px rgba(37,99,235,.15);
}

.learning-beyond{
    padding:30px 0;
    background: #172a4d;
    color:white;
}

.beyond-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.beyond-image img{
    width:100%;
    border-radius:24px;
    box-shadow:0 30px 60px rgba(0,0,0,.25);
}

.beyond-content h2{
    font-size:48px;
    margin-bottom:25px;
    color:white;
}

.beyond-content p{
    color:#dbeafe;
    margin-bottom:15px;
    line-height:1.7;
    text-align: justify;
    letter-spacing: -0.1px;
}

.beyond-content .cta-btn{
    display:inline-block;
    margin-top:20px;
    background:white;
    color:#2563eb;
    padding:16px 32px;
    border-radius:999px;
    font-weight:700;
    text-decoration:none;
}

.preview-section{
    padding:30px 0;
    background:#fff;
}

.preview-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.section-header h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-header p{
    color:#64748b;
}

.preview-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

.lesson-box,
.worksheet-box{
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    border:1px solid #e5e7eb;
}

.preview-badge{
    display:inline-block;
    padding:8px 18px;
    background:#dbeafe;
    color:#1d4ed8;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.lesson-box h3,
.worksheet-box h3{
    margin-bottom:25px;
    font-size:28px;
}

.lesson-box h4{
    margin-top:20px;
    margin-bottom:10px;
    color:#1e293b;
}

.lesson-box ul{
    margin-top:15px;
    padding-left:20px;
}

.lesson-box ul li{
    margin-bottom:10px;
}

.worksheet-box ol{
    padding-left:22px;
}

.worksheet-box ol li{
    margin-bottom:15px;
}

.answers{
    margin-top:30px;
    padding:20px;
    background:#eff6ff;
    border-radius:14px;
}

.answers h4{
    margin-bottom:12px;
    color:#1d4ed8;
}

@media(max-width:991px){

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

}

/*SUCCESS STORIES PAGE*/

.storyvault-hero{
padding:50px 0;
background:#fff;
}

.storyvault-hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.storyvault-content span{
display:inline-block;
padding:8px 18px;
background:#dbeafe;
color:#2563eb;
border-radius:999px;
font-weight:600;
margin-bottom:20px;
}

.storyvault-content h1{
font-size:45px;
margin-bottom:25px;
line-height:1.1;
}

.storyvault-content p{
margin-bottom:18px;
text-align: justify;
word-spacing: -0.19px;
letter-spacing: -0.2px;
}

.storyvault-image img{
width:100%;
border-radius:24px;
}

.storyvault-students{
padding:30px 0;
background:#f8f9fc;
}

.storyvault-heading{
text-align:center;
margin-bottom:60px;
}

.storyvault-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.story-card{
background:white;
padding:35px;
border-radius:24px;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.story-score{
display:flex;
gap:15px;
margin-bottom:20px;
}

.story-score span{
background:#2563eb;
color:white;
padding:10px 18px;
border-radius:999px;
font-weight:700;
}

.story-tag{
display:inline-block;
background:#e0f2fe;
padding:10px 18px;
border-radius:999px;
font-weight:600;
margin-bottom:20px;
}

.story-card ul{
margin-top:15px;
padding-left:18px;
}

.story-card blockquote{
margin-top:20px;
padding:15px;
background:#eff6ff;
border-left:4px solid #2563eb;
border-radius:10px;
}

.storyvault-benefits{
padding:30px 0;
background:white;
}

.storyvault-benefits h2{
text-align:center;
margin-bottom:50px;
}

.difference-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.difference-card{
background:#f8fafc;
padding:30px;
border-radius:20px;
}

.storyvault-parents{
padding:30px 0;
background:#f8fafc;
}

.storyvault-parents h2{
text-align:center;
margin-bottom:50px;
}

.parent-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.parent-card{
background:white;
padding:35px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.05);
font-style:italic;
}

.storyvault-cta{
padding:30px 0;
background:#172a4d;
color:white;
text-align:center;
}

.storyvault-cta h2{
font-size:48px;
margin-bottom:25px;
color:white;
}

.storyvault-cta p{
max-width:850px;
margin:0 auto 20px;
color:#dbeafe;
}

.storyvault-cta .cta-btn{
display:inline-block;
margin-top:25px;
background:white;
color:#2563eb;
padding:16px 35px;
border-radius:999px;
font-weight:700;
text-decoration:none;
}

/*MOBILE RESPONSIVE*/

@media (max-width: 768px) {
    .storyvault-hero-grid {
        grid-template-columns: 1fr;
    }
    .storyvault-content {
        order: 2;
    }
    .storyvault-grid {
        grid-template-columns: 1fr;
    }
    .difference-grid {
        grid-template-columns: 1fr;
    }
    .parent-grid {
        grid-template-columns: 1fr;
    }
    .storyvault-cta h2 {
        font-size: 30px;
    }
}

/*TESTIMONIAL SECTION*/

.ap-testimonials{
padding:30px 0;
background:#f8f9fc;
}

.ap-testimonials::before {
content: "";
position: absolute;
right: -70px;
width: 500px;
height: 500px;
border-radius: 700px 500px 1000px 50px;
background: rgb(34 75 165 / 9%);
}

.ap-container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

.ap-heading{
text-align:center;
margin:0 auto 60px;
}

.ap-badge{
display:inline-block;
padding:8px 18px;
background:#fff4d6;
color:#d49300;
border-radius:50px;
font-size:12px;
font-weight:700;
letter-spacing:1px;
}

.ap-heading h2{
margin:20px 0 15px;
color:#142b5f;
font-size:42px;
line-height:1.2;
}

.ap-heading p{
color:#666;
line-height:1.8;
}

.ap-testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.ap-card{
background:#fff;
padding:35px;
border-radius:20px;
border:1px solid #edf1f7;
position:relative;
transition:.3s ease;
box-shadow:0 5px 20px rgba(0,0,0,.04);
}

.ap-card:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.ap-card:before{
content:"❝";
position:absolute;
right:20px;
top:10px;
font-size:60px;
color:#eef2f7;
}

.ap-stars{
color:#ffb400;
font-size:20px;
margin-bottom:15px;
}

.ap-card p{
color:#555;
line-height:1.8;
margin-bottom:25px;
}

.ap-author{
border-top:1px solid #eee;
padding-top:20px;
}

.ap-author h4{
margin:0 0 5px;
color:#142b5f;
font-size:18px;
}

.ap-author span{
color:#777;
font-size:14px;
}

@media(max-width:1024px){
.ap-testimonial-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:767px){

.ap-testimonials::before {
    width: 100%;
    height: 100%;
    right: 0px;
}

.ap-heading h2{
    font-size:32px;
}

.ap-testimonial-grid{
    grid-template-columns:1fr;
}

}


/*INSTRUCTOR DETAILS PAGE*/

.educators-details-page{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
}

.page-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.page-header span{
    display:inline-block;
    padding:8px 18px;
    background:#fff4d8;
    color:#d99700;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
}

.page-header h1{
    font-size:52px;
    color:#142b5f;
    margin:20px 0;
}

.page-header p{
    color:#666;
    line-height:1.8;
}

.educator-detail-card{
    background:#fff;
    border:1px solid #edf1f6;
    border-radius:24px;
    padding:50px;
    margin-bottom:35px;
    box-shadow:0 10px 40px rgba(0,0,0,.04);
    transition:.3s;
}

.educator-detail-card:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.role-badge{
    display:inline-block;
    padding:8px 14px;
    border-radius:50px;
    background:#eef4ff;
    color:#142b5f;
    font-size:13px;
    font-weight:600;
}

.card-top h2{
    color:#142b5f;
    margin:15px 0 8px;
    font-size:34px;
}

.card-top h4{
    color:#777;
    margin-bottom:25px;
    font-weight:500;
}

.educator-detail-card p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
}

.focus-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.focus-grid div{
    background:#f8fafc;
    border-left:4px solid #f4b400;
    padding:15px 18px;
    border-radius:10px;
    font-weight:500;
    color:#142b5f;
}

@media(max-width:768px){

    .page-header {
        margin: 20px auto 70px;
    }

    .educators-details-page {
        padding: 0px 20px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .educator-detail-card{
        padding:30px;
    }

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

}

/*CURRICULUM COVERAGE PAGE*/

.curriculum-hero{
	padding:40px 0;
	background:#fff;
}

.curriculum-hero-grid{
	display:grid;
	grid-template-columns:1.1fr .9fr;
	gap:70px;
	align-items:center;
}

.curriculum-tag{
	display:inline-block;
	padding:10px 18px;
	background:#eef4ff;
	border-radius:50px;
	font-size:14px;
	font-weight:700;
	color:#2563eb;
	margin-bottom:20px;
}

.curriculum-hero h1{
	font-size:40px;
	line-height:1.15;
	margin-bottom:15px;
}

.curriculum-hero p{
	line-height:1.7;
}

.curriculum-hero-image img{
	width:100%;
	border-radius:24px;
	box-shadow:0 25px 60px rgba(0,0,0,.12);
}


.curriculum-programs{
	padding:40px 0;
	background:#f8f9fc;
}

.curriculum-heading{
    text-align: center;
    margin-bottom: 60px;
}

.curriculum-heading h2{
	font-size:40px;
	margin-bottom:15px;
}

.curriculum-heading p{
	max-width:700px;
	margin:auto;
	color:#666;
}

.curriculum-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:30px;
}

.curriculum-card{
	background:#fff;
	padding:35px;
	border-radius:24px;
	box-shadow:0 15px 45px rgba(0,0,0,.07);
	transition:.3s;
}

.curriculum-card:hover{
	transform:translateY(-8px);
}

.curriculum-card h3{
	margin-bottom:10px;
	font-size:24px;
}

.curriculum-card span{
	display:inline-block;
	margin-bottom:18px;
	font-weight:700;
	color:#2563eb;
}

.curriculum-card p{
	color:#666;
	line-height:1.8;
}

.featured-card {
    background: linear-gradient(to top, #172a4d, #172a4deb);
}

.featured-card h3,
.featured-card p,
.featured-card span{
	color:#fff;
}


.aligned-learning{
	padding:40px 0;
	background:#fff;
}

.aligned-grid{
	display:grid;
	grid-template-columns:.9fr 1.1fr;
	gap:70px;
	align-items:center;
}

.aligned-image img{
	width:100%;
	border-radius:24px;
	box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.aligned-content h2{
	font-size:40px;
	margin-bottom:15px;
}

.aligned-content p{
	line-height:1.7;
	margin-bottom:10px;
}

.aligned-content ul{
	list-style:none;
	padding:0;
	margin:15px 0;
}

.aligned-content li{
	background:#f2f4f9;
	padding:5px 10px;
	margin-bottom:8px;
	border-radius:12px;
	font-weight:500;
    transition: all ease .3s;
}

.aligned-content li::before {
    content: "→ ";
}

.aligned-content li:hover {
    transform: translateX(5px);
}

@media(max-width:991px){

    .curriculum-hero-grid,
    .aligned-grid{
	    grid-template-columns:1fr;
    }

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

    .curriculum-hero-content {
        order: 2;
    }

    .curriculum-hero h1{
	    font-size:38px;
    }

    .section-heading h2,
    .aligned-content h2{
	    font-size:32px;
    }

}

/*OUR COURSES PAGE*/

.acm-course-hero{
    padding:40px 0;
}

.acm-course-hero-grid{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    align-items:center;
    gap:70px;
}

.acm-course-content{
    position:relative;
}

.acm-course-tag{
    display:inline-block;
    background:#eef4ff;
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:20px;
    letter-spacing:.5px;
}

.acm-course-content h1{
    font-size:40px;
    line-height:1.15;
    margin-bottom:15px;
}

.acm-course-content p{
    line-height:1.7;
}

.acm-course-image{
    position:relative;
}

.acm-course-image::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:#eff6ff;
    border-radius:50%;
    top:-30px;
    right:-30px;
    z-index:0;
}

.acm-course-image::after{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    background:#dbeafe;
    border-radius:50%;
    bottom:-20px;
    left:-20px;
    z-index:0;
}

.acm-course-image img{
    width:100%;
    display:block;
    border-radius:24px;
    position:relative;
    z-index:2;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/*  RESPONSIVE  */

@media(max-width:991px){

    .acm-course-hero{
        padding:70px 0;
    }

    .acm-course-hero-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .acm-course-content{
        /*text-align:center;*/
        order: 2;
    }

    .acm-course-content h1{
        font-size:38px;
    }

    .acm-course-content p{
        font-size:16px;
    }

    .acm-course-image{
        max-width:600px;
        margin:auto;
    }
    .acm-final-box h2 {
        font-size: 1.5rem !important;
    }
    .acm-final-box {
        padding: 0 10px !important;
    }
}

@media(max-width:576px){

    .acm-course-content h1{
        font-size:30px;
    }

    .acm-course-tag{
        font-size:12px;
        padding:8px 15px;
    }
}

.acm-course-programs{
	padding:40px 0;
	background:#f8f9fc;
}

.acm-heading{
	text-align:center;
	margin-bottom:50px;
}

.acm-heading h2{
	font-size:40px;
	margin-bottom:15px;
}

.acm-heading p{

}

.acm-program-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:35px;
}

.acm-program-card{
	background:#fff;
	border-radius:24px;
	padding:25px;
	box-shadow:0 15px 45px rgba(0,0,0,.08);
	transition:.3s;
}

.acm-program-card:hover{
	transform:translateY(-8px);
}

.acm-grade-badge{
	display:inline-block;
	background:#eef4ff;
	color:#2563eb;
	padding:10px 18px;
	border-radius:50px;
	font-size:14px;
	font-weight:700;
	margin-bottom:10px;
}

.acm-program-card h3{
	font-size:24px;
	margin-bottom:15px;
}

.acm-program-intro{
	line-height:1.7;
	margin-bottom:15px;
}

.acm-program-card h4{
	margin-bottom:8px;
	font-size:18px;
}

.acm-program-card ul{
	padding-left:20px;
}

.acm-program-card li{
	margin-bottom:5px;
	list-style: disc;
}

.acm-benefits{
	margin-top:10px;
	padding-top:10px;
	border-top:1px solid #eee;
}

.acm-program-featured{
	background:#172a4d;
}
.acm-program-card.acm-program-featured h3, .acm-program-card.acm-program-featured h4, .acm-program-card.acm-program-featured p {
    color: #fff;
}
.acm-program-card.acm-program-featured ul li {
    color: #fff;
}
.acm-program-featured .acm-grade-badge{
	background:rgba(255,255,255,.2);
	color:#fff;
}

.acm-program-featured .acm-benefits{
	border-color:rgba(255,255,255,.2);
}

.acm-program-grid .acm-program-card:last-child{
	grid-column:span 2;
}

@media(max-width:991px){

    .acm-program-grid{
	    grid-template-columns:1fr;
    }

    .acm-program-grid .acm-program-card:last-child{
	    grid-column:auto;
    }

}

.acm-curriculum-section{
    padding:40px 0;
}

.acm-section-head{
    text-align:center;
    margin-bottom:20px;
}

.acm-section-head h2{
    font-size:40px;
    margin-bottom:15px;
    color:#111827;
}

.acm-section-head p{
}

.acm-curriculum-table-wrap{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.acm-curriculum-table{
    width:100%;
    border-collapse:separate;
}

table.acm-curriculum-table tbody {
    background: #f8f9fc;
}

.acm-curriculum-table th{
    background:#172a4d;
    color:#fff;
    padding:20px;
    text-align:left;
}

.acm-curriculum-table td{
    padding:20px;
    border-bottom:1px solid #edf2f7;
}

.acm-curriculum-table tr:last-child td{
    border-bottom:none;
}

.acm-teaching-section{
    padding:40px 0;
    background:#efefef;
}

.acm-teaching-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.acm-teach-card{
    background:#fff;
    border:1px solid #e5e7eb;
    padding:15px;
    border-radius:20px;
    transition:.3s;
}

.acm-teach-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.acm-teach-card h3{
    margin-bottom:10px;
    color:#111827;
    font-size: 20px;
}

.acm-teach-card p{
}

.acm-course-final-cta {
    padding: 40px 0;
    background: #172a4d;
}

.acm-final-box {
    text-align: center;
    background: #172a4d;
    padding: 50px;
}

.acm-final-box h2{
    font-size:40px;
    margin-bottom:10px;
    color:#fff;
}

.acm-final-box p{
    color: #fff;
}

.acm-highlight {
    margin-top: 10px;
    font-weight: 700;
    color: #fdb33d !important;
}

.acm-final-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 16px 34px;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
}

/*=============================
TOP STICKY BANNER
==============================*/

.top-sticky-banner {
    position: sticky;
    top: 0;
    z-index: 99999;
    background: linear-gradient(to bottom, #143a74, #11274d);
    color: #fff;
    padding: 5px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .12);
}

.banner-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.banner-text{
    font-size:15px;
    line-height:1.6;
    font-weight:500;
}

.banner-text strong{
    color:#ffd44d;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    background: #feb642;
    color: #111;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
    white-space: nowrap;
    font-size: 14px;
}

.banner-btn:hover{
    background:#fff;
    color:#143a74;
    transform:translateY(-2px);
}

@media(max-width:991px){

.banner-flex{
    flex-direction:column;
    text-align:center;
    gap: 5px;
}

.banner-text{
    font-size:14px;
}

.banner-btn{
    width:220px;
}

}

@media(max-width:576px){

.top-sticky-banner{
    padding:5px 0;
}

.banner-text{
    font-size:13px;
    line-height:1.5;
}

.banner-btn{
    width:100%;
    max-width:220px;
}

}

/*PARENT AMB SECTION HOMEPAGE*/

.parent-ambassador-box{
    margin-top:35px;
    padding:28px 35px;
    border-radius:18px;
    background:linear-gradient(135deg,#153d78,#0d2d5d);
    gap:30px;
    color:#fff;
    overflow:hidden;
    position:relative;
    text-align: center;
}

.parent-ambassador-box::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    right:-70px;
    top:-80px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
}

.parent-ambassador-content{
    position:relative;
    z-index:2;
}

.ambassador-tag{
    display:inline-block;
    background:rgba(255,255,255,.12);
    padding:8px 18px;
    border-radius:30px;
    font-size:12px;
    letter-spacing:1px;
    font-weight:700;
    margin-bottom:12px;
}

.parent-ambassador-content h3{
    margin:0 0 10px;
    color:#fff;
    font-size:30px;
    line-height:1.3;
}

.parent-ambassador-content p{
    margin:0;
    font-size:17px;
    color:#e8eef8;
}

.parent-ambassador-action{
    position:relative;
    z-index:2;
}

.ambassador-btn {
    display: inline-block;
    background: #f5b335;
    color: #111;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 700;
    transition: .3s;
    white-space: nowrap;
    font-size: 15px;
    margin-top: 10px;
}

.ambassador-btn:hover{
    background:#fff;
    color:#153d78;
    transform:translateY(-2px);
}

@media(max-width:991px){

.parent-ambassador-box{
    flex-direction:column;
    text-align:center;
}

.parent-ambassador-content h3{
    font-size:24px;
}

}

/*PARENT PROGRAM PAGE*/

/*==========================
Parent Ambassador Hero
==========================*/

.apamb-hero-section{
padding:40px 0;
background:#ffffff;
}

.apamb-hero-grid{
display:grid;
grid-template-columns:1fr 500px;
gap:60px;
align-items:center;
}

.apamb-label{
display:inline-block;
background:#e9f3ff;
color:#0b56b5;
padding:9px 18px;
border-radius:40px;
font-size:13px;
font-weight:700;
letter-spacing:.5px;
margin-bottom:20px;
}

/*.apamb-hero-content p{
font-size:18px;
line-height:1.9;
margin-bottom:18px;
color:#666;
}*/

.apamb-main-btn{
display:inline-block;
margin-top:15px;
padding:15px 35px;
background:#f4b42d;
color:#111;
font-weight:700;
text-decoration:none;
border-radius:50px;
transition:.3s;
}

.apamb-main-btn:hover{
background:#0b56b5;
color:#fff;
transform:translateY(-3px);
}

.apamb-hero-image img{
width:100%;
border-radius:20px;
box-shadow:0 20px 60px rgba(0,0,0,.12);
}


/*==========================
Benefits Section
==========================*/

.apamb-benefits-section{
padding:40px 0;
background:#f8fbff;
}

.apamb-section-title{
text-align:center;
max-width:760px;
margin:auto;
margin-bottom:60px;
}

.apamb-section-title h2{
font-size:42px;
margin-bottom:18px;
color:#08254f;
}

/*.apamb-section-title p{
font-size:18px;
line-height:1.8;
color:#666;
}*/

.apamb-benefits-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;
}

.apamb-benefit-card{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.35s;
}

.apamb-benefit-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.apamb-benefit-card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:15px;
margin-bottom:22px;
}

.apamb-benefit-card h3{
font-size:24px;
margin-bottom:15px;
color:#08254f;
}

/*.apamb-benefit-card p{
font-size:17px;
line-height:1.8;
color:#666;
}*/


/*==========================
Responsive
==========================*/

@media(max-width:991px){

.apamb-hero-grid{
grid-template-columns:1fr;
}

.apamb-hero-content{
order:2;
}

.apamb-hero-image{
order:1;
}

.apamb-hero-content h1{
font-size:38px;
}

.apamb-benefits-grid{
grid-template-columns:1fr;
}

}

@media(max-width:600px){

.apamb-hero-section,
.apamb-benefits-section{
padding:70px 0;
}

.apamb-hero-content h1{
font-size:32px;
}

.apamb-section-title h2{
font-size:30px;
}

.apamb-benefit-card{
padding:25px;
}

.apamb-benefit-card img{
height:180px;
}

}


.ap-amb-program-section{
    padding:40px 0;
    background:#f8f9fc;
}

.ap-amb-work-box,
.ap-amb-join-box,
.ap-amb-reason-box{
    margin-bottom:40px;
}

.ap-amb-heading{
    text-align:center;
    margin-bottom:10px;
}

.ap-amb-heading span{
    display:inline-block;
    padding:8px 18px;
    background:#eef5ff;
    color:#1a3a6e;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.ap-amb-heading h2{
    margin-top:15px;
    font-size:38px;
    font-weight:700;
    color:#16223b;
}

.ap-amb-steps-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.ap-amb-step-card{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    transition:.3s;
}

.ap-amb-step-card:hover{
    transform:translateY(-8px);
}

.ap-amb-step-number{
    width:60px;
    height:60px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:#1a3a6e;
    color:#fff;
    font-size:26px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.ap-amb-step-card h3{
    font-size:21px;
    margin-bottom:12px;
    color:#16223b;
}

.ap-amb-step-card p{
    color:#666;
    line-height:1.7;
}

.ap-amb-intro{
    text-align:center;
    font-size:18px;
    margin-bottom:30px;
    color:#555;
}

.ap-amb-join-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.ap-amb-join-card{
    background:#fff;
    padding:24px;
    border-left:5px solid #1a3a6e;
    border-radius:12px;
    font-size:17px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.ap-amb-reason-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.ap-amb-reason-card{
    background:#fff;
    padding:28px;
    text-align:center;
    border-radius:16px;
    font-size:17px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.ap-amb-reason-card:hover{
    transform:translateY(-6px);
}

@media(max-width:991px){

.ap-amb-steps-grid,
.ap-amb-reason-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.ap-amb-heading h2{
font-size:30px;
}

.ap-amb-steps-grid,
.ap-amb-join-grid,
.ap-amb-reason-grid{
grid-template-columns:1fr;
}

}


.ap-parent-last-section{
    padding:40px 0;
    background:#ffffff;
}

.ap-parent-heading{
    text-align:center;
    margin-bottom:10px;
}

.ap-parent-heading span{
    display:inline-block;
    padding:8px 18px;
    background:#eef5ff;
    color:#1a3a6e;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.ap-parent-heading h2{
    margin-top:15px;
    font-size:38px;
    color:#16223b;
}

.ap-parent-faq-list{
    max-width:900px;
    margin:auto;
}

.ap-parent-faq-item{
    background:#fff;
    padding:25px 30px;
    margin-bottom:20px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    border-left:5px solid #1a3a6e;
}

.ap-parent-faq-item h3{
    font-size:22px;
    color:#16223b;
    margin-bottom:10px;
}

.ap-parent-faq-item p{
    color:#666;
    line-height:1.8;
    margin:0;
}

/* CTA */

.ap-parent-cta-box{
    margin-top:40px;
    background:linear-gradient(135deg,#1a3a6e,#2f5ea6);
    color:#fff;
    padding:70px 50px;
    border-radius:24px;
    text-align:center;
}

.ap-parent-cta-tag{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:20px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.ap-parent-cta-box h2{
    font-size:42px;
    margin-bottom:20px;
    color:#fff;
}

.ap-parent-cta-box p{
    max-width:750px;
    margin:0 auto 20px;
    line-height:1.8;
    font-size:18px;
}

.ap-parent-cta-box h4{
    font-size:24px;
    margin-bottom:35px;
    color:#fff;
}

.ap-parent-cta-btn{
    display:inline-block;
    background:#fff;
    color:#1a3a6e;
    padding:16px 34px;
    border-radius:50px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.ap-parent-cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

@media(max-width:768px){

.ap-parent-heading h2{
    font-size:30px;
}

.ap-parent-faq-item{
    padding:20px;
}

.ap-parent-faq-item h3{
    font-size:19px;
}

.ap-parent-cta-box{
    padding:50px 25px;
}

.ap-parent-cta-box h2{
    font-size:30px;
}

.ap-parent-cta-box h4{
    font-size:20px;
}

}