/* =========================================
       1. CẤU HÌNH MENU
    ========================================= */
    :root {
        --ez-primary: #1c449c;    /* Xanh Đậm */
        --ez-hover: #179bd7;      /* Xanh Nhạt (Hover/Active) */
        --ez-white: #ffffff;
        --ez-nav-height: 50px;
    }

    /* Reset cơ bản để tránh lỗi hiển thị */
    ul, li { margin: 0; padding: 0; list-style: none; }
    a { text-decoration: none; transition: color 0.3s ease, background 0.3s ease; }

    /* ⚡ TỐI ƯU ẢNH TOÀN TRANG (CHỐNG NHẢY TRANG) */
    #ez-wrapper img[width][height] {
        height: auto !important; 
        max-width: 100%;
        display: block;
    }

    /* =========================================
       2. TẦNG 1: LOGO (HEADER TOP)
    ========================================= */
    .ez-branding-top {
        background: var(--ez-primary) !important;
        padding: 10px 0;
        text-align: center;
        min-height: 115px; 
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1001;
    }

    .ez-branding-top img {
        width: 270px;
        height: 95px;
        aspect-ratio: 270 / 95; /* ⚡ Khóa khung Logo */
        filter: brightness(0) invert(1);
        display: inline-block;
        object-fit: contain;
    }

    /* TẦNG 2: MENU NỀN TRẮNG (STICKY) */
.ez-nav-sticky {
    background: #ffffff !important; 
    border-bottom: 1px solid #ddd;
    width: 100%; 
    height: 50px; 
    position: -webkit-sticky; 
    position: sticky;
    top: 0;
    z-index: 9999; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

    .ez-limit-width {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        position: relative;
    }

    /* --- MENU DESKTOP --- */
    #ez-menu-ul {
        display: flex;
        align-items: center;
    }

    #ez-menu-ul > li {
        position: relative;
    }

    #ez-menu-ul > li > a {
        color: var(--ez-primary) !important;
        font-weight: 700;
        font-size: 15px;
        padding: 0 10px;
        line-height: var(--ez-nav-height);
        display: block;
        text-transform: none;
        position: relative;
    }

    #ez-menu-ul > li:hover > a,
    #ez-menu-ul > li.current-menu-item > a,
    #ez-menu-ul > li.current-menu-ancestor > a,
    #ez-menu-ul > li.current_page_item > a {
        color: var(--ez-hover) !important;
        background: #f4f8ff;
    }

    #ez-menu-ul ul {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--ez-white) !important;
        min-width: 240px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        border-top: 3px solid var(--ez-hover);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        padding: 10px 0 !important;
    }

    #ez-menu-ul li:hover > ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    #ez-menu-ul ul li a {
        padding: 10px 20px !important;
        font-size: 14px;
        color: var(--ez-primary) !important;
        line-height: 1.5 !important;
        border-bottom: 1px dashed #eee;
        display: block;
        text-transform: none;
        font-weight: 500;
    }
    
    #ez-menu-ul ul li:last-child a { border-bottom: none; }

    #ez-menu-ul ul li a:hover {
        color: var(--ez-hover) !important;
        padding-left: 25px !important;
    }

    /* =========================================
       4. MOBILE & RESPONSIVE
    ========================================= */
    .ez-mobile-btn {
        display: none;
        position: absolute;
        right: 15px;
        top: 0;
        height: 50px;
        width: 50px;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        z-index: 1000;
        padding: 0;
    }
    
    .ez-mobile-btn span {
        display: block;
        width: 24px;
        height: 3px;
        background: var(--ez-primary);
        border-radius: 2px;
        transition: 0.3s;
    }

    #ez-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.6);
        display: none;
        z-index: 9998;
        backdrop-filter: blur(2px);
    }
    #ez-overlay.active { display: block; }

    @media (max-width: 1024px) {
        .ez-branding-top { min-height: 80px; }
        .ez-branding-top img { width: 180px; height: auto; aspect-ratio: 270/95; }

        .ez-mobile-btn { display: flex; }

        #ez-menu-ul, 
        .ez-menu-list {
            display: flex !important;
            flex-direction: column !important;
            align-items: flex-start !important;
            width: 100% !important;
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px !important;
            height: 100vh;
            background: #fff;
            transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
            box-shadow: -5px 0 20px rgba(0,0,0,0.1);
            padding-top: 60px !important;
            overflow-y: auto;
            z-index: 10000;
            margin: 0 !important;
        }

        #ez-menu-ul.open,
        .ez-menu-list.open { right: 0; }

        .ez-close-x {
            position: absolute;
            top: 15px;
            left: 20px;
            font-size: 30px;
            color: var(--ez-primary);
            cursor: pointer;
            line-height: 1;
        }

        #ez-menu-ul > li { width: 100%; border-bottom: 1px solid #f0f0f0; }
        #ez-menu-ul > li > a { line-height: 50px; padding: 0 25px !important; }

        #ez-menu-ul ul {
            position: static;
            display: block !important;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            background: #f9f9f9 !important;
            border-top: none;
            padding: 0 !important;
            min-width: unset !important;
            width: 100% !important;
        }

        #ez-menu-ul ul li a {
            padding-left: 40px !important;
            font-size: 14px;
            border-bottom: 1px solid #eee;
        }
    }
    
    @media (min-width: 1025px) { .ez-close-x { display: none; } }
    
    html, body {
        overflow-x: clip !important;
        max-width: 100% !important;
        width: 100% !important;
        position: relative;
        margin: 0;
        padding: 0;
    }
 
.ez-branding-top {
    min-height: 115px;
    display: flex;
    align-items: center;
    background: var(--ez-primary) !important;
}

.ez-header-grid {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

.ez-header-social-left {
    padding-left: 30px !important;
    display: flex;
    gap: 10px;
}

.ez-header-search-right {
    padding-right: 30px !important;
    display: flex;
    justify-content: flex-end;
}

.ez-social-circle {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%; color: #fff; font-size: 11px; font-weight: bold;
    transition: 0.3s;
}
.ez-social-circle:hover { background: #fff; color: var(--ez-primary); }
    .ez-social-btn {
        width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
        background: rgba(255,255,255,0.15); border-radius: 50%; color: #fff !important; transition: 0.3s; text-decoration: none;
    }
    .ez-social-btn:hover { transform: translateY(-3px); background: #fff !important; }
    .ez-social-btn.fb:hover { color: #1877F2 !important; }
    .ez-social-btn.yt:hover { color: #FF0000 !important; }
    
    .ez-search-input:focus { background: #fff !important; color: #333 !important; }
    .ez-search-input::placeholder { color: rgba(255,255,255,0.7); }

    @media (max-width: 1024px) {
        .ez-limit-width { flex-direction: column !important; gap: 15px; }
        .ez-header-social, .ez-header-search { padding: 0 !important; justify-content: center !important; }
        .ez-search-input { width: 100% !important; }
    }
.ez-top-search-input {
    width: 200px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    color: #fff;
    outline: none;
}

@media (max-width: 1024px) {
    .ez-branding-top { min-height: auto; padding: 15px 0; }
    .ez-header-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px;
    }
    .ez-header-social-left, .ez-header-search-right {
        padding: 0 !important;
        justify-content: center;
    }
    .ez-top-search-input { width: 90vw; }
    .ez-logo-center img { width: 180px; height: auto; }
}
.ez-header-grid {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.ez-logo-center {
    text-align: center;
}

.ez-logo-center img {
    max-width: 250px;
    height: auto;
    aspect-ratio: 250 / 88; /* ⚡ Ước tính tỉ lệ logo giữa */
}
.ez-header-search-right {
    display: flex;
    justify-content: flex-end;
    padding-right: 5px !important; 
    box-sizing: border-box;
}

.ez-top-search-input {
    width: 180px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 8px 12px;
    color: #179bd7;
    font-size: 13px;
    outline: none;
    transition: all 0.3s;
}

.ez-top-search-input:focus {
    background: #fff;
    color: #333;
    width: 260px;
}
.ez-top-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
    font-style: italic;
    opacity: 1;
}

.ez-top-search-input {
    color: #ffffff !important;
}

.ez-top-search-input:focus::placeholder {
    color: #cccccc !important;
}
@media (max-width: 1024px) {
    .ez-header-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px;
    }
    .ez-header-left-space { display: none; }
    .ez-header-search-right { width: 90%; justify-content: center; }
    .ez-top-search-input { width: 100% !important; }
}
#ez-breadcrumb-bar {
    background: #f8fbff; 
    border-bottom: 1px solid #eef2f7;
    padding: 12px 0;
    font-size: 14px;
    clear: both;
    width: 100%;
}

#ez-breadcrumb-bar .ez-limit-width {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 35px !important; 
    padding-right: 20px;
    display: flex;
    justify-content: flex-start !important;
}

#ez-breadcrumb-bar .breadcrumbs {
    color: #666;
    line-height: 1.6;
    text-align: left !important;
}

#ez-breadcrumb-bar .breadcrumbs a {
    color: #1c449c !important;
    text-decoration: none;
    font-weight: 500;
}

#ez-breadcrumb-bar .breadcrumbs a:hover {
    color: #179bd7 !important;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    #ez-breadcrumb-bar .ez-limit-width {
        padding-left: 20px !important;
    }
}
        #ez-header-final { 
            width: 100%; font-family: Arial, sans-serif; position: relative; z-index: 999999;
        }

        #ez-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: #333; 
            line-height: 1.6;
            background: #fff;
            width: 100%;
            overflow-x: hidden;
            font-size: 16px;
        }

        #ez-wrapper {
            --primary: #1c449c; 
            --secondary: #179bd7; 
            --primary-grad: linear-gradient(135deg, #1c449c 0%, #0e2a6b 100%);
            --accent-grad: linear-gradient(135deg, #179bd7 0%, #1c449c 100%);
            --light: #f4f9ff; 
            --radius: 12px;
            --shadow-soft: 0 10px 40px -10px rgba(28, 68, 156, 0.1);
        }

        .ez-container {
            max-width: 1200px; margin: 0 auto; padding: 0 20px;
            position: relative; z-index: 2;
        }

        #ez-wrapper img { 
            max-width: 100%; height: auto !important; 
            display: block; border: none; box-shadow: none; 
        }
        #ez-wrapper a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

        .ez-section { padding: 50px 0; position: relative; }
        .bg-light { background-color: var(--light); }
        .bg-white { background-color: #fff; }

        .ez-title {
            font-size: 34px; font-weight: 800; color: var(--primary);
            text-transform: uppercase; text-align: center; margin: 0 0 15px;
            letter-spacing: -0.5px;
        }
        .ez-title::after {
            content: ''; display: block; width: 80px; height: 4px;
            background: var(--accent-grad); margin: 15px auto 0; border-radius: 2px;
        }
        .ez-desc {
            text-align: center; max-width: 800px; margin: 0 auto 50px;
            color: #555; font-size: 18px;
        }
        
/* === 1. HERO SECTION (BANNER) === */
.hero-box-wrap {
    position: relative; 
    width: 100%; 
    aspect-ratio: 1920 / 800; 
    height: auto; 
    background: #eee;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100% !important;
    object-fit: cover !important; 
    object-position: center !important; 
    aspect-ratio: 1920 / 800; /* ⚡ Khóa tỉ lệ banner */
    z-index: 0; 
    transition: transform 10s ease;
}

.hero-box-wrap:hover .hero-bg-img { transform: scale(1.05); }

.hero-box-wrap {
    position: relative !important;
    overflow: visible !important;
    z-index: 10;
}

.hero-float-card {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    width: 400px; 
    max-width: 92%;
    padding: 35px 30px !important;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-left: 6px solid #1c449c;
    position: absolute !important; 
    bottom: -20px !important; 
    right: 40px !important;
    z-index: 999 !important;
}

.ez-section.bg-white:first-of-type {
    padding-top: 90px !important; 
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .hero-box-wrap {
        display: flex;
        flex-direction: column;
    }

    .hero-float-card {
        position: relative !important;
        bottom: 0 !important;
        right: 0 !important;
        left: 0 !important;
        margin: -50px auto 20px !important;
        width: 90% !important;
        padding: 25px 20px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .ez-section.bg-white:first-of-type {
        padding-top: 40px !important; 
    }
}

.hero-list li {
    display: flex; 
    align-items: center; 
    margin-bottom: 12px;
    font-size: 16px; 
    color: #333; 
    font-weight: 500;
}

.hero-list svg { 
    width: 22px; 
    height: 22px; 
    fill: var(--secondary); 
    margin-right: 12px; 
}

.btn-hero {
    display: block; 
    text-align: center;
    background: var(--accent-grad); 
    color: #ffffff !important; 
    padding: 15px; 
    border-radius: 50px;
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(28, 68, 156, 0.3); 
    margin-top: 30px;
    text-decoration: none !important;
}

.btn-hero:hover { 
    transform: translateY(-3px); 
    color: #ffffff !important; 
    background: var(--primary); 
}

@media (max-width: 768px) {
    .hero-box-wrap {
        aspect-ratio: auto; 
        height: auto; 
        display: flex;
        flex-direction: column;
    }

    .hero-bg-img {
        position: relative;
        width: 100%;
        height: 300px !important; 
        aspect-ratio: 4 / 3; /* ⚡ Chỉnh tỉ lệ ảnh banner trên mobile */
        object-fit: cover;
        flex-shrink: 0;
    }

    .hero-float-card {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border-left: none;
        border-top: 6px solid var(--secondary);
        padding: 25px 20px;
        box-shadow: none;
    }
}

        /* === 2. GIỚI THIỆU (SPLIT SECTION) === */
        .ez-split-wrap { display: flex; align-items: center; gap: 60px; }
        .ez-split-img { flex: 1; position: relative; }
        .ez-split-img img {
            width: 100%; 
            height: auto !important;
            aspect-ratio: 600 / 400; /* ⚡ Khóa khung ảnh văn phòng */
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15); 
            display: block;
        }
        .ez-split-img::before {
            content: ''; position: absolute; bottom: -20px; right: -20px;
            width: 100%; height: 100%; border: 2px solid var(--secondary);
            border-radius: 20px; z-index: -1;
        }
        .ez-split-content { flex: 1.2; }
        
        .ez-feature-row {
            display: flex; align-items: flex-start; margin-bottom: 25px;
            padding: 10px; border-radius: 12px; transition: 0.3s; border-bottom: 1px solid #f0f0f0;
        }
        .ez-feature-row:hover {
            background: var(--light); transform: translateX(10px); border-bottom-color: transparent;
        }
        
        .ez-row-icon {
            flex-shrink: 0; width: 64px; height: 64px;
            background: #eef4ff; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin-right: 20px; color: var(--primary); font-size: 28px;
        }
        .ez-feature-row:hover .ez-row-icon { background: var(--primary); color: #fff; }
        
        .ez-row-text h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin: 0 0 8px 0; }
        .ez-row-text p { font-size: 16px; color: #555; margin: 0; }

        /* === 3. FEATURE BOX (ZIGZAG) === */
        .ez-feature-wrap { display: flex; align-items: center; gap: 60px; flex-direction: row-reverse; }
        .ez-feature-img { flex: 1; position: relative; }
        .ez-feature-img img {
            width: 100%; 
            height: auto !important;
            aspect-ratio: 4 / 3; /* ⚡ Khóa khung ảnh tiêu điểm */
            object-fit: cover;
            border-radius: 20px; 
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            display: block; 
        }
        .ez-feature-img::before {
            content: ''; position: absolute; bottom: 20px; right: 20px;
            width: 100%; height: 100%; border: 2px solid var(--primary);
            border-radius: 20px; z-index: -1;
        }
        .ez-feature-badge {
            position: absolute; top: -15px; right: -15px;
            background: var(--accent-grad); color: #fff;
            padding: 8px 25px; border-radius: 30px; font-size: 14px;
            font-weight: bold; text-transform: uppercase;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2); z-index: 2;
        }
        .ez-feature-content { flex: 1.2; }
        .ez-feat-date { color: #888; font-size: 14px; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; display: block; }
        .ez-feat-title { font-size: 30px; font-weight: 800; color: var(--primary); line-height: 1.3; margin: 0 0 20px 0; }
        .ez-feat-desc { font-size: 16px; color: #555; line-height: 1.7; margin-bottom: 30px; }
        
        .ez-btn-outline {
            display: inline-block; padding: 12px 40px;
            border: 2px solid var(--secondary); color: var(--secondary);
            border-radius: 50px; font-weight: 700; transition: 0.3s;
        }
        .ez-btn-outline:hover { background: var(--secondary); color: #fff; transform: translateY(-3px); }

        /* === 4. HỌC BỔNG === */
     .bg-dark-grad { background: var(--primary-grad); color: #fff; }
        .bg-dark-grad .ez-title { color: #fff; }
        .bg-dark-grad .ez-desc { color: rgba(255,255,255,0.9); }
        
        .ez-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
        
        .ez-card-scholar {
            background: #fff; border-radius: var(--radius); overflow: hidden;
            transition: all 0.4s ease; position: relative; top: 0;
            display: flex; flex-direction: column; height: 100%;
        }
        .ez-card-scholar:hover { top: -10px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
        
        
        .ez-thumb-crop { 
            position: relative; 
            width: 100%; 
            padding-top: 60%;
            overflow: hidden; 
            background: #eee;
        }

        .ez-full-link {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block;
        }
        
        .ez-thumb-crop img { 
            position: absolute !important; 
            top: 0 !important; left: 0 !important; 
            width: 100% !important; height: 100% !important; 
            aspect-ratio: 16 / 9; /* ⚡ Khóa tỉ lệ ảnh học bổng */
            object-fit: cover !important; 
            object-position: center !important; 
            margin: 0 !important; padding: 0 !important;
            transition: 0.5s; 
        }
        .ez-card-scholar:hover .ez-thumb-crop img { transform: scale(1.1); }
        
        .scholar-badge {
            position: absolute; top: 15px; right: 15px;
            background: var(--secondary); color: #fff;
            padding: 5px 12px; border-radius: 4px; font-size: 12px; font-weight: bold;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 2; pointer-events: none;
        }

        .ez-card-body { 
            padding: 20px; 
            flex: 1; 
            display: flex; flex-direction: column; justify-content: space-between;
        }
        .ez-card-body h3 { 
            font-size: 17px; font-weight: 700; margin: 0 0 15px; line-height: 1.4; color: #333; 
            display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
        }
        .ez-read-more { 
            font-size: 14px; color: var(--secondary); font-weight: 700; 
            text-transform: uppercase; display: inline-block;
        }
        .ez-read-more:hover { color: var(--primary); }

        /* === 5. TIMELINE === */
        .ez-timeline { display: flex; justify-content: space-between; position: relative; margin-top: 60px; }
        .ez-timeline-line {
            position: absolute; top: 35px; left: 10%; right: 10%; height: 4px;
            background: #e9eff5; z-index: 0; border-radius: 10px;
        }

.ez-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-bottom: 30px;
}

.ez-timeline-line {
    position: absolute;
    top: 35px;
    left: 5%;
    width: 90%;
    height: 4px;
    background: #eee;
    z-index: 0;
}

.ez-timeline-progress {
    position: absolute;
    top: 35px;
    left: 5%;
    width: 0; 
    height: 4px;
    background: var(--ez-primary); 
    z-index: 1;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1); 
}

.ez-timeline.active .ez-timeline-progress {
    width: 90%;
}

.ez-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.ez-timeline.active .ez-step {
    opacity: 1;
    transform: translateY(0);
}

.ez-timeline.active .ez-step:nth-child(2) { transition-delay: 0.3s; }
.ez-timeline.active .ez-step:nth-child(3) { transition-delay: 0.6s; }
.ez-timeline.active .ez-step:nth-child(4) { transition-delay: 0.9s; }
.ez-timeline.active .ez-step:nth-child(5) { transition-delay: 1.2s; }

@media (max-width: 767px) {
    .ez-timeline {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
        padding-left: 90px !important; 
        padding-right: 10px !important;
        padding-top: 30px !important;
        position: relative !important;
    }

    .ez-timeline-line, 
    .ez-timeline-progress {
        left: 40px !important; 
        top: 0 !important;
        width: 4px !important;
        height: 100% !important;
        position: absolute !important;
    }

    .ez-step {
        position: relative !important;
        width: 100% !important; 
        text-align: left !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important; 
    }

    .ez-step-circle {
        position: absolute !important;
        left: -80px !important; 
        top: -5px !important; 
        z-index: 10 !important;
        margin: 0 !important;
    }

    .ez-step h4 {
        margin: 0 0 8px 0 !important;
        font-size: 18px !important;
        line-height: 1.3 !important;
        width: 100% !important;
        white-space: normal !important; 
        word-wrap: break-word !important; 
        display: block !important;
    }

    .ez-step p {
        margin: 0 !important;
        font-size: 15px !important;
        line-height: 1.5 !important;
        color: #555 !important;
        width: 100% !important;
        display: block !important;
    }
}

        .ez-step { position: relative; z-index: 1; width: 22%; text-align: center; }
        .ez-step-circle {
            width: 70px; height: 70px; background: #fff; 
            border: 2px solid var(--primary);
            border-radius: 50%; margin: 0 auto 20px;
            display: flex; align-items: center; justify-content: center;
            font-weight: 800; font-size: 24px; color: var(--primary);
            transition: 0.3s; box-shadow: 0 0 0 10px #fff;
        }
        .ez-step:hover .ez-step-circle { 
            background: var(--secondary); color: #fff; border-color: var(--secondary);
            box-shadow: 0 0 0 5px rgba(23, 155, 215, 0.2), 0 0 0 10px #fff;
        }
        .ez-step h4 { margin: 0; color: #222; font-size: 18px; }
        .ez-step p { margin-top: 5px; font-size: 15px; color: #666; }

        /* === 6. CÁC TRƯỜNG === */
        .ez-school-grid {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px;
        }
        .ez-school-card {
            background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid #eaeaea;
            transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column;
        }
        .ez-school-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
        
        .ez-school-thumb { 
            position: relative; 
            width: 100%; 
            padding-top: 75%; 
            overflow: hidden; 
            background: #eee; 
        }
        .ez-school-thumb img { 
            position: absolute !important; 
            top: 0 !important; 
            left: 0 !important; 
            width: 100% !important; 
            height: 100% !important;
            aspect-ratio: 4 / 3; /* ⚡ Khóa khung ảnh trường học */
            object-fit: cover !important; 
            object-position: center !important;
            transition: transform 0.6s ease;
        }
        .ez-school-card:hover .ez-school-thumb img { transform: scale(1.1); }
        
        .ez-school-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(28, 68, 156, 0.8); opacity: 0; transition: 0.3s;
            display: flex; align-items: center; justify-content: center; z-index: 2;
        }
        .ez-school-card:hover .ez-school-overlay { opacity: 1; }
        
        .ez-view-btn {
            color: #fff; border: 1px solid #fff; padding: 8px 25px;
            border-radius: 20px; font-size: 14px; font-weight: 600;
            transform: translateY(10px); transition: 0.4s;
        }
        .ez-school-card:hover .ez-view-btn { transform: translateY(0); }
        
        .ez-school-info { padding: 20px; text-align: center; border-top: 1px solid #f5f5f5; flex: 1; display: flex; flex-direction: column; justify-content: center; }
        .ez-school-name {
            font-size: 16px; font-weight: 700; margin: 0 0 5px 0; color: #333; line-height: 1.4;
            display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; 
            height: 45px;
        }
        .ez-school-card:hover .ez-school-name { color: var(--primary); }
        .ez-location { font-size: 13px; color: #888; display: block; }

      /* === 7. CTA BAR === */
.ez-cta-section {
        padding: 60px 0;
        background: #fff; 
    }

    .ez-cta-card {
        background: var(--accent-grad); 
        border-radius: 20px;
        padding: 50px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 50px rgba(28, 68, 156, 0.25); 
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .ez-cta-card::before {
        content: ''; position: absolute; top: -50%; right: -10%;
        width: 300px; height: 300px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%; pointer-events: none;
    }
    .ez-cta-card::after {
        content: ''; position: absolute; bottom: -50%; left: -10%;
        width: 200px; height: 200px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%; pointer-events: none;
    }

    .ez-cta-text h3 {
        color: #fff; font-size: 30px; font-weight: 800;
        margin: 0 0 10px 0; line-height: 1.2;
    }
    .ez-cta-text p {
        color: rgba(255,255,255,0.9); font-size: 17px; margin: 0;
        max-width: 600px;
    }

    .ez-cta-btn-wrap {
        flex-shrink: 0; 
        position: relative;
    }

    .ez-cta-btn {
        background: #fff;
        color: #1c449c !important; 
        padding: 18px 45px;
        border-radius: 50px;
        font-weight: 800;
        font-size: 18px;
        display: flex; align-items: center; gap: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
        text-decoration: none !important;
        position: relative; z-index: 2;
    }

    .ez-cta-btn svg {
        width: 24px; height: 24px; fill: #1c449c;
        animation: phone-shake 3s infinite;
    }

    .ez-cta-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        color: var(--secondary) !important; 
    }
    .ez-cta-btn:hover svg { fill: var(--secondary); }

    @keyframes phone-shake {
        0% { transform: rotate(0deg); }
        5% { transform: rotate(15deg); }
        10% { transform: rotate(-15deg); }
        15% { transform: rotate(15deg); }
        20% { transform: rotate(-15deg); }
        25% { transform: rotate(0deg); }
        100% { transform: rotate(0deg); }
    }

    @media (max-width: 768px) {
        .ez-cta-card { flex-direction: column; text-align: center; padding: 40px 20px; }
        .ez-cta-btn { width: 100%; justify-content: center; }
    }

        /* === 8. NEWS === */
        .news-item { background: #fff; border: 1px solid #eee; border-radius: var(--radius); overflow: hidden; transition: 0.3s; }
        .news-item:hover { border-color: var(--secondary); box-shadow: var(--shadow-soft); }
        .news-date {
            display: inline-block; background: #f0f0f0; color: #666;
            font-size: 12px; padding: 4px 10px; border-radius: 4px; margin-bottom: 10px;
        }

        @media (max-width: 992px) {
            .ez-split-wrap, .ez-feature-wrap { flex-direction: column; }
            .ez-split-img, .ez-feature-img { width: 100%; margin-bottom: 30px; }
            .ez-split-img::before, .ez-feature-img::before { display: none; }
            .ez-grid-4, .ez-school-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
        }
        @media (max-width: 768px) {
            .hero-box-wrap { min-height: 500px; }
            .hero-bg-img { position: relative; height: 250px; }
            .hero-float-card { 
                position: relative; bottom: auto; left: auto; right: auto; 
                width: 100%; margin: -30px auto 0; 
                border-radius: 20px 20px 0 0; border-left: none; border-top: 5px solid var(--secondary);
            }
            .ez-grid-4, .ez-school-grid { grid-template-columns: 1fr; gap: 40px; }
            .ez-timeline { flex-direction: column; }
            .ez-timeline-line { display: none; }
            .ez-step { width: 100%; display: flex; align-items: center; gap: 20px; text-align: left; margin-bottom: 30px; }
            .ez-step-circle { margin: 0; width: 60px; height: 60px; flex-shrink: 0; }
        }
        
 .ez-consult-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #1c449c 0%, #08205c 100%);
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .ez-consult-section::before {
        content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
        background-size: 30px 30px;
        opacity: 0.3;
    }

    .ez-consult-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative; z-index: 2;
        gap: 60px;
    }

    .ez-expert-box {
        flex: 1;
        display: flex; align-items: center; gap: 25px;
    }
    
    .ez-expert-avatar {
        width: 140px; height: 140px;
        border-radius: 50%;
        border: 4px solid rgba(255,255,255,0.2);
        padding: 4px;
        position: relative;
    }
    
    .ez-expert-avatar img {
        width: 100%; height: 100%;
        aspect-ratio: 1 / 1; /* ⚡ Khóa khung ảnh chuyên gia */
        border-radius: 50%;
        object-fit: cover;
        background: #fff;
    }
    
    .ez-verified-badge {
        position: absolute; bottom: 5px; right: 5px;
        width: 32px; height: 32px;
        background: #fff; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    .ez-verified-badge svg { width: 20px; height: 20px; fill: #179bd7; }

    .ez-expert-info h3 {
        font-size: 24px; font-weight: 800; margin: 0 0 5px; color: #fff;
    }
    .ez-expert-info p {
        font-size: 16px; margin: 0; color: rgba(255,255,255,0.8); letter-spacing: 1px; text-transform: uppercase;
    }
    .ez-expert-line {
        width: 50px; height: 2px; background: #179bd7; margin-top: 15px;
    }

    .ez-consult-content {
        flex: 1.4;
    }

    .ez-consult-title {
        font-size: 36px; 
        font-weight: 800; 
        line-height: 1.2; 
        margin-bottom: 20px;
        color: #ffffff !important; 
    }
    .ez-consult-desc {
        font-size: 18px; color: rgba(255,255,255,0.9); margin-bottom: 40px; max-width: 600px;
    }

    .ez-action-group {
        display: flex; gap: 20px; align-items: center;
    }

    .ez-btn-glow {
        background: #fff;
        color: #1c449c !important;
        padding: 18px 40px; border-radius: 50px;
        font-weight: 800; font-size: 20px;
        display: flex; align-items: center; gap: 12px;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        animation: pulse-white 2s infinite;
        transition: 0.3s;
    }
    
    .ez-btn-glow:hover {
        transform: translateY(-3px);
        background: #179bd7; color: #fff !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .ez-btn-glow:hover svg { fill: #fff; }
    .ez-btn-glow svg { width: 24px; height: 24px; fill: #1c449c; transition: 0.3s; }

    .ez-btn-text {
        color: #fff !important; font-weight: 700; font-size: 16px;
        border-bottom: 2px solid rgba(255,255,255,0.3);
        padding-bottom: 2px; transition: 0.3s;
    }
    .ez-btn-text:hover { border-color: #fff; }

    @keyframes pulse-white {
        0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
        70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
        100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    }

    @media (max-width: 992px) {
        .ez-consult-wrap { flex-direction: column; text-align: center; gap: 40px; }
        .ez-expert-box { flex-direction: column; }
        .ez-expert-line { margin: 15px auto; }
        .ez-action-group { justify-content: center; flex-direction: column; }
        .ez-consult-title { font-size: 28px; }
    }
    
    .ez-testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(28, 68, 156, 0.15) !important;
        border-color: #179bd7 !important;
    }
.eduzone-summary-box {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 20px 0 !important;
    padding: 0 !important; 
    overflow: hidden !important; 
    border: 1px solid #e1efff;
    border-radius: 15px;
}

.eduzone-summary-header {
    background: linear-gradient(to right, #1c449c, #179bd7) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 12px 25px !important;
    display: inline-block;
    margin: -20px 0 15px 15px; 
    box-shadow: 0 4px 12px rgba(28, 68, 156, 0.3) !important;
    max-width: calc(100% - 30px); 
    font-weight: bold;
    font-size: 16px;
}

.eduzone-summary-content {
    display: flex !important;
    flex-wrap: wrap !important; 
    background-color: #f8fbff !important; 
    padding: 20px 15px !important;
    gap: 15px;
    box-sizing: border-box !important;
}

.eduzone-summary-content p, 
.eduzone-summary-content div {
    flex: 1 1 100%; 
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: anywhere !important; 
    white-space: normal !important;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.eduzone-summary-icon {
    min-width: 24px !important;
    width: 24px !important;
    height: 24px !important;
    margin-right: 10px;
    flex-shrink: 0; 
}

.ez-consult-grid-v2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

.ez-consult-card-v2 {
    background: #f8fbff; 
    border-radius: 20px;
    border: 1px solid #eef2f7;
    transition: 0.4s ease;
    overflow: hidden;
}

.ez-consult-thumb-v2 { width: 100%; aspect-ratio: 3 / 2; overflow: hidden; background: #eee; }

.ez-consult-thumb-v2 img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 3 / 2; /* ⚡ Khóa khung ảnh tư vấn */
    object-fit: cover !important;
    display: block;
}

.ez-consult-card-v2:hover { transform: translateY(-10px); background: #fff; box-shadow: 0 15px 35px rgba(28, 68, 156, 0.1); }

.ez-btn-read-v2 {
    color: #179bd7;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
#ez-footer-section {
    min-height: 350px !important; 
    display: block;
    contain: yield; 
}

#ez-colophon {
    min-height: 60px !important;
}

.ez-timeline {
    min-height: 250px !important; 
    overflow: visible;
}
