/* ===================== GLOBAL RESET ===================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* STOP BACKGROUND SCROLL WHEN OFFCANVAS OPEN */
body.offcanvas-open {
    overflow: hidden !important;
    height: 100vh;
    font-family: "Poppins", sans-serif;
}

.container,
.container-fluid {
    overflow: visible;
}


/* ===================== TOP BAR ===================== */

.top-bar {
    background: #0a7f6f;
    color: #fff;
    padding: 10px 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

    .top-bar a {
        color: #fff;
        text-decoration: none;
    }

    .top-bar i {
        margin-right: 6px;
    }

    .top-bar .divider {
        border-right: 1px solid rgba(255,255,255,0.3);
        margin: 0 15px;
        height: 20px;
    }

.btn-admission {
    background: #32b44a;
    color: #fff !important;
    padding: 4px 15px;
    border-radius: 6px;
}

/* Hide top bar on mobile & tablet */
@media (max-width: 1024px) {
    .top-bar {
        display: none !important;
    }
}

/* ===================== LOGO BAR ===================== */

.logo-bar {
    border-bottom: 1px solid #ccc;
    padding: 3px 0;
}

.affiliation-top {
    font-weight: bold;
    padding-top: 16px;
    padding-right: 50px;
    line-height: 24px;
    font-size: 13px;
}

.top-address {
    padding-top: 20px;
    position: relative;
    padding-left: 25px;
    margin-left: 25px;
    font-size: 13px;
}

    .top-address i {
        position: absolute;
        left: 0;
        font-size: 20px;
        top: 30px;
    }

    .top-address p {
        color: #000;
        margin-bottom: 10px;
        font-weight: 400;
    }

@media (max-width: 992px) {
    .affiliation-top,
    .top-address {
        text-align: center;
        padding: 5px 0;
        margin: 0;
    }

        .top-address i {
            display: none;
        }
}



/* ===================== MAIN NAVBAR ===================== */

/* ================= MAIN NAVBAR ================= */

nav.main-navbar {
    height: auto;
}

@media(max-width:768px) {
    .main-navbar {
        border-bottom: 1px solid #ddd;
        background: #fff;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    @media (max-width: 991.98px) {
        .main-navbar .navbar-collapse {
            max-height: calc(100dvh - 70px); /* navbar height */
            overflow-y: auto;
        }
    }
}

.main-navbar {
    border-bottom: 1px solid #ddd;
    background: #fff;
    font-family: "Poppins", sans-serif;
}

    .main-navbar.fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1040;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .main-navbar .nav-link {
        font-weight: 600;
        font-size: 14px;
        color: #333;
        padding: 14px 8px;
        text-transform: uppercase;
    }

        .main-navbar .nav-link:hover {
            background: #0a7f6f;
            color: #fff;
            border-radius: 5px;
        }

        .main-navbar .nav-link.active {
            color: #0a7f6f;
        }

            .main-navbar .nav-link.active:hover {
                color: #fff;
            }

    /* ================= DROPDOWN ================= */

    .main-navbar .dropdown-menu {
        border-radius: 0;
        border: none;
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .main-navbar .dropdown-item {
        font-size: 14px;
        padding: 8px 15px;
    }

        .main-navbar .dropdown-item:hover {
            background: #0a7f6f;
            color: #fff;
        }

/* ================= MOBILE NAV ================= */

@media (max-width: 991px) {
    .main-navbar .navbar-collapse {
        background: #fff;
        padding: 10px 0;
    }

    .main-navbar .nav-link {
        padding: 10px 15px;
    }

    /* Important: let Bootstrap control dropdown show/hide */
    .main-navbar .dropdown-menu {
        position: static;
        float: none;
        box-shadow: none;
    }
}

/* ================= DESKTOP HOVER DROPDOWN ================= */

@media (min-width: 992px) {

    .main-navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
        transition: all 0.25s ease;
        pointer-events: none;
    }

    .main-navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-navbar .dropdown-toggle::after {
        transition: transform 0.25s ease;
    }

    .main-navbar .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* ================= TOGGLER & RIGHT BUTTON ================= */

.navbar-toggler {
    border: none;
}

.right-menu-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #0a7f6f;
}

/* ================= BODY OFFSET ================= */

body.has-fixed-navbar {
    padding-top: 80px;
}
/* navhere */





.swiper {
    width: 100%;
    /* Adjust height as needed */
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover entire slide */
    display: block;
}





/*INTRO */

.about-section {
    padding: 80px 0;
    background: #fff;
}

.section-tag {
    color: #0a7f6f;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
}

.main-title {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    margin: 15px 0 25px;
}



/* Feature list */
.feature-list li {
    margin-bottom: 12px;
    color: #222;
    font-size: 15px;
}

.feature-list i {
    color: #0a7f6f;
    margin-right: 10px;
}

/* Cards */
.info-card {
    display: block;
    background: #fff;
    padding: 35px 30px 55px;
    border-radius: 18px;
    text-decoration: none;
    color: #000;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    height: 100%;
}

    .info-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    }

/* Icon */
.icon-circle {
    width: 64px;
    height: 64px;
    background: #e3f7f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0a7f6f;
    margin-bottom: 22px;
}

/* Arrow */
.arrow-btn {
    position: absolute;
    bottom: 22px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: #0b1c2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-card:hover .arrow-btn {
    background: #0a7f6f;
    transform: translateX(6px);
}

/* Button */
.btn-success {
    background-color: #000;
    border: none;
}

    .btn-success:hover {
        background-color: #0a7f6f;
    }

/* Responsive */
@media (max-width: 991px) {
    .main-title {
        font-size: 32px;
    }

    .about-section {
        padding: 60px 0;
    }
}


/* courses */



.courses-section {
    background: #fff;
}

/* HEADINGS */
.section-tag {
    color: #0a7f6f;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin: 10px 0;
}

.section-desc {
    color: #666;
    max-width: 700px;
    margin: auto;
}

/* CARD */
.course-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

    .course-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    }

    /* IMAGE */
    .course-card img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .course-card:hover img {
        transform: scale(1.08);
    }

/* ICON */
.course-icon {
    width: 65px;
    height: 65px;
    background: #0a1a2f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    position: absolute;
    left: 50%;
    top: 180px;
    transform: translateX(-50%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.course-card:hover .course-icon {
    background: #0a7f6f;
}

/* TITLE */
.course-card h5 {
    margin-top: 55px;
    padding-bottom: 25px;
    font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .course-card img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .course-card img {
        height: 200px;
    }

    .course-card h5 {
        margin-top: 50px;
    }

    .course-icon {
        top: 160px;
    }
}

@media (max-width: 576px) {
    .course-card img {
        height: 180px;
    }

    .course-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        top: 140px;
    }
}



/* achievments */
.achievements-section {
    padding: 80px 0;
    background-color: #fff;
}

    .achievements-section .section-tag {
        color: #0a7f6f;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 14px;
    }

    .achievements-section .section-title {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .achievements-section .section-desc {
        color: #555;
        max-width: 500px;
        margin-bottom: 30px;
    }

    .achievements-section .btn-get-started {
        background: #000;
        color: #fff;
        padding: 10px 30px;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

        .achievements-section .btn-get-started:hover {
            background: #0a7f6f;
            transform: translateY(-3px);
        }

.achievement-card {
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .achievement-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .achievement-card i {
        font-size: 36px;
        color: #0a7f6f;
        margin-bottom: 15px;
    }

    .achievement-card h3 {
        font-size: 28px;
        margin-bottom: 5px;
        font-weight: 700;
    }

    .achievement-card p {
        margin: 0;
        color: #555;
        font-weight: 500;
    }


/* footer */

.footer {
    background: #0a7f6f;
    padding: 70px 8%;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

/* REMOVED grid-template-columns — Bootstrap handles columns */
.footer-container {
    align-items: start;
}

/* Logo */
.footer-logo img {
    border-radius: 20px;
    width: 150px;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

    /* White underline */
    .footer-title::after {
        content: "";
        position: absolute;
        width: 90%;
        height: 2px;
        background: rgba(255, 255, 255, 0.6);
        bottom: -6px;
        left: 0;
    }

/* Lists */
.footer ul {
    list-style: none;
    padding: 0;
    margin-top: 18px;
}

    .footer ul li {
        margin: 10px 0;
        font-size: 15px;
    }

        .footer ul li a {
            color: #e8e8e8;
            text-decoration: none;
            transition: 0.3s ease;
        }

            .footer ul li a:hover {
                color: #000;
                padding-left: 4px;
            }

/* Contact */
.footer-contact p {
    margin: 12px 0;
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact i {
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
}

/* Social Icons */
.footer-social a {
    font-size: 22px;
    color: white;
    margin-right: 15px;
    transition: 0.3s;
}

    .footer-social a:hover {
        color: #000;
    }

/* Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 40px;
    font-size: 14px;
    color: #dcdcdc;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.close-btn {
    position: absolute;
    right: 4px;
    font-size: 27px;
    top: -3px;
    background: transparent;
    border: 1px solid transparent;
    color: #ff0000;
}

#rightMenu .menu-section ul {
    list-style-type: none !important;
    padding-left: 0px !important;
}

.course-title {
    display: inline-block;
    font-weight: 600;
    padding-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
    color: #701C45
}

    .course-title::before {
        background: #3FAE48 none repeat scroll 0 0;
        bottom: 0;
        content: "";
        height: 2px;
        left: 35px;
        position: absolute;
        width: 10px;
    }

    .course-title::after {
        background: #3FAE48 none repeat scroll 0 0;
        bottom: 0;
        content: "";
        height: 2px;
        left: 0;
        position: absolute;
        width: 30px;
    }
/* Courses panel */
/* Right courses button */
.right-menu-btn {
    background: none;
    border: none;
    font-size: 22px;
    color: #0a7f6f;
}

#coursePanel {
    display: none;
    position: fixed; /* FIXED so always visible */
    top: 60px; /* below navbar */
    right: 10px;
    width: 250px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    z-index: 2000;
    opacity: 0;
    transform: translateX(100%); /* start off-screen right */
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block; /* always block for animation */
}

    #coursePanel.active {
        display: block;
        opacity: 1;
        padding: 20px;
        transform: translateX(0);
    }

    #coursePanel ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        #coursePanel ul li {
            padding: 10px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
        }

            #coursePanel ul li:hover {
                background: #f4f4f4;
            }

    #coursePanel a {
        text-decoration: none;
        color: #000;
    }
/* Mobile full-width */
@media (max-width: 991px) {
    #coursePanel {
        width: 90%;
        overflow-y: auto;
        height: 100%;
        right: 0px;
        top: 0px;
    }
}

@media (max-width: 767px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

@media(max-width:991px) {
    .hide-m-logo {
        display: none;
    }
}
/* HERO */
.about-hero {
    background: #0a7f6f;
    color: #fff;
    padding: 100px 0;
}

.section-title {
    color: #0a7f6f;
    font-weight: 600;
}

.divider {
    width: 60px;
    height: 3px;
    background: #0a7f6f;
    margin: 10px auto 30px;
}

.content-box p {
    text-align: justify;
    line-height: 1.8;
    font-size: 15px;
}

.list-check {
    list-style-type: none;
    padding-left: 0.3rem;
}

    .list-check li {
        margin-bottom: 10px;
    }

    .list-check i {
        color: #0a7f6f;
        margin-right: 8px;
    }
/* HERO SECTION */
.hero-section {
    background: #0a7f6f;
    padding: 90px 0;
    color: #fff;
}

    .hero-section h1 {
        font-weight: 700;
    }

.section-text {
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

/* IMAGE */
.vm-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* HERO */
.hero-management {
    background: #0a7f6f;
    padding: 90px 0;
    color: #fff;
}

/* CARD */
.management-card {
    background: #f6f6f6;
    padding: 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    height: 100%;
}

    .management-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .management-card img {
        width: 140px;
        height: 160px;
        object-fit: cover;
        border-radius: 4px;
    }

    .management-card h6 {
        color: #0a7f6f;
        font-weight: 600;
        margin-top: 15px;
    }

    .management-card span {
        font-size: 14px;
        color: #555;
    }
/* HERO */
.hero-quality {
    background: #0a7f6f;
    padding: 90px 0;
    color: #fff;
}

/* CONTENT */
.quality-text {
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}

.quality-list li {
    margin-bottom: 12px;
}

.quality-list i {
    color: #0a7f6f;
    margin-right: 10px;
}

.quality-image img {
    border-radius: 6px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.15);
}
/* Page Banner */
.page-banner {
    background: #0a7f6f;
    background-size: cover;
    background-position: center;
    padding: 90px 0;
    color: #fff;
}

    .page-banner h1 {
        font-weight: 700;
        letter-spacing: 1px;
    }

/* Director Image */
.director-img {
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Content */
.message-content p {
    text-align: justify;
    color: #444;
    line-height: 1.8;
}

.director-name {
    color: #0a7f6f;
    font-weight: 600;
}

.page-banner {
    background: #0a7f6f;
    color: #fff;
    padding: 100px 0;
}

    .page-banner h1 {
        font-weight: 700;
    }

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.section-title {
    color: #0a7f6f;
    font-weight: 700;
}

.principal-card img {
    border-radius: 6px;
    width: 100%;
}

.principal-name {
    color: #0a7f6f;
    font-weight: 600;
    margin-top: 10px;
}

.message-text {
    text-align: justify;
    font-size: 15px;
    line-height: 1.8;
}

.page-banner {
    background: #0a7f6f;
    color: #fff;
    padding: 100px 0;
}

    .page-banner h1 {
        font-weight: 700;
    }

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.section-title {
    color: #0f7f6f;
    font-weight: 700;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #0f7f6f;
    margin: .5rem 0 1.5rem 0;
}

.content-img {
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.check-list li {
    margin-bottom: .75rem;
}

.check-list i {
    color: #0f7f6f;
    margin-right: .5rem;
}

.page-banner {
    background: #0a7f6f;
    color: #fff;
    padding: 100px 0;
}

    .page-banner h1 {
        font-weight: 700;
    }

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.section-title {
    color: #0f7f6f;
    font-weight: 700;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #0f7f6f;
    margin: .5rem 0 1.5rem 0;
}

.content-img {
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.check-list li {
    margin-bottom: .75rem;
}

.check-list i {
    color: #0f7f6f;
    margin-right: .5rem;
}

.page-banner {
    background: #0a7f6f;
    color: #fff;
    padding: 100px 0;
}

    .page-banner h1 {
        font-weight: 700;
    }

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.section-title {
    color: #0f7f6f;
    font-weight: 700;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #0f7f6f;
    margin: .5rem 0 1.5rem 0;
}

.content-img {
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.check-list li {
    margin-bottom: .75rem;
}

.check-list i {
    color: #0f7f6f;
    margin-right: .5rem;
}

.page-banner {
    background: #0a7f6f;
    color: #fff;
    padding: 100px 0;
}

    .page-banner h1 {
        font-weight: 700;
    }

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.section-title {
    color: #0f7f6f;
    font-weight: 700;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #0f7f6f;
    margin: .5rem 0 1.5rem 0;
}

.content-img {
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.check-list li {
    margin-bottom: .75rem;
}

.check-list i {
    color: #0f7f6f;
    margin-right: .5rem;
}

.page-banner {
    background: #0a7f6f;
    color: #fff;
    padding: 100px 0;
}

    .page-banner h1 {
        font-weight: 700;
    }

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.section-title {
    color: #0f7f6f;
    font-weight: 700;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #0f7f6f;
    margin: .5rem 0 1.5rem 0;
}

.content-img {
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.check-list li {
    margin-bottom: .75rem;
}

.check-list i {
    color: #0f7f6f;
    margin-right: .5rem;
}

.page-banner {
    background: #0a7f6f;
    color: #fff;
    padding: 100px 0;
}

    .page-banner h1 {
        font-weight: 700;
    }

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.section-title {
    color: #0f7f6f;
    font-weight: 700;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #0f7f6f;
    margin: .5rem 0 1.5rem 0;
}

.content-img {
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.check-list li {
    margin-bottom: .75rem;
}

.check-list i {
    color: #0f7f6f;
    margin-right: .5rem;
}

.page-banner {
    background: #0a7f6f;
    color: #fff;
    padding: 100px 0;
}

    .page-banner h1 {
        font-weight: 700;
    }

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.section-title {
    color: #0f7f6f;
    font-weight: 700;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #0f7f6f;
    margin: .5rem 0 1.5rem 0;
}

.content-img {
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.check-list li {
    margin-bottom: .75rem;
}

.check-list i {
    color: #0f7f6f;
    margin-right: .5rem;
}

.teaching-banner {
    background-color: #0f7f6f;
    padding: 70px 0;
    text-align: center;
}

    .teaching-banner h1 {
        color: #fff;
        font-weight: 700;
    }

.breadcrumb-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.section-title {
    color: #0f7f6f;
    font-weight: 700;
}

.title-line {
    width: 80px;
    height: 3px;
    background-color: #0f7f6f;
    margin: 10px auto 0;
}

.staff-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    white-space: nowrap;
}

.staff-table td {
    font-size: 15px;
    vertical-align: middle;
    white-space: nowrap;
}

.staff-table tbody tr:hover {
    background-color: #f1fdfb;
}

.teaching-banner {
    background-color: #0f7f6f;
    padding: 70px 0;
    text-align: center;
}

    .teaching-banner h1 {
        color: #fff;
        font-weight: 700;
    }

.breadcrumb-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.section-title {
    color: #0f7f6f;
    font-weight: 700;
}

.title-line {
    width: 80px;
    height: 3px;
    background-color: #0f7f6f;
    margin: 10px auto 0;
}

.staff-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    white-space: nowrap;
}

.staff-table td {
    font-size: 15px;
    vertical-align: middle;
    white-space: nowrap;
}

.staff-table tbody tr:hover {
    background-color: #f1fdfb;
}
/* ===== Page Banner ===== */
.page-banner {
    background: #0f7c6d;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

    .page-banner h1 {
        font-weight: 700;
        letter-spacing: 1px;
    }

.breadcrumb-custom a {
    color: #dff5f1;
    text-decoration: none;
}

/* ===== Facility Section ===== */
.facility-box {
    background: #ffffff;
    border-left: 5px solid #0f7c6d;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
}

.facility-title {
    background: #0f7c6d;
    color: #ffffff;
    display: inline-block;
    padding: 6px 14px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 15px;
}

.facility-list li {
    padding: 5px 0;
    font-size: 14.5px;
}
/* ===== Banner ===== */
.page-banner {
    background: #0a7f6f;
    color: #fff;
    padding: 100px 0;
}

    .page-banner h1 {
        font-weight: 700;
    }

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

/* ===== Form Card ===== */
.admission-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* ===== Fieldset ===== */
fieldset {
    border: 1px solid #e1e1e1;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

legend {
    font-size: 18px;
    font-weight: 700;
    color: #0f7c6d;
    padding: 0 12px;
}

/* ===== Labels ===== */
label {
    font-weight: 600;
    font-size: 14px;
}

/* ===== Inputs ===== */
.form-control,
.form-select {
    font-size: 14px;
}

    .form-control:focus,
    .form-select:focus {
        border-color: #0f7c6d;
        box-shadow: 0 0 0 0.15rem rgba(15,124,109,0.25);
    }

/* ===== Buttons ===== */
.btn-theme {
    background: #0f7c6d;
    color: #fff;
    padding: 10px 30px;
    font-weight: 600;
}

    .btn-theme:hover {
        background: #0c665a;
        color: #fff;
    }

/* ===== Checkbox ===== */
.form-check-label {
    font-size: 14px;
}

/* ===== Message ===== */
.form-message {
    text-align: center;
    font-weight: 600;
    margin-top: 15px;
}

.page-header {
    background: #0b7d6b;
    padding: 90px 0;
    color: #fff;
    text-align: center;
}

    .page-header h1 {
        font-weight: 700;
    }

.breadcrumb {
    justify-content: center;
    background: none;
    margin-bottom: 0;
}

    .breadcrumb a {
        color: #dff5f1;
        text-decoration: none;
    }

    .breadcrumb .active {
        color: #ffffff;
    }

/* Gallery */
.gallery-section {
    padding: 70px 0;
}

.filter-btns .btn {
    border-radius: 30px;
    padding: 8px 26px;
    font-weight: 500;
	color:#198754;
}

.gallery-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    background: #fff;
}

    .gallery-card img {
        height: 230px;
        width: 100%;
        object-fit: cover;
    }

    .gallery-card:hover {
        transform: translateY(-5px);
    }

.gallery-title {
    padding: 12px;
    text-align: center;
    font-weight: 600;
    border-top: 1px solid #eee;
}

/* Hide items */
.gallery-item {
    display: block;
}

.theme-header {
    background: #0f7f6c;
    padding: 90px 0;
    text-align: center;
}

    .theme-header h1 {
        color: #fff;
        font-size: 40px;
        font-weight: 700;
    }

    .theme-header p {
        color: #e8f5f2;
        margin: 0;
    }

    .theme-header a {
        color: #ffffff;
        text-decoration: none;
    }

/* ================= CONTACT SECTION ================= */
.contact-section {
    padding: 70px 0;
}

.section-title {
    font-weight: 700;
    color: #0f7f6c;
    margin-bottom: 10px;
}

.section-line {
    width: 60px;
    height: 3px;
    background: #0f7f6c;
    margin-bottom: 25px;
}

/* Info box */
.info-box {
    margin-bottom: 25px;
}

    .info-box i {
        font-size: 28px;
        color: #0f7f6c;
    }

    .info-box h6 {
        font-weight: 600;
        margin-top: 8px;
    }

/* Form */
.form-control {
    border-radius: 0;
}

.btn-theme {
    background: #0f7f6c;
    color: #fff;
    border-radius: 0;
    padding: 10px 25px;
}

    .btn-theme:hover {
        background: #0c6657;
        color: #fff;
    }

/* Map */
.map iframe {
    width: 100%;
    height: 260px;
    border: 0;
}
/* ======== GALLERY SECTION ======== */
.gallery-section {
    padding: 50px 0;
    background: #f7f7f7;
}

.gallery-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 5px;
    color: #222;
}

.gallery-text {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

/* Filter Buttons */
.gallery-filters {
    text-align: center;
    margin-bottom: 30px;
}

.filter-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 8px 18px;
    margin: 5px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

    .filter-btn.active,
    .filter-btn:hover {
        color: white;
    }

/* Gallery Grid */
.gallery-grid {
    display: grid;
    gap: 16px;
}

/* Responsive Columns */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 600px) and (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Gallery Item */
.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

    .gallery-item:hover {
        transform: scale(1.03);
    }

    .gallery-item img {
        width: 100%;
        height: 210px;
        object-fit: cover;
    }

    .gallery-item h4 {
        padding: 10px;
        margin: 0;
        text-align: center;
        font-size: 16px;
        color: #222;
    }

.hidden {
    display: none;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

    .lightbox img {
        max-width: 90%;
        max-height: 80%;
        border-radius: 8px;
    }

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 45px;
    cursor: pointer;
}
/*Side Menu*/
.side-menu {
   
    background: #f4f7fb;
    min-height: 100vh;
    padding: 0;
    border-right: 1px solid #ddd;
    font-family: Arial;
}

    /* Heading */
    .side-menu .menu-heading {
        background: #1c3651;
        color: #fff;
        padding: 14px 16px;
        font-size: 18px;
        font-weight: bold;
    }

    /* List */
    .side-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .side-menu ul li a {
            display: block;
            padding: 12px 16px;
            text-decoration: none;
            color: #1c3651;
            transition: 0.2s;
        }

            /* Hover */
            .side-menu ul li a:hover {
                background: #0a7f6f;
                color: #fff;
            }

        /* Active */
        .side-menu ul li.active > a {
            background: #0a7f6f;
            color: #fff;
        }

ul.committee-list li {
    font-size: 15px;
    line-height: 1.7;
    color: #222c54;
    letter-spacing: 0.5px;
    text-align: left;
    position: relative;
    padding-left: 15px;
}

ul.committee-list li {
    list-style-type:none;
    list-style-position: inside !important;
}

    ul.committee-list li:before {
        content: "\f111 ";
        font-family: fontawesome;
        margin-right: 9px;
        font-weight: 300 !important;
        color: #0a7f6f;
        font-size: 10px;
        position: absolute;
        top: 4px;
        left: 0;
    }
/* responsive wrapper */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

/* table style */
.custom-table {
    width: 100%;
    border-collapse: collapse;
}

    /* header color */
    .custom-table thead {
        background: #0a7f6f;
        color: #fff;
    }

    .custom-table th,
    .custom-table td {
        padding: 12px 10px;
        border: 1px solid #ddd;
        text-align: left;
    }

    /* row hover */
    .custom-table tbody tr:hover {
        background: #e6f4f2;
    }

/* small screen font */
@media(max-width:600px) {
    .custom-table th,
    .custom-table td {
        font-size: 14px;
        white-space: nowrap;
    }
}