/* ================= GLOBAL STYLES ================= */
        :root {
            --primary-color: #0068b3;
            --primary-hover: #004d99;
            --text-dark: #333;
            --text-light: #666;
            --bg-light: #f8f9fa;
            --border-color: #e0e0e0;
        }
html {
    scroll-behavior: smooth; /* Hiệu ứng trượt mượt */
    scroll-padding-top: 90px; /* Bù trừ khoảng cách cho Sticky Header (chiều cao header + 20px padding) */
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }


  @font-face {
  font-family:casio-font;
  font-style: normal; 
  src: url(../fonts/casio-font.woff2) format('woff2'),  url(../fonts/casio-font.ttf) format('ttf');
  
}

  @font-face {
  font-family:"CASIO ClassWiz CW01";
  font-style: normal; 
  src: url(../fonts/casio-font.woff2) format('woff2'),  url(../fonts/casio-font.ttf) format('ttf');
  
}

  @font-face {
  font-family:"SVN-Avo";
  font-style: normal; 
  src: url(../fonts/SVN-Avo.woff2) format('woff2'), url(../fonts/SVN-Avo.woff) format('woff'), url(../fonts/SVN-Avo.ttf) format('ttf');  
}
  @font-face {
  font-family:"SVN-Avo";
  font-weight: bold;
  src: url(../fonts/SVN-Avo-bold.ttf) format('ttf');  
}
  @font-face {
  font-family:"SVN-Avo";
  font-style: italic; 
  src: url(../fonts/SVN-Avo-italic.ttf) format('ttf');  
}


#custom-search-results {
    position: absolute;
 

    width: 300px; /* Độ rộng của bảng kết quả */
    background: #fff;
    z-index: 99999;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
	display:none;
   
    max-height: 400px;
    overflow-y: auto;
    margin-top: 40px;
}
.custom-search-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #f1f1f1;
    text-decoration: none;
    color: #333;
    transition: all 0.2s;
}
.custom-search-item:last-child { 
    border-bottom: none; 
}
.custom-search-item:hover {
    background: #f2f7fb;
    color: #0068b3;
}
.custom-search-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
    border: 1px solid #eee;
}
.custom-search-item .item-info {
    display: flex;
    flex-direction: column;
}
.custom-search-item .item-type {
    font-size: 10px;
    color: #fff;
    background: #0068b3;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: inline-block;
    width: fit-content;
}
.custom-search-item .custom-search-name {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}
        
        body {
            color: var(--text-dark);
            /* Subtle hexagonal background pattern */
            background-color: #fdfdfd;
            background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
            background-size: 20px 20px;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn-primary {
            background: #f1f1f1;
            color:#666;
            border: 1px solid #eee;
        }
		.btn-primary i{
            
			margin-left:10px;
        }
		

        .btn-primary:hover {
			background: var(--primary-color);
            color: white;
            border: 2px solid var(--primary-color); }

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

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

        /* Section Title Style */
        .section-title {
            text-align: center;
            color: #0068b3;
			 font-family:"SVN-Avo";
            font-size: 28px;
			font-weight: bold; 
            text-transform: uppercase;
            margin: 50px 0 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .section-title::before, .section-title::after {
            content: "";
            flex: 1;
            height: 2px;
            background: #0068b3;
            margin: 0 20px;
          
        }

        /* ================= HEADER ================= */
        header {
            position: sticky;
            top: 0;
            
            z-index: 1000;
           
            transition: all 0.3s;
        }

        .header-wrap {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
			 background:#ebeef6;
			 box-shadow: 0 2px 10px rgba(0,0,0,0.1);
			 border-radius:25px;
        }

        .logo img { height: 40px; }

        .nav-menu { display: flex; gap: 25px; }
        .nav-menu li a { font-weight: 500; transition: color 0.3s; }
        .nav-menu li a:hover { color: var(--primary-color); }
		
		
		.nav-menu li a { 
    font-weight: 500; 
    transition: color 0.3s; 
    position: relative; /* Thêm dòng này để định vị thanh gạch chân */
    color: var(--text-dark);
    padding-bottom: 5px;
}

/* Hiệu ứng gạch chân chạy ra khi hover hoặc có class active */
.nav-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active { 
    color: var(--primary-color); 
}

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

:root {
    --primary-blue: #0068b3;      /* Xanh đậm chính */
    --hover-blue: #2563eb;        /* Xanh khi hover */
    --light-blue: #eff6ff;        /* Màu nền item con */
    --text-color: #f8fafc;
    --sidebar-width: 260px;
	--light-gray: #f1f1f1;
	--white: #ffffff;	
}
.px-0 { padding-left:0!important; padding-right:0!important}
.white { background: var(--white);}
.br-30 { border-radius: 30px;}
.p-30 { padding:30px!important;}
/* ================= CUSTOM EDU SIDEBAR ================= */
.custom-edu-sidebar {
    width: 280px; /* Bạn có thể điều chỉnh độ rộng cho phù hợp với layout */
    font-family: "SVN-Avo", sans-serif; /* Đồng bộ font với website của bạn */
}

.edu-nav-group {
    margin-bottom: 15px;
    border-radius: 12px;
    background-color: #f2f7fb; /* Nền xanh xám nhạt cho item chưa chọn */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06); /* Hiệu ứng đổ bóng mờ */
    transition: all 0.3s ease;
    overflow: hidden; /* Giữ góc bo tròn khi header đổi màu */
}

.edu-nav-heading {
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    color: #929ca5; /* Màu chữ xám cho trạng thái chưa chọn */
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
	border-radius: 15px;
}

/* --- Trạng thái Active (Đang mở) --- */
.edu-nav-group.active {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.edu-nav-group.active .edu-nav-heading {
    background-color: #0068b3; /* Kế thừa mã màu xanh chính của bạn */
    color: #ffffff;
}

/* --- Danh sách menu con --- */
.edu-nav-list {
    display: none; /* Ẩn menu con theo mặc định */
    list-style: none;
    padding: 15px 20px 20px 10px; /* Thụt lề vào trong như hình */
    background-color: #f2f7fb; /* Cùng màu nền với item cha */
    margin: 0;
}

/* Xổ menu con khi item cha có class active */
.edu-nav-group.active .edu-nav-list {
    display: block;
	counter-reset: my-counter; /* Khởi tạo bộ đếm số thứ tự */
	    max-height: 50vh;
    overflow-y: auto;
}

.edu-nav-list li {
    margin-bottom: 12px;
	counter-increment: my-counter; /* Tăng bộ đếm cho mỗi thẻ li */
    display: flex;
    
    align-items: center; 
    
    
}
.edu-nav-list > li::before {
    content: counter(my-counter) ". "; /* Hiển thị số thứ tự kèm dấu chấm */
    min-width: 20px; /* Đảm bảo độ rộng cho số để text không bị thò ra thụt vào */
    margin-right: 5px; /* Khoảng cách từ số đến chữ */
    font-weight: normal; 
	font-size:12px;
    white-space: nowrap; /* Đảm bảo phần số không bị rớt dòng */
    /* margin-top: 4px; (Bỏ comment dòng này và tinh chỉnh px nếu canh trên cùng (flex-start) mà số hơi bị cao hơn chữ một chút) */
}
.edu-nav-list li:last-child {
    margin-bottom: 0;
}

.edu-nav-list a {
    text-decoration: none;
    color: #596168; /* Màu chữ xám đậm cho menu con */
    font-size: 15px;
    line-height: 1.4;
    display: inline-block;
    transition: all 0.2s ease;
}

/* Sub-item đang chọn hoặc hover vào */
.edu-nav-list a.active,
.edu-nav-list a:hover {
    color: #0068b3;
    text-decoration: underline;
    text-underline-offset: 4px; /* Chỉnh độ cách của đường gạch chân */
}	

        .search-bar {
            display: flex;
            border: 1px solid var(--border-color);
            border-radius: 20px;
            overflow: hidden;
            width: 250px;
        }
        .search-bar input {
            border: none;
            padding: 8px 15px;
            outline: none;
            width: 100%;
        }
        .search-bar button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0 15px;
            cursor: pointer;
        }

        .menu-toggle { display: none!important; font-size: 24px; cursor: pointer; color: var(--primary-color); }

        /* ================= SLIDER ================= */
        .slider-section {
            position: relative;
            
            overflow: hidden;
            padding: 20px 0;
			
        }
        
        .slide {
            display: none;
            align-items: center;
            justify-content: space-between;
            animation: fadeIn 0.8s ease;
        }
        .slide.active { display: flex; }

        .slide-content { flex: 1; padding-right: 30px; }
        .slide-content h4 { color: #f5a623; font-size: 20px; margin-bottom: 10px; }
        .slide-content h1 {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .slide-image { flex: 1; text-align: center; }
        .slide-image img { max-width: 100%; height: auto; border-radius: 30px;}

        /* Modern Slider Dots */
        .slider-dots {
            position: absolute;
            bottom:40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }
        .dot {
            width: 35px;
            height: 8px;
            background: rgba(0, 102, 204, 0.3);
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .dot.active {
            background: var(--primary-color);
            box-shadow: 0 0 10px rgba(0, 102, 204, 0.8); /* Hiệu ứng sáng sang trọng */
            width: 40px;
        }

        @keyframes fadeIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

        /* ================= FEATURES 1 & 3 (Cards) ================= */
        .grid-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }
        .grid-cards.center-wrap{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
		.col-3 { gap: 20px; display: flex;  flex-wrap: wrap; justify-content:left;}
		.col-3 .card-body{display:block; }


        .grid-cards.center-wrap .card { width: calc(25% - 20px); min-width: 220px; }
		.card-content.col-3 .card { width: calc(33% - 15px); min-width: 200px; }
        .card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            text-align: center;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
        }
        /* Hiệu ứng sáng mờ phía sau khi rê chuột */
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 102, 204, 0.2); 
            border-color: var(--primary-color);
        }

        .card-header {
            background: #2A7B9B;
			background: linear-gradient(180deg,rgba(3, 107, 182, 1) 0%, rgba(13, 127, 209, 1) 50%);
            color: white;
            padding: 15px;
            font-weight: bold;
            font-size: 18px;
			text-transform:uppercase
        }
        .card-body { padding: 15px 20px 0px; flex: 1; display: flex;     flex-wrap: nowrap; align-items: center;  gap: 10px;}
		.card-body.center-wrap { padding: 15px 20px 0px; flex: 1; display: flex;     flex-wrap: nowrap; align-items: stretch;  gap: 40px;}
		
		.card-content { width:100%; padding:30px;height:100%; border-radius:30px; background:#ffffff; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);}
		.card-content h3 { color: var(--primary-color); text-align:center; text-transform:uppercase; font-size: 22px; margin-bottom: 20px; }
		.card-body.col { flex-direction: column;  }
        .card-body img { height: 120px; margin-bottom: 5px; }
        .card-body p { font-size: 14px; color: var(--text-light); margin-bottom: 20px; flex: 1; }
        .card .btn {  font-size: 14px; min-width:100px; max-width:80%; margin:0 auto 15px; }

        /* ================= FEATURE 2 (Tính năng nổi bật - Gallery) ================= */
        .feature-gallery-sec {
            display: flex;
            gap: 40px;
            align-items: center;
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
		

        .gallery-left { flex: 1; }
		
		.gallery-left .gallery-text {
			writing-mode: vertical-rl;
			text-align: center;
			height: 400px;
			position: absolute;
			font-size: 40px;
			font-weight: bold;
			color:#999
		}
        .main-image {
            width: 100%;
            height: 400px;
            object-fit: contain;
            margin-bottom: 20px;
            transition: opacity 0.3s ease;
        }
		
        .thumbnails {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        .thumb {
            width: 60px;
            height: 80px;
            object-fit: cover;
            border: 2px solid transparent;
            cursor: pointer;
            border-radius: 5px;
            transition: 0.3s;
        }
        .thumb.active, .thumb:hover { border-color: var(--primary-color); }

        .gallery-right { flex: 1; }
        .feature-list li {
            font-size: 18px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .feature-list li::before {
            content: "\f00c"; /* FontAwesome check */
            font-family: "Font Awesome 6 Pro";
            font-weight: 900;
            color: var(--primary-color);
            margin-right: 10px;
        }

        /* ================= FEATURE 4 (Chuyên đề - Carousel) ================= */
        .carousel-container {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding-bottom: 20px;
            /* Hide scrollbar */
            -ms-overflow-style: none;  
            scrollbar-width: none;  
        }
        .carousel-container::-webkit-scrollbar { display: none; }

        .carousel-item {
            flex: 0 0 calc(50% - 10px);
            scroll-snap-align: start;
            background: white;
            border-radius: 10px;
            border: 1px solid var(--border-color);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .carousel-item .card-header { background: var(--primary-color); text-align: center; }
        .carousel-item .card-body { padding: 20px; }
        
        .list-two-cols {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 20px;
			padding: 0 10px;
        }
        .list-two-cols li { font-size: 14px; margin-bottom: 8px; color: var(--text-dark); }
        .carousel-item .btn-wrap { text-align: center; margin-top: auto; }

        /* ================= FEATURE 5 (Cộng đồng) ================= */
        .community-row {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-bottom: 40px;
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        .community-row:nth-child(even) { flex-direction: row-reverse; } /* Đảo ngược ảnh/chữ */        
        .community-img { flex: 1; }
        .community-img img { width: 100%; border-radius: 10px; object-fit: cover; }        
        .community-text { flex: 1; }
        .community-text h3 { color: var(--primary-color); font-size: 22px; margin-bottom: 20px; }
        .community-text ol { padding-left: 15px; margin-bottom: 20px; }
        .community-text ol li { margin-bottom: 10px; line-height: 1.5; color: var(--text-light); }
        .community-text a {margin:0 6px;}
		
		
        /* ================= FOOTER ================= */
        footer { background:#ebeef6; padding: 40px 0 20px; margin-top: 50px; border-top: 1px solid var(--border-color); }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 2fr 2fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-col h4 { margin-bottom: 15px; font-size: 18px; }
		.footer-col.logo-footer{ border-right:1px #ccc solid; text-align:center}
        .footer-col p { margin-bottom: 10px; font-size: 14px; color: var(--text-light); line-height:21px; display: flex; align-items: flex-start; gap: 10px; }
        .footer-col p i { color: white; background:black;  border-radius:50%; width: 25px;    height: 25px; line-height:25px;    text-align: center; }
        
        .brand-logos { display: flex; gap: 15px; align-items: center; margin-bottom: 15px; flex-wrap: wrap; }
        .brand-logos img { height: 35px; }
        .footer-links a {  font-size: 14px; color: var(--text-light); margin-bottom: 8px; margin-right:10px; text-decoration: underline; }

        /* ================= RESPONSIVE (MOBILE) ================= */
        @media (max-width: 992px) {
            .grid-cards.center-wrap .card { width: calc(50% - 20px); }
            .feature-gallery-sec { flex-direction: column; }
        }

        @media (max-width: 768px) {
			
			.slider-dots {
           
            bottom:10px;
            
        }
            /* Header Mobile */
            .nav-menu {
                display: none;
                position: absolute;
                top: 52px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                gap: 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-menu.show { display: flex; }
            .nav-menu li { border-bottom: 1px solid var(--bg-light); }
            .nav-menu li a { display: block; padding: 15px; }
            .menu-toggle { display: block!important; }
			.logo img {    height: 30px; margin-top:5px;}
            .search-bar { width: 200px;margin-right: 5px; }
			.header-wrap {height: 50px; border-top-left-radius: 0px;border-top-right-radius: 0px;}
			.btn {    padding: 6px 10px; }

            /* Slider Mobile */
            .slide { flex-direction: column-reverse; text-align: center; }
            .slide-content { padding-right: 0; padding-top: 20px; }
            .slide-content h1 { font-size: 32px; }
			.slider-section {padding: 20px 0 0px; }

            /* Cards */
            .grid-cards.center-wrap  {display: grid; grid-template-columns: 1fr 1fr; }
			.grid-cards.center-wrap  .card-body {    display: block; padding: 15px 10px 0px;}
			.grid-cards.center-wrap .card {min-width: 150px;width: calc(100% - 0px) }
			.card-header { padding: 10px;font-size: 16px;}
			.card .btn {max-width: 100%; margin: 0 auto 15px;}
			.section-title {margin: 20px 0 10px;}
			.feature-list li, .community-text li {font-size: 14px; margin-bottom: 10px;}
			
            /* Carousel Mobile */
            .carousel-item { flex: 0 0 100%; }
            .list-two-cols { grid-template-columns: 1fr; }
			.section-title {font-size: 24px;}
			
			.feature-gallery-sec {padding: 5px;}

            /* Community Mobile */
			.community-row { padding: 5px;  }
            .community-row, .community-row:nth-child(even) { flex-direction: column; }

            /* Footer Mobile */
            .footer-grid { grid-template-columns: 1fr; }
			.footer-col.logo-footer {    border-right:none;}
            .footer-col { text-align: center; }
            .footer-col p { justify-content: left; }
            .brand-logos { justify-content: center; }
        }
		


/* Mặc định trên Desktop */
.sidebar-content { display: block !important;}
.menu-toggle-btn{display:none;}
/* Mobile: Ẩn sidebar đi */
/* ==========================================================================
   GIAO DIỆN DI ĐỘNG CAO CẤP (MOBILE & TABLET < 992px)
   ========================================================================== */
@media (max-width: 991px) {
	.card-body.center-wrap { padding: 15px 10px; gap: 0px;}
	.card-content.col-3 {gap:10px;padding: 20px 10px;}
	.card-content.col-3 .card { width: calc(50% - 5px); min-width: 100px;}
	.card-content.col-3 .card-body { padding: 0px 5px 0px;}
	.card-content.col-3 .card-body p {font-size: 14px; margin-bottom:5px;}
	.card-content.col-3 .card-body img { height: 100px;}
	
    /* Nút bấm danh mục tinh tế */
	.edu-nav-list a { font-size: 12px;  line-height: 1.2;}
	
    .menu-toggle-btn {
        display: flex;
		left:0;
        position: fixed;
        justify-content: space-between;
        width: 35px;
        background:rbga(255, 255, 255, 0.6);
        color:#0068b3;
        border: 1px solid #e0e6ed;
        padding: 5px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 10px;
        margin-bottom: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        cursor: pointer;
        transition: all 0.2s ease;
    }
	.menu-toggle-btn i{ font-size: 18px; }
    .menu-toggle-btn span {
        margin-left: 10px;
        flex-grow: 1;
        text-align: left;
    }
    .menu-toggle-btn .arrow-icon {
        font-size: 12px;
        color: #888;
        transition: transform 0.3s ease;
    }
    .menu-toggle-btn:active {
        transform: scale(0.98);
        background-color: #f8fafc;
    }

    /* Biến Sidebar thành Drawer ẩn bên trái màn hình */
    .custom-edu-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        max-width: 85%;
        height: 100vh;
        background: #ffffff;
        z-index: 99999;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
        padding: 0 0 30px 0;
        overflow-y: auto;
        /* Hiệu ứng trượt gia tốc mượt mà */
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Trạng thái khi Sidebar được kích hoạt mở */
    .custom-edu-sidebar.open {
        transform: translateX(0);
    }

    /* Tiêu đề Header bên trong Sidebar mobile */
    .sidebar-mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #f0f4f8;
        background: #f8fafc;
    }
    .sidebar-mobile-header h3 {
        margin: 0;
        font-size: 18px;
        color: #1e293b;
        font-weight: 700;
    }
    .close-sidebar-btn {
        background: none;
        border: none;
        font-size: 28px;
        color: #64748b;
        cursor: pointer;
        line-height: 1;
    }

    /* Style lại các group menu bên trong cho thanh thoát */
    .edu-nav-group {
        border-bottom: 1px solid #f1f5f9;
        padding: 5px 15px;
    }
    .edu-nav-heading {padding: 5px 15px; }
    .edu-nav-heading a {
        font-weight: 600;
        color: #334155;
        font-size: 15px;
        text-decoration: none;
    }
    
    /* Active group sẽ đổi màu nhẹ nhàng */
    .edu-nav-group.active { background-color: #f0f7ff;    }
	.edu-nav-group.active .edu-nav-heading a{color: #fff; }
   

    /* Lớp nền mờ tinh tế phủ lên nội dung cũ */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(15, 23, 42, 0.4);
        backdrop-filter: blur(4px); /* Làm mờ hậu cảnh kiểu iOS cực sang */
        z-index: 9999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .sidebar-overlay.show {
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Chặn cuộn trang chính khi đang mở menu */
    body.sidebar-open {
        overflow: hidden;
    }
}

/* Ẩn các thành phần di động khi ở trên Desktop */
@media (min-width: 992px) {
    .menu-toggle-btn, .sidebar-mobile-header, .sidebar-overlay {
        display: none !important;
    }
	
	
	
}


.chu-hang-doc {
    writing-mode: vertical-rl; /* Chuyển hướng viết thành chiều dọc */
    text-orientation: upright; /* Ép các ký tự tiếng Việt đứng thẳng chứ không bị xoay nghiêng */
    letter-spacing: 3px;       /* Thêm chút khoảng cách giữa các chữ cho dễ đọc */
    text-transform: uppercase; /* (Tùy chọn) Viết hoa chữ nhìn sẽ đều và đẹp hơn */
}
.chu-xoay-nguoc {
    transform: rotate(-90deg);
    transform-origin: left bottom; /* Định vị tâm xoay */
    white-space: nowrap;           /* Không cho chữ bị tự động rớt hàng */
}
.chu-xoay-thuan {
    writing-mode: vertical-rl; /* Tự động xoay nghiêng chữ Latinh 90 độ */
    white-space: nowrap;
}