/* ===================== HERO SECTION ===================== */
        .edu-hero {
            background: #eef2f7;
            padding: 60px 40px 0 40px;
            position: relative;
            overflow: hidden;
            border-bottom: 3px solid #003366;
        }

        .edu-hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: flex-end;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .edu-hero-text {
            flex: 1;
            padding-bottom: 60px;
            animation: fadeIn 1s ease;
        }

        .edu-hero-text h1 {
            color: #0a1628;
            font-size: clamp(30px, 4vw, 52px);
            font-weight: 900;
            line-height: 1.12;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .edu-hero-text h1 span {
            color: #003366;
        }

        .edu-hero-text p {
            color: #4a5568;
            font-size: 15px;
            line-height: 1.8;
            max-width: 480px;
            margin-bottom: 0;
        }

        .edu-hero-btns { display: none; }

        .btn-primary {
            background: #003366;
            color: #fff;
            padding: 14px 30px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.5px;
            transition: background 0.25s, transform 0.2s;
            display: inline-block;
        }

        .btn-primary:hover { background: #1e77c0; transform: translateY(-2px); }

        .edu-hero-visual {
            flex: 0 0 380px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }

        .edu-hero-visual svg,
        .edu-hero-visual img {
            width: 100%;
            max-width: 380px;
            height: auto;
            display: block;
        }

        /* Hide stat cards — not in reference design */
        .hero-stat-card { display: none; }
        .hero-stat-icon { display: none; }
 
        /* ===================== ABOUT SECTION ===================== */
        .edu-about {
            background: #f7f9fc;
            padding: 80px 40px;
        }
 
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }
 
        .section-label {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }
 
        .section-label span {
            width: 36px; height: 3px;
            background: #e63329;
            display: inline-block;
            border-radius: 2px;
        }
 
        .section-label p {
            color: #e63329;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
 
        .section-title {
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 800;
            color: #0a1628;
            line-height: 1.2;
            margin-bottom: 20px;
        }
 
        .section-title span { color: #e63329; }
 
        .edu-about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
 
        .edu-about-text p {
            color: #4a5568;
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 16px;
        }
 
        .edu-about-highlights {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 28px;
        }
 
        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }
 
        .highlight-dot {
            width: 10px; height: 10px;
            background: #e63329;
            border-radius: 50%;
            margin-top: 5px;
            flex-shrink: 0;
        }
 
        .highlight-item p {
            color: #0a1628;
            font-size: 14px;
            font-weight: 600;
            margin: 0;
            line-height: 1.6;
        }
 
        .edu-about-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }
 
        .about-card {
            background: #fff;
            border-radius: 12px;
            padding: 28px 22px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.07);
            border-top: 4px solid transparent;
            transition: border-color 0.25s, transform 0.25s;
        }
 
        .about-card:hover { border-color: #e63329; transform: translateY(-4px); }
 
        .about-card-icon {
            width: 46px; height: 46px;
            background: #fff0ef;
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 22px;
            margin-bottom: 14px;
        }
 
        .about-card h4 {
            color: #0a1628;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 8px;
        }
 
        .about-card p {
            color: #6b7280;
            font-size: 12.5px;
            line-height: 1.7;
        }
 
        /* ===================== WHY CHOOSE ===================== */
        .edu-why {
            background: #f8fbfd;
            padding: 80px 40px;
        }
 
        .edu-why .section-title { color: #003366; }
 
        .edu-why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 50px;
        }
 
        .why-card {
            background: rgba(15, 15, 15, 0.05);
            border: 1px solid rgba(2, 0, 0, 0.452);
            border-radius: 14px;
            padding: 32px 26px;
            transition: background 0.3s, transform 0.3s;
            position: relative;
            overflow: hidden;
        }
 
        .why-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: #e63329;
            transform: scaleX(0);
            transition: transform 0.3s;
            transform-origin: left;
        }
 
        .why-card:hover::before { transform: scaleX(1); }
        .why-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-5px); }
 
        .why-card-icon {
            width: 54px; height: 54px;
            background: rgba(230, 51, 41, 0.15);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 26px;
            margin-bottom: 20px;
        }
 
        .why-card h3 { color: #003366; font-size: 16px; font-weight: 700; margin-bottom: 10px; }
        .why-card p { color: black; font-size: 13.5px; line-height: 1.75; }
 
        /* ===================== COURSES ===================== */
        .edu-courses {
            background: #fff;
            padding: 80px 40px;
        }
 
        .courses-header {
            text-align: center;
            margin-bottom: 50px;
        }
 
        .courses-header .section-label { justify-content: center; }
 
        .edu-courses-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
 
        .course-card {
            border: 2px solid #e8edf4;
            border-radius: 14px;
            overflow: hidden;
            transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
        }
 
        .course-card:hover {
            border-color: #e63329;
            box-shadow: 0 12px 40px rgba(230,51,41,0.12);
            transform: translateY(-6px);
        }
 
        .course-card-header {
            background: linear-gradient(135deg, #0a1628, #0d2137);
            padding: 28px 24px 22px;
            position: relative;
        }
 
        .course-level {
            display: inline-block;
            background: #e63329;
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 12px;
        }
 
        .course-card-header h3 { color: #fff; font-size: 17px; font-weight: 700; }
 
        .course-card-body { padding: 24px; }
 
        .course-card-body p {
            color: #6b7280;
            font-size: 13.5px;
            line-height: 1.75;
            margin-bottom: 18px;
        }
 
        .course-topics {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
 
        .course-topics li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: #374151;
            font-weight: 500;
        }
 
        .course-topics li::before {
            content: '✓';
            width: 20px; height: 20px;
            background: #fff0ef;
            color: #e63329;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 11px;
            font-weight: 800;
            flex-shrink: 0;
        }
 
        /* ===================== CTA SECTION ===================== */
        .edu-cta {
            background: linear-gradient(135deg, #0d183d 0%, #b82a21 100%);
            padding: 70px 40px;
            position: relative;
            overflow: hidden;
        }
 
        .edu-cta::before {
            content: '';
            position: absolute;
            top: -100px; right: -100px;
            width: 400px; height: 400px;
            background: rgba(255,255,255,0.07);
            border-radius: 50%;
        }
 
        .edu-cta::after {
            content: '';
            position: absolute;
            bottom: -80px; left: 10%;
            width: 250px; height: 250px;
            background: rgba(0,0,0,0.07);
            border-radius: 50%;
        }
 
        .edu-cta-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            z-index: 1;
            flex-wrap: wrap;
        }
 
        .edu-cta-text h2 {
            color: #fff;
            font-size: clamp(22px, 3vw, 36px);
            font-weight: 800;
            margin-bottom: 12px;
        }
 
        .edu-cta-text p {
            color: rgba(255,255,255,0.85);
            font-size: 15px;
            line-height: 1.7;
            max-width: 560px;
        }
 
        .edu-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
 
        .btn-white {
            background: #fff;
            color: #e63329;
            padding: 14px 32px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            transition: background 0.2s, transform 0.2s;
            display: inline-block;
        }
 
        .btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }
 
        .btn-white-outline {
            background: transparent;
            color: #fff;
            padding: 13px 28px;
            border-radius: 6px;
            border: 2px solid rgba(255,255,255,0.6);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: border-color 0.25s, background 0.25s;
            display: inline-block;
        }
 
        .btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
 
        
        /* ── Hero image placeholder ── */
        .hero-img-placeholder {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 380px;
            min-height: 260px;
            background: #dde6ef;
            border: 2px dashed #94afc0;
            border-radius: 14px;
            text-align: center;
            padding: 30px 20px;
            margin-bottom: 0;
        }

        .hero-img-placeholder span {
            font-size: 48px;
            margin-bottom: 12px;
            display: block;
        }

        .hero-img-placeholder p {
            color: #4a6880;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .hero-img-placeholder small {
            color: #7a96aa;
            font-size: 12px;
            line-height: 1.6;
        }

/* ===================== RESPONSIVE ===================== */
        @media (max-width: 900px) {
            .edu-hero-inner { flex-direction: column; gap: 0; align-items: center; }
            .edu-hero-text { padding-bottom: 30px; }
            .edu-hero-visual { flex: none; width: 100%; max-width: 340px; }
            .edu-about-grid { grid-template-columns: 1fr; gap: 40px; }
            .edu-why-grid { grid-template-columns: 1fr 1fr; }
            .edu-courses-grid { grid-template-columns: 1fr 1fr; }
        }
 
        @media (max-width: 600px) {
            .edu-hero, .edu-about, .edu-why, .edu-courses, .edu-cta { padding: 60px 20px; }
            .edu-why-grid, .edu-courses-grid { grid-template-columns: 1fr; }
            .edu-about-cards { grid-template-columns: 1fr; }
            .edu-cta-inner { flex-direction: column; }
        }