body {
    font-family: Arial, sans-serif;
}

/* Thông báo */

.alert {
    position: fixed;
    top: 20px;
    right: -100%;
    /* Khởi tạo ở ngoài màn hình (bên phải) */
    transform: translateX(0%);
    padding: 10px 20px;
    z-index: 9999;
    border-radius: 5px;
    display: inline-block;
    font-size: 16px;
    transition: right 0.5s ease-in-out;
    /* Hiệu ứng chuyển động */
}

.alert.alert-show {
    right: 20px;
    /* Di chuyển vào màn hình */
}

.alert-success {
    background-color: #28a745;
    color: white;
}

.alert-danger {
    background-color: #dc3545;
    color: white;
}


/* News Section */
.news-section .card {
    transition: transform 0.3s ease;
}

.news-section .card:hover {
    transform: translateY(-10px);
}

/* Teachers Section */
.teachers-section .card {
    transition: transform 0.3s ease;
}

.teachers-section .card:hover {
    transform: scale(1.05);
}

/* Contact Form */
.contact-section form input,
.contact-section form button {
    margin-bottom: 15px;
}


/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 94, 201, 0.678);
    /* Blue Overlay */
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
}

/* Hero Section với background image */
.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('image/HinhNen.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-bottom: 80px;
}

/* Lớp phủ tam giác ở góc trên bên phải */
.hero-section .overlay-bottom-right-banner {
    position: absolute;
    top: 1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    /* Màu trắng với độ mờ */
    clip-path: polygon(100% 80%, 100% 100%, 20% 100%);
    /* Tam giác ở góc trên bên phải */
    z-index: 10;
}

/* Lớp phủ tam giác ở góc dưới bên trái */
.hero-section .overlay-bottom-left-banner {
    position: absolute;
    top: 1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    /* Màu trắng với độ mờ */
    clip-path: polygon(0 75%, 0 100%, 45% 100%);
    /* Tam giác ở góc dưới bên trái */
    z-index: 11;
    /* Đặt z-index thấp hơn lớp phủ trên bên phải */
}



/* Nội dung hiển thị trên nền */
.hero-section .content {
    position: relative;
    z-index: 2;
    /* Đảm bảo nội dung nằm trên lớp phủ */
    text-align: center;
}

/* icon */
.img-container {
    position: absolute;
    /* Đặt hình ảnh trong lớp phủ */
    display: flex;
    justify-content: flex-end;
    /* Căn hình ảnh về phía bên phải */
    overflow: hidden;
    /* Đảm bảo phần vượt ra ngoài không được hiển thị */
}

.icon-banner1 {
    top: 820px;
    right: 180px;
    width: 33%;
    height: 13%;
}

.icon-banner2 {
    top: 850px;
    right: 1350px;
    width: 33%;
    height: 13%;
}

.icon-banner3 {
    top: 800px;
    right: 1600px;
    width: 31%;
    height: 11%;
}



/* Navbar */
.custom-navbar {
    top: 50px;
    z-index: 99;
    background-color: white;
    padding: 5px 110px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
}

.custom-text {
    display: block;
    /* Đảm bảo đoạn văn được hiển thị dưới dạng block để quản lý width */
    width: 500px;
    /* Đặt độ rộng hợp lý để nội dung chia thành 3 dòng */
    line-height: 1.6;
    /* Điều chỉnh khoảng cách giữa các dòng cho đẹp mắt */
    font-size: 23px;
    margin-top: 40px;
}



.btn-xem-them {
    width: 220px;
    height: 50px;
}

.btn-xem-them span {
    font-size: 20px;
}


.custom-navbar .nav-link {
    color: #000000;
    font-weight: bold;
    padding: 10px 60px;
    margin: 0px 20px;
    font-size: 23px;
    transition: background-color 0.3s, color 0.3s;
}

.custom-navbar .nav-link.active {
    color: #0044cc;
}

.custom-navbar .nav-link:hover {
    color: #0044cc;
}

/* Hero Text */
.hero-content h1 {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Button */
.btn-primary {
    background-color: #0044cc;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #002a80;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
}

.carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.5;
}

.carousel-indicators .indicator.active {
    background-color: #0044cc;
    opacity: 1;
}

/* Carousel Arrows */
.carousel-navigation {
    position: absolute;
    bottom: 20px;
    right: 50px;
    display: flex;
    gap: 20px;
}

.carousel-navigation .arrow-left,
.carousel-navigation .arrow-right {
    width: 20px;
    height: 20px;
    border: solid 2px white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    cursor: pointer;
}

.carousel-navigation .arrow-left {
    transform: rotate(135deg);
}

.carousel-navigation .arrow-right {
    transform: rotate(-45deg);
}

/* Tin tức */

.title-tin-tuc span {
    background-color: #0044cc;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
}

.card {
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    /* Căn giữa hình ảnh theo chiều ngang */
    align-items: center;
    /* Căn giữa hình ảnh theo chiều dọc */
    flex-direction: column;
    /* Hiệu ứng đổ bóng */
    box-shadow: 15px -8px 15px rgba(0, 0, 0, 0.1), 0 -11px 20px rgba(0, 0, 0, 0.1);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.card:hover {
    transform: scale(1.05);
    /* Slightly scale up the card */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    /* Add shadow on hover */
}

.card img {
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.1);
    /* Scale up the image on hover */
}

.card-body {
    transition: background-color 0.3s ease;
    height: 150px;
}

.card:hover .card-body {
    background-color: #f0f0f0;
    /* Change background color on hover */
}

.card-text {
    color: #0044cc;
    font-size: 21px;
    font-weight: 600;
    margin: 0 10px;
    text-align: center;
}

.card-img-top {
    width: 85%;
    margin-top: 20px;
    height: 270px;
    object-fit: cover;
    border-radius: 1.5rem;
}

.card-body {
    padding: 1rem;
}


.card.inner {
    transform: translateY(-100px);
    /* Đẩy thẻ card lên trên */
}



/* News Section and Overlays */
.news-section {
    position: relative;
}

/* Lớp phủ tam giác ở góc trên bên phải */
.news-section .overlay-bottom-right-news {
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #075095;
    /* Màu trắng với độ mờ */
    clip-path: polygon(100% 63%, 100% 100%, 48% 100%);
    /* Tam giác ở góc trên bên phải */
    z-index: 10;
}

/* Lớp phủ tam giác ở góc dưới bên trái */
.news-section .overlay-bottom-left-news {
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #075095;
    /* Màu trắng với độ mờ */
    clip-path: polygon(0 65%, 0 100%, 52% 100%);
    /* Tam giác ở góc dưới bên trái */
    z-index: 11;
    /* Đặt z-index thấp hơn lớp phủ trên bên phải */
}

/* Event-section and Overlays */
.event-section {
    position: relative;
    display: flex;
    /* Hoặc inline-flex nếu cần */
    justify-content: center;
    /* Căn giữa theo chiều ngang */
    align-items: center;
    /* Căn giữa theo chiều dọc (nếu cần) */
}

/* Lớp phủ tam giác ở góc trên bên phải */
.event-section .overlay-bottom-event {
    position: absolute;
    top: 1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #075095;
    /* Màu trắng với độ mờ */
    clip-path: polygon(48% 31%, 0% 0%, 100% 0%);
    /* Tam giác ở góc trên bên phải */
    z-index: 5;
}

.event-sections {
    margin-top: 150px;
}


.title-event {
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    z-index: 10;
    top: 180px;
}

/* Teacher */
.gai-card-teacher {
    --bs-gutter-x: 7rem;
    z-index: 20;
}

.card-teacher {
    border-radius: 30px;
    height: 300px;
}

.card-title {
    font-size: 33px;
    margin-top: 20px;
    font-weight: 600;
}

/* Footer */
.contact-info ul li {
    color: white;
    list-style: none;
}

.contact-info span {
    font-size: 25px;
}

.text-contact {
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.btn-gui {
    background-color: white;
    color: #0044cc;
    font-weight: bold;
    font-size: 22px;
}

.title-footer {
    background-color: white;
    padding: 10px 20px;
    border-radius: 50px;
    color: #004b91;
    font-weight: bold;
}

.social-media ul {
    list-style: none;
    display: flex;
    margin-left: 20px;
}

.social-media ul li {
    margin-left: 20px;
}

li:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Teacher Section and Overlays */
.teachers-section {
    position: relative;
    z-index: 20;
}

.teachers-section::before {
    background: rgba(42, 122, 228, 0.6);
    /* Blue Overlay */
    position: absolute;
    z-index: 2;
}


/* Lớp phủ tam giác ở góc trên bên phải */
.teachers-section .overlay-bottom-right-teacher {
    position: absolute;
    top: 1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    /* Màu trắng với độ mờ */
    clip-path: polygon(100% 78%, 100% 100%, 48% 100%);
    /* Tam giác ở góc trên bên phải */
    z-index: 10;
}

/* Lớp phủ tam giác ở góc dưới bên trái */
.teachers-section .overlay-bottom-left-teacher {
    position: absolute;
    top: 1px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    /* Màu trắng với độ mờ */
    clip-path: polygon(0 57%, 0 100%, 54% 100%);
    /* Tam giác ở góc dưới bên trái */
    z-index: 11;
    /* Đặt z-index thấp hơn lớp phủ trên bên phải */
}







/*--------------------------------------- Trang giới thiệu --------------------------------------*/

/* Hero Section */
.header-section {
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-content {
    z-index: 2;
    position: relative;
}

.text-banner {
    margin-bottom: 0;
    margin-top: 210px;
    font-size: 25px;
    text-align: justify;
    background-color: #3d76ac;
    padding: 20px;
    border-radius: 30px;
}

.boder-img-banner {
    margin-top: 400px;
    background-color: aliceblue;
    padding: 5px;
    border-radius: 35px;
}

.boder-card-img {
    background-color: #004b91;
    padding: 5px;
    border-radius: 30px;
}

.title-su-menh {
    margin-left: 25px;
}

.title-gioi-thieu {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: bold;
    color: white;
}

.text-gioi-thieu {
    color: white;
    font-size: 20px;
}

.title-cot-loi {
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
}

.text-cot-loi {
    color: white;
    font-size: 20px;
    text-align: justify;
}

.text-end-cot-loi {
    text-align: end;
    margin-bottom: 40px;
}



/* ----------------------------------------- Tin tức ----------------------------------------- */
.span-tin-tuc {
    color: #000000;
    font-size: 23px;
    font-weight: bold;
    margin: 40px 0;
    text-align: center;
}

.span-tin-tuc span {
    background-color: #ffffff;
    padding: 10px 30px;
    border-radius: 50px;
    display: inline-block;
    /* Giữ nội dung bên trong block có thể chỉnh kích thước */
    min-width: 330px;
    /* Chiều rộng tối thiểu */
}

.span-tin-tuc span:hover {
    background-color: #004b91;
    color: #ffffff;
    cursor: pointer;
}

.selected {
    background-color: #004b91 !important;
    /* Màu nền khi được chọn */
    color: #ffffff !important;
    /* Màu chữ khi được chọn */
}

.p-tin-tuc {
    color: #000000;
    font-size: 25px;
    font-weight: bold;
}

.img-tin-tuc img:hover{
    transition: transform 0.3s ease;
    transform: scale(1.05); /* Phóng to 105% */
    cursor: pointer;
}


/* ----------------------------------------- Sự kiện ----------------------------------------- */

.p-su-kien {
    font-size: 23px;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rounded-container-top {
    border-radius: 0 0 500px 500px;
    /* Adjust value to get desired curve */
    background-color: #004b91;
    /* Assuming a white background */
    padding: 50px;
    /* Add some padding if necessary */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional: add shadow for better effect */
}

.rounded-container-bottom {
    border-radius: 500px 500px 0 0;
    /* Adjust value to get desired curve */
    background-color: #004b91;
    /* Assuming a white background */
    padding: 50px;
    /* Add some padding if necessary */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Optional: add shadow for better effect */
}


.span-sukien {
    color: #ffffff;
    padding: 10px 30px;
    font-size: 30px;
    font-weight: bold;
    border-radius: 50px;
    display: inline-block;
    min-width: 150px;
    position: relative;
    /* Thêm thuộc tính này */
    z-index: 20;
}

.span-sukien:hover {
    background-color: #004b91;
    color: #ffffff;
    cursor: pointer;
}

.span-sukien.selected {
    background-color: #004b91;
    /* Màu nền khi được chọn */
    color: #ffffff;
    /* Màu chữ khi được chọn */
}

.img-su-kien img:hover{
    transition: transform 0.3s ease;
    transform: scale(1.05); /* Phóng to 105% */
    cursor: pointer;
}

.content {
    display: flex;
    align-items: center;
    /* Căn giữa theo chiều dọc */
}

.half-img {
    width: 48%;
    /* Chiều rộng hình ảnh là 48% */
    height: auto;
    /* Tự động điều chỉnh chiều cao */
    margin-bottom: 20px;
    /* Khoảng cách giữa các hình ảnh và văn bản */
}

.left {
    float: left;
    /* Hình ảnh bên trái */
    margin-right: 4%;
    /* Khoảng cách bên phải */
}

.right {
    float: right;
    /* Hình ảnh bên phải */
    margin-left: 4%;
    /* Khoảng cách bên trái */
}

/* Đặt lại định dạng khi kết thúc khối */
h4,
p {
    clear: both;
    /* Đặt lại định dạng sau mỗi khối */
}

/* ----------------------------------------- Giáo viên ----------------------------------------- */
.container-giao-vien {
    height: 800px;
    background-color: #004b91;
}

.card-teacher-top {
    margin-top: -150px;
}

.body-teacher{
    height: 450px !important;
}

.body-teacher-2{
    height: 330px !important;
}

.text-banner-giaovien {
    margin-bottom: 0;
    margin-top: 150px;
    font-size: 25px;
    text-align: justify;
    background-color: #0000003d;
    padding: 20px;
    border-radius: 30px;
}

.progress-container {
    width: 90%;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 5px;
    border: 2px solid #ddd;
    margin-left: 15px;
}

.progress-bar {
    width: 100%;
    height: 30px;
    background-color: #ffffff;
    border-radius: 50px;
    position: relative;
}

.progress-fill-1 {
    width: 0%;
    /* Ban đầu, thanh tiến trình sẽ ở mức 0 */
    height: 100%;
    background-color: #7ed957;
    border-radius: 50px;
    transition: width 0.5s ease-in-out;
    /* Thêm transition để tạo hiệu ứng mượt mà */
}

.progress-fill-2 {
    width: 0%;
    /* Ban đầu, thanh tiến trình sẽ ở mức 0 */
    height: 100%;
    background-color: #ffde59;
    border-radius: 50px;
    transition: width 0.5s ease-in-out;
    /* Thêm transition để tạo hiệu ứng mượt mà */
}

.progress-fill-3 {
    width: 0%;
    /* Ban đầu, thanh tiến trình sẽ ở mức 0 */
    height: 100%;
    background-color: #0cc0df;
    border-radius: 50px;
    transition: width 0.5s ease-in-out;
    /* Thêm transition để tạo hiệu ứng mượt mà */
}

.card-teachers {
    background-color: #004b91;
    border-radius: 30px;
    border: none;
}

.card-teachers:hover {
    transform: scale(1.05);
    /* Phóng to 105% */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Thêm đổ bóng */
    transition: all 0.3s ease;
    /* Tạo hiệu ứng chuyển đổi mượt mà */
}



.title-teacher {
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
    color: white;
    font-size: 22px;
}

.p-teacher {
    text-align: center;
    font-size: 21px;
    color: white;
}

/* ----------------------------------------- Liên hệ ----------------------------------------- */

.icon-lien-he i {
    font-size: 50px;
    width: 50px;
    margin-right: 20px;
    text-align: center;
}

.title-lien-he {
    font-weight: 600;
}

.text-lien-he span {
    font-size: 20px;
}

.header-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 122, 228, 0.6);
    /* Blue Overlay */
}

















/* Điều chỉnh khi màn hình nhỏ hơn 768px (tablet và điện thoại) */
@media (max-width: 768px) {
    .custom-text {
        width: 250px;
        /* Giảm độ rộng trên màn hình nhỏ hơn */
        font-size: 0.9rem;
        /* Giảm kích thước font */
    }

    .card.inner {
        transform: none;
        /* Loại bỏ di chuyển nếu dùng transform */
    }

    .btn-xem-them {
        width: 180px;
        height: 45px;
    }

    .btn-xem-them span {
        font-size: 18px;
    }

    .img-footer {
        width: 450px;
    }

    /* trang giới thiệu */
    .text-banner {
        margin-bottom: 0;
        font-size: 25px;
        text-align: justify;
        background-color: #3d76ac;
        padding: 20px;
        border-radius: 30px;
    }

    .header-section {
        height: 1350px;
    }

    .text-banner {
        margin-top: 120px;
    }

    .boder-img-banner {
        margin-top: 0;
        height: 450px;
        width: 700px;
        background-color: aliceblue;
        padding: 5px;
        border-radius: 35px;
        margin-bottom: 30px;
    }

    .boder-img-banner img {
        height: 430px;
    }

    .boder-card-img {
        background-color: #004b91;
        padding: 5px;
        border-radius: 30px;
    }

}


/* Điều chỉnh khi màn hình nhỏ hơn 576px (mobile) */
@media (max-width: 576px) {
    .custom-text {
        width: 200px;
        /* Giảm độ rộng thêm trên điện thoại */
        font-size: 0.8rem;
        /* Giảm kích thước font thêm nữa */
    }

    .btn-xem-them {
        width: 140px;
        height: 42px;
    }

    .btn-xem-them span {
        font-size: 14px;
    }

    .img-footer {
        width: 370px;
    }

    .teachers-section .overlay-bottom-right-teacher {
        position: absolute;
        top: 2px;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        clip-path: polygon(100% 94%, 100% 100%, 42% 100%);
        z-index: 10;
    }

    .teachers-section .overlay-bottom-left-teacher {
        position: absolute;
        top: 2px;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        clip-path: polygon(0 91%, 0 100%, 54% 100%);
        z-index: 11;
    }

    .event-section .overlay-bottom-event {
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #075095;
        clip-path: polygon(48% 8%, 0% 0%, 100% 0%);
        z-index: 5;
    }

    .news-section .overlay-bottom-right-news {
        position: absolute;
        top: 2px;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #075095;
        clip-path: polygon(100% 93%, 100% 100%, 48% 100%);
        z-index: 10;
    }

    .news-section .overlay-bottom-left-news {
        position: absolute;
        top: 2px;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #075095;
        clip-path: polygon(0 92%, 0 100%, 52% 100%);
        z-index: 11;
    }

    .title-event {
        color: white;
        padding: 10px 25px;
        border-radius: 50px;
        font-weight: bold;
        text-transform: uppercase;
        position: absolute;
        z-index: 10;
        top: 48px;
    }

    /* trang giới thiệu */
    .text-banner {
        margin-bottom: 0;
        font-size: 25px;
        text-align: justify;
        background-color: #3d76ac;
        padding: 20px;
        border-radius: 30px;
    }

    .header-section {
        height: 1100px;
    }

    .text-banner {
        margin-top: 100px;
    }

    .boder-img-banner {
        margin-top: 0;
        height: 250px;
        width: 400px;
        background-color: aliceblue;
        padding: 5px;
        border-radius: 35px;
        margin-bottom: 30px;
    }

    .boder-img-banner img {
        height: 230px;
    }

    .boder-card-img {
        background-color: #004b91;
        padding: 5px;
        border-radius: 30px;
    }

    .title-su-menh {
        margin-left: 0px;
    }

    .title-tam-nhin {
        color: #000000;
    }

    .text-end-cot-loi {
        text-align: start;
    }

    .text-end-cot-loi span {
        font-size: 29px;
    }

    .img-su-menh {
        margin-bottom: 20px;
    }

    .container-giao-vien {
        height: 1600px;
    }


    .card-teacher-top {
        margin-top: 0;
    }

    .container-su-kien {
        height: 2000px;
    }

    .container-tin-tuc {
        height: 1800px;
    }
}