/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    height: 42px;
    background: #105b78;
}


/* =========================================================
   HEADER
========================================================= */

.main-header {
    background: #f3f3f3;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);

    position: relative;
    z-index: 100;
}

.header-row {
    min-height: 200px;
    padding: 10px 25px;
}

.logo-box {
    display: flex;
    align-items: center;
}

.logo-box img {
    width: 145px;
    height: 145px;
    object-fit: contain;
}

.header-content {
    width: 100%;
}

.trust-name {
    font-size: 17px;
    color: #666;
    font-weight: 500;
    margin-bottom: 5px;
}

.header-content h1 {
    margin: 0 0 8px;
    color: #666;
    font-size: 35px;
    line-height: 1.15;
    font-weight: 700;
}

.location {
    color: #666;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 7px;
}

.approval-text {
    color: #666;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.code-text {
    display: flex;
    justify-content: center;
    gap: 25px;

    color: #07577a;
    font-size: 16px;
    font-weight: 700;
}


/* =========================================================
   NAVBAR - GLOBAL
========================================================= */

.main-navbar {
    min-height: 94px;

    padding: 0 !important;

    background: #105b78 !important;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);

    position: relative;
    z-index: 5000;
}

.main-navbar .container-fluid {
    min-height: inherit;
    width: 100%;
    max-width: 100%;
}

.main-navbar .navbar-collapse {
    width: 100%;
}

.main-menu {
    width: 100%;

    margin: 0 !important;
    padding: 0 !important;

    display: flex;

    justify-content: flex-start !important;
    align-items: center;

    list-style: none;

    overflow: visible !important;
}

.main-menu .nav-item {
    position: relative;
    flex: 0 0 auto;
}

.main-menu .nav-link {
    color: #ffffff !important;

    font-size: 11px;
    font-weight: 750;

    text-transform: uppercase;

    padding: 24px 7px;

    white-space: nowrap;

    position: relative;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.main-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
}


/* =========================================================
   ACTIVE MAIN MENU
========================================================= */

.main-menu .nav-link.active {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

.main-menu .nav-link.active::after {
    content: "";

    position: absolute;

    left: 7px;
    right: 7px;
    bottom: 7px;

    height: 3px;

    background: #ffffff;

    border-radius: 2px;
}


/* =========================================================
   ACTIVE DROPDOWN ITEM
========================================================= */

.main-menu .dropdown-item.active {
    background: #105b78 !important;
    color: #ffffff !important;
    font-weight: 700;
}


/* =========================================================
   DROPDOWN
========================================================= */

.main-menu .dropdown-menu {
    min-width: 220px;

    margin: 0;
    padding: 5px 0;

    border: none;
    border-radius: 0;

    background: #ffffff;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);

    z-index: 99999;
}

.main-menu .dropdown-item {
    display: block;

    width: 100%;

    padding: 10px 15px;

    font-size: 13px;
    font-weight: 600;

    white-space: normal;

    color: #333333;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.main-menu .dropdown-item:hover {
    background: #105b78;
    color: #ffffff;
}


/* =========================================================
   DROPDOWN ARROW
========================================================= */

.main-menu .dropdown-toggle::after {
    margin-left: 4px;
    vertical-align: middle;
}


/* =========================================================
   MOBILE BRAND
========================================================= */

.mobile-brand {
    display: none;

    color: #ffffff !important;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;
}


/* =========================================================
   DESKTOP / LAPTOP
   1200px AND ABOVE
========================================================= */

@media (min-width: 1200px) {

    /*
       IMPORTANT:
       Navbar items can use more than one row.
       This prevents laptop horizontal page movement.
    */

    .main-menu {
        flex-wrap: wrap !important;
        align-content: center;
        overflow: visible !important;
    }

    .main-menu .nav-item {
        flex: 0 0 auto;
    }


    /* ---------------------------------------------
       DESKTOP DROPDOWN DEFAULT
    --------------------------------------------- */

    .main-menu > .nav-item.dropdown > .dropdown-menu {
        display: block;

        position: absolute;

        top: 100%;
        left: 0;

        opacity: 0;
        visibility: hidden;

        pointer-events: none;

        transform: translateY(8px);

        transition:
            opacity 0.15s ease,
            transform 0.15s ease,
            visibility 0.15s ease;
    }


    /* ---------------------------------------------
       DESKTOP HOVER DROPDOWN
    --------------------------------------------- */

    .main-menu > .nav-item.dropdown:hover > .dropdown-menu,
    .main-menu > .nav-item.dropdown.show > .dropdown-menu {
        opacity: 1;
        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }


    /* ---------------------------------------------
       DROPDOWN PARENT HOVER
    --------------------------------------------- */

    .main-menu > .nav-item.dropdown:hover > .nav-link {
        background: rgba(255, 255, 255, 0.15);
    }


    /* ---------------------------------------------
       GAP CONNECTOR
    --------------------------------------------- */

    .main-menu > .nav-item.dropdown > .dropdown-menu::before {
        content: "";

        position: absolute;

        top: -10px;
        left: 0;

        width: 100%;
        height: 10px;

        background: transparent;
    }


    /* ---------------------------------------------
       NESTED SUBMENU
    --------------------------------------------- */

    .main-menu .dropdown-submenu {
        position: relative;
    }

    .main-menu .dropdown-submenu > .submenu {
        position: absolute;

        top: -5px;
        left: 100%;

        min-width: 230px;

        margin: 0 0 0 2px;
        padding: 5px 0;

        background: #ffffff;

        border: none;
        border-radius: 0;

        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);

        display: block;

        opacity: 0;
        visibility: hidden;

        pointer-events: none;

        transform: translateX(8px);

        transition:
            opacity 0.15s ease,
            transform 0.15s ease,
            visibility 0.15s ease;

        z-index: 100000;
    }


    /* ---------------------------------------------
       NESTED SUBMENU HOVER
    --------------------------------------------- */

    .main-menu .dropdown-submenu:hover > .submenu,
    .main-menu .dropdown-submenu.show > .submenu {
        opacity: 1;
        visibility: visible;

        pointer-events: auto;

        transform: translateX(0);
    }


    /* ---------------------------------------------
       CHILD PARENT HOVER
    --------------------------------------------- */

    .main-menu .dropdown-submenu:hover > .dropdown-submenu-toggle {
        background: #105b78;
        color: #ffffff !important;
    }


    /* ---------------------------------------------
       CHILD ARROW
    --------------------------------------------- */

    .submenu-arrow {
        margin-left: auto;

        font-size: 20px;

        line-height: 1;

        transition: transform 0.2s ease;
    }


    .main-menu .dropdown-submenu:hover .submenu-arrow {
        color: #ffffff;
        transform: translateX(2px);
    }


    /* ---------------------------------------------
       SUMMARY LAST DROPDOWN
    --------------------------------------------- */

    .main-menu > .nav-item:last-child > .dropdown-menu {
        right: 0;
        left: auto;
    }


    /*
       Laptop - slightly smaller navbar text
    */

    .main-menu .nav-link {
        font-size: 10px;
        padding-left: 6px;
        padding-right: 6px;
    }

}


/* =========================================================
   LARGE LAPTOP / DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .main-menu .nav-link {
        font-size: 11px;
        padding-left: 7px;
        padding-right: 7px;
    }

}

/* =========================================================
   FINAL NAVBAR FIX
   MOBILE + TABLET SCROLLABLE MENU
========================================================= */

.site-header-fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    background: #fff !important;
    overflow: visible !important;
}

.site-header-fixed .main-navbar {
    position: relative !important;
    z-index: 100000 !important;
    overflow: visible !important;
}


/* =========================================================
   DESKTOP - NESTED MENU RIGHT SIDE
========================================================= */

@media (min-width: 1200px) {

    .main-navbar .dropdown-submenu {
        position: relative !important;
    }

    .main-navbar .dropdown-submenu > .submenu {
        position: absolute !important;
        top: -1px !important;
        left: 100% !important;

        width: 240px !important;
        min-width: 240px !important;

        margin: 0 0 0 2px !important;
        padding: 5px 0 !important;

        display: block !important;

        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;

        transform: translateX(8px) !important;

        background: #fff !important;
        border: none !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.20) !important;

        z-index: 999999 !important;
    }

    .main-navbar .dropdown-submenu:hover > .submenu,
    .main-navbar .dropdown-submenu.show > .submenu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(0) !important;
    }

}


/* =========================================================
   TABLET + MOBILE
   MAIN MENU FULL HEIGHT + SCROLL
========================================================= */

@media (max-width: 1199.98px) {

    /* Navbar collapse */
    .site-header-fixed .navbar-collapse.show {
        position: fixed !important;

        /*
           JS madhun exact navbar khali position set hoil
        */
        top: var(--navbar-menu-top, 320px) !important;

        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;

        width: 100% !important;

        height: auto !important;
        max-height: none !important;

        overflow-x: hidden !important;
        overflow-y: auto !important;

        background: #105b78 !important;

        z-index: 99998 !important;

        -webkit-overflow-scrolling: touch !important;
        overscroll-behavior: contain !important;
    }


    /* Main UL */
    .site-header-fixed .navbar-collapse.show .main-menu {
        width: 100% !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: stretch !important;
        justify-content: flex-start !important;

        height: auto !important;
        max-height: none !important;

        overflow: visible !important;

        padding: 5px 0 40px !important;
        margin: 0 !important;
    }


    /* Main menu items */
    .site-header-fixed
    .navbar-collapse.show
    .main-menu > .nav-item {
        width: 100% !important;
        flex: 0 0 auto !important;
    }


    /* Main links */
    .site-header-fixed
    .navbar-collapse.show
    .main-menu > .nav-item > .nav-link {
        width: 100% !important;

        padding: 11px 15px !important;

        text-align: left !important;

        font-size: 13px !important;

        white-space: normal !important;
    }


    /* =====================================================
       MAIN DROPDOWN
    ===================================================== */

    .site-header-fixed
    .navbar-collapse.show
    .main-menu .dropdown-menu {

        position: static !important;

        top: auto !important;
        left: auto !important;
        right: auto !important;

        width: 100% !important;
        min-width: 100% !important;

        height: auto !important;
        max-height: none !important;

        margin: 0 !important;
        padding: 0 !important;

        transform: none !important;

        border: 0 !important;
        border-radius: 0 !important;

        box-shadow: none !important;

        overflow: visible !important;

        background: #f4f4f4 !important;
    }


    /* =====================================================
       SUBMENU
    ===================================================== */

    .site-header-fixed
    .navbar-collapse.show
    .main-menu .dropdown-submenu {

        position: static !important;

        width: 100% !important;
    }


    .site-header-fixed
    .navbar-collapse.show
    .main-menu .dropdown-submenu > .submenu {

        position: static !important;

        top: auto !important;
        left: auto !important;
        right: auto !important;

        width: 100% !important;
        min-width: 100% !important;

        height: auto !important;
        max-height: none !important;

        margin: 0 !important;
        padding: 0 !important;

        transform: none !important;

        display: none !important;

        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;

        border: 0 !important;
        border-radius: 0 !important;

        box-shadow: none !important;

        overflow: visible !important;

        background: #e9e9e9 !important;
    }


    /* Child submenu OPEN */
    .site-header-fixed
    .navbar-collapse.show
    .main-menu .dropdown-submenu > .submenu.show {

        display: block !important;
    }


    /* Child menu link */
    .site-header-fixed
    .navbar-collapse.show
    .main-menu
    .dropdown-submenu > .submenu
    .dropdown-item {

        width: 100% !important;

        padding: 10px 30px 10px 40px !important;

        font-size: 13px !important;

        line-height: 1.4 !important;

        white-space: normal !important;

        background: #e9e9e9 !important;

        color: #333 !important;
    }


    /* Second level child */
    .site-header-fixed
    .navbar-collapse.show
    .main-menu
    .dropdown-submenu
    .dropdown-submenu > .submenu
    .dropdown-item {

        padding-left: 58px !important;
    }


    /* Child parent */
    .site-header-fixed
    .navbar-collapse.show
    .main-menu
    .dropdown-submenu > .dropdown-submenu-toggle {

        width: 100% !important;

        display: flex !important;

        align-items: center !important;
        justify-content: space-between !important;

        padding: 10px 30px !important;

        background: #f4f4f4 !important;

        color: #333 !important;
    }


    /* Arrow */
    .site-header-fixed
    .navbar-collapse.show
    .submenu-arrow {

        margin-left: auto !important;

        font-size: 20px !important;

        line-height: 1 !important;

        flex-shrink: 0 !important;
    }


    /* Open arrow */
    .site-header-fixed
    .navbar-collapse.show
    .dropdown-submenu.show
    > .dropdown-submenu-toggle
    .submenu-arrow {

        transform: rotate(90deg) !important;
    }

}
/* =========================================================
   CHILD SUBMENU ARROW - ALWAYS VISIBLE
========================================================= */

.dropdown-menu .dropdown-submenu .dropdown-submenu-toggle .submenu-arrow {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #333 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    margin-left: 15px !important;
    flex-shrink: 0 !important;
}

/* Keep child arrow visible even when submenu is hovered */
.dropdown-menu .dropdown-submenu .dropdown-submenu-toggle:hover .submenu-arrow {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .site-header-fixed
    .navbar-collapse.show {

        max-height: none !important;

        overflow-y: auto !important;
        overflow-x: hidden !important;
    }


    .site-header-fixed
    .navbar-collapse.show
    .main-menu {

        padding-bottom: 50px !important;
    }


    .site-header-fixed
    .navbar-collapse.show
    .main-menu > .nav-item > .nav-link {

        padding: 10px 15px !important;

        font-size: 12px !important;
    }


    .site-header-fixed
    .navbar-collapse.show
    .main-menu
    .dropdown-item {

        font-size: 12px !important;
    }


    .site-header-fixed
    .navbar-collapse.show
    .main-menu
    .dropdown-submenu > .submenu
    .dropdown-item {

        padding: 9px 25px 9px 35px !important;

        font-size: 12px !important;

        white-space: normal !important;
    }


    .site-header-fixed
    .navbar-collapse.show
    .main-menu
    .dropdown-submenu
    .dropdown-submenu > .submenu
    .dropdown-item {

        padding-left: 52px !important;
    }

}
/* =========================================================
   TRAINING & PLACEMENT - FINAL RESPONSIVE SUBMENU
========================================================= */

/* ---------------------------------------------------------
   COMMON
--------------------------------------------------------- */

.dropdown-menu .dropdown-submenu {
    position: relative;
}

.dropdown-menu .dropdown-submenu-toggle {
    width: 100%;
    min-height: 42px;
    padding: 8px 14px;
}

.dropdown-menu .dropdown-submenu-toggle .submenu-arrow {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;

    font-size: 19px;
    font-weight: 600;
    line-height: 1;

    margin-left: 12px;
    flex-shrink: 0;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 992px) {

    /* Level 2 */
    .dropdown-menu > .dropdown-submenu > .submenu {
        position: absolute !important;

        top: 0 !important;
        left: calc(100% + 2px) !important;

        width: 230px !important;
        min-width: 230px !important;

        margin: 0 !important;

        padding: 5px 0 !important;

        display: none !important;

        z-index: 9999 !important;
    }

    .dropdown-menu > .dropdown-submenu:hover > .submenu {
        display: block !important;
    }


    /* Level 3 - Academic Year */
    .dropdown-menu
    .dropdown-submenu
    .dropdown-submenu > .submenu {

        position: absolute !important;

        top: calc(100% + 2px) !important;
        left: 0 !important;

        width: 200px !important;
        min-width: 200px !important;

        margin: 0 !important;

        display: none !important;

        z-index: 10000 !important;
    }

    .dropdown-menu
    .dropdown-submenu
    .dropdown-submenu:hover > .submenu {

        display: block !important;
    }


    /* Desktop items */
    .dropdown-menu .submenu .dropdown-item {
        padding: 9px 14px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        white-space: normal !important;
        line-height: 1.4 !important;
    }
}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width: 991.98px) {

    /* Main dropdown */
    .navbar .dropdown-menu {
        position: static !important;

        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        border: 0 !important;
        border-radius: 0 !important;

        box-shadow: none !important;

        transform: none !important;
        inset: auto !important;
    }


    /* -----------------------------------------------------
       LEVEL 2
    ----------------------------------------------------- */

    .navbar .dropdown-menu > .dropdown-submenu > .submenu {

        position: static !important;

        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        padding: 0 0 0 18px !important;

        border: 0 !important;
        border-radius: 0 !important;

        box-shadow: none !important;

        background: transparent !important;

        transform: none !important;
        inset: auto !important;

        /* IMPORTANT:
           JS/Bootstrap .show will control this */
        display: none !important;
    }


    .navbar .dropdown-menu > .dropdown-submenu.show > .submenu {

        display: block !important;
    }


    /* -----------------------------------------------------
       LEVEL 3
    ----------------------------------------------------- */

    .navbar .dropdown-menu
    .dropdown-submenu
    .dropdown-submenu > .submenu {

        position: static !important;

        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        padding: 0 0 0 18px !important;

        border: 0 !important;
        border-radius: 0 !important;

        box-shadow: none !important;

        background: transparent !important;

        transform: none !important;
        inset: auto !important;

        display: none !important;
    }


    .navbar .dropdown-menu
    .dropdown-submenu
    .dropdown-submenu.show > .submenu {

        display: block !important;
    }


    /* -----------------------------------------------------
       ALL SUBMENU LINKS
    ----------------------------------------------------- */

    .navbar .dropdown-menu .submenu .dropdown-item {

        width: 100% !important;

        min-height: 40px !important;

        padding: 8px 14px !important;

        display: flex !important;

        align-items: center !important;
        justify-content: space-between !important;

        white-space: normal !important;

        line-height: 1.4 !important;
    }


    /* -----------------------------------------------------
       SUBMENU TOGGLE
    ----------------------------------------------------- */

    .navbar .dropdown-menu
    .dropdown-submenu-toggle {

        display: flex !important;

        align-items: center !important;
        justify-content: space-between !important;

        width: 100% !important;

        padding: 9px 14px !important;
    }


    /* Arrow */
    .navbar .dropdown-menu
    .dropdown-submenu-toggle
    .submenu-arrow {

        display: inline-block !important;

        visibility: visible !important;
        opacity: 1 !important;

        margin-left: auto !important;

        padding-left: 10px !important;

        flex-shrink: 0 !important;
    }


    /* -----------------------------------------------------
       PREVENT DESKTOP HOVER BEHAVIOUR ON MOBILE/TABLET
    ----------------------------------------------------- */

    .navbar .dropdown-menu
    .dropdown-submenu:hover > .submenu {

        display: none !important;
    }

    .navbar .dropdown-menu
    .dropdown-submenu.show:hover > .submenu {

        display: block !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .navbar .dropdown-menu {
        width: 100% !important;
    }

    .navbar .dropdown-menu
    .dropdown-submenu > .submenu {

        padding-left: 15px !important;
    }

    .navbar .dropdown-menu
    .dropdown-submenu
    .dropdown-submenu > .submenu {

        padding-left: 15px !important;
    }

    .navbar .dropdown-menu
    .dropdown-submenu-toggle {

        padding: 9px 12px !important;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .navbar .dropdown-menu
    .dropdown-submenu > .submenu {

        padding-left: 10px !important;
    }

    .navbar .dropdown-menu
    .dropdown-submenu
    .dropdown-submenu > .submenu {

        padding-left: 10px !important;
    }

    .navbar .dropdown-menu .dropdown-item {

        font-size: 14px !important;
    }

    .navbar .dropdown-menu
    .dropdown-submenu-toggle {

        min-height: 42px !important;

        padding: 9px 10px !important;
    }
}


/* =========================================================
   IMPORTANT NEWS
========================================================= */

.news-section {
    padding: 10px 0 20px;
}

.news-wrapper {
    width: 100%;
    max-width: 1220px;

    height: 40px;

    margin: auto;

    display: flex;
    align-items: center;

    border: 1px solid #d8d8d8;

    overflow: hidden;

    background: #ffffff;
}

.news-title {
    height: 40px;

    display: flex;
    align-items: center;

    padding: 0 14px;

    flex: 0 0 auto;

    background: #ed3737;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;
}

.news-year {
    height: 40px;

    display: flex;
    align-items: center;

    padding: 0 12px;

    flex: 0 0 auto;

    color: #555555;

    font-size: 14px;
    font-weight: 700;
}

.news-marquee {
    flex: 1;

    min-width: 0;

    overflow: hidden;

    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    align-items: center;

    gap: 30px;

    min-width: max-content;

    animation: newsScroll 18s linear infinite;

    font-size: 14px;
    font-weight: 600;

    color: #333333;
}

@keyframes newsScroll {

    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }

}


/* =========================================================
   MOBILE NEWS DEFAULT HIDDEN
========================================================= */

.news-mobile {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    padding: 0 10px 30px;
}

.campus-slider {
    width: 100%;
    background: #eeeeee;
}

.campus-slider .carousel-item img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}


/* =========================================================
   VIDEO
========================================================= */

.video-card {
    width: 100%;

    padding: 10px;

    background: #eeeeee;
}

.video-wrapper {
    width: 100%;
    height: 390px;

    position: relative;

    overflow: hidden;

    background: #111111;
}

.video-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.video-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    padding: 13px 75px;

    background: rgba(0, 0, 0, 0.65);

    color: #ffffff;
}

.video-title {
    font-size: 18px;
    font-weight: 700;

    line-height: 1.2;
}

.video-subtitle {
    margin-top: 2px;

    font-size: 12px;
}

.play-button {
    position: absolute;

    top: 55%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 60px;
    height: 60px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.9);

    color: #105b78;

    font-size: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {

    .top-bar {
        height: 35px;
    }


    /* HEADER */

    .header-row {
        min-height: 175px;
        padding: 10px 15px;
    }

    .logo-box img {
        width: 105px;
        height: 105px;
    }

    .header-content h1 {
        font-size: 25px;
    }

    .trust-name {
        font-size: 14px;
    }

    .location,
    .approval-text {
        font-size: 13px;
    }

    .code-text {
        font-size: 13px;
        gap: 15px;
    }


    /* NAVBAR */

    .main-navbar {
        min-height: 58px;
    }

    .mobile-brand {
        display: block;
    }

    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.6);
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        filter: brightness(0) invert(1);
    }


    /* COLLAPSE */

    .main-navbar .navbar-collapse {
        width: 100%;
    }


    /* MENU */

    .main-menu {

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch !important;
        justify-content: flex-start !important;

        padding: 5px 0 10px !important;

        overflow: visible !important;
    }

    .main-menu .nav-item {
        width: 100%;
        flex: 0 0 auto;
    }


    /* MAIN LINK */

    .main-menu .nav-link {

        width: 100%;

        padding: 11px 15px;

        text-align: left;

        font-size: 13px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }


    .main-menu .nav-link.active::after {
        display: none;
    }


    /* DROPDOWN */

    .main-menu .dropdown-menu {

        position: static !important;

        width: 100%;

        margin: 0 !important;

        padding: 5px 0;

        box-shadow: none;

        background: #f4f4f4;

        border: none;

        transform: none !important;
    }


    .main-menu .dropdown-item {

        padding: 10px 30px;

        font-size: 13px;

        color: #333333;

        background: #f4f4f4;
    }


    /* Bootstrap show */

    .main-menu .dropdown-menu.show {
        display: block;
    }


    /* =====================================================
       NESTED SUBMENU TABLET
    ===================================================== */

    .main-menu .dropdown-submenu {
        width: 100%;
        position: relative;
    }

    .main-menu .dropdown-submenu > .dropdown-submenu-toggle {

        display: flex;

        align-items: center;
        justify-content: space-between;

        width: 100%;

        padding: 10px 30px;

        background: #f4f4f4;

        color: #333333 !important;

        cursor: pointer;
    }


    .main-menu .dropdown-submenu > .submenu {

        position: static !important;

        width: 100%;

        margin: 0 !important;

        padding: 0;

        border: none;

        border-radius: 0;

        box-shadow: none;

        background: #e9e9e9;

        display: none;

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: none !important;
    }


    /* OPEN CHILD */

    .main-menu .dropdown-submenu.show > .submenu {
        display: block;
    }


    /* CHILD LINKS */

    .main-menu .dropdown-submenu > .submenu .dropdown-item {

        padding: 10px 50px;

        font-size: 12px;

        background: #e9e9e9;

        color: #333333;
    }


    .main-menu .dropdown-submenu > .submenu .dropdown-item:hover {
        background: #105b78;
        color: #ffffff;
    }


    /* CHILD ARROW */

    .submenu-arrow {

        margin-left: auto;

        font-size: 20px;

        transition: transform 0.2s ease;
    }

    .main-menu .dropdown-submenu.show .submenu-arrow {
        transform: rotate(90deg);
    }


    /* HERO */

    .campus-slider .carousel-item img,
    .video-wrapper {
        height: 320px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    /* TOP */

    .top-bar {
        height: 25px;
    }


    /* HEADER */

    .header-row {
        min-height: 130px;
        padding: 8px 5px;
    }

    .logo-box img {
        width: 58px;
        height: 58px;
    }

    .header-content {
        padding: 0;
    }

    .trust-name {
        font-size: 8px;
        margin-bottom: 2px;
    }

    .header-content h1 {
        font-size: 13px;
        line-height: 1.15;
        margin-bottom: 3px;
    }

    .location {
        font-size: 8px;
        margin-bottom: 3px;
    }

    .approval-text {
        font-size: 7px;
        line-height: 1.2;
        margin-bottom: 3px;
    }

    .code-text {
        font-size: 7px;
        gap: 7px;
    }


    /* NAVBAR */

    .main-navbar {
        min-height: 55px;
    }

    .mobile-brand {
        font-size: 13px;
    }

    .main-menu .nav-link {
        font-size: 12px;
        padding: 10px 15px;
    }

    .main-menu .dropdown-item {
        font-size: 12px;
    }


    































    /* =====================================================
       NAVBAR TABLET
    ===================================================== */

    .main-navbar {
        min-height: 58px;
    }

    .mobile-brand {
        display: block;
    }

    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.6);
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        filter: brightness(0) invert(1);
    }

    .main-menu {
        width: 100%;

        padding: 5px 0 10px !important;

        align-items: flex-start !important;
        justify-content: flex-start !important;

        overflow-x: hidden;
        overflow-y: visible;
    }

    .main-menu .nav-item {
        width: 100%;
    }

    .main-menu .nav-link {
        width: 100%;

        padding: 11px 15px;

        text-align: left;

        font-size: 13px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-menu .nav-link.active {
        background: rgba(255, 255, 255, 0.13);
    }

    .main-menu .nav-link.active::after {
        display: none;
    }


    /* =====================================================
       TABLET DROPDOWN
    ===================================================== */

    .main-menu .dropdown-menu {
        position: static !important;

        width: 100%;

        margin: 0 !important;

        box-shadow: none;

        background: #f4f4f4;

        transform: none !important;
    }

    .main-menu .dropdown-item {
        padding: 10px 30px;

        color: #333;
    }

    .main-menu .dropdown-item:hover {
        background: #105b78;
        color: #fff;
    }


    /* HERO */

    .campus-slider .carousel-item img,
    .video-wrapper {
        height: 320px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    /* TOP */

    .top-bar {
        height: 25px;
    }


    /* HEADER */

    .header-row {
        min-height: 130px;

        padding: 8px 5px;
    }

    .logo-box img {
        width: 58px;
        height: 58px;
    }

    .header-content {
        padding: 0;
    }

    .trust-name {
        font-size: 8px;
        margin-bottom: 2px;
    }

    .header-content h1 {
        font-size: 13px;
        line-height: 1.15;
        margin-bottom: 3px;
    }

    .location {
        font-size: 8px;
        margin-bottom: 3px;
    }

    .approval-text {
        font-size: 7px;
        line-height: 1.2;
        margin-bottom: 3px;
    }

    .code-text {
        font-size: 7px;
        gap: 7px;
    }


    /* NAVBAR */

    .main-navbar {
        min-height: 55px;
    }

    .mobile-brand {
        font-size: 13px;
    }

    .main-menu .nav-link {
        font-size: 12px;
        padding: 10px 15px;
    }

    .main-menu .dropdown-item {
        font-size: 12px;
    }

    /* =========================================================
   TRAINING & PLACEMENT CHILD MENU
========================================================= */

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: 250px;
    min-width: 220px;
    margin: 0;
    padding: 5px 0;
    background: #fff;
    border: 0;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 99999;
}

/* Desktop hover */

@media (min-width: 1200px) {

    .dropdown-submenu:hover > .submenu {
        display: block;
    }

    .dropdown-submenu > .submenu .dropdown-item {
        padding: 9px 14px;
        font-size: 14px;
        line-height: 1.4;
        white-space: normal;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1199.98px) {

    .dropdown-submenu > .submenu {
        position: static;
        width: 100%;
        min-width: 100%;
        padding: 0;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        background: #f8f9fa;
    }

    .dropdown-submenu > .submenu .dropdown-item {
        padding: 9px 20px 9px 35px;
        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .dropdown-submenu > .submenu {
        position: static;
        width: 100%;
        min-width: 100%;
        padding: 0;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        background: #f8f9fa;
    }

    .dropdown-submenu > .submenu .dropdown-item {
        padding: 9px 15px 9px 35px;
        font-size: 13px;
        line-height: 1.4;
        white-space: normal;
    }

    .dropdown-submenu-toggle {
        font-size: 14px;
    }

    .submenu-arrow {
        font-size: 18px;
    }

}

    /* =====================================================
       MOBILE: VIDEO HIDE
    ===================================================== */

    .video-column {
        display: none !important;
    }


    /* =====================================================
       MOBILE: SLIDER
    ===================================================== */

    .hero-section {
        padding: 0 5px;
    }

    .campus-slider {
        width: 100%;
    }

    .campus-slider .carousel-item img {
        height: 245px;

        object-fit: cover;
    }


    /* =====================================================
       MOBILE: IMPORTANT NEWS BELOW SLIDER
    ===================================================== */

    .news-desktop {
        display: none;
    }

    .news-mobile {
        display: block;
    }

    .news-mobile .news-section {
        padding: 10px 0 15px;
    }

    .news-mobile .news-wrapper {
        height: 40px;
    }

    .news-mobile .news-title {
        padding: 0 9px;

        font-size: 10px;
    }

    .news-mobile .news-year {
        padding: 0 7px;

        font-size: 10px;
    }

    .news-mobile .marquee-content {
        gap: 15px;

        font-size: 13px;

        animation-duration: 14s;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .header-row {
        min-height: 115px;
    }

    .logo-box img {
        width: 48px;
        height: 48px;
    }

    .trust-name {
        font-size: 7px;
    }

    .header-content h1 {
        font-size: 10px;
    }

    .location {
        font-size: 7px;
    }

    .approval-text {
        font-size: 6px;
    }

    .code-text {
        font-size: 6px;
    }


    .campus-slider .carousel-item img {
        height: 205px;
    }


    .news-mobile .news-title {
        font-size: 9px;
    }

    .news-mobile .news-year {
        font-size: 9px;
    }

    .news-mobile .marquee-content {
        font-size: 9px;
    }

}






/* =========================
   IMPORTANT NEWS
========================= */

.important-news-section {
    /* padding: 10px 0; */
    background: #fff;
}

.news-wrapper {
    max-width: 1120px;
    margin: auto;
    padding: 0;
    height: 38px;
    border: 1px solid #ddd;
    overflow: hidden;
}

.news-title {
    background: #e53935;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 14px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.news-scroll {
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fff;
}

.news-scroll marquee {
    color: #333;
    font-size: 14px;
    line-height: 38px;
}



/* =========================
   CAMPUS IMAGE SECTION
========================= */

.campus-section {
    padding: 8px 8px 20px;
}

.campus-image-box {
    width: 100%;
    background: #eee;
    padding: 10px;
    overflow: hidden;
}

.campus-image {
    width: 100%;
    height: 530px;
    object-fit: cover;
    display: block;
}

.campus-slider-img {
    width: 100%;
    height: 530px;
    object-fit: contain;
    background: #eee;
}


/* =========================
   CAMPUS MEDIA
========================= */

.campus-video {
    height: 530px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .campus-slider-img {
        height: 450px;
    }

    .campus-video {
        height: 450px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {

    /* YouTube Video Hide */

    .campus-video-column {
        display: none;
    }


    /* Slider Full Width */

    .campus-slider-column {
        width: 100%;
    }


    /* Slider Height */

    .campus-slider-img {
        height: 280px;
    }


    /* Important News */

       .home-mobile-layout {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Slider */
    .campus-media-section {
        order: 1 !important;
    }

    /* Important News slider  */
    .important-news-section {
        order: 2 !important;
        padding-left: 10px !important;
padding-right: 10px !important;
    }


    /* Important News Full Width */

    .important-news-section .row {
        margin-left: 0;
        margin-right: 0;
    }


    .important-news-section .col-12 {
        width: 100%;
    }


    /* News Title */

    .important-news-section .bg-danger {
        font-size: 12px;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }


    /* News Text */

    .important-news-section marquee {
        font-size: 12px;
        white-space: nowrap;
    }

}

/* =====================================
   VISION / MISSION / NOTICES
===================================== */

.vision-section {
    background: #fff;
}


/* =====================================
   IMPORTANT NOTICES
===================================== */

.important-notices-scroll {

      height: 450px;
    overflow: hidden;
    padding: 8px 10px;

    /* Immediately visible after page load */
    display: block;
    visibility: visible;
    opacity: 1;
}
/* MARQUEE */

.important-notices-scroll marquee {
    display: block;
    width: 100%;
    height: 100%;

    /* No initial delay */
    visibility: visible !important;
    opacity: 1 !important;
}

/* Notice Title */

.notice-title {

    color: #075574;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.5;

    /* text-decoration: underline; */

    margin-bottom: 8px;

}


/* Notice Description */

.notice-description {

    color: #555;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.6;

    margin: 0;

    padding-left: 20px;

}
.notice-title a {
    color: #212529 !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.notice-title a:hover {
    color: #0d6efd !important;
    text-decoration: underline !important;
}

/* =====================================
   DESKTOP
===================================== */

@media (min-width: 992px) {

    .important-notices-scroll {

        height: 500px;

    }

}


/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {

    .important-notices-scroll {

        height: 400px;

    }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 576px) {

    .container-fluid.px-3 {

        padding-left: 12px !important;

        padding-right: 12px !important;

    }


    .container-fluid .border {

        padding: 15px !important;

    }


    .container-fluid h2 {

        font-size: 22px !important;

    }


    .container-fluid p {

        font-size: 14px !important;

        line-height: 1.7 !important;

    }


    .important-notices-scroll {

       height: 350px;
        padding: 5px 5px;

    }


    .notice-title {

        font-size: 14px;

    }


    .notice-description {

        font-size: 13px;

    }

}

/* home page end */



/* =====================================================
   ABOUT TRUST BREADCRUMB
===================================================== */

.about-breadcrumb {
    position: relative;
    width: 100%;
    padding: 10px;
    background: #f5f8fa;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
}

/* Decorative circle left */
.about-breadcrumb::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -90px;
    top: -70px;
    border-radius: 50%;
    background: rgba(16, 91, 120, 0.08);
}

/* Decorative circle right */
.about-breadcrumb::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -110px;
    bottom: -130px;
    border-radius: 50%;
    background: rgba(16, 91, 120, 0.08);
}


/* Content */

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}


/* Icon */

.breadcrumb-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #105b78;
    color: #fff;

    border-radius: 50%;

    font-size: 20px;

    box-shadow: 0 6px 18px rgba(16, 91, 120, 0.20);
}


/* Heading */

.about-breadcrumb h1 {
    margin: 0 0 12px;

    font-size: 30px;
    font-weight: 700;

    color: #1f2933;

    letter-spacing: 0.3px;
}


/* Breadcrumb */

.custom-breadcrumb {
    justify-content: center;
    align-items: center;

    margin: 0;
    padding: 0;

    background: transparent;
}


/* Home */

.custom-breadcrumb .breadcrumb-item a {
    color: #105b78;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.2s ease;
}

.custom-breadcrumb .breadcrumb-item a:hover {
    color: #083f55;
}


/* Separator */

.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";

    color: #8a959d;

    font-size: 20px;
    font-weight: 600;

    padding: 0 12px;
}


/* Current page */

.custom-breadcrumb .breadcrumb-item.active {
    color: #666;

    font-weight: 600;
}


/* =====================================================
   ABOUT TRUST SECTION
===================================================== */

.about-trust-section {
    padding: 75px 0;
    background: #ffffff;
}


/* =====================================================
   IMAGE
===================================================== */

.about-image-wrapper {
    position: relative;
    padding: 10px;
}


.about-image-card {
    position: relative;

    overflow: hidden;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.about-image-card img {
    width: 100%;
    height: 450px;

    object-fit: cover;

    display: block;

    transition:
        transform 0.6s ease;
}


/* Image hover */

.about-image-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.18);
}


.about-image-card:hover img {
    transform: scale(1.05);
}


/* =====================================================
   ABOUT CONTENT
===================================================== */

.about-content {
    padding-left: 15px;
}


.about-small-title {
    display: inline-block;

    margin-bottom: 10px;

    color: #105b78;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
}


.about-content h2 {
    margin: 0;

    color: #222;

    font-size: 34px;
    line-height: 1.2;

    font-weight: 700;
}


/* =====================================================
   TITLE LINE
===================================================== */

.title-line {
    position: relative;

    width: 100px;
    height: 4px;

    margin: 18px 0 25px;

    background: #105b78;

    border-radius: 10px;
}


.title-line::after {
    content: "";

    position: absolute;

    width: 25px;
    height: 4px;

    right: -35px;
    top: 0;

    background: #9fc7d6;

    border-radius: 10px;
}


/* =====================================================
   PARAGRAPH
===================================================== */

.about-content p {
    margin-bottom: 17px;

    color: #5d6670;

    font-size: 16px;

    line-height: 1.8;
}


.about-content strong {
    color: #105b78;
    font-weight: 700;
}


/* =====================================================
   HIGHLIGHTS
===================================================== */

.about-highlight {
    height: 100%;

    padding: 20px 12px;

    text-align: center;

    background: #f6fafc;

    border: 1px solid #e3edf1;

    border-radius: 12px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.about-highlight i {
    display: block;

    margin-bottom: 8px;

    color: #105b78;

    font-size: 28px;
}


.about-highlight h4 {
    margin: 0 0 4px;

    color: #222;

    font-size: 24px;
    font-weight: 700;
}


.about-highlight span {
    color: #6b7280;

    font-size: 13px;
    font-weight: 600;
}


.about-highlight:hover {
    transform: translateY(-5px);

    background: #fff;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.10);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .about-breadcrumb {
        padding: 32px 0 36px;
    }

    .about-breadcrumb h1 {
        font-size: 27px;
    }

    .about-trust-section {
        padding: 55px 0;
    }

    .about-content {
        padding-left: 0;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-image-card img {
        height: 400px;
    }
    
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .top-bar {
        height: 6px;
    }

    .about-breadcrumb {
        padding: 25px 0 30px;
    }

    .breadcrumb-icon {
        width: 42px;
        height: 42px;

        font-size: 17px;

        margin-bottom: 9px;
    }

    .about-breadcrumb h1 {
        font-size: 23px;
        margin-bottom: 8px;
    }

    .custom-breadcrumb {
        font-size: 14px;
    }

    .custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        font-size: 18px;
        padding: 0 8px;
    }

    .about-trust-section {
        padding: 40px 0;
    }

    .about-image-wrapper {
        padding: 5px;
    }

    .about-image-card img {
        height: 280px;
    }

    .about-content {
        padding-top: 10px;
    }

    .about-content h2 {
        font-size: 25px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-highlight {
        padding: 16px 8px;
    }

    .about-highlight h4 {
        font-size: 21px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .about-breadcrumb {
        padding: 22px 0 27px;
    }

    .about-breadcrumb h1 {
        font-size: 21px;
    }

    .about-image-card img {
        height: 240px;
    }

    .about-content h2 {
        font-size: 23px;
    }
}

/* About Trust Page End */

/* =====================================================
   ABOUT SSMAP Page
===================================================== */

.ssmap-breadcrumb {
    padding: 10px;
    background: #f5f8fa;
    border-bottom: 1px solid #e5e5e5;
}

.ssmap-breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.ssmap-breadcrumb-list a {
    color: #105b78;
    font-weight: 600;
    text-decoration: none;
}

.ssmap-breadcrumb-list a:hover {
    color: #083f55;
}

.ssmap-breadcrumb-list .breadcrumb-item.active {
    color: #666;
    font-weight: 600;
}

.ssmap-breadcrumb-list
.breadcrumb-item
+ .breadcrumb-item::before {
    content: "›";
    color: #999;
    font-size: 19px;
    font-weight: 600;
    padding: 0 12px;
}


/* =====================================================
   MAIN SECTION
===================================================== */

.ssmap-about-section {
    padding: 65px 0 80px;
    background: #fff;
}


/* =====================================================
   IMAGE
===================================================== */

.ssmap-image-wrapper {
    padding: 8px;
}

.ssmap-image-card {
    position: relative;
    overflow: hidden;

    border-radius: 18px;
    background: #fff;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.ssmap-image-card::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 35%;

    background: linear-gradient(
        to top,
        rgba(16, 91, 120, 0.25),
        transparent
    );

    pointer-events: none;
}

.ssmap-image-card img {
    width: 100%;
    height: 430px;

    object-fit: cover;
    display: block;

    transition:
        transform 0.6s ease;
}

.ssmap-image-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.18);
}

.ssmap-image-card:hover img {
    transform: scale(1.05);
}


/* =====================================================
   CONTENT
===================================================== */

.ssmap-content {
    padding-left: 15px;
}

.ssmap-small-title {
    display: inline-block;

    margin-bottom: 9px;

    color: #105b78;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
}

.ssmap-content h1 {
    margin: 0;

    color: #202020;

    font-size: 34px;
    line-height: 1.2;

    font-weight: 700;
}

.ssmap-title-line {
    position: relative;

    width: 75px;
    height: 4px;

    margin: 17px 0 24px;

    background: #105b78;

    border-radius: 10px;
}

.ssmap-title-line::after {
    content: "";

    position: absolute;

    width: 25px;
    height: 4px;

    left: 85px;
    top: 0;

    background: #9fc7d6;

    border-radius: 10px;
}

.ssmap-content p,
.ssmap-info-box p,
.ssmap-feature-card p,
.ssmap-placement-section p {
    color: #5f6871;

    font-size: 15.5px;
    line-height: 1.8;

    margin-bottom: 16px;
}

.ssmap-content strong,
.ssmap-info-box strong,
.ssmap-feature-card strong,
.ssmap-placement-section strong {
    color: #105b78;
}


/* =====================================================
   OBJECTIVE
===================================================== */

.ssmap-info-box {
    display: flex;
    align-items: flex-start;

    gap: 20px;

    margin-top: 55px;
    padding: 28px 30px;

    background: #f5f9fb;

    border-left: 4px solid #105b78;
    border-radius: 12px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.06);
}

.ssmap-info-icon {
    flex: 0 0 55px;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #105b78;
    color: #fff;

    border-radius: 50%;

    font-size: 23px;
}

.ssmap-info-box h2 {
    margin: 0 0 10px;

    color: #222;

    font-size: 25px;
    font-weight: 700;
}

.ssmap-info-box p {
    margin: 0;
}


/* =====================================================
   FEATURE CARDS
===================================================== */

.ssmap-feature-card {
    padding: 30px;

    background: #fff;

    border: 1px solid #e5edf1;

    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ssmap-feature-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.11);
}

.ssmap-feature-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    background: #eaf4f8;
    color: #105b78;

    border-radius: 10px;

    font-size: 24px;
}

.ssmap-feature-card h3 {
    margin-bottom: 13px;

    color: #222;

    font-size: 21px;
    font-weight: 700;
}


/* =====================================================
   PLACEMENT SECTION
===================================================== */

.ssmap-placement-section {
    margin-top: 60px;
    padding-top: 45px;

    border-top: 1px solid #e5e5e5;
}

.ssmap-placement-heading h2 {
    margin: 0;

    color: #222;

    font-size: 30px;
    font-weight: 700;
}

.ssmap-placement-section p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   STAT CARDS
===================================================== */

.ssmap-stat-card {
    height: 100%;

    padding: 25px 15px;

    text-align: center;

    background: #f6fafc;

    border: 1px solid #e2edf1;

    border-radius: 12px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ssmap-stat-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.10);
}

.ssmap-stat-card i {
    color: #105b78;

    font-size: 30px;
}

.ssmap-stat-card h3 {
    margin: 8px 0 3px;

    color: #222;

    font-size: 27px;
    font-weight: 700;
}

.ssmap-stat-card p {
    margin: 0;

    color: #6b7280;

    font-size: 13px;
    font-weight: 600;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .ssmap-about-section {
        padding: 50px 0 65px;
    }

    .ssmap-content {
        padding-left: 0;
    }

    .ssmap-content h1 {
        font-size: 30px;
    }

    .ssmap-image-card img {
        height: 390px;
    }

    .ssmap-info-box {
        margin-top: 40px;
    }

    .ssmap-placement-section {
        margin-top: 45px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .ssmap-breadcrumb {
        padding: 10px;
    }

    .ssmap-breadcrumb-list {
        font-size: 13px;
    }

    .ssmap-breadcrumb-list
    .breadcrumb-item
    + .breadcrumb-item::before {
        padding: 0 8px;
        font-size: 17px;
    }


    .ssmap-about-section {
        padding: 38px 0 50px;
    }


    .ssmap-image-wrapper {
        padding: 4px;
    }

    .ssmap-image-card {
        border-radius: 14px;
    }

    .ssmap-image-card img {
        height: 280px;
    }


    .ssmap-content {
        padding-top: 10px;
    }

    .ssmap-small-title {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .ssmap-content h1 {
        font-size: 25px;
    }

    .ssmap-content p,
    .ssmap-info-box p,
    .ssmap-feature-card p,
    .ssmap-placement-section p {
        font-size: 14.5px;
        line-height: 1.75;
    }


    .ssmap-info-box {
        display: block;

        margin-top: 35px;
        padding: 22px;

        border-left-width: 3px;
    }

    .ssmap-info-icon {
        margin-bottom: 15px;
    }

    .ssmap-info-box h2 {
        font-size: 22px;
    }


    .ssmap-feature-card {
        padding: 23px;
    }

    .ssmap-feature-card h3 {
        font-size: 19px;
    }


    .ssmap-placement-section {
        margin-top: 40px;
        padding-top: 35px;
    }

    .ssmap-placement-heading h2 {
        font-size: 25px;
    }


    .ssmap-stat-card {
        padding: 22px 12px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .ssmap-image-card img {
        height: 240px;
    }

    .ssmap-content h1 {
        font-size: 23px;
    }

    .ssmap-placement-heading h2 {
        font-size: 22px;
    }

}

/* about ssmap page end  */

/* =====================================================
   CHAIRMAN BREADCRUMB
===================================================== */

.chairman-breadcrumb {
    padding: 10px;
    background: #f5f8fa;
    border-bottom: 1px solid #e5e5e5;
}

.chairman-breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 14px;
}

.chairman-breadcrumb-list a {
    color: #105b78;
    font-weight: 600;
    text-decoration: none;
}

.chairman-breadcrumb-list a:hover {
    color: #083f55;
}

.chairman-breadcrumb-list .breadcrumb-item.active {
    color: #666;
    font-weight: 600;
}

.chairman-breadcrumb-list
.breadcrumb-item
+ .breadcrumb-item::before {

    content: "›";

    color: #999;
    font-size: 19px;
    font-weight: 600;

    padding: 0 12px;
}


/* =====================================================
   MAIN SECTION
===================================================== */

.chairman-section {
    padding: 60px 0 80px;
    background: #fff;
}


/* =====================================================
   PAGE HEADING
===================================================== */

.chairman-page-heading {
    margin-bottom: 45px;
}

.chairman-small-title {
    display: inline-block;

    margin-bottom: 8px;

    color: #105b78;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
}

.chairman-page-heading h1 {
    margin: 0;

    color: #202020;

    font-size: 34px;
    line-height: 1.25;

    font-weight: 700;
}


/* =====================================================
   TITLE LINE
===================================================== */

.chairman-title-line {
    position: relative;

    width: 75px;
    height: 4px;

    margin: 17px auto 0;

    background: #105b78;

    border-radius: 10px;
}

.chairman-title-line::after {
    content: "";

    position: absolute;

    width: 25px;
    height: 4px;

    left: 85px;
    top: 0;

    background: #9fc7d6;

    border-radius: 10px;
}


/* =====================================================
   INTRO SECTION
===================================================== */

.chairman-intro {
    margin-bottom: 60px;
}


/* =====================================================
   IMAGE
===================================================== */

.chairman-image-card {
    overflow: hidden;

    background: #fff;

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.chairman-image-card img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;

    transition: transform 0.5s ease;
}

.chairman-image-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.17);
}


/* =====================================================
   INTRO CONTENT
===================================================== */

.chairman-intro-content {
    padding-left: 15px;
}

.chairman-intro-content h2 {
    margin: 0 0 7px;

    color: #202020;

    font-size: 32px;
    font-weight: 700;
}

.chairman-intro-content h5 {
    margin: 0 0 4px;

    color: #105b78;

    font-size: 18px;
    font-weight: 700;
}

.chairman-institute {
    margin-bottom: 5px !important;

    color: #6b7280 !important;

    font-size: 15px !important;
    font-weight: 600;
}


/* =====================================================
   INTRO PARAGRAPHS
===================================================== */

.chairman-intro-content p {
    color: #5f6871;

    font-size: 15.5px;
    line-height: 1.8;

    margin-bottom: 17px;
}


/* =====================================================
   MESSAGE SECTION
===================================================== */

.chairman-message {
    padding: 45px 50px;

    background: #f7fafb;

    border-radius: 16px;

    border: 1px solid #e3edf1;

    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.06);
}

.chairman-message-heading {
    margin-bottom: 35px;
}

.chairman-message-heading h2 {
    margin: 0;

    color: #222;

    font-size: 30px;
    font-weight: 700;
}


/* =====================================================
   MESSAGE CONTENT
===================================================== */

.chairman-message-content p {
    color: #5f6871;

    font-size: 15.5px;
    line-height: 1.85;

    margin-bottom: 18px;
}


/* =====================================================
   WISHES
===================================================== */

.chairman-wishes {
    margin-top: 30px;

    padding: 18px 20px;

    background: #fff;

    border-left: 4px solid #105b78;

    border-radius: 8px;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.05);
}

.chairman-wishes strong {
    color: #105b78;

    font-size: 18px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .chairman-section {
        padding: 50px 0 65px;
    }

    .chairman-page-heading {
        margin-bottom: 35px;
    }

    .chairman-intro-content {
        padding-left: 0;
    }

    .chairman-intro-content h2 {
        font-size: 30px;
    }

    .chairman-image-card {
        max-width: 550px;
        margin: 0 auto;
    }

    .chairman-message {
        padding: 35px 30px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .chairman-breadcrumb {
        padding: 10px;
    }

    .chairman-breadcrumb-list {
        font-size: 13px;
    }

    .chairman-breadcrumb-list
    .breadcrumb-item
    + .breadcrumb-item::before {

        padding: 0 8px;
        font-size: 17px;
    }


    .chairman-section {
        padding: 38px 0 50px;
    }


    .chairman-page-heading {
        margin-bottom: 30px;
    }

    .chairman-small-title {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .chairman-page-heading h1 {
        font-size: 25px;
    }


    .chairman-intro {
        margin-bottom: 40px;
    }


    .chairman-image-card {
        border-radius: 14px;
    }

    .chairman-image-card img {
        width: 100%;
        height: auto;
    }


    .chairman-intro-content {
        padding-left: 0;
    }

    .chairman-intro-content h2 {
        font-size: 25px;
    }

    .chairman-intro-content h5 {
        font-size: 17px;
    }


    .chairman-intro-content p,
    .chairman-message-content p {
        font-size: 14.5px;
        line-height: 1.75;
    }


    .chairman-message {
        padding: 28px 20px;

        border-radius: 13px;
    }


    .chairman-message-heading {
        margin-bottom: 28px;
    }

    .chairman-message-heading h2 {
        font-size: 24px;
    }


    .chairman-wishes {
        margin-top: 25px;
        padding: 16px;
    }

    .chairman-wishes strong {
        font-size: 16px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .chairman-page-heading h1 {
        font-size: 23px;
    }

    .chairman-intro-content h2 {
        font-size: 23px;
    }

    .chairman-message-heading h2 {
        font-size: 22px;
    }

}



/* chairman page end */

/* =====================================================
   PRINCIPAL BREADCRUMB
===================================================== */

.principal-breadcrumb {
    padding: 10px;
    background: #f5f8fa;
    border-bottom: 1px solid #e5e5e5;
}

.principal-breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 14px;
}

.principal-breadcrumb-list a {
    color: #105b78;
    font-weight: 600;
    text-decoration: none;
}

.principal-breadcrumb-list a:hover {
    color: #083f55;
}

.principal-breadcrumb-list .breadcrumb-item.active {
    color: #666;
    font-weight: 600;
}

.principal-breadcrumb-list
.breadcrumb-item
+ .breadcrumb-item::before {

    content: "›";

    color: #999;
    font-size: 19px;
    font-weight: 600;

    padding: 0 12px;
}


/* =====================================================
   MAIN SECTION
===================================================== */

.principal-section {
    padding: 60px 0 80px;
    background: #fff;
}


/* =====================================================
   PAGE HEADING
===================================================== */

.principal-page-heading {
    margin-bottom: 45px;
}

.principal-small-title {
    display: inline-block;

    margin-bottom: 8px;

    color: #105b78;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
}

.principal-page-heading h1 {
    margin: 0;

    color: #202020;

    font-size: 34px;
    line-height: 1.25;

    font-weight: 700;
}


/* =====================================================
   TITLE LINE
===================================================== */

.principal-title-line {
    position: relative;

    width: 75px;
    height: 4px;

    margin: 17px auto 0;

    background: #105b78;

    border-radius: 10px;
}

.principal-title-line::after {
    content: "";

    position: absolute;

    width: 25px;
    height: 4px;

    left: 85px;
    top: 0;

    background: #9fc7d6;

    border-radius: 10px;
}


/* =====================================================
   INTRO
===================================================== */

.principal-intro {
    margin-bottom: 60px;
}


/* =====================================================
   IMAGE
===================================================== */

.principal-image-card {
    overflow: hidden;

    background: #fff;

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.principal-image-card img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;
}

.principal-image-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.17);
}


/* =====================================================
   INTRO CONTENT
===================================================== */

.principal-intro-content {
    padding-left: 15px;
}

.principal-intro-content h2 {
    margin: 0 0 7px;

    color: #202020;

    font-size: 32px;
    font-weight: 700;
}

.principal-intro-content h5 {
    margin: 0 0 4px;

    color: #105b78;

    font-size: 18px;
    font-weight: 700;
}

.principal-institute {
    margin-bottom: 5px !important;

    color: #6b7280 !important;

    font-size: 15px !important;
    font-weight: 600;
}

.principal-intro-content h4 {
    margin: 25px 0 15px;

    color: #105b78;

    font-size: 20px;
    line-height: 1.4;

    font-weight: 700;
}


/* =====================================================
   PARAGRAPHS
===================================================== */

.principal-intro-content p,
.principal-message-content p {

    color: #5f6871;

    font-size: 15.5px;
    line-height: 1.8;

    margin-bottom: 18px;
}


/* =====================================================
   MESSAGE SECTION
===================================================== */

.principal-message {
    padding: 45px 50px;

    background: #f7fafb;

    border-radius: 16px;

    border: 1px solid #e3edf1;

    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.06);
}

.principal-message-heading {
    margin-bottom: 35px;
}

.principal-message-heading h2 {
    margin: 0;

    color: #222;

    font-size: 30px;
    font-weight: 700;
}


/* =====================================================
   STRONG
===================================================== */

.principal-message-content strong {
    color: #105b78;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .principal-section {
        padding: 50px 0 65px;
    }

    .principal-page-heading {
        margin-bottom: 35px;
    }

    .principal-intro-content {
        padding-left: 0;
    }

    .principal-intro-content h2 {
        font-size: 30px;
    }

    .principal-image-card {
        max-width: 550px;
        margin: 0 auto;
    }

    .principal-message {
        padding: 35px 30px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .principal-breadcrumb {
        padding: 10px;
    }

    .principal-breadcrumb-list {
        font-size: 13px;
    }

    .principal-breadcrumb-list
    .breadcrumb-item
    + .breadcrumb-item::before {

        padding: 0 8px;
        font-size: 17px;
    }


    .principal-section {
        padding: 38px 0 50px;
    }


    .principal-page-heading {
        margin-bottom: 30px;
    }

    .principal-small-title {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .principal-page-heading h1 {
        font-size: 25px;
    }


    .principal-intro {
        margin-bottom: 40px;
    }


    .principal-image-card {
        border-radius: 14px;
    }

    .principal-image-card img {
        width: 100%;
        height: auto;
    }


    .principal-intro-content {
        padding-left: 0;
    }

    .principal-intro-content h2 {
        font-size: 25px;
    }

    .principal-intro-content h5 {
        font-size: 17px;
    }

    .principal-intro-content h4 {
        font-size: 18px;
    }


    .principal-intro-content p,
    .principal-message-content p {

        font-size: 14.5px;
        line-height: 1.75;
    }


    .principal-message {
        padding: 28px 20px;

        border-radius: 13px;
    }


    .principal-message-heading {
        margin-bottom: 28px;
    }

    .principal-message-heading h2 {
        font-size: 24px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .principal-page-heading h1 {
        font-size: 23px;
    }

    .principal-intro-content h2 {
        font-size: 23px;
    }

    .principal-message-heading h2 {
        font-size: 22px;
    }

}


/* =====================================================
   BREADCRUMB
===================================================== */

.affiliation-breadcrumb {
    padding: 10px;
    background: #f5f8fa;
    border-bottom: 1px solid #e5e5e5;
}

.affiliation-breadcrumb .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.affiliation-breadcrumb a {
    color: #105b78;
    font-weight: 600;
    text-decoration: none;
}

.affiliation-breadcrumb .active {
    color: #666;
    font-weight: 600;
}


/* =====================================================
   MAIN SECTION
===================================================== */

.affiliation-section {
    padding: 60px 0 80px;
    background: #fff;
}


/* =====================================================
   HEADING
===================================================== */

.affiliation-heading {
    margin-bottom: 35px;
}

.affiliation-heading span {
    color: #105b78;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.affiliation-heading h1 {
    margin: 8px 0 10px;

    color: #222;

    font-size: 34px;
    font-weight: 700;
}

.affiliation-heading p {
    margin: 0;

    color: #6b7280;

    font-size: 15px;
}


/* =====================================================
   BUTTONS
===================================================== */

.affiliation-buttons {
    margin-bottom: 35px;
}

.affiliation-buttons .btn {
    margin: 0 5px;

    padding: 11px 22px;

    font-size: 14px;
    font-weight: 600;

    border-radius: 6px;
}


/* =====================================================
   DOCUMENT CARD
===================================================== */

.document-card {
    min-height: 100px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 18px;

    background: #fff;

    border: 1px solid #e2e8ec;

    border-radius: 10px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);

    transition: 0.3s ease;
}

.document-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.10);
}


/* =====================================================
   PDF ICON
===================================================== */

.document-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #fceeee;

    color: #d9534f;

    border-radius: 8px;

    font-size: 23px;
}


/* =====================================================
   CONTENT
===================================================== */

.document-content {
    flex: 1;
}

.document-content small {
    display: block;

    margin-bottom: 3px;

    color: #7a858c;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
}

.document-content h3 {
    margin: 0;

    color: #222;

    font-size: 18px;
    font-weight: 600;
}


/* =====================================================
   VIEW BUTTON
===================================================== */

.view-btn {
    padding: 8px 15px;

    background: #105b78;

    color: #fff;

    border-radius: 5px;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.3s ease;
}

.view-btn:hover {
    background: #083f55;
    color: #fff;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .affiliation-section {
        padding: 50px 0 65px;
    }

    .affiliation-heading h1 {
        font-size: 30px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .affiliation-section {
        padding: 40px 0 50px;
    }

    .affiliation-heading {
        margin-bottom: 28px;
    }

    .affiliation-heading span {
        font-size: 11px;
    }

    .affiliation-heading h1 {
        font-size: 25px;
    }

    .affiliation-heading p {
        font-size: 14px;
    }


    .affiliation-buttons {
        margin-bottom: 25px;
    }

    .affiliation-buttons .btn {
        display: block;

        width: 100%;

        margin: 8px 0;

        padding: 11px;
    }


    .document-card {
        padding: 15px;

        gap: 10px;
    }

    .document-icon {
        width: 42px;
        height: 42px;

        font-size: 20px;
    }

    .document-content h3 {
        font-size: 16px;
    }

    .view-btn {
        padding: 7px 11px;

        font-size: 11px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .affiliation-heading h1 {
        font-size: 23px;
    }

    .document-content small {
        font-size: 9px;
    }

    .document-content h3 {
        font-size: 15px;
    }

}





/* =====================================================
   RULES PAGE
===================================================== */

.rules-breadcrumb {
    background: #f5f8fa;
}

.rules-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #999;
    font-size: 18px;
    font-weight: 600;
}


/* =====================================================
   HEADING
===================================================== */

.rules-subtitle {
    color: #105b78;

    font-size: 11px;

    letter-spacing: 1.8px;
}

.rules-heading h1 {
    color: #202020;

    font-size: 30px;
}

.rules-heading p {
    color: #5f6871;

    font-size: 15px;
}

.rules-heading-line {
    width: 65px;
    height: 3px;

    background: #105b78;

    border-radius: 10px;
}


/* =====================================================
   RULE ROW
===================================================== */

.rule-row {
    border-top: 3px solid #e5edf1;

    transition:
        background-color 0.3s ease,
        padding-left 0.3s ease;
}

.rule-row:last-child {
    border-bottom: 1px solid #e5edf1;
}

.rule-row:hover {
    background: #f7fbfc;

    padding-left: 8px !important;
}


/* =====================================================
   RULE NUMBER
===================================================== */

.rule-number {
    width: 42px;

    color: #105b78;

    font-size: 13px;

    font-weight: 800;
}


/* =====================================================
   RULE TITLE
===================================================== */

.rule-details h3 {
    color: #202020;

    font-size: 18px;
}


/* =====================================================
   RULE DESCRIPTION
===================================================== */

.rule-details p {
    color: #5f6871;

    font-size: 15.5px;

    line-height: 1.8;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .rules-section {
        padding-top: 45px !important;
        padding-bottom: 60px !important;
    }

    .rules-heading h1 {
        font-size: 28px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .rules-section {
        padding-top: 38px !important;
        padding-bottom: 50px !important;
    }

    .rules-heading h1 {
        font-size: 24px;
    }

    .rules-heading p {
        font-size: 14px;
    }

    .rules-subtitle {
        font-size: 10px;
    }


    .rule-row {
        gap: 12px !important;

        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .rule-number {
        width: 30px;

        font-size: 11px;
    }

    .rule-details h3 {
        font-size: 16px;
    }

    .rule-details p {
        font-size: 15px;
        line-height: 1.7;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .rules-heading h1 {
        font-size: 22px;
    }

    .rules-heading p {
        font-size: 13px;
    }

    .rule-row {
        gap: 8px !important;
    }

    .rule-number {
        width: 27px;

        font-size: 10px;
    }

    .rule-details h3 {
        font-size: 15px;
    }

    .rule-details p {
        font-size: 15px;
        line-height: 1.65;
    }

}


/* =====================================================
   RAGGING PAGE
===================================================== */

.ragging-breadcrumb {
    background: #f5f8fa;
}

.ragging-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";

    color: #999;

    font-size: 18px;

    font-weight: 600;
}


/* =====================================================
   MAIN
===================================================== */

.ragging-section {
    background: #fff;
}


/* =====================================================
   HEADING
===================================================== */

.ragging-subtitle {
    color: #105b78;

    font-size: 11px;

    letter-spacing: 1.8px;
}

.ragging-section h1 {
    color: #202020;

    font-size: 30px;
}

.ragging-section h2 {
    color: #202020;

    font-size: 27px;
}

.ragging-section p {
    color: #5f6871;

    font-size: 15.5px;
font-weight: 500;
    line-height: 1.8;
}

.ragging-heading-line {
    width: 65px;

    height: 3px;

    background: #105b78;

    border-radius: 10px;
}


/* =====================================================
   ACT BOX
===================================================== */

.ragging-act-box {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 17px 20px;

    background: #f5f9fb;

    border-left: 4px solid #105b78;

    border-radius: 8px;
}

.ragging-act-box i {
    color: #105b78;

    font-size: 22px;
}

.ragging-act-box a {
    color: #105b78;

    font-size: 16px;
}


/* =====================================================
   CONTENT
===================================================== */

.ragging-content {
    padding: 5px 0;
}

.ragging-content p {
    margin-bottom: 18px;
}


/* =====================================================
   PUNISHMENT LIST
===================================================== */

.ragging-list {
    border-top: 1px solid #e5edf1;
}

.ragging-item {
    border-bottom: 1px solid #e5edf1;

    transition:
        background-color 0.3s ease,
        padding-left 0.3s ease;
}

.ragging-item:hover {
    background: #f7fbfc;

    padding-left: 8px !important;
}


/* =====================================================
   NUMBER
===================================================== */

.ragging-number {
    width: 40px;

    color: #105b78;

    font-size: 13px;

    font-weight: 800;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .ragging-section {
        padding-top: 38px !important;
        padding-bottom: 50px !important;
    }

    .ragging-section h1 {
        font-size: 24px;
    }

    .ragging-section h2 {
        font-size: 22px;
    }

    .ragging-section p {
        font-size: 15px;

        line-height: 1.7;
    }

    .ragging-subtitle {
        font-size: 10px;
    }

    .ragging-act-box {
        padding: 15px;

        gap: 10px;
    }

    .ragging-act-box a {
        font-size: 14px;
    }

    .ragging-number {
        width: 30px;

        font-size: 11px;
    }

    .ragging-item {
        gap: 10px !important;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .ragging-section h1 {
        font-size: 22px;
    }

    .ragging-section h2 {
        font-size: 20px;
    }

    .ragging-section p {
        font-size: 15px;
    }

    .ragging-act-box a {
        font-size: 13px;
    }

}

/* =====================================================
   IMAC PAGE
===================================================== */

.imac-breadcrumb {
    background: #f5f8fa;
}

.imac-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #999;
    font-size: 18px;
    font-weight: 600;
}


/* =====================================================
   HEADING
===================================================== */

.imac-section {
    background: #fff;
}

.imac-section h1 {
    color: #202020;
    font-size: 30px;
}

.imac-heading-line {
    width: 65px;
    height: 3px;

    background: #105b78;
    border-radius: 10px;
}


/* =====================================================
   TABLE
===================================================== */

.imac-table-wrapper {
    border: 1px solid #e1ebef;

    border-radius: 10px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.imac-table {
    font-size: 15px;
}

.imac-table-wrapper thead {
    background: #105b78;
}

.imac-table-wrapper thead th {
    padding: 16px 18px;

    color: #fff;

    background: #105b78;

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;
}

.imac-table-wrapper tbody td {
    padding: 15px 18px;
font-weight: 600;
    color: #5f6871;

    font-size: 15px;

    border-color: #e5edf1;
}

.imac-table-wrapper tbody td:first-child {
    color: #105b78;

    font-weight: 700;

    width: 80px;
}

.imac-table-wrapper tbody td:nth-child(2) {
    color: #202020;

    font-weight: 600;
}

.imac-table-wrapper tbody tr {
    transition: background-color 0.3s ease;
}

.imac-table-wrapper tbody tr:hover {
    background: #f7fbfc;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .imac-section {
        padding-top: 38px !important;
        padding-bottom: 50px !important;
    }

    .imac-section h1 {
        font-size: 24px;
    }

    .imac-table-wrapper thead th {
        padding: 13px 14px;
        font-size: 13px;
    }

    .imac-table-wrapper tbody td {
        padding: 13px 14px;
        font-size: 15px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .imac-section h1 {
        font-size: 22px;
    }

    .imac-table-wrapper thead th {
        font-size: 12px;
    }

    .imac-table-wrapper tbody td {
        font-size: 15px;
    }

}


/* =====================================================
   ADMISSION COORDINATOR
===================================================== */

.admission-breadcrumb {
    background: #f5f8fa;
}

.admission-breadcrumb
.breadcrumb-item
+ .breadcrumb-item::before {

    content: "›";

    color: #999;

    font-size: 18px;

    font-weight: 600;
}


/* =====================================================
   SECTION
===================================================== */

.admission-section {
    background: #fff;
}


/* =====================================================
   HEADING
===================================================== */

.admission-section h1 {

    color: #202020;

    font-size: 30px;
}

.admission-heading-line {

    width: 65px;

    height: 3px;

    background: #105b78;

    border-radius: 10px;
}


/* =====================================================
   IMAGE
===================================================== */

.admission-image-wrapper {

    padding: 5px;
}

.admission-image-card {

    overflow: hidden;

    border-radius: 14px;

    background: #fff;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.10);
}

.admission-image-card img {

    width: 100%;

    height: 330px;

    object-fit: contain;

    display: block;

    transition: transform 0.3s ease;
}

.admission-image-card:hover img {

    transform: scale(1.04);
}


/* =====================================================
   CONTENT
===================================================== */

.admission-content {

    padding-left: 10px;
}

.admission-subtitle {

    display: inline-block;

    margin-bottom: 7px;

    color: #105b78;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;
}

.admission-content h2 {

    margin-bottom: 5px;

    color: #202020;

    font-size: 28px;
}

.admission-content h5 {

    margin-bottom: 4px;

    color: #105b78;

    font-size: 17px;
}

.admission-designation {

    color: #6b7280;

    font-size: 15px;
}

.admission-title-line {

    width: 65px;

    height: 3px;

    background: #105b78;

    border-radius: 10px;
}


/* =====================================================
   PARAGRAPHS
===================================================== */

.admission-content p,
.admission-message p {

    color: #5f6871;

    font-size: 15.5px;

    line-height: 1.8;
}

.admission-content strong {

    color: #105b78;
}


/* =====================================================
   MESSAGE BOX
===================================================== */

.admission-message {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 28px 30px;

    background: #f5f9fb;

    border-left: 4px solid #105b78;

    border-radius: 10px;
}

.admission-message-icon {

    width: 52px;

    height: 52px;

    flex: 0 0 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #105b78;

    color: #fff;

    border-radius: 50%;

    font-size: 22px;
}

.admission-message h3 {

    color: #202020;

    font-size: 21px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .admission-section {

        padding-top: 45px !important;

        padding-bottom: 60px !important;
    }

    .admission-content {

        padding-left: 0;
    }

    .admission-image-card img {

        height: 390px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .admission-section {

        padding-top: 38px !important;

        padding-bottom: 50px !important;
    }

    .admission-section h1 {

        font-size: 24px;
    }

    .admission-image-wrapper {

        padding: 3px;
    }

    .admission-image-card {

        border-radius: 12px;
    }

    .admission-image-card img {

        height: 300px;
    }

    .admission-content {

        padding-top: 5px;
    }

    .admission-content h2 {

        font-size: 24px;
    }

    .admission-content h5 {

        font-size: 16px;
    }

    .admission-content p,
    .admission-message p {

        font-size: 15px;

        line-height: 1.7;
    }

    .admission-message {

        display: block;

        padding: 22px;

        border-left-width: 3px;
    }

    .admission-message-icon {

        margin-bottom: 15px;
    }

    .admission-message h3 {

        font-size: 19px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .admission-section h1 {

        font-size: 22px;
    }

    .admission-image-card img {

        height: 250px;
    }

    .admission-content h2 {

        font-size: 22px;
    }

    .admission-content p,
    .admission-message p {

        font-size: 15px;
    }

}

/* =========================================================
   ADMISSION PROCESS PAGE
========================================================= */

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* =========================================================
   PAGE TITLE
========================================================= */

.admission-title-section {
    width: 100%;
    padding: 42px 0 30px;
    text-align: center;
    background: #ffffff;
}

.admission-title {
    width: 100%;
}

.admission-title span {
    display: block;
    margin-bottom: 8px;

    color: #00627f;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.8px;
}

.admission-title h1 {
    margin: 0;
    padding: 0;

    color: #005b7a;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.admission-process-section {
    width: 100%;
    padding: 0 0 55px;
}

.admission-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.admission-intro {
    width: 100%;

    margin: 0 auto;
    padding: 22px 25px;

    background: #dce7eb;
    border-radius: 4px;
}

.admission-intro p {
    margin: 0 0 14px;

    color: #555555;
    font-size: 16px;
    line-height: 1.8;
}

.admission-intro p:last-child {
    margin-bottom: 0;
}

.admission-intro a {
    color: #005b7a;
    font-weight: 600;
    text-decoration: none;
}

.admission-intro a:hover {
    text-decoration: underline;
}


/* =========================================================
   ADMISSION DOCUMENTS
========================================================= */

.admission-documents {
    width: 100%;
    padding-top: 28px;

    display: flex;
    flex-direction: column;
    gap: 16px;
}


/* =========================================================
   DOCUMENT ROW
========================================================= */

.admission-document {
    width: 100%;
    min-height: 78px;

    padding: 15px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #ffffff;
    border: 1px solid #d8e3e7;
    border-radius: 4px;

    text-decoration: none;

    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.admission-document:hover {
    background: #f8fafb;
    border-color: #b8ccd3;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);

    transform: translateY(-2px);
}


/* =========================================================
   DOCUMENT LEFT SIDE
========================================================= */

.document-left {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 16px;
}


/* =========================================================
   PDF ICON
========================================================= */

.document-icon {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dce7eb;
    border-radius: 4px;

    color: #005b7a;
    font-size: 20px;
}


/* =========================================================
   DOCUMENT CONTENT
========================================================= */

.document-content {
    min-width: 0;
}

.document-content h2 {
    margin: 0;

    color: #005b7a;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.45;
}


/* =========================================================
   ARROW
========================================================= */

.document-arrow {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: 20px;

    background: #09647f;
    border-radius: 50%;

    color: #ffffff;
    font-size: 13px;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.admission-document:hover .document-arrow {
    background: #07566d;
    transform: translateX(3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .admission-title-section {
        padding: 38px 0 28px;
    }

    .admission-title h1 {
        font-size: 30px;
    }

    .admission-process-section {
        padding-bottom: 45px;
    }

    .admission-content {
        max-width: 100%;
    }


    /* INTRO */

    .admission-intro {
        width: 85%;
        padding: 22px 22px;
    }

    .admission-intro p {
        font-size: 15px;
        line-height: 1.75;
    }


    /* DOCUMENT */

    .document-content h2 {
        font-size: 17px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    /* ================= PAGE TITLE ================= */

    .admission-title-section {
        padding: 30px 15px 24px;
    }

    .admission-title span {
        margin-bottom: 7px;

        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .admission-title h1 {
        font-size: 26px;
    }


    /* ================= MAIN CONTENT ================= */

    .admission-process-section {
        padding: 0 15px 38px;
    }


    /* ================= INTRO ================= */

    .admission-intro {
        width: 100%;

        margin: 0 auto;

        padding: 18px 16px 22px;

        background: #dce7eb;
        border-radius: 4px;
    }

    .admission-intro p {
        width: 100%;

        margin: 0 0 12px;
        padding: 0;

        font-size: 15px;
        line-height: 1.75;
    }


    /* ================= DOCUMENTS ================= */

    .admission-documents {
        padding-top: 22px;
        gap: 12px;
    }

    .admission-document {
        min-height: 70px;
        padding: 13px 14px;
    }

    .document-left {
        gap: 12px;
    }


    /* ================= ICON ================= */

    .document-icon {
        width: 38px;
        height: 38px;

        flex-basis: 38px;

        font-size: 17px;
    }


    /* ================= TEXT ================= */

    .document-content h2 {
        font-size: 16px;
        line-height: 1.4;
    }


    /* ================= ARROW ================= */

    .document-arrow {
        width: 32px;
        height: 32px;

        flex-basis: 32px;

        margin-left: 12px;

        font-size: 11px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .admission-title-section {
        padding: 26px 12px 20px;
    }

    .admission-title h1 {
        font-size: 24px;
    }


    /* ================= MAIN CONTENT ================= */

    .admission-process-section {
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 32px;
    }


    /* ================= INTRO ================= */

    .admission-intro {
        width: 100%;

        margin: 0 auto;

        padding: 16px 12px 20px;
    }

    .admission-intro p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* ================= DOCUMENTS ================= */

    .admission-documents {
        padding-top: 20px;
        gap: 10px;
    }

    .admission-document {
        padding: 12px 11px;
    }


    /* ================= DOCUMENT LEFT ================= */

    .document-left {
        gap: 10px;
    }


    /* ================= ICON ================= */

    .document-icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;

        font-size: 15px;
    }


    /* ================= TEXT ================= */

    .document-content h2 {
        font-size: 15px;
        line-height: 1.4;
    }


    /* ================= ARROW ================= */

    .document-arrow {
        width: 30px;
        height: 30px;

        flex-basis: 30px;

        margin-left: 8px;

        font-size: 10px;
    }
}









/* =====================================================
   COURSES OFFERED
===================================================== */

.courses-breadcrumb {
    background: #f5f8fa;
}

.courses-breadcrumb
.breadcrumb-item
+ .breadcrumb-item::before {

    content: "›";

    color: #999;

    font-size: 18px;

    font-weight: 600;
}


/* =====================================================
   SECTION
===================================================== */

.courses-section {
    background: #fff;
}

.courses-section h1 {

    color: #202020;

    font-size: 30px;
}

.courses-heading-line {

    width: 65px;

    height: 3px;

    background: #105b78;

    border-radius: 10px;
}


/* =====================================================
   TABLE
===================================================== */

.courses-table-wrapper {

    overflow: hidden;

    border: 1px solid #e1ebef;

    border-radius: 10px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.05);
}


/* TABLE HEADER */

.courses-table-wrapper thead th {

    padding: 16px 18px;

    background: #105b78;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;

    border: 0;
}


/* TABLE BODY */

.courses-table-wrapper tbody td {

    padding: 15px 18px;

    color: #5f6871;

    font-size: 15px;

    border-color: #e5edf1;
}


/* SR NO */

.courses-table-wrapper tbody td:first-child {

    width: 90px;

    color: #105b78;

    font-weight: 700;
}


/* COURSE */

.courses-table-wrapper tbody td:nth-child(2) {

    color: #202020;

    font-weight: 600;
}


/* CHOICE CODE */

.courses-table-wrapper tbody td:nth-child(3) {

    letter-spacing: 0.5px;

    font-weight: 600;
}


/* INTAKE */

.courses-table-wrapper tbody td:last-child {

    color: #105b78;

    font-weight: 700;

    text-align: center;
}


/* HOVER */

.courses-table-wrapper tbody tr {

    transition: background-color 0.3s ease;
}

.courses-table-wrapper tbody tr:hover {

    background: #f7fbfc;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .courses-section {

        padding-top: 45px !important;

        padding-bottom: 60px !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .courses-section {

        padding-top: 38px !important;

        padding-bottom: 50px !important;
    }

    .courses-section h1 {

        font-size: 24px;
    }

    .courses-table-wrapper thead th {

        padding: 13px 14px;

        font-size: 13px;
    }

    .courses-table-wrapper tbody td {

        padding: 13px 14px;

        font-size: 15px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .courses-section h1 {

        font-size: 22px;
    }

    .courses-table-wrapper thead th {

        font-size: 12px;
    }

    .courses-table-wrapper tbody td {

        font-size: 15px;
    }

}



/* =====================================================
   ADMISSION HELPLINE
===================================================== */

.helpline-breadcrumb {
    background: #f5f8fa;
}

.helpline-breadcrumb
.breadcrumb-item
+ .breadcrumb-item::before {

    content: "›";

    color: #999;

    font-size: 18px;

    font-weight: 600;
}


/* =====================================================
   SECTION
===================================================== */

.helpline-section {
    background: #fff;
}

.helpline-section h1 {

    color: #202020;

    font-size: 30px;
}

.helpline-heading-line {

    width: 65px;

    height: 3px;

    background: #105b78;

    border-radius: 10px;
}


/* =====================================================
   TABLE
===================================================== */

.helpline-table-wrapper {

    overflow: hidden;

    border: 1px solid #e1ebef;

    border-radius: 10px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.05);
}


/* HEADER */

.helpline-table-wrapper thead th {

    padding: 16px 18px;

    background: #105b78;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;

    border: 0;
}


/* BODY */

.helpline-table-wrapper tbody td {

    padding: 15px 18px;

    color: #5f6871;

    font-size: 15px;

    border-color: #e5edf1;

    white-space: nowrap;
}


/* SR NO */

.helpline-table-wrapper tbody td:first-child {

    width: 80px;

    color: #105b78;

    font-weight: 700;
}


/* DEPARTMENT */

.helpline-table-wrapper tbody td:nth-child(2) {

    color: #202020;

    font-weight: 600;
}


/* HOD */

.helpline-table-wrapper tbody td:nth-child(3) {

    color: #5f6871;

    font-weight: 600;
}


/* CONTACT */

.helpline-table-wrapper tbody td:last-child {

    text-align: center;
}


/* PHONE LINK */

.helpline-table-wrapper tbody td:last-child a {

    color: #105b78;

    font-weight: 700;

    text-decoration: none;
}

.helpline-table-wrapper tbody td:last-child a:hover {

    color: #083f55;

    text-decoration: underline;
}


/* HOVER */

.helpline-table-wrapper tbody tr {

    transition: background-color 0.3s ease;
}

.helpline-table-wrapper tbody tr:hover {

    background: #f7fbfc;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .helpline-section {

        padding-top: 45px !important;

        padding-bottom: 60px !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .helpline-section {

        padding-top: 38px !important;

        padding-bottom: 50px !important;
    }

    .helpline-section h1 {

        font-size: 24px;
    }

    .helpline-table-wrapper thead th {

        padding: 13px 14px;

        font-size: 13px;
    }

    .helpline-table-wrapper tbody td {

        padding: 13px 14px;

        font-size: 15px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .helpline-section h1 {

        font-size: 22px;
    }

    .helpline-table-wrapper thead th {

        font-size: 12px;
    }

    .helpline-table-wrapper tbody td {

        font-size: 15px;
    }

}


/* =====================================================
   FEE STRUCTURE
===================================================== */

.fee-breadcrumb {
    background: #f5f8fa;
}

.fee-breadcrumb
.breadcrumb-item
+ .breadcrumb-item::before {

    content: "›";

    color: #999;

    font-size: 18px;

    font-weight: 600;
}


/* =====================================================
   SECTION
===================================================== */

.fee-section {
    background: #fff;
}

.fee-section h1 {

    color: #202020;

    font-size: 30px;
}

.fee-heading-line {

    width: 65px;

    height: 3px;

    background: #105b78;

    border-radius: 10px;
}


/* =====================================================
   TABLE
===================================================== */

.fee-table-wrapper {

    overflow: hidden;

    border: 1px solid #e1ebef;

    border-radius: 10px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.05);
}


/* HEADER */

.fee-table-wrapper thead th {

    padding: 16px 18px;

    background: #105b78;

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;

    border: 0;
}


/* BODY */

.fee-table-wrapper tbody td {

    padding: 15px 18px;

    color: #5f6871;

    font-size: 15px;

    border-color: #e5edf1;

    white-space: nowrap;
}


/* SR NO */

.fee-table-wrapper tbody td:first-child {

    width: 80px;

    color: #105b78;

    font-weight: 700;
}


/* DESCRIPTION */

.fee-table-wrapper tbody td:nth-child(2) {

    color: #202020;

    font-weight: 600;

    white-space: normal;
}


/* FEES */

.fee-table-wrapper tbody td:nth-child(3),
.fee-table-wrapper tbody td:nth-child(4) {

    color: #105b78;

    font-weight: 700;

    text-align: center;
}


/* HOVER */

.fee-table-wrapper tbody tr {

    transition: background-color 0.3s ease;
}

.fee-table-wrapper tbody tr:hover {

    background: #f7fbfc;
}


/* =====================================================
   OFFICIAL DOCUMENT
===================================================== */

.fee-document {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 18px 20px;

    background: #f5f9fb;

    border: 1px solid #e1ebef;

    border-left: 4px solid #105b78;

    border-radius: 10px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.fee-document:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);
}


/* PDF ICON */

.fee-document-icon {

    width: 48px;

    height: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #105b78;

    color: #fff;

    border-radius: 9px;

    font-size: 21px;
}


/* DOCUMENT TEXT */

.fee-document-content {

    flex-grow: 1;
}

.fee-document-content h3 {

    margin: 0 0 4px;

    color: #202020;

    font-size: 17px;

    font-weight: 700;
}

.fee-document-content p {

    margin: 0;

    color: #6b7280;

    font-size: 13px;
}


/* ARROW */

.fee-document-arrow {

    color: #105b78;

    font-size: 20px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .fee-section {

        padding-top: 45px !important;

        padding-bottom: 60px !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .fee-section {

        padding-top: 38px !important;

        padding-bottom: 50px !important;
    }

    .fee-section h1 {

        font-size: 24px;
    }

    .fee-table-wrapper thead th {

        padding: 13px 14px;

        font-size: 13px;
    }

    .fee-table-wrapper tbody td {

        padding: 13px 14px;

        font-size: 15px;
    }

    .fee-document {

        padding: 15px;

        gap: 12px;
    }

    .fee-document-icon {

        width: 42px;

        height: 42px;

        flex-basis: 42px;

        font-size: 18px;
    }

    .fee-document-content h3 {

        font-size: 15px;
    }

    .fee-document-content p {

        font-size: 12px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .fee-section h1 {

        font-size: 22px;
    }

    .fee-table-wrapper thead th {

        font-size: 12px;
    }

    .fee-table-wrapper tbody td {

        font-size: 15px;
    }

    .fee-document-content h3 {

        font-size: 14px;
    }

    .fee-document-arrow {

        font-size: 17px;
    }

}

/* same css for Fee Structure (2025-2026) */

/* ================================
   COMPUTER ENGINEERING
================================ */

.ce-section {
    background: #fff;
}

.ce-section p {
    color: #5f6871;
    font-size: 15.5px;
    line-height: 1.8;
}

.ce-section strong {
    color: #105b78;
}


/* Department Image */

.ce-image {
    background: #fff;
}

.ce-image img {
    height: 390px;
    object-fit: cover;
    transition: transform .4s ease;
}

.ce-image:hover img {
    transform: scale(1.03);
}


/* Heading Line */

.ce-line {
    width: 65px;
    height: 4px;
    background: #105b78;
    border-radius: 10px;
}


/* Menu */

.ce-menu-wrapper {
    background: #f5f9fb;
}

.ce-menu-wrapper .col {
    min-width: 0;
    flex: 1 0 0;
}

.ce-menu-btn {
    width: 100%;
    min-height: 70px;
    padding: 8px;
    border: 0;
    border-right: 1px solid #dce7eb;
    background: transparent;
    color: #4f5961;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;

    transition: .25s ease;
}

.ce-menu-btn i {
    color: #105b78;
    font-size: 19px;
}

.ce-menu-btn:hover {
    background: #eaf4f8;
    color: #105b78;
}

.ce-menu-btn.active {
    background: #105b78;
    color: #fff;
}

.ce-menu-btn.active i {
    color: #fff;
}


/* Tab Content */

.ce-tab-content {
    display: none;
    animation: ceFade .3s ease;
}

.ce-tab-content.active {
    display: block;
}

@keyframes ceFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Common */

.ce-label {
    color: #105b78;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.ce-designation {
    color: #105b78 !important;
}


/* PEO / PSO / PO */

.ce-badge {
    flex: 0 0 55px;
    height: fit-content;
    padding: 7px 5px;

    text-align: center;
    color: #fff;
    background: #105b78;

    border-radius: 6px;

    font-size: 12px;
    font-weight: 700;
}


/* Faculty */

.ce-faculty-table {
    min-width: 750px;
}

.ce-faculty-table th {
    padding: 12px;
    color: #fff;
    background: #105b78;
    font-size: 13px;
    white-space: nowrap;
}

.ce-faculty-table td {
    padding: 12px;
    color: #5f6871;
    font-size: 15.5px;
    font-weight: 600;
}


/* Icons */

.ce-icon,
.ce-vm-icon {
    color: #105b78;
}

.ce-vm-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: #105b78;

    border-radius: 50%;
    font-size: 21px;
}


/* Academic */

.ce-academic-card {
    color: #105b78;
    transition: .25s ease;
}

.ce-academic-card:hover {
    color: #fff;
    background: #105b78 !important;
    transform: translateY(-3px);
}


/* Newsletter */

.ce-document-card {
    color: #222;
    transition: .25s ease;
}

.ce-document-card i {
    color: #105b78;
}

.ce-document-card span {
    color: #6b7280;
    font-size: 13px;
}

.ce-document-card:hover {
    color: #105b78;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .07);
}


/* Pagination */

#facultyPagination .page-link {
    color: #105b78;
    border-color: #dce8ed;
}

#facultyPagination .active .page-link {
    color: #fff;
    background: #105b78;
    border-color: #105b78;
}

#facultyPagination .page-link:hover {
    color: #105b78;
    background: #eaf4f8;
}


/* ================================
   TABLET
================================ */

@media (max-width: 991.98px) {

    .ce-image img {
        height: 350px;
    }

    .ce-menu-btn {
        min-height: 66px;
        font-size: 11px;
    }

    .ce-menu-btn i {
        font-size: 21px;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 767.98px) {

    .ce-section {
        padding-top: 35px !important;
    }

    .ce-image img {
        height: 280px;
    }

    /* Mobile menu - 2 items per row */
    .ce-menu-wrapper {
          overflow: hidden;
    padding: 8px;
    background: #f5f9fb;
    }

    .ce-menu-wrapper .row {
        width: 100%;
        min-width: 0;
        flex-wrap: wrap !important;
        margin-left: 0;
        margin-right: 0;
    }

    .ce-menu-wrapper .col {
         flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
    padding: 4px;
    }

    .ce-menu-btn {
        width: 100%;
    min-height: 72px;
    padding: 10px 6px;

    border: 1px solid #dce7eb;
    border-radius: 6px;

    font-size: 11px;
    line-height: 1.3;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    }

    .ce-menu-btn i {
          font-size: 18px;
    margin-bottom: 3px;
    }

    /* Newsletter full width */
    .ce-menu-wrapper .col:last-child {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }

    .ce-menu-wrapper .col:last-child .ce-menu-btn {
         width: 100%;
    }

    .ce-faculty-table {
        min-width: 750px;
    }

    .ce-badge {
        flex-basis: 48px;
        min-width: 48px;
        font-size: 11px;
    }
}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

    .ce-image img {
        height: 240px;
    }

    .ce-menu-wrapper .col {
        flex-basis: 100px;
        width: 100px;
    }

    .ce-menu-btn {
        padding: 7px 5px;
        font-size: 10px;
    }

}


/* =========================================
   CIVIL ENGINEERING DEPARTMENT
========================================= */

.civil-department {
    background: #f7fafc;
}

.department-breadcrumb {
    background: #fff;
    padding: 14px 0;
}

.department-breadcrumb .breadcrumb {
    font-size: 14px;
}

.department-breadcrumb a {
    color: #105b78;
    text-decoration: none;
}

.department-breadcrumb .active {
    color: #6c757d;
}


/* =========================================
   PAGE HEADING
========================================= */

.department-heading span {
    color: #105b78;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.department-heading h1 {
    color: #105b78;
    font-size: 32px;
    font-weight: 700;
    margin-top: 8px;
}


/* =========================================
   ABOUT DEPARTMENT
========================================= */

.department-about {
    background: transparent;
    border: 0;
}


/* IMAGE CARD - SEPARATE */

.department-image-card {
    width: 100%;
    height: 100%;
    min-height: 280px;

    background: #fff;
    border: 1px solid #e6edf1;
    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .04);

    display: flex;
    align-items: center;
    justify-content: center;
}


/* IMAGE */

.department-image {
    width: 100%;
    height: 280px;

    object-fit: contain;
    object-position: center;

    display: block;

    background: #fff;

    transition: transform .4s ease;
}

.department-image-card:hover .department-image {
    transform: scale(1.02);
}


/* CONTENT CARD - SEPARATE */

.department-about-content {
    width: 100%;
    height: 100%;
    min-height: 280px;

    padding: 30px 35px;

    background: #fff;

    border: 1px solid #e6edf1;
    border-radius: 8px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .04);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.department-about-content h2 {
    color: #105b78;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}

.department-about-content p {
    color: #5f6871;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}


/* =========================================
   DEPARTMENT TABS
========================================= */

.department-tabs {
    border: 1px solid #e5edf1;
}

.department-tab-header {
    background: #f5f9fb;
    border-bottom: 1px solid #dce7eb;
}

.department-tab-scroll {
    display: flex;
    width: 100%;
}

.department-tab {
    flex: 1 1 0;
    min-height: 70px;
    padding: 10px 8px;

    border: 0;
    border-right: 1px solid #dce7eb;

    background: transparent;
    color: #4f5961;

    font-size: 11px;
    font-weight: 700;
    text-align: center;

    transition: .25s ease;
}

.department-tab:last-child {
    border-right: 0;
}

.department-tab:hover {
    background: #eaf4f8;
    color: #105b78;
}

.department-tab.active {
    background: #105b78;
    color: #fff;
}


/* =========================================
   TAB CONTENT
========================================= */

.department-tab-content {
    background: #fff;
}

.department-panel {
    display: none;
    padding: 40px;
    animation: civilFade .3s ease;
}

.department-panel.active {
    display: block;
}

@keyframes civilFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   COMMON PANEL TEXT
========================================= */

.panel-text h3 {
    color: #105b78;
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 20px;
}

.panel-text p {
    color: #5f6871;
    font-size: 15px;
    line-height: 1.8;
}

.panel-text strong {
    color: #105b78;
}


/* =========================================
   HOD
========================================= */

.hod-profile {
    padding: 20px;
}

.hod-image {
    width: 190px;
    height: 190px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #eaf4f8;
    margin-bottom: 18px;
}

.hod-profile h4 {
    color: #105b78;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.hod-profile p {
    color: #6c757d;
    margin-bottom: 5px;
}

.hod-profile small {
    color: #6c757d;
}


/* =========================================
   PEO / PSO
========================================= */

.outcome-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.outcome-item {
    padding: 18px 20px;
    background: #f7fafc;
    border-left: 4px solid #105b78;
    border-radius: 5px;

    color: #5f6871;
    font-size: 15px;
    line-height: 1.7;
}

.outcome-item strong {
    color: #105b78;
    margin-right: 5px;
}


/* =========================================
   PO
========================================= */

.po-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.po-item {
    padding: 17px 20px;
    background: #f7fafc;
    border: 1px solid #e2ebef;
    border-radius: 6px;

    color: #5f6871;
    font-size: 15px;
    line-height: 1.7;
}

.po-item strong {
    display: block;
    color: #105b78;
    margin-bottom: 5px;
}


/* =========================================
   FACULTY TABLE
========================================= */

.faculty-table {
    min-width: 750px;
    margin-bottom: 0;
}

.faculty-table th {
    padding: 12px;
    background: #105b78;
    color: #fff;

    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.faculty-table td {
    padding: 12px;
    color: #5f6871;
    font-size: 14px;
    vertical-align: middle;
}

.faculty-table tbody tr:hover {
    background: #f7fafc;
}


/* =========================================
   PAGINATION
========================================= */

.ce-faculty-pagination .page-link {
    color: #105b78;
    border-color: #dce7eb;
}

.ce-faculty-pagination .page-link:hover {
    color: #105b78;
    background: #eaf4f8;
}

.ce-faculty-pagination .active .page-link {
    color: #fff;
    background: #105b78;
    border-color: #105b78;
}


/* =========================================
   LABORATORIES
========================================= */

.facility-card {
    height: 100%;
    padding: 25px;

    background: #f7fafc;
    border: 1px solid #e2ebef;
    border-radius: 8px;

    transition: .25s ease;
}

.facility-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.facility-card h4 {
    color: #105b78;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.facility-card p {
    color: #5f6871;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}


/* =========================================
   ACADEMIC
========================================= */

.academic-card {
    padding: 20px;
    background: #f5f9fb;

    color: #105b78;
    border: 1px solid #e2ebef;
    border-radius: 7px;

    text-align: center;
    font-size: 15px;
    font-weight: 600;

    transition: .25s ease;
}

.academic-card:hover {
    color: #fff;
    background: #105b78;
    transform: translateY(-3px);
}


/* =========================================
   NEWSLETTER
========================================= */

.newsletter-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-list a {
    display: block;
    padding: 16px 20px;

    color: #105b78;
    background: #f7fafc;

    border: 1px solid #e2ebef;
    border-radius: 6px;

    text-decoration: none;
    font-size: 15px;
    font-weight: 600;

    transition: .25s ease;
}

.newsletter-list a:hover {
    color: #fff;
    background: #105b78;
}


/* =========================================
   VISION & MISSION
========================================= */

.vision-mission-card {
    height: 100%;
    padding: 30px;

    background: #fff;
    border: 1px solid #e2ebef;
    border-radius: 8px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .04);
}

.vision-mission-card h3 {
    color: #105b78;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vision-mission-card p {
    color: #5f6871;
    font-size: 15px;
    line-height: 1.8;
}

.vision-mission-card strong {
    color: #105b78;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .department-heading h1 {
        font-size: 28px;
    }

    /* ONLY ABOUT IMAGE SIZE */
    .department-image-card {
        min-height: 250px;
    }

    .department-image {
        height: 250px;
        min-height: 250px;
    }

    .department-about-content {
        min-height: 250px;
        padding: 30px;
    }

    .department-tab {
        min-height: 65px;
        font-size: 10px;
    }

    .department-panel {
        padding: 30px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .civil-department {
        padding-top: 35px !important;
    }

    .department-heading {
        margin-bottom: 30px !important;
    }

    .department-heading span {
        font-size: 10px;
    }

    .department-heading h1 {
        font-size: 24px;
        line-height: 1.3;
    }


    /* =====================================
       ABOUT - MOBILE
    ===================================== */

    .department-image-card {
        min-height: auto;
        height: auto;
    }

    .department-image {
        width: 100%;
        height: 210px;
        min-height: 210px;
        object-fit: contain;
    }

    .department-about-content {
        min-height: auto;
        height: auto;
        padding: 25px 20px;
    }

    .department-about-content h2 {
        font-size: 21px;
    }

    .department-about-content p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* Mobile Tabs - 2 per row */

    .department-tab-header {
        padding: 8px;
    }

    .department-tab-scroll {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .department-tab {
        flex: 0 0 50%;
        width: 50%;
        max-width: 50%;

        min-height: 65px;
        padding: 8px 5px;

        border: 1px solid #dce7eb;
        font-size: 10px;
        line-height: 1.3;
    }

    /* Newsletter full width */

    .department-tab:last-child {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }


    /* Content */

    .department-panel {
        padding: 25px 18px;
    }

    .panel-text h3 {
        font-size: 20px;
    }

    .panel-text p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* HOD */

    .hod-profile {
        padding: 5px;
    }

    .hod-image {
        width: 150px;
        height: 150px;
    }


    /* Faculty */

    .faculty-table {
        min-width: 750px;
    }

    .faculty-table th,
    .faculty-table td {
        font-size: 12px;
        padding: 10px;
    }


    /* Outcomes */

    .outcome-item,
    .po-item {
        padding: 15px;
        font-size: 14px;
    }


    /* Vision Mission */

    .vision-mission-card {
        padding: 22px;
    }

    .vision-mission-card h3 {
        font-size: 20px;
    }

    .vision-mission-card p {
        font-size: 14px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .department-heading h1 {
        font-size: 21px;
    }


    /* About Image */

    .department-image {
        height: 180px;
        min-height: 180px;
    }

    .department-about-content {
        padding: 22px 16px;
    }

    .department-panel {
        padding: 22px 15px;
    }

    .department-tab {
        min-height: 62px;
        font-size: 9.5px;
    }

    .hod-image {
        width: 135px;
        height: 135px;
    }

    .faculty-table {
        min-width: 750px;
    }
}

/* =========================================
   MECHANICAL ENGINEERING DEPARTMENT
========================================= */

.mechanical-department {
    background: #f7fafc;
}


/* =========================================
   BREADCRUMB
========================================= */

.department-breadcrumb {
    background: #fff;
    padding: 12px 15px;
    border-radius: 5px;
}

.department-breadcrumb .breadcrumb {
    font-size: 14px;
}

.department-breadcrumb a {
    color: #105b78;
    text-decoration: none;
}

.department-breadcrumb .active {
    color: #6c757d;
}


/* =========================================
   PAGE HEADING
========================================= */

.department-heading span {
    color: #105b78;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.department-heading h1 {
    color: #105b78;
    font-size: 30px;
    font-weight: 700;
    margin-top: 6px;
    margin-bottom: 0;
}


/* =========================================
   ABOUT SECTION
========================================= */

.department-about {
    width: 100%;
}


/* IMAGE CARD */

.department-image-card {
    width: 100%;
    height: 210px;

    background: #fff;

    border: 1px solid #e6edf1;
    border-radius: 8px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .04);
}

.department-image {
    width: 100%;
    height: 250px;

    object-fit: contain;
    object-position: center;

    display: block;
}


/* CONTENT CARD */

.department-about-content {
    width: 100%;
    min-height: 210px;

    padding: 25px 30px;

    background: #fff;

    border: 1px solid #e6edf1;
    border-radius: 8px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .04);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-label {
    color: #105b78;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 5px;
}

.department-about-content h2 {
    color: #105b78;

    font-size: 22px;
    font-weight: 700;

    margin-bottom: 10px;
}

.department-about-content p {
    color: #5f6871;

    font-size: 15px;
    line-height: 1.6;

    margin-bottom: 8px;
}


/* =========================================
   TABS
========================================= */

.department-tabs {
    background: #fff;
    border: 1px solid #e5edf1;
    border-radius: 7px;
    overflow: hidden;
}

.department-tab-header {
    background: #f5f9fb;
    border-bottom: 1px solid #dce7eb;
}

.department-tab-scroll {
    display: flex;
    width: 100%;
}

.department-tab {
    flex: 1 1 0;

    min-height: 65px;

    padding: 8px 6px;

    border: 0;
    border-right: 1px solid #dce7eb;

    background: transparent;

    color: #4f5961;

    font-size: 12px;
    font-weight: 700;

    text-align: center;

    transition: .25s ease;
}

.department-tab:last-child {
    border-right: 0;
}

.department-tab:hover {
    background: #eaf4f8;
    color: #105b78;
}

.department-tab.active {
    background: #105b78;
    color: #fff;
}


/* =========================================
   TAB CONTENT
========================================= */

.department-tab-content {
    background: #fff;
}

.department-panel {
    display: none;
    padding: 35px;
    animation: mechanicalFade .3s ease;
}

.department-panel.active {
    display: block;
}

@keyframes mechanicalFade {

    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   COMMON TEXT
========================================= */

.panel-text h3 {
    color: #105b78;

    font-size: 22px;
    font-weight: 700;

    margin-bottom: 18px;
}

.panel-text p {
    color: #5f6871;

    font-size: 15px;
    line-height: 1.7;
}

.panel-text strong {
    color: #105b78;
}


/* =========================================
   HOD
========================================= */

.hod-profile {
    padding: 15px;
}

.hod-image {
    width: 180px;
    height: 180px;

    object-fit: cover;

    border-radius: 50%;

    border: 5px solid #eaf4f8;

    margin-bottom: 15px;
    margin-left: 80px;
}

.hod-profile h4 {
    color: #105b78;

    font-size: 19px;
    font-weight: 700;

    margin-bottom: 4px;
}

.hod-profile p {
    color: #6c757d;
    margin-bottom: 4px;
}

.hod-profile small {
    color: #6c757d;
}


/* =========================================
   VISION / MISSION
========================================= */

.vision-mission-card {
    padding: 25px;

    background: #fff;

    border: 1px solid #e2ebef;
    border-radius: 8px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .04);
}

.vision-mission-card h3 {
    color: #105b78;

    font-size: 21px;
    font-weight: 700;

    margin-bottom: 14px;
}

.vision-mission-card p {
    color: #5f6871;

    font-size: 15px;
    line-height: 1.7;

    margin-bottom: 10px;
}

.vision-mission-card strong {
    color: #105b78;
}


/* =========================================
   PEO / PSO
========================================= */

.outcome-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.outcome-item {
    padding: 16px 18px;

    background: #f7fafc;

    border-left: 4px solid #105b78;

    border-radius: 5px;

    color: #5f6871;

    font-size: 15px;
    line-height: 1.7;
}

.outcome-item strong {
    color: #105b78;
    margin-right: 4px;
}


/* =========================================
   PO
========================================= */

.po-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.po-item {
    padding: 15px 18px;

    background: #f7fafc;

    border: 1px solid #e2ebef;

    border-radius: 6px;

    color: #5f6871;

    font-size: 14px;
    line-height: 1.7;
}

.po-item strong {
    display: block;

    color: #105b78;

    margin-bottom: 4px;
}


/* =========================================
   FACULTY
========================================= */

.faculty-table {
    min-width: 850px;
    margin-bottom: 0;
}

.faculty-table th {
    padding: 11px;

    background: #105b78;
    color: #fff;

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;
}

.faculty-table td {
    padding: 11px;

    color: #5f6871;

    font-size: 15px;

    vertical-align: middle;
}

.faculty-table tbody tr:hover {
    background: #f7fafc;
}


/* =========================================
   PAGINATION
========================================= */

#facultyPagination {
    gap: 3px;
}

#facultyPagination .page-link {
    color: #105b78;

    border-color: #dce7eb;

    font-size: 14px;
}

#facultyPagination .page-link:hover {
    color: #105b78;
    background: #eaf4f8;
}

#facultyPagination .active .page-link {
    color: #fff;

    background: #105b78;

    border-color: #105b78;
}


/* =========================================
   LABORATORY
========================================= */

.facility-card {
    height: 100%;

    padding: 22px;

    background: #f7fafc;

    border: 1px solid #e2ebef;

    border-radius: 8px;

    transition: .25s ease;
}

.facility-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.facility-card h4 {
    color: #105b78;

    font-size: 17px;
    font-weight: 700;

    margin-bottom: 10px;
}

.facility-card p {
    color: #5f6871;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 0;
}


/* =========================================
   ACADEMIC
========================================= */

.academic-card {
    padding: 18px;

    background: #f5f9fb;

    color: #105b78;

    border: 1px solid #e2ebef;

    border-radius: 7px;

    text-align: center;

    font-size: 14px;
    font-weight: 600;

    transition: .25s ease;
}

.academic-card:hover {
    color: #fff;

    background: #105b78;

    transform: translateY(-3px);
}


/* =========================================
   NEWSLETTER
========================================= */

.newsletter-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-list a {
    display: block;

    padding: 14px 18px;

    color: #105b78;

    background: #f7fafc;

    border: 1px solid #e2ebef;

    border-radius: 6px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: .25s ease;
}

.newsletter-list a:hover {
    color: #fff;
    background: #105b78;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .department-heading h1 {
        font-size: 27px;
    }

    .department-image-card {
        height: 200px;
    }

    .department-image {
        height: 200px;
    }

    .department-about-content {
        min-height: 200px;
        padding: 22px;
    }

    .department-about-content h2 {
        font-size: 21px;
    }

    .department-about-content p {
        font-size: 13px;
    }

    .department-tab {
        min-height: 62px;
        font-size: 9px;
    }

    .department-panel {
        padding: 30px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .mechanical-department {
        padding-top: 30px !important;
    }

    .department-heading {
        margin-bottom: 25px !important;
    }

    .department-heading span {
        font-size: 9px;
    }

    .department-heading h1 {
        font-size: 22px;
        line-height: 1.3;
    }


    /* ABOUT IMAGE */

    .department-image-card {
        height: 180px;
    }

    .department-image {
        height: 180px;
    }


    /* ABOUT CONTENT */

    .department-about-content {
        min-height: auto;

        padding: 22px 18px;
    }

    .department-about-content h2 {
        font-size: 20px;
    }

    .department-about-content p {
        font-size: 13px;
        line-height: 1.6;
    }


    /* TABS */

    .department-tab-header {
        padding: 7px;
    }

    .department-tab-scroll {
        display: flex;
        flex-wrap: wrap;
    }

    .department-tab {

        flex: 0 0 50%;

        width: 50%;
        max-width: 50%;

        min-height: 60px;

        padding: 7px 4px;

        border: 1px solid #dce7eb;

        font-size: 9px;

        line-height: 1.3;
    }

    .department-tab:last-child {

        flex: 0 0 100%;

        width: 100%;
        max-width: 100%;
    }


    /* PANEL */

    .department-panel {
        padding: 22px 16px;
    }

    .panel-text h3 {
        font-size: 20px;
    }

    .panel-text p {
        font-size: 13px;
        line-height: 1.7;
    }


    /* HOD */

    .hod-profile {
        padding: 5px;
    }

    .hod-image {
        width: 145px;
        height: 145px;
    }


    /* FACULTY */

    .faculty-table {
        min-width: 850px;
    }

    .faculty-table th,
    .faculty-table td {
        font-size: 11px;
        padding: 9px;
    }


    /* OUTCOMES */

    .outcome-item,
    .po-item {
        padding: 14px;

        font-size: 13px;
    }


    /* VISION MISSION */

    .vision-mission-card {
        padding: 20px;
    }

    .vision-mission-card h3 {
        font-size: 19px;
    }

    .vision-mission-card p {
        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .department-heading h1 {
        font-size: 20px;
    }

    .department-image-card {
        height: 165px;
    }

    .department-image {
        height: 165px;
    }

    .department-about-content {
        padding: 20px 15px;
    }

    .department-about-content h2 {
        font-size: 19px;
    }

    .department-about-content p {
        font-size: 12.5px;
    }

    .department-panel {
        padding: 20px 13px;
    }

    .department-tab {
        min-height: 58px;
        font-size: 8.5px;
    }

    .hod-image {
        width: 135px;
        height: 135px;
    }

}
/* =========================================================
   ELECTRICAL ENGINEERING DEPARTMENT
   Same Color Style as Mechanical Department
========================================================= */


.electrical-breadcrumb-section {
    border-bottom: 1px solid #e5edf1;
    background: #fff;
}

.electrical-breadcrumb-section .breadcrumb {
    font-size: 14px;
}

.electrical-breadcrumb-section .breadcrumb a {
    color: #105b78;
}

.electrical-breadcrumb-section .breadcrumb .active {
    color: #6c757d;
}


/* =========================================================
   PAGE HEADING
========================================================= */

.electrical-department .department-heading {
    text-align: center;
}

.electrical-department .department-heading span {
    color: #105b78;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.electrical-department .department-heading h1 {
    color: #105b78;

    font-size: 30px;
    font-weight: 700;

    margin-top: 6px;
    margin-bottom: 0;
}


/* =========================================================
   ABOUT DEPARTMENT
========================================================= */

.electrical-department .about-section {
    width: 100%;
}

.electrical-department .about-section .row {
    align-items: stretch;
}

.electrical-department .department-image-card {
    width: 100%;
    height: 210px;

    background: #fff;

    border: 1px solid #e6edf1;
    border-radius: 8px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .04);
}

.electrical-department .department-image {
    width: 100%;
    height: 210px;

    object-fit: contain;
    object-position: center;

    display: block;
}

.electrical-department .about-content {
    width: 100%;
    min-height: 210px;

    padding: 25px 30px;

    background: #fff;

    border: 1px solid #e6edf1;
    border-radius: 8px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .04);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.electrical-department .about-label {
    color: #105b78;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 5px;
}

.electrical-department .about-content h2 {
    color: #105b78;

    font-size: 22px;
    font-weight: 700;

    margin-top: 0;
    margin-bottom: 10px;
}

.electrical-department .about-content p {
    color: #5f6871;

    font-size: 15px;
    line-height: 1.6;

    margin-bottom: 8px;
}


/* =========================================================
   TABS
========================================================= */

.electrical-department .department-tabs {
    width: 100%;

    background: #fff;

    border: 1px solid #e5edf1;
    border-radius: 7px;

    overflow: hidden;
}

.electrical-department .department-tab-header {
    background: #f5f9fb;

    border-bottom: 1px solid #dce7eb;
}

.electrical-department .department-tab-scroll {
    display: flex;
    width: 100%;
}

.electrical-department .department-tab {
    flex: 1 1 0;

    min-height: 65px;

    padding: 8px 6px;

    border: 0;
    border-right: 1px solid #dce7eb;

    background: transparent;

    color: #4f5961;

    font-size: 12px;
    font-weight: 700;

    text-align: center;

    transition: .25s ease;
}

.electrical-department .department-tab:last-child {
    border-right: 0;
}

.electrical-department .department-tab:hover {
    background: #eaf4f8;
    color: #105b78;
}

.electrical-department .department-tab.active {
    background: #105b78;
    color: #fff;
}


/* =========================================================
   TAB PANEL
========================================================= */

.electrical-department .department-panel {
    display: none;

    padding: 35px;

    animation: electricalFade .3s ease;
}

.electrical-department .department-panel.active {
    display: block;
}

@keyframes electricalFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   COMMON CONTENT CARD
========================================================= */

.electrical-department .content-card {
    width: 100%;

    padding: 25px;

    background: #fff;

    border: 1px solid #e2ebef;
    border-radius: 8px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .04);
}


/* =========================================================
   COMMON SECTION HEADING
========================================================= */

.electrical-department .section-label {
    display: inline-block;

    color: #105b78;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 5px;
}

.electrical-department .content-title {
    color: #105b78;

    font-size: 22px;
    font-weight: 700;

    margin-top: 0;
    margin-bottom: 16px;
}


/* =========================================================
   HOD MESSAGE
========================================================= */

/* Left side profile */
.electrical-department #hod .hod-profile-column {
    text-align: center;
}

.electrical-department .hod-profile {
    padding: 5px 15px;
    text-align: center;
}

.electrical-department .hod-image-card {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 12px;
}

.electrical-department .hod-image {
    width: 180px;
    height: 180px;

    object-fit: cover;

    border-radius: 50%;

    border: 5px solid #eaf4f8;

    display: block;
}

.electrical-department .hod-profile .hod-name {
    color: #105b78;

    font-size: 19px;
    font-weight: 700;

    margin: 0 0 4px;
}

.electrical-department .hod-profile .hod-designation {
    color: #6c757d;

    font-size: 14px;

    margin: 0 0 4px;
}

.electrical-department .hod-profile .qualification {
    color: #6c757d;

    font-size: 13px;
    line-height: 1.6;

    margin: 0;
}


/* Right side message */

.electrical-department .hod-message-wrapper {
    width: 100%;
}

.electrical-department .hod-message-wrapper .section-label {
    margin-bottom: 5px;
}

.electrical-department .hod-message-wrapper .content-title {
    margin-bottom: 15px;
}

.electrical-department .hod-message {
    background: #f7fafc;

    border-left: 4px solid #105b78;

    border-radius: 0 6px 6px 0;

    padding: 15px 18px;
}

.electrical-department .hod-message p {
    color: #5f6871;

    font-size: 15.5px;
    line-height: 1.7;

    margin-bottom: 10px;
}

.electrical-department .hod-message p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   PEO / PSO / PO
========================================================= */

.electrical-department .outcome-section {
    margin-bottom: 25px;
}

.electrical-department .outcome-section:last-child {
    margin-bottom: 0;
}

.electrical-department .outcome-section .content-title {
    margin-bottom: 14px;
}

.electrical-department .outcome-list {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.electrical-department .outcome-item {
    width: 100%;

    display: flex;
    align-items: flex-start;

    padding: 15px 18px;

    background: #f7fafc;

    border-left: 4px solid #105b78;

    border-radius: 5px;
}

.electrical-department .outcome-item span {
    flex: 0 0 55px;

    color: #105b78;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.7;
}

.electrical-department .outcome-item p {
    flex: 1;

    color: #5f6871;

    font-size: 14px;
    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   FACULTY
========================================================= */

.electrical-department .faculty-table {
    width: 100%;

    min-width: 950px;

    margin-bottom: 0;
}

.electrical-department .faculty-table th {
    padding: 11px;

    background: #105b78;
    color: #fff;

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;
}

.electrical-department .faculty-table td {
    padding: 11px;

    color: #5f6871;

    font-size: 15px;

    vertical-align: middle;
}

.electrical-department .faculty-table tbody tr:hover {
    background: #f7fafc;
}


/* =========================================================
   FACULTY PAGINATION
========================================================= */

.electrical-department .faculty-pagination {
    margin-top: 18px !important;
}

.electrical-department #electricalFacultyPagination {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 3px;

    padding: 0;
    margin: 0;

    list-style: none;
}

.electrical-department #electricalFacultyPagination .page-link {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: #105b78;

    background: #fff;

    border: 1px solid #dce7eb;

    border-radius: 4px !important;

    font-size: 13px;

    box-shadow: none;

    transition: .2s ease;
}

.electrical-department #electricalFacultyPagination .page-link:hover {
    color: #105b78;

    background: #eaf4f8;

    border-color: #105b78;
}

.electrical-department #electricalFacultyPagination .page-item.active .page-link {
    color: #fff;

    background: #105b78;

    border-color: #105b78;
}

.electrical-department #electricalFacultyPagination .page-item.disabled .page-link {
    color: #adb5bd;

    background: #fff;

    border-color: #e2ebef;
}


/* =========================================================
   LABORATORY
========================================================= */

.electrical-department .section-header {
    margin-bottom: 20px;
}

.electrical-department .facility-card {
    height: 100%;

    padding: 22px;

    background: #f7fafc;

    border: 1px solid #e2ebef;

    border-radius: 8px;

    transition: .25s ease;
}

.electrical-department .facility-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.electrical-department .facility-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;

    background: #eaf4f8;

    border-radius: 6px;

    color: #105b78;

    font-size: 20px;
}

.electrical-department .facility-card h4 {
    color: #105b78;

    font-size: 17px;
    font-weight: 700;

    margin-bottom: 10px;
}

.electrical-department .facility-card p {
    color: #5f6871;

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 0;
}


/* =========================================================
   ACADEMIC
   IMPORTANT: EJS uses .semester-card
========================================================= */

.electrical-department #academic .row {
    align-items: stretch;
}

.electrical-department .semester-card {
    width: 100%;
    min-height: 75px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 15px 18px;

    background: #f5f9fb;

    color: #105b78;

    border: 1px solid #e2ebef;

    border-radius: 7px;

    text-decoration: none;

    transition: .25s ease;
}

.electrical-department .semester-card span {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf4f8;

    color: #105b78;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 700;
}

.electrical-department .semester-card strong {
    flex: 1;

    color: #105b78;

    font-size: 13px;
    font-weight: 700;
}

.electrical-department .semester-card i {
    color: #105b78;

    font-size: 16px;

    transition: .25s ease;
}

.electrical-department .semester-card:hover {
    color: #fff;

    background: #105b78;

    border-color: #105b78;

    transform: translateY(-3px);
}

.electrical-department .semester-card:hover span {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

.electrical-department .semester-card:hover strong,
.electrical-department .semester-card:hover i {
    color: #fff;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.electrical-department #newsletter .section-header {
    margin-bottom: 20px;
}

.electrical-department #newsletter .row {
    align-items: stretch;
}

.electrical-department .newsletter-card {
    width: 100%;
    min-height: 78px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 14px 18px;

    background: #f7fafc;

    color: #105b78;

    border: 1px solid #e2ebef;

    border-radius: 6px;

    text-decoration: none;

    transition: .25s ease;
}

.electrical-department .newsletter-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf4f8;

    color: #105b78;

    border-radius: 6px;

    font-size: 20px;
}

.electrical-department .newsletter-card > div:last-child {
    flex: 1;
}

.electrical-department .newsletter-card h4 {
    color: #105b78;

    font-size: 15px;
    font-weight: 700;

    margin: 0 0 5px;
}

.electrical-department .newsletter-card span {
    color: #6c757d;

    font-size: 12px;
}

.electrical-department .newsletter-card span i {
    margin-left: 4px;
}

.electrical-department .newsletter-card:hover {
    background: #105b78;

    border-color: #105b78;

    transform: translateY(-2px);
}

.electrical-department .newsletter-card:hover h4,
.electrical-department .newsletter-card:hover span,
.electrical-department .newsletter-card:hover .newsletter-icon {
    color: #fff;
}

.electrical-department .newsletter-card:hover .newsletter-icon {
    background: rgba(255, 255, 255, .15);
}


/* =========================================================
   VISION & MISSION
   NO BLUE BACKGROUND ON HEADING
========================================================= */

.electrical-department .electrical-vision-mission {
    margin-top: 35px !important;
    margin-bottom: 30px !important;
}

.electrical-department .electrical-vision-mission .row {
    align-items: flex-start;
}

.electrical-department .electrical-vm-card {
    width: 100%;

    background: #fff;

    border: 1px solid #e2ebef;

    border-radius: 8px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .04);

    overflow: hidden;
}

.electrical-department .electrical-vm-heading {
    padding: 0;

    background: transparent;
}

.electrical-department .electrical-vm-heading h3 {
    color: #105b78;

    font-size: 21px;
    font-weight: 700;

    padding: 20px 20px 0;

    margin: 0 0 14px;
}

.electrical-department .electrical-vm-body {
    padding: 0 20px 20px;
}

.electrical-department .electrical-vm-body > p {
    color: #5f6871;

    font-size: 15px;
    line-height: 1.7;

    margin: 0;
}

.electrical-department .electrical-mission-item {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-bottom: 12px;
}

.electrical-department .electrical-mission-item:last-child {
    margin-bottom: 0;
}

.electrical-department .electrical-mission-item span {
    flex: 0 0 35px;

    color: #105b78;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.7;
}

.electrical-department .electrical-mission-item p {
    flex: 1;

    color: #5f6871;

    font-size: 15px;
    line-height: 1.6;

    margin: 0;
}


/* =========================================================
   BOTTOM SPACE FIX
========================================================= */

.electrical-department > .container {
    padding-bottom: 0;
}

.electrical-department .electrical-vision-mission {
    padding-bottom: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .electrical-department .department-heading h1 {
        font-size: 27px;
    }

    .electrical-department .department-image-card {
        height: 200px;
    }

    .electrical-department .department-image {
        height: 200px;
    }

    .electrical-department .about-content {
        min-height: 200px;
        padding: 22px;
    }

    .electrical-department .about-content h2 {
        font-size: 21px;
    }

    .electrical-department .about-content p {
        font-size: 13px;
    }

    .electrical-department .department-tab {
        min-height: 62px;
        font-size: 9px;
    }

    .electrical-department .department-panel {
        padding: 30px;
    }

    .electrical-department .content-card {
        padding: 22px;
    }

    .electrical-department .hod-image {
        width: 165px;
        height: 165px;
    }

    .electrical-department .hod-profile {
        padding: 5px;
    }

    .electrical-department .outcome-item {
        padding: 14px 16px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .electrical-department {
        padding-top: 30px !important;
    }

    .electrical-department .department-heading {
        margin-bottom: 25px !important;
    }

    .electrical-department .department-heading span {
        font-size: 9px;
    }

    .electrical-department .department-heading h1 {
        font-size: 22px;
        line-height: 1.3;
    }


    /* ABOUT */

    .electrical-department .department-image-card {
        height: 180px;
    }

    .electrical-department .department-image {
        height: 180px;
    }

    .electrical-department .about-content {
        min-height: auto;

        padding: 22px 18px;
    }

    .electrical-department .about-content h2 {
        font-size: 20px;
    }

    .electrical-department .about-content p {
        font-size: 13px;
        line-height: 1.6;
    }


    /* TABS */

    .electrical-department .department-tab-header {
        padding: 7px;
    }

    .electrical-department .department-tab-scroll {
        display: flex;
        flex-wrap: wrap;
    }

    .electrical-department .department-tab {
        flex: 0 0 50%;

        width: 50%;
        max-width: 50%;

        min-height: 60px;

        padding: 7px 4px;

        border: 1px solid #dce7eb;

        font-size: 9px;

        line-height: 1.3;
    }

    .electrical-department .department-tab:last-child {
        border-right: 1px solid #dce7eb;
    }


    /* PANEL */

    .electrical-department .department-panel {
        padding: 22px 16px;
    }

    .electrical-department .content-card {
        padding: 18px;
    }

    .electrical-department .content-title {
        font-size: 20px;
    }


    /* HOD */

    .electrical-department .hod-profile {
        padding: 0;
        margin-bottom: 10px;
    }

    .electrical-department .hod-image {
        width: 145px;
        height: 145px;
    }

    .electrical-department .hod-profile .hod-name {
        font-size: 18px;
    }

    .electrical-department .hod-message {
        padding: 14px 15px;
    }

    .electrical-department .hod-message p {
        font-size: 13px;
        line-height: 1.65;
    }


    /* OUTCOMES */

    .electrical-department .outcome-section {
        margin-bottom: 22px;
    }

    .electrical-department .outcome-list {
        gap: 10px;
    }

    .electrical-department .outcome-item {
        padding: 13px;

        gap: 4px;
    }

    .electrical-department .outcome-item span {
        flex: 0 0 48px;

        font-size: 12px;
    }

    .electrical-department .outcome-item p {
        font-size: 15px;
        line-height: 1.65;
    }


    /* FACULTY */

    .electrical-department .table-responsive {
        width: 100%;

        overflow-x: auto;

        -webkit-overflow-scrolling: touch;
    }

    .electrical-department .faculty-table {
        min-width: 950px;
    }

    .electrical-department .faculty-table th,
    .electrical-department .faculty-table td {
        font-size: 11px;
        padding: 9px;
    }


    /* PAGINATION */

    .electrical-department .faculty-pagination {
        margin-top: 16px !important;
    }

    .electrical-department #electricalFacultyPagination .page-link {
        width: 32px;
        height: 32px;

        font-size: 12px;
    }


    /* LABORATORY */

    .electrical-department .facility-card {
        padding: 20px;
    }


    /* ACADEMIC */

    .electrical-department .semester-card {
        min-height: 68px;

        padding: 13px 14px;

        gap: 12px;
    }

    .electrical-department .semester-card span {
        flex: 0 0 38px;

        width: 38px;
        height: 38px;

        font-size: 12px;
    }

    .electrical-department .semester-card strong {
        font-size: 12px;
    }


    /* NEWSLETTER */

    .electrical-department #newsletter .content-card {
        padding: 18px;
    }

    .electrical-department .newsletter-card {
        min-height: 70px;

        padding: 12px 14px;

        gap: 12px;
    }

    .electrical-department .newsletter-icon {
        flex: 0 0 40px;

        width: 40px;
        height: 40px;

        font-size: 18px;
    }

    .electrical-department .newsletter-card h4 {
        font-size: 14px;
    }


    /* VISION MISSION */

    .electrical-department .electrical-vision-mission {
        margin-top: 25px !important;
        margin-bottom: 20px !important;
    }

    .electrical-department .electrical-vm-heading h3 {
        font-size: 19px;

        padding: 18px 18px 0;
    }

    .electrical-department .electrical-vm-body {
        padding: 0 18px 18px;
    }

    .electrical-department .electrical-vm-body > p {
        font-size: 13px;
    }

    .electrical-department .electrical-mission-item {
        gap: 10px;
    }

    .electrical-department .electrical-mission-item span {
        flex: 0 0 32px;
    }

    .electrical-department .electrical-mission-item p {
        font-size: 13px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .electrical-breadcrumb-section .breadcrumb {
        font-size: 12px;
    }

    .electrical-department .department-heading h1 {
        font-size: 20px;
    }

    .electrical-department .department-image-card {
        height: 165px;
    }

    .electrical-department .department-image {
        height: 165px;
    }

    .electrical-department .about-content {
        padding: 20px 15px;
    }

    .electrical-department .about-content h2 {
        font-size: 19px;
    }

    .electrical-department .about-content p {
        font-size: 12.5px;
    }

    .electrical-department .department-panel {
        padding: 20px 13px;
    }

    .electrical-department .content-card {
        padding: 15px;
    }

    .electrical-department .department-tab {
        min-height: 58px;

        font-size: 8.5px;
    }

    .electrical-department .hod-image {
        width: 135px;
        height: 135px;
    }

    .electrical-department .hod-profile .hod-name {
        font-size: 17px;
    }

    .electrical-department .outcome-item {
        padding: 12px;
    }

    .electrical-department .outcome-item span {
        flex: 0 0 43px;
    }

    .electrical-department .semester-card {
        min-height: 64px;

        padding: 11px 12px;
    }

    .electrical-department .semester-card span {
        flex: 0 0 35px;

        width: 35px;
        height: 35px;
    }

    .electrical-department .semester-card strong {
        font-size: 11px;
    }

    .electrical-department .newsletter-card {
        padding: 11px 12px;
    }

    .electrical-department .newsletter-card h4 {
        font-size: 13px;
    }

    .electrical-department .newsletter-card span {
        font-size: 11px;
    }
}








/* =========================================================
   E&TC ENGINEERING DEPARTMENT
   RESPONSIVE LAYOUT CSS
========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.etc-breadcrumb-section {
    padding: 10px 0 !important;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.etc-breadcrumb-section .breadcrumb {
    margin: 0;
    padding: 0;
    justify-content: center;
    font-size: 15px;
}

.etc-breadcrumb-section .breadcrumb-item a {
    color: #005b7a;
    text-decoration: none;
}

.etc-breadcrumb-section .breadcrumb-item.active {
    color: #666;
}


/* =========================================================
   DEPARTMENT TITLE
========================================================= */

.etc-title-section {
    padding: 40px 0 25px;
    text-align: center;
}

.etc-small-title {
    margin: 0 0 8px;
    color: #00627f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.etc-title-section h1 {
    margin: 0;
    color: #005b7a;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
}


/* =========================================================
   ABOUT DEPARTMENT
========================================================= */

.etc-about-section {
    padding: 0 0 35px;
}


/* IMAGE */

.etc-about-image {
    width: 100%;
    height: 100%;
    min-height: 290px;

    overflow: hidden;

    border: 1px solid #dce4e8;
    border-radius: 4px;

    background: #fff;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.etc-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ABOUT CONTENT */

.etc-about-content {
    height: 100%;
    padding: 22px;

    border: 1px solid #dce4e8;
    border-radius: 4px;

    background: #fff;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.etc-about-content h2 {
    margin: 0 0 8px;

    color: #00627f;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 1.2px;
}

.etc-about-content h4 {
    margin: 0 0 15px;

    color: #005b7a;

    font-size: 21px;
    font-weight: 500;
    line-height: 1.4;
}

.etc-about-content p {
    margin: 0 0 12px;

    color: #555;

    font-size: 15px;
    line-height: 1.75;

    text-align: left;
}

.etc-about-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TABS
========================================================= */

.etc-tabs-section {
    padding: 0 0 25px;
}

.etc-tabs {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(6, 1fr);

    border: 1px solid #d8e1e5;
    border-radius: 4px;

    overflow: hidden;

    background: #f5f8f9;
}

.etc-tab {
    min-height: 55px;

    padding: 12px 10px;

    border: 0;
    border-right: 1px solid #d8e1e5;

    background: #f5f8f9;

    color: #333;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.25s ease;
}

.etc-tab:last-child {
    border-right: 0;
}

.etc-tab:hover {
    background: #eaf1f3;
}

.etc-tab.active {
    background: #09647f;
    color: #fff;
}


/* =========================================================
   DYNAMIC CONTENT
========================================================= */

.etc-dynamic-section {
    padding: 0 0 35px;
}

.etc-content-box {
    display: none;
}

.etc-content-box.active-content {
    display: block;

    animation: etcFade 0.25s ease;
}

@keyframes etcFade {

    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   MAIN CONTENT BOX
========================================================= */

.etc-content-box.active-content {
    padding: 25px;

    border: 1px solid #dce4e8;
    border-radius: 4px;

    background: #fff;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.etc-section-heading {
    margin-bottom: 25px;
    text-align: center;
}

.etc-section-heading h2 {
    margin: 0;

    color: #005b7a;

    font-size: 26px;
    font-weight: 600;
}


/* =========================================================
   HOD PROFILE
========================================================= */

.etc-hod-profile {
    padding: 10px;

    text-align: center;

    background: transparent;
}


/* HOD IMAGE */

.etc-hod-image {
    width: 200px;
    height: 200px;

    margin: 0 auto 15px;

    overflow: hidden;

    border: 2px solid #dce5e9;
    border-radius: 50%;

    background: #f5f5f5;
}

.etc-hod-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* NAME */

.etc-hod-profile h4 {
    margin: 0 0 5px;

    color: #005b7a;

    font-size: 17px;
    font-weight: 600;
}

.etc-hod-profile p {
    margin: 0 0 7px;

    color: #555;

    font-size: 15px;
}

.etc-hod-profile span {
    display: block;

    color: #666;

    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   HOD MESSAGE
========================================================= */

.etc-hod-message {
    padding: 10px 15px;

    border-left: 2px solid #08647f;

    background: #f7f9fa;
}

.etc-hod-message h3 {
    margin: 0 0 15px;

    color: #005b7a;

    font-size: 22px;
    font-weight: 600;
}

.etc-hod-message p {
    margin: 0 0 12px;

    color: #555;

    font-size: 15px;
    line-height: 1.75;
}

.etc-hod-message p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   PEO / PSO / PO
========================================================= */

.etc-info-card {
    margin-bottom: 20px;

    padding: 22px;

    border: 1px solid #dce4e8;
    border-radius: 4px;

    background: #fff;
}

.etc-info-card:last-child {
    margin-bottom: 0;
}

.etc-info-card h3 {
    margin: 0 0 15px;

    color: #005b7a;

    font-size: 21px;
    font-weight: 600;
}

.etc-info-card p {
    margin: 0 0 12px;

    color: #555;

    font-size: 15px;
    line-height: 1.75;
}

.etc-info-card p:last-child {
    margin-bottom: 0;
}

.etc-info-card ol {
    margin: 0;
    padding-left: 22px;
}

.etc-info-card li {
    margin-bottom: 8px;

    color: #555;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   FACULTY TABLE
========================================================= */

.etc-faculty-table {
    width: 100%;

    margin: 0;

    border: 1px solid #d8e1e5;

    border-collapse: collapse;

    background: #fff;
}

.etc-faculty-table th {
    padding: 13px 12px;

    border: 1px solid #d8e1e5;

    background: #f2f6f7;

    color: #333;

    font-size: 15px;
    font-weight: 600;

    text-align: center;

    vertical-align: middle;
}

.etc-faculty-table td {
    padding: 12px;

    border: 1px solid #d8e1e5;

    color: #555;

    font-size: 15px;

    text-align: center;

    vertical-align: middle;
}

.etc-faculty-table tbody tr:hover {
    background: #fafcfc;
}


/* =========================================================
   LABORATORY
========================================================= */

.etc-lab-card {
    height: 100%;

    overflow: hidden;

    border: 1px solid #dce4e8;
    border-radius: 4px;

    background: #fff;

    transition: all 0.25s ease;
}

.etc-lab-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.etc-lab-image {
    width: 100%;
    height: 200px;

    overflow: hidden;

    background: #f5f5f5;
}

.etc-lab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.3s ease;
}

.etc-lab-card:hover .etc-lab-image img {
    transform: scale(1.03);
}

.etc-lab-card h4 {
    margin: 18px 18px 10px;

    color: #005b7a;

    font-size: 19px;
    font-weight: 600;
}

.etc-lab-card p {
    margin: 0 18px 20px;

    color: #666;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   ACADEMIC
========================================================= */

.etc-academic-card {
    height: 100%;

    padding: 25px 20px;

    border: 1px solid #dce4e8;
    border-radius: 4px;

    background: #fff;

    text-align: center;
}

.etc-academic-card h4 {
    margin: 0 0 15px;

    color: #005b7a;

    font-size: 19px;
    font-weight: 600;
}

.etc-academic-card a {
    color: #555;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;
}

.etc-academic-card a:hover {
    color: #005b7a;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.etc-newsletter-card {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 25px;

    border: 1px solid #dce4e8;
    border-radius: 4px;

    background: #fff;
}

.etc-newsletter-card h4 {
    margin: 0 0 10px;

    color: #005b7a;

    font-size: 21px;
    font-weight: 600;
}

.etc-newsletter-card p {
    margin: 0;

    color: #666;

    font-size: 15px;
    line-height: 1.75;
}

.etc-download-btn {
    flex-shrink: 0;

    padding: 10px 18px;

    border: 1px solid #09647f;
    border-radius: 3px;

    background: #09647f;

    color: #fff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: 0.2s ease;
}

.etc-download-btn:hover {
    background: #07566d;
    color: #fff;
}


/* =========================================================
   VISION & MISSION
========================================================= */

.etc-vision-mission-section {
    padding: 0 0 50px;
}

.etc-vision-card,
.etc-mission-card {
    height: 100%;

    padding: 25px;

    border: 1px solid #dce4e8;
    border-radius: 4px;

    background: #fff;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.etc-vision-card h3,
.etc-mission-card h3 {
    margin: 0 0 15px;

    color: #005b7a;

    font-size: 22px;
    font-weight: 600;
}

.etc-vision-card p,
.etc-mission-card p {
    margin: 0 0 10px;

    color: #555;

    font-size: 15px;
    line-height: 1.75;
}

.etc-mission-card p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .etc-title-section {
        padding: 35px 0 25px;
    }

    .etc-title-section h1 {
        font-size: 30px;
    }


    /* ABOUT */

    .etc-about-image {
        min-height: 220px;
    }

    .etc-about-content {
        padding: 20px;
    }


    /* TABS */

    .etc-tabs {
        grid-template-columns: repeat(3, 1fr);
    }

    .etc-tab {
        border-bottom: 1px solid #d8e1e5;
    }

    .etc-tab:nth-child(3) {
        border-right: 0;
    }

    .etc-tab:nth-child(n + 4) {
        border-bottom: 0;
    }


    /* HOD */

    .etc-hod-image {
        width: 115px;
        height: 115px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    /* BREADCRUMB */

    .etc-breadcrumb-section {
        padding: 9px 0 !important;
    }

    .etc-breadcrumb-section .breadcrumb {
        font-size: 13px;
    }


    /* TITLE */

    .etc-title-section {
        padding: 30px 15px 20px;
    }

    .etc-small-title {
        font-size: 13px;
    }

    .etc-title-section h1 {
        font-size: 26px;
    }


    /* ABOUT */

    .etc-about-section {
        padding-bottom: 30px;
    }

    .etc-about-image {
        min-height: 220px;
        height: 220px;
    }

    .etc-about-content {
        padding: 20px;
    }

    .etc-about-content h2 {
        font-size: 13px;
    }

    .etc-about-content h4 {
        font-size: 20px;
    }

    .etc-about-content p {
        font-size: 15px;
        line-height: 1.75;
    }


    /* TABS */

    .etc-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .etc-tab {
        min-height: 50px;
        padding: 10px 8px;

        font-size: 13px;

        border-right: 1px solid #d8e1e5;
        border-bottom: 1px solid #d8e1e5;
    }

    .etc-tab:nth-child(2n) {
        border-right: 0;
    }

    .etc-tab:nth-child(n + 5) {
        border-bottom: 0;
    }


    /* CONTENT */

    .etc-content-box.active-content {
        padding: 20px;
    }

    .etc-section-heading {
        margin-bottom: 20px;
    }

    .etc-section-heading h2 {
        font-size: 24px;
    }


    /* HOD */

    .etc-hod-profile {
        padding-bottom: 5px;
    }

    .etc-hod-image {
        width: 120px;
        height: 120px;
    }

    .etc-hod-profile h4 {
        font-size: 17px;
    }

    .etc-hod-profile p {
        font-size: 14px;
    }

    .etc-hod-profile span {
        font-size: 13px;
    }

    .etc-hod-message {
        margin-top: 5px;
        padding: 15px;
    }

    .etc-hod-message h3 {
        font-size: 20px;
    }

    .etc-hod-message p {
        font-size: 15px;
    }


    /* PEO */

    .etc-info-card {
        padding: 20px;
    }

    .etc-info-card h3 {
        font-size: 19px;
    }

    .etc-info-card p,
    .etc-info-card li {
        font-size: 15px;
    }


    /* FACULTY */

    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .etc-faculty-table {
        min-width: 650px;
    }


    /* LAB */

    .etc-lab-image {
        height: 200px;
    }

    .etc-lab-card h4 {
        font-size: 19px;
    }

    .etc-lab-card p {
        font-size: 15px;
    }


    /* NEWSLETTER */

    .etc-newsletter-card {
        display: block;
        padding: 20px;
    }

    .etc-newsletter-card h4 {
        font-size: 20px;
    }

    .etc-newsletter-card p {
        font-size: 15px;
    }

    .etc-download-btn {
        display: inline-block;
        margin-top: 18px;
        font-size: 14px;
    }


    /* VISION / MISSION */

    .etc-vision-card,
    .etc-mission-card {
        padding: 20px;
    }

    .etc-vision-card h3,
    .etc-mission-card h3 {
        font-size: 20px;
    }

    .etc-vision-card p,
    .etc-mission-card p {
        font-size: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .etc-title-section h1 {
        font-size: 24px;
    }

    .etc-about-image {
        height: 190px;
        min-height: 190px;
    }

    .etc-about-content {
        padding: 17px;
    }

    .etc-about-content h4 {
        font-size: 19px;
    }

    .etc-about-content p {
        font-size: 14px;
    }

    .etc-tabs .etc-tab {
        min-height: 48px;
        font-size: 12px;
    }

    .etc-content-box.active-content {
        padding: 15px;
    }

    .etc-hod-image {
        width: 110px;
        height: 110px;
    }

    .etc-hod-message p,
    .etc-info-card p,
    .etc-info-card li {
        font-size: 14px;
    }

}













/* =========================================================
   GOVERNANCE
========================================================= */

.governance-section {
    width: 100%;
    padding: 45px 0;
    background: #ffffff;
}


/* TITLE */

.governance-title {
    text-align: center;
    margin-bottom: 30px;
}

.governance-title h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #222222;
}


/* LAYOUT */

.governance-layout {
    align-items: flex-start;
}


/* =========================================================
   LEFT BUTTONS
========================================================= */

.governance-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* BUTTON */

.governance-btn {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid #23445a;
    border-radius: 4px;

    background: #23445a;
    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    line-height: 1.4;
    text-align: left;

    cursor: pointer;

    transition: all 0.25s ease;
}


/* HOVER */

.governance-btn:hover {
    border-color: #105b78;
    background: #f8fbfc;
    color: #105b78;
}


/* ACTIVE */

.governance-btn.active {
    border-color: #105b78;
    background: #105b78;
    color: #ffffff;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.governance-content {
    width: 100%;

    padding: 28px 30px;

    border: 1px solid #dce7eb;
    border-radius: 4px;

    background: #ffffff;
}


/* CONTENT BOX */

.governance-content-box {
    display: none;

    width: 100%;

    animation: governanceFade 0.3s ease;
}

.governance-content-box.active {
    display: block;
}


/* HEADING */

.governance-content-box h3 {
    margin: 0 0 20px;

    font-size: 21px;
    font-weight: 700;

    color: #222222;
}


/* =========================================================
   TABLE
========================================================= */

.governance-table {
    width: 100%;
    margin: 0;

    border: 1px solid #dce7eb;
}

.governance-table th {
    padding: 12px 14px;

    background: #105b78;
    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    vertical-align: middle;

    border: 1px solid #dce7eb;
}

.governance-table td {
    padding: 12px 14px;

    font-size: 14px;
    color: #555555;

    vertical-align: middle;

    border: 1px solid #dce7eb;
}

.governance-table tbody tr:hover {
    background: #f8fbfc;
}


/* ANIMATION */

@keyframes governanceFade {

    from {
        opacity: 0;
        transform: translateX(8px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .governance-section {
        padding: 40px 0;
    }

    .governance-title h2 {
        font-size: 28px;
    }

    .governance-buttons {
        gap: 8px;
    }

    .governance-btn {
        padding: 12px 13px;
        font-size: 12px;
    }

    .governance-content {
        padding: 24px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .governance-section {
        padding: 32px 0;
    }

    .governance-title {
        margin-bottom: 22px;
    }

    .governance-title h2 {
        font-size: 24px;
    }

    .governance-buttons {
        margin-bottom: 15px;
    }

    .governance-btn {
        text-align: center;
        padding: 11px 10px;
        font-size: 11px;
    }

    .governance-content {
        padding: 20px 18px;
    }

    .governance-content-box h3 {
        font-size: 19px;
    }

    .governance-table th,
    .governance-table td {
        padding: 10px 11px;
        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 375px) {

    .governance-title h2 {
        font-size: 22px;
    }

    .governance-content {
        padding: 18px 14px;
    }

    .governance-btn {
        font-size: 10px;
    }

}

















/* =========================================================
   ABOUT LIBRARY PAGE
========================================================= */


/* =========================================================
   ABOUT LIBRARY
========================================================= */

.about-library-section {
    padding: 8px 0 42px;
    background: #ffffff;
}

.about-library-row {
    --bs-gutter-x: 28px;
    --bs-gutter-y: 25px;
    align-items: center;
}


/* =========================================================
   ABOUT IMAGE
========================================================= */

.about-library-image-box {
    width: 100%;
    height: 340px;

    overflow: hidden;

    border: 1px solid #dce7eb;
    background: #ffffff;

    padding: 6px;
}

.about-library-image-box img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


/* IMAGE HOVER ANIMATION */

.about-library-image-box:hover img {
    transform: scale(1.05);
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-library-content-box {
    position: relative;

    padding: 5px 0 5px 18px;

    border-left: 3px solid #105b78;
}


/* ABOUT HEADING */

.about-library-content-box h2 {
    position: relative;

    margin: 0 0 18px;

    padding-bottom: 12px;

    color: #105b78;

    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
}


/* SMALL HEADING LINE */

.about-library-content-box h2::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 48px;
    height: 3px;

    background: #105b78;
}


/* ABOUT PARAGRAPH */

.about-library-content-box p {
    margin-bottom: 12px;

    color: #4d4d4d;

    font-size: 15.5px;
    font-weight: 400;

    line-height: 1.72;

    text-align: justify;
}


/* =========================================================
   LIBRARY FACILITIES
========================================================= */

.library-facilities-section {
    padding: 0 0 42px;
    background: #ffffff;
}

.library-section-heading {
    text-align: center;
    margin-bottom: 20px;
}

.library-section-heading h2 {
    margin: 0;
    color: #105b78;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}


/* =========================================================
   FACILITY BOX
========================================================= */

.library-facility-box {
    height: 100%;
    min-height: 145px;
    padding: 20px 18px;
    border: 1px solid #dce7eb;
    background: #ffffff;

    display: flex;
    align-items: flex-start;
    gap: 15px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* FACILITY HOVER */

.library-facility-box:hover {
    border-color: #105b78;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 91, 120, 0.08);
}


/* =========================================================
   FACILITY ICON
========================================================= */

.facility-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dce7eb;
    color: #105b78;

    font-size: 22px;
}

.facility-content span {
    display: block;
    margin-bottom: 3px;
    color: #999;
    font-size: 13px;
    font-weight: 600;
}

.facility-content h3 {
    margin: 0 0 7px;
    color: #105b78;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.facility-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   SERVICES / FEATURES / RULES
========================================================= */

.library-information-section {
    padding: 0 0 55px;
    background: #ffffff;
}


/* TABS */

.library-tabs {
    display: flex;
    justify-content: center;
    align-items: stretch;

    gap: 10px;
    margin-bottom: 40px;

    background: transparent;
}

.library-tab {
    border: 1px solid #dce7eb;
    background: #ffffff;

    color: #105b78;

    font-size: 15px;
    font-weight: 700;

    padding: 13px 26px;
    min-width: 155px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.library-tab:hover {
    border-color: #105b78;
    background: #f8fbfc;
}

.library-tab.active {
    border-color: #105b78;
    background: #105b78;
    color: #ffffff;
}


/* =========================================================
   TAB CONTENT
========================================================= */

.library-tab-content-wrapper {
    width: 100%;
}

.library-tab-content {
    display: none;

    border: 1px solid #dce7eb;

    padding: 25px 30px 30px;

    background: #ffffff;
}

.library-tab-content.active {
    display: block;
}

.library-tab-content > h3 {
    margin: 0 0 19px;

    color: #105b78;

    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
}


/* =========================================================
   SERVICES / FEATURES LIST
========================================================= */

.library-list-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px 18px;
}

.library-list-item {
    display: flex;
    align-items: center;

    gap: 12px;

    min-height: 48px;

    padding: 9px 13px;

    border: 1px solid #e3ecef;

    background: #ffffff;
}

.library-list-item span {
    width: 28px;
    height: 28px;
    min-width: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dce7eb;

    color: #105b78;

    font-size: 12px;
    font-weight: 700;
}

.library-list-item p {
    margin: 0;

    color: #555;

    font-size: 15px;
    line-height: 1.5;
}


/* =========================================================
   LIBRARY RULES
========================================================= */

.library-rules-list {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.library-rule-item {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    padding: 10px 13px;

    border-bottom: 1px solid #e7eef0;
}

.library-rule-item span {
    width: 28px;
    height: 28px;
    min-width: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #dce7eb;

    color: #105b78;

    font-size: 12px;
    font-weight: 700;
}

.library-rule-item p {
    margin: 3px 0 0;

    color: #555;

    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .about-library-row {
        --bs-gutter-x: 18px;
        --bs-gutter-y: 18px;
    }

    .about-library-image-box {
        height: 310px;
    }

    .about-library-content-box {
        padding-left: 15px;
    }

    .about-library-content-box h2 {
        font-size: 25px;
    }

    .about-library-content-box p {
        font-size: 15.5px;
    }

    .library-page-title {
        font-size: 30px;
    }

    .library-section-heading h2 {
        font-size: 26px;
    }

    .library-tab {
        min-width: 0;
        flex: 1;
        padding: 13px 15px;
    }

}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 767px) {

    .library-page-title-section {
        padding: 24px 0 18px;
    }

    .library-page-title {
        font-size: 27px;
    }

    .about-library-section {
        padding-bottom: 35px;
    }


    /* ABOUT IMAGE */

    .about-library-image-box {
        height: 280px;
    }


    /* ABOUT CONTENT */

    .about-library-content-box {
        margin-top: 5px;

        padding: 0 0 0 13px;
    }

    .about-library-content-box h2 {
        font-size: 23px;
    }

    .about-library-content-box p {
        font-size: 15px;
        line-height: 1.7;
        text-align: left;
    }


    /* FACILITIES */

    .library-section-heading h2 {
        font-size: 24px;
    }

    .facility-content h3 {
        font-size: 17px;
    }

    .facility-content p {
        font-size: 14px;
    }


    /* TABS */

    .library-tab {
        padding: 12px 8px;
        font-size: 14px;
    }

    .library-tab-content {
        padding: 23px 20px 25px;
    }

    .library-tab-content > h3 {
        font-size: 20px;
    }

    .library-list-item p,
    .library-rule-item p {
        font-size: 14.5px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .library-breadcrumb-section .breadcrumb {
        font-size: 14px;
    }

    .library-page-title-section {
        padding: 20px 0 15px;
    }

    .library-page-title {
        font-size: 24px;
    }


    /* ABOUT IMAGE */

    .about-library-image-box {
        height: 230px;
        padding: 5px;
    }


    /* ABOUT CONTENT */

    .about-library-content-box {
        padding-left: 12px;
    }

    .about-library-content-box::before {
        top: 20px;
        bottom: 20px;
        width: 3px;
    }

    .about-library-content-box h2 {
        font-size: 21px;
        margin-bottom: 16px;
    }

    .about-library-content-box h2::after {
        width: 48px;
        height: 3px;
    }

    .about-library-content-box p {
        font-size: 14.5px;
        line-height: 1.7;
        text-align: left;
    }


    /* FACILITIES */

    .library-section-heading {
        margin-bottom: 17px;
    }

    .library-section-heading h2 {
        font-size: 22px;
    }

    .library-facility-box {
        min-height: auto;
        padding: 18px 15px;
    }

    .facility-icon {
        width: 41px;
        height: 41px;
        min-width: 41px;
        font-size: 20px;
    }

    .facility-content h3 {
        font-size: 17px;
    }

    .facility-content p {
        font-size: 13.5px;
    }


    /* TABS */

    .library-tabs {
        gap: 7px;

        flex-direction: column;

        margin-bottom: 14px;
    }

    .library-tab {
        width: 100%;
        min-width: 0;

        padding: 12px 10px;

        font-size: 14px;
    }

    .library-tab-content {
        padding: 21px 15px 24px;
    }

    .library-tab-content > h3 {
        font-size: 20px;
    }


    /* LIST */

    .library-list-grid {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .library-list-item {
        min-height: 46px;
        padding: 8px 10px;
    }

    .library-list-item p,
    .library-rule-item p {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .library-page-title {
        font-size: 22px;
    }


    /* ABOUT IMAGE */

    .about-library-image-box {
        height: 200px;
    }


    /* ABOUT CONTENT */

    .about-library-content-box {
        padding-left: 10px;
    }

    .about-library-content-box h2 {
        font-size: 20px;
    }

    .about-library-content-box p {
        font-size: 14px;
    }


    /* FACILITIES */

    .library-section-heading h2 {
        font-size: 21px;
    }

    .library-facility-box {
        gap: 11px;
    }

    .facility-content h3 {
        font-size: 16px;
    }

    .facility-content p {
        font-size: 13px;
    }


    /* RULES */

    .library-rule-item {
        gap: 10px;
        padding: 9px 5px;
    }

}




/* =========================================================
Library Committee Page 
========================================================= */

.library-committee-section {
padding: 45px 0 60px;
background: #f5f9fa;
}

/* =========================================================
PAGE HEADING
========================================================= */

.library-committee-heading {
text-align: center;
margin-bottom: 30px;
}

.library-committee-heading h1 {
margin: 0;

color: #105b78;

font-size: 32px;
font-weight: 700;
line-height: 1.3;

}

/* =========================================================
TABLE WRAPPER
========================================================= */

.library-committee-table-wrapper {
width: 100%;

padding: 28px;

background: #ffffff;

border: 1px solid #dce7eb;

}

/* =========================================================
TABLE
========================================================= */

.library-committee-table-wrapper .table {
width: 100%;
}

/* TABLE HEADER */

.library-committee-table-wrapper .table thead th {
background: #105b78;
color: #ffffff;

border-color: #105b78;

padding: 13px 15px;

font-size: 15px;
font-weight: 700;

vertical-align: middle;

}

/* TABLE BODY */

.library-committee-table-wrapper .table tbody td {
padding: 13px 15px;

background: #ffffff;

color: #555555;

border-color: #dce7eb;

font-size: 15px;

vertical-align: middle;

}

/* HOVER */

.library-committee-table-wrapper .table tbody tr:hover td {
background: #f5f9fa;
}

/* =========================================================
COLUMN WIDTH
========================================================= */

.library-committee-table-wrapper th:first-child,
.library-committee-table-wrapper td:first-child {
width: 10%;
text-align: center;
}

.library-committee-table-wrapper th:nth-child(2),
.library-committee-table-wrapper td:nth-child(2) {
width: 35%;
}

.library-committee-table-wrapper th:nth-child(3),
.library-committee-table-wrapper td:nth-child(3) {
width: 30%;
}

.library-committee-table-wrapper th:last-child,
.library-committee-table-wrapper td:last-child {
width: 25%;
}

/* =========================================================
PAGINATION
========================================================= */

.library-pagination-wrapper {
display: flex;


justify-content: center;
align-items: center;

gap: 8px;

margin-top: 25px;

}

/* PREVIOUS / NEXT */

.library-page-btn {
border: 1px solid #dce7eb;

background: #ffffff;

color: #105b78;

padding: 8px 15px;

font-size: 14px;
font-weight: 600;

cursor: pointer;

transition: all 0.2s ease;


}

.library-page-btn:hover:not(:disabled) {
background: #105b78;
color: #ffffff;
border-color: #105b78;
}

/* DISABLED */

.library-page-btn:disabled {
opacity: 0.45;
cursor: not-allowed;
}

/* PAGE NUMBERS */

.library-pagination-numbers {
display: flex;
gap: 6px;
}

.library-page-number {
width: 38px;
height: 38px;


border: 1px solid #dce7eb;

background: #ffffff;

color: #105b78;

font-size: 14px;
font-weight: 600;

cursor: pointer;

transition: all 0.2s ease;


}

/* PAGE NUMBER HOVER */

.library-page-number:hover {
background: #f5f9fa;
border-color: #105b78;
}

/* ACTIVE PAGE */

.library-page-number.active {
background: #105b78;
color: #ffffff;
border-color: #105b78;
}

/* =========================================================
TABLET
========================================================= */

@media (max-width: 991.98px) {


.library-committee-section {
    padding: 40px 0 50px;
}

.library-committee-heading h1 {
    font-size: 30px;
}

.library-committee-table-wrapper {
    padding: 23px;
}

.library-committee-table-wrapper .table thead th,
.library-committee-table-wrapper .table tbody td {
    padding: 12px;
    font-size: 15px;
}


}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767.98px) {


.library-committee-section {
    padding: 35px 0 45px;
}

.library-committee-heading {
    margin-bottom: 25px;
}

.library-committee-heading h1 {
    font-size: 27px;
}

.library-committee-table-wrapper {
    padding: 18px;
}

/*
   Bootstrap table-responsive
   keeps table usable on small screens.
*/

.library-committee-table-wrapper .table {
    min-width: 600px;
}

.library-committee-table-wrapper .table thead th,
.library-committee-table-wrapper .table tbody td {
    padding: 11px 10px;
    font-size: 14px;
}

.library-pagination-wrapper {
    flex-wrap: wrap;
    gap: 6px;
}

.library-page-btn {
    padding: 7px 12px;
    font-size: 13px;
}

.library-page-number {
    width: 35px;
    height: 35px;
    font-size: 13px;
}


}

/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {




.library-committee-section {
    padding: 28px 0 40px;
}

.library-committee-heading h1 {
    font-size: 24px;
}

.library-committee-table-wrapper {
    padding: 12px;
}

.library-committee-table-wrapper .table {
    min-width: 550px;
}

.library-committee-table-wrapper .table thead th,
.library-committee-table-wrapper .table tbody td {
    padding: 10px 8px;
    font-size: 13.5px;
}

}


/* =========================================================
   INFRASTRUCTURE SECTION PAGE
========================================================= */

.infrastructure-section {
    width: 100%;
    padding: 55px 0 70px;
    background: #ffffff;
}


/* =========================================================
   HEADING
========================================================= */

.infrastructure-title {
    text-align: center;
    margin-bottom: 40px;
}

.infrastructure-title h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #222;
    letter-spacing: 0.5px;
}

.infrastructure-title span {
    display: block;
    width: 55px;
    height: 3px;
    margin: 12px auto 0;
    background: #222;
}


/* =========================================================
   IMAGE BOX
========================================================= */

.infra-img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
    background: #f2f2f2;
    position: relative;
    border-radius: 10px;
}


/* =========================================================
   IMAGE
========================================================= */

.infra-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}


/* =========================================================
   HOVER
========================================================= */

.infra-img-box:hover img {
    transform: scale(1.05);
}


/* =========================================================
   LIGHTBOX
========================================================= */

.infrastructure-lightbox {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.88);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    opacity: 0;
    visibility: hidden;

    z-index: 99999;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* =========================================================
   LIGHTBOX ACTIVE
========================================================= */

.infrastructure-lightbox.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   LARGE IMAGE
========================================================= */

.infrastructure-lightbox img {
    max-width: 90%;
    max-height: 90vh;

    width: auto;
    height: auto;

    object-fit: contain;

    display: block;

    border-radius: 2px;

    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.lightbox-close {
    position: absolute;

    top: 20px;
    right: 30px;

    width: 45px;
    height: 45px;

    border: none;
    background: transparent;

    color: #ffffff;

    font-size: 42px;
    line-height: 40px;

    cursor: pointer;

    z-index: 100000;

    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.15);
}


/* =========================================================
   PREVENT BACKGROUND SCROLL
========================================================= */

body.lightbox-open {
    overflow: hidden;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .infrastructure-section {
        padding: 45px 0 55px;
    }

    .infrastructure-title {
        margin-bottom: 32px;
    }

    .infrastructure-title h2 {
        font-size: 27px;
    }

    .infra-img-box {
        height: 230px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .infrastructure-section {
        padding: 35px 15px 45px;
    }

    .infrastructure-title {
        margin-bottom: 25px;
    }

    .infrastructure-title h2 {
        font-size: 24px;
    }

    .infrastructure-title span {
        width: 45px;
        height: 2px;
        margin-top: 9px;
    }

    .infra-img-box {
        height: 220px;
    }

    .infrastructure-lightbox {
        padding: 20px;
    }

    .infrastructure-lightbox img {
        max-width: 95%;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 38px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .infrastructure-section {
        padding: 30px 12px 40px;
    }

    .infra-img-box {
        height: 200px;
    }

}




/* =========================================================
   ABOUT DIGITAL LIBRARY
========================================================= */

.digital-library-section {
    width: 100%;
    padding: 45px 0;
    background: #ffffff;
}


/* =========================================================
   PAGE TITLE
========================================================= */

.digital-library-title {
    text-align: center;
    margin-bottom: 15px;
}

.digital-library-title h2 {
    margin: 0;
    padding: 0;

    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;

    color: #222222;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.digital-library-intro {
    max-width: 950px;
    margin: 0 auto 30px;

    text-align: center;
}

.digital-library-intro p {
    margin: 0;

    font-size: 15px;
    line-height: 1.8;

    color: #555555;
}


/* =========================================================
   BUTTON ROW
========================================================= */

.digital-library-buttons {
    display: flex;
    align-items: stretch;

    width: 100%;

    gap: 19px;

    margin: 0;
    padding: 0;
}


/* =========================================================
   DIGITAL LIBRARY BUTTON
========================================================= */

.digital-library-btn {
    flex: 1;
    min-width: 0;
    min-height: 58px;

    padding: 10px 12px;

    border: 1px solid #23445a;
    border-radius: 4px;

    background: #23445a;
    color: #ffffff;

    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;

    text-align: center;
    text-transform: uppercase;

    cursor: pointer;

    transition: all 0.25s ease;
}


/* =========================================================
   BUTTON HOVER
========================================================= */


.digital-library-btn:hover {
    border-color: #105b78;
    background: #f8fbfc;
    color: #105b78;

    transform: translateY(-2px);
}

/* =========================================================
   ACTIVE BUTTON
========================================================= */

.digital-library-btn.active {
    border-color: #105b78;
    background: #105b78;
    color: #ffffff;

    box-shadow: none;
}



/* =========================================================
   FOCUS
========================================================= */

.digital-library-btn:focus {
    outline: none;
}


/* =========================================================
   CONTENT AREA
========================================================= */

.digital-library-content {
    width: 100%;

    margin-top: 19px;

    padding: 28px 32px;

    min-height: 220px;

    border: 3px solid #dce7eb;
    border-radius: 4px;

    background: #ffffff;
}


/* =========================================================
   CONTENT BOX
========================================================= */

.digital-library-content-box {
    display: none;

    width: 100%;

    animation: digitalLibraryFade 0.3s ease;
}

.digital-library-content-box.active {
    display: block;
}


/* =========================================================
   CONTENT ANIMATION
========================================================= */

@keyframes digitalLibraryFade {

    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   CONTENT HEADING
========================================================= */

.digital-library-content-box h3 {
    margin: 0 0 15px;
    padding: 0;

    font-size: 21px;
    font-weight: 700;

    line-height: 1.4;

    color: #222222;
}


/* =========================================================
   CONTENT PARAGRAPH
========================================================= */

.digital-library-content-box p {
    margin: 0;

    font-size: 15px;
    line-height: 1.8;

    color: #555555;
}


/* =========================================================
   CONTENT LIST
========================================================= */

.digital-library-content-box ul {
    margin: 0;
    padding: 0 0 0 20px;
}

.digital-library-content-box li {
    margin: 0 0 10px;
    padding: 0;

    font-size: 15px;
    line-height: 1.7;

    color: #555555;
}

.digital-library-content-box li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .digital-library-section {
        padding: 40px 0;
    }


    /* Title */

    .digital-library-title h2 {
        font-size: 28px;
    }


    /* Intro */

    .digital-library-intro {
        margin-bottom: 27px;
    }

    .digital-library-intro p {
        font-size: 15px;
    }


    /* Buttons */

    .digital-library-buttons {
        gap: 12px;
    }

    .digital-library-btn {
        min-height: 58px;

        padding: 9px 8px;

        font-size: 11px;
    }


    /* Content */

    .digital-library-content {
        margin-top: 15px;

        padding: 25px 28px;
    }


    .digital-library-content-box h3 {
        font-size: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .digital-library-section {
        padding: 32px 0;
    }


    /* Title */

    .digital-library-title {
        margin-bottom: 13px;
    }

    .digital-library-title h2 {
        font-size: 24px;
    }


    /* Intro */

    .digital-library-intro {
        margin-bottom: 22px;
    }

    .digital-library-intro p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* =====================================================
       4 BUTTONS - SAME ROW
    ====================================================== */

    .digital-library-buttons {
        display: grid;

        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        gap: 6px;

        width: 100%;
    }


    .digital-library-btn {
        width: 100%;

        min-width: 0;
        min-height: 64px;

        padding: 7px 4px;

        font-size: 8.5px;

        line-height: 1.3;

        word-break: normal;
        overflow-wrap: break-word;

        transform: none;
    }


    .digital-library-btn:hover {
        transform: none;
    }


    .digital-library-btn.active {
        box-shadow: inset 0 -2px 0 #6f94a7;
    }


    /* Content */

    .digital-library-content {
        margin-top: 12px;

        padding: 22px 18px;

        min-height: 200px;
    }


    .digital-library-content-box h3 {
        margin-bottom: 13px;

        font-size: 19px;

        line-height: 1.4;
    }


    .digital-library-content-box p,
    .digital-library-content-box li {
        font-size: 14px;

        line-height: 1.7;
    }


    .digital-library-content-box ul {
        padding-left: 18px;
    }


    .digital-library-content-box li {
        margin-bottom: 8px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 375px) {

    .digital-library-section {
        padding: 28px 0;
    }


    .digital-library-title h2 {
        font-size: 22px;
    }


    .digital-library-intro p {
        font-size: 13px;
    }


    .digital-library-buttons {
        gap: 4px;
    }


    .digital-library-btn {
        min-height: 60px;

        padding: 6px 3px;

        font-size: 7.5px;

        line-height: 1.25;
    }


    .digital-library-content {
        padding: 20px 15px;
    }


    .digital-library-content-box h3 {
        font-size: 18px;
    }


    .digital-library-content-box p,
    .digital-library-content-box li {
        font-size: 13px;
    }

}









/* =========================================================
   RESOURCES SECTION PAGE
========================================================= */

.resources-section {
    background: #f5f9fa;
}


/* =========================================================
   PAGE TITLE
========================================================= */

.resources-heading h1 {
    margin: 0;
    color: #105b78;
    font-size: 32px;
    line-height: 1.3;
}


/* =========================================================
   TABLE WRAPPER
========================================================= */

.resources-table-wrapper {
    width: 100%;
    padding: 25px 28px 28px;

    background: #ffffff;
    border: 1px solid #dce7eb;
}


/* =========================================================
   SUB TITLE
========================================================= */

.resources-subtitle {
    margin: 0;
    padding-left: 13px;

    color: #105b78;
    font-size: 24px;
    line-height: 1.3;

    border-left: 4px solid #105b78;
}


/* =========================================================
   TABLE
========================================================= */

.resources-table-wrapper .table {
    width: 100%;
    margin: 0;
}


/* TABLE HEADER */

.resources-table-wrapper .table thead th {
    background-color: #105b78;
    color: #ffffff;

    border-color: #105b78;

    padding: 13px 15px;

    font-size: 15px;
    font-weight: 700;

    vertical-align: middle;
}


/* TABLE BODY */

.resources-table-wrapper .table tbody td {
    padding: 13px 15px;

    color: #555555;

    background-color: #ffffff;

    border-color: #dce7eb;

    font-size: 15px;

    vertical-align: middle;
    text-align: center;
}


/* AVAILABLE NUMBERS */

.resources-table-wrapper .table tbody td:last-child {
    color: #105b78;
    font-weight: 600;
}


/* HOVER */

.resources-table-wrapper .table tbody tr:hover td {
    background-color: #f5f9fa;
}


/* COLUMN WIDTH */

.resources-table-wrapper .table th:first-child,
.resources-table-wrapper .table td:first-child {
    width: 20%;
}

.resources-table-wrapper .table th:nth-child(2),
.resources-table-wrapper .table td:nth-child(2) {
    width: 50%;
}

.resources-table-wrapper .table th:last-child,
.resources-table-wrapper .table td:last-child {
    width: 30%;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .resources-section {
        padding-top: 40px !important;
        padding-bottom: 50px !important;
    }

    .resources-heading h1 {
        font-size: 30px;
    }

    .resources-table-wrapper {
        padding: 23px 22px 25px;
    }

    .resources-subtitle {
        font-size: 22px;
    }

    .resources-table-wrapper .table thead th,
    .resources-table-wrapper .table tbody td {
        padding: 12px 12px;
        font-size: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .resources-section {
        padding-top: 35px !important;
        padding-bottom: 40px !important;
    }

    .resources-heading {
        margin-bottom: 25px !important;
    }

    .resources-heading h1 {
        font-size: 27px;
    }

    .resources-table-wrapper {
        padding: 20px 17px 22px;
    }

    .resources-subtitle {
        font-size: 21px;
        padding-left: 11px;
    }

    .resources-table-wrapper .table {
        min-width: 500px;
    }

    .resources-table-wrapper .table thead th,
    .resources-table-wrapper .table tbody td {
        padding: 11px 10px;
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

 
    .resources-section {
        padding-top: 28px !important;
        padding-bottom: 35px !important;
    }

    .resources-heading h1 {
        font-size: 24px;
    }

    .resources-table-wrapper {
        padding: 18px 12px 20px;
    }

    .resources-subtitle {
        font-size: 20px;
        margin-bottom: 15px !important;
    }

    /*
       Keeps table readable on very small screens.
       User can scroll horizontally.
    */

    .resources-table-wrapper .table {
        min-width: 450px;
    }

    .resources-table-wrapper .table thead th,
    .resources-table-wrapper .table tbody td {
        padding: 10px 9px;
        font-size: 13.5px;
    }

}

















/* =========================================================
   DAY CELEBRATION PAGE
========================================================= */

.day-breadcrumb-section {
    background: #ffffff;
    padding-top: 90px !important;
    padding-bottom: 15px !important;
}

.day-breadcrumb-section .breadcrumb {
    margin-bottom: 0;
}

.day-breadcrumb-section .breadcrumb-item a {
    color: #105b78;
    font-weight: 500;
}

.day-breadcrumb-section .breadcrumb-item.active {
    color: #6c757d;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.day-celebration-section {
    background: #ffffff;
    padding: 35px 0 60px;
}


/* =========================================================
   EVENT NAMES
   4 FIRST ROW + 2 SECOND ROW
========================================================= */

.day-events-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 25px;
    row-gap: 5px;
    width: 100%;
    text-align: center;
}

.day-event-item {
    width: 100%;
}


/* Event name should look like normal text/link */

.day-event-link {
    width: 100%;
    padding: 5px 2px;
    margin: 0;

    border: none;
    outline: none;

    background: transparent;

    color: #105b78;

    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;

    text-align: center;

    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;

    transition: color 0.2s ease;
}


/* Hover */

.day-event-link:hover {
    color: #0a4055;
    text-decoration: underline;
}


/* Selected event */

.day-event-link.active {
    color: #105b78;
    font-weight: 600;
    text-decoration: underline;
}


/* =========================================================
   PHOTO AREA
========================================================= */

.day-photo-area {
    width: 100%;
    margin-top: 35px;
}


/* Initially hide all photos */

.day-photo-section {
    display: none;
}


/* Show selected event photos */

.day-photo-section.active {
    display: block;
}


/* =========================================================
   PHOTO HEADING
========================================================= */

.day-photo-heading {
    margin-bottom: 20px;

    color: #105b78;

    font-size: 21px;
    font-weight: 600;
    line-height: 1.4;

    text-align: center;
}


/* =========================================================
   PHOTO
========================================================= */

.day-photo {
    width: 100%;
    overflow: hidden;

    background: #ffffff;

    border-radius: 4px;
}

.day-photo img {
    display: block;

    width: 100%;
    height: 230px;

    object-fit: cover;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .day-breadcrumb-section {
        padding-top: 100px !important;
    }

    .day-celebration-section {
        padding: 30px 0 50px;
    }

    /*
       Tablet:
       2 columns
    */

    .day-events-list {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 5px;
    }

    .day-event-link {
        font-size: 15px;
    }

    .day-photo img {
        height: 220px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .day-breadcrumb-section {
        padding-top: 110px !important;
    }

    .day-celebration-section {
        padding: 25px 15px 45px;
    }

    /*
       Mobile:
       1 column
    */

    .day-events-list {
        grid-template-columns: 1fr;
        row-gap: 4px;
    }

    .day-event-link {
        padding: 5px 0;
        font-size: 15px;
    }

    .day-photo-area {
        margin-top: 28px;
    }

    .day-photo-heading {
        margin-bottom: 18px;
        font-size: 19px;
    }

    .day-photo img {
        height: 210px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .day-event-link {
        font-size: 14px;
    }

    .day-photo-heading {
        font-size: 18px;
    }

    .day-photo img {
        height: 195px;
    }
}
/* =========================================================
   DAY CELEBRATION PAGE
========================================================= */


/* =========================================================
   BREADCRUMB
========================================================= */

.day-breadcrumb-section {
    background: #ffffff;
}

.day-breadcrumb-section .breadcrumb {
    font-size: 15px;
    margin-bottom: 0;
}

.day-breadcrumb-section .breadcrumb a {
    color: #105b78;
    text-decoration: none;
}

.day-breadcrumb-section .breadcrumb .active {
    color: #555555;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.day-celebration-section {
    width: 100%;
    padding: 10px 0 40px;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   ROW
========================================================= */

.day-celebration-section .row {
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;

    margin-left: 0 !important;
    margin-right: 0 !important;

    padding-left: 9.5px !important;
    padding-right: 9.5px !important;
}


/* =========================================================
   COLUMNS
   19px GAP BETWEEN TWO BOXES
========================================================= */

.day-celebration-section .col-lg-3,
.day-celebration-section .col-lg-6,
.day-celebration-section .col-md-3,
.day-celebration-section .col-md-6,
.day-celebration-section .col-sm-6,
.day-celebration-section .col-6,
.day-celebration-section .col-12 {

    padding-left: 9.5px !important;
    padding-right: 9.5px !important;
}


/* =========================================================
   EVENT BOX
========================================================= */

.day-event-box {
    width: 100% !important;

    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #105b78;
    color: #ffffff;

    border: 1px solid #ffffff;
    border-radius: 0;

    padding: 12px 10px;

    text-align: center;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.3;

    cursor: pointer;

    word-wrap: break-word;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


/* =========================================================
   ACTIVE + HOVER EVENT BOX
========================================================= */

.day-event-box {
    background: #105b78;
    color: #ffffff;
}

.day-event-box:hover,
.day-event-box.active {
    background: #dce7eb;
    color: #105b78;
}


/* =========================================================
   PHOTO AREA
========================================================= */

.day-photo-area {
    width: 100%;
    margin-top: 22px;
}


/* =========================================================
   PHOTO SECTION
========================================================= */

.day-photo-section {
    display: none;
}

.day-photo-section.active {
    display: block;
}


/* =========================================================
   PHOTO GRID
========================================================= */

.day-photo-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 10px;

    width: 100%;
}


/* =========================================================
   PHOTO
========================================================= */

.day-photo {
    width: 100%;
    height: 300px;

    display: block;

    object-fit: cover;
    object-position: center;

    border: 1px solid #105b78;
    border-radius: 8px;

    cursor: pointer;

    background: #ffffff;

    box-shadow:
        0 3px 10px rgba(16, 91, 120, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}


/* =========================================================
   PHOTO HOVER
========================================================= */

.day-photo:hover {
    transform: translateY(-4px) scale(1.015);

    box-shadow:
        0 8px 20px rgba(16, 91, 120, 0.22);

    filter: brightness(1.03);
}


/* =========================================================
   IMAGE LIGHTBOX
========================================================= */

.day-lightbox {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.92);

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    z-index: 99999;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


/* =========================================================
   SHOW LIGHTBOX
========================================================= */

.day-lightbox.show {
    visibility: visible;
    opacity: 1;
}


/* =========================================================
   LIGHTBOX CONTENT
========================================================= */

.day-lightbox-content {
    width: auto;
    max-width: 90%;
    max-height: 90%;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* =========================================================
   LARGE IMAGE
========================================================= */

#dayLightboxImage {
    display: block;

    max-width: 90vw;
    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 5px;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.day-lightbox-close {
    position: absolute;

    top: 20px;
    right: 25px;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    background: transparent;

    color: #ffffff;

    font-size: 42px;

    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    z-index: 100001;

    transition:
        transform 0.2s ease,
        color 0.2s ease;
}


.day-lightbox-close:hover {
    color: #dce7eb;

    transform: scale(1.1);
}


/* =========================================================
   PREVIOUS / NEXT BUTTONS
========================================================= */

.day-lightbox-prev,
.day-lightbox-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-size: 34px;

    cursor: pointer;

    border-radius: 4px;

    z-index: 100001;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.day-lightbox-prev:hover,
.day-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.18);

    color: #dce7eb;
}


.day-lightbox-prev {
    left: 25px;
}

.day-lightbox-next {
    right: 25px;
}


/* =========================================================
   DISABLE PAGE SCROLL WHEN LIGHTBOX OPEN
========================================================= */

body.day-lightbox-open {
    overflow: hidden;
}


/* =========================================================
   LARGE DESKTOP
   1200px+
========================================================= */

@media (min-width: 1200px) {

    .day-celebration-section {
        padding: 10px 0 40px;
    }

    .day-event-box {
        min-height: 52px;

        font-size: 16px;

        padding: 12px 10px;
    }

    .day-photo-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

    .day-photo {
        height: 400px;
    }
}


/* =========================================================
   LAPTOP
   992px - 1199px
========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .day-celebration-section {
        padding: 10px 0 35px;
    }

    .day-event-box {
        min-height: 52px;

        padding: 11px 8px;

        font-size: 15px;
    }

    .day-photo-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 10px;
    }

    .day-photo {
        height: 280px;
    }
}


/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .day-celebration-section {
        padding: 10px 0 35px;
    }

    .day-event-box {
        min-height: 52px;

        padding: 10px 8px;

        font-size: 15px;
    }

    .day-photo-area {
        margin-top: 20px;
    }

    .day-photo-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 9px;
    }

    .day-photo {
        height: 260px;
    }
}


/* =========================================================
   MOBILE
   576px - 767px
========================================================= */

@media (min-width: 576px) and (max-width: 767px) {

    .day-celebration-section {
        padding: 10px 0 30px;
    }

    .day-event-box {
        min-height: 50px;

        padding: 10px 8px;

        font-size: 15px;
    }

    .day-photo-area {
        margin-top: 18px;
    }

    .day-photo-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }

    .day-photo {
        height: 245px;

        border-radius: 7px;

        box-shadow:
            0 3px 10px rgba(16, 91, 120, 0.14);
    }


    /* =====================================================
       MOBILE LIGHTBOX
    ===================================================== */

    .day-lightbox {
        padding: 20px;
    }

    #dayLightboxImage {
        max-width: 88vw;
        max-height: 80vh;
    }

    .day-lightbox-prev,
    .day-lightbox-next {
        width: 40px;
        height: 55px;

        font-size: 28px;
    }

    .day-lightbox-prev {
        left: 10px;
    }

    .day-lightbox-next {
        right: 10px;
    }

    .day-lightbox-close {
        top: 10px;
        right: 12px;

        font-size: 36px;
    }
}


/* =========================================================
   SMALL MOBILE
   0px - 575px
========================================================= */

@media (max-width: 575px) {

    .day-celebration-section {
        padding: 8px 0 25px;
    }

    .day-event-box {
        min-height: 50px;

        padding: 9px 6px;

        font-size: 14px;

        line-height: 1.25;
    }

    .day-photo-area {
        margin-top: 18px;
    }

    .day-photo-grid {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .day-photo {
        width: 100%;

        height: 280px;

        object-fit: cover;

        border-radius: 7px;

        box-shadow:
            0 3px 10px rgba(16, 91, 120, 0.14);
    }


    /* =====================================================
       MOBILE LIGHTBOX
    ===================================================== */

    .day-lightbox {
        padding: 15px;
    }

    #dayLightboxImage {
        max-width: 94vw;

        max-height: 78vh;
    }

    .day-lightbox-close {
        top: 8px;
        right: 8px;

        width: 40px;
        height: 40px;

        font-size: 34px;
    }

    .day-lightbox-prev,
    .day-lightbox-next {
        width: 38px;
        height: 50px;

        font-size: 25px;

        background: rgba(0, 0, 0, 0.35);
    }

    .day-lightbox-prev {
        left: 5px;
    }

    .day-lightbox-next {
        right: 5px;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
   400px and below
========================================================= */

@media (max-width: 400px) {

    .day-event-box {
        min-height: 48px;

        padding: 8px 5px;

        font-size: 13px;
    }

    .day-photo {
        height: 260px;
    }

    #dayLightboxImage {
        max-width: 92vw;

        max-height: 75vh;
    }

    .day-lightbox-prev,
    .day-lightbox-next {
        width: 34px;
        height: 45px;

        font-size: 22px;
    }
}


/* =========================================================
   CULTURAL ACTIVITIES
========================================================= */

.cultural-activities-section {
    width: 100%;
    padding: 30px 0 50px;
    background: #ffffff;
}


/* =========================================================
   GALLERY
========================================================= */

.cultural-gallery {
    width: 100%;
    display: grid;

    grid-template-columns: 2fr 1fr 2fr;

    grid-template-rows:
        190px
        190px
        190px
        190px;

    grid-template-areas:
        "one two three"
        "one four three"
        "five six six"
        "five seven eight";

    gap: 12px;
}


/* =========================================================
   GALLERY ITEM
========================================================= */

.cultural-item {
    width: 100%;
    height: 100%;

    overflow: hidden;

    border: 1px solid #dce7eb;
    border-radius: 8px;

    background: #dce7eb;

    cursor: pointer;
}


/* =========================================================
   GRID POSITION
========================================================= */

.cultural-item-1 {
    grid-area: one;
}

.cultural-item-2 {
    grid-area: two;
}

.cultural-item-3 {
    grid-area: three;
}

.cultural-item-4 {
    grid-area: four;
}

.cultural-item-5 {
    grid-area: five;
}

.cultural-item-6 {
    grid-area: six;
}

.cultural-item-7 {
    grid-area: seven;
}

.cultural-item-8 {
    grid-area: eight;
}


/* =========================================================
   IMAGE
========================================================= */

.cultural-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    cursor: pointer;

    transition: transform 0.35s ease;
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.cultural-item:hover .cultural-image {
    transform: scale(1.04);
}


/* =========================================================
   LIGHTBOX
========================================================= */

.cultural-lightbox {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.90);

    display: none;

    align-items: center;
    justify-content: center;

    z-index: 99999;

    padding: 30px;
}


/* =========================================================
   IMPORTANT - SHOW LIGHTBOX
========================================================= */

.cultural-lightbox.show {
    display: flex;
}


/* =========================================================
   LIGHTBOX CONTENT
========================================================= */

.cultural-lightbox-content {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    pointer-events: none;
}


/* =========================================================
   LARGE IMAGE
========================================================= */

#culturalLightboxImage {
    max-width: 88vw;
    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 6px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);

    pointer-events: none;
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.cultural-lightbox-close {
    position: absolute;

    top: 18px;
    right: 25px;

    width: 45px;
    height: 45px;

    border: none;
    background: transparent;

    color: #ffffff;

    font-size: 38px;
    line-height: 1;

    cursor: pointer;

    z-index: 100001;

    transition: 0.25s ease;
}

.cultural-lightbox-close:hover {
    color: #dce7eb;

    transform: scale(1.1);
}


/* =========================================================
   PREVIOUS BUTTON
========================================================= */

.cultural-lightbox-prev {
    position: absolute;

    left: 25px;
    top: 50%;

    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);

    color: #ffffff;

    font-size: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 100001;

    transition: 0.25s ease;
}

.cultural-lightbox-prev:hover {
    background: #dce7eb;
    color: #105b78;
}


/* =========================================================
   NEXT BUTTON
========================================================= */

.cultural-lightbox-next {
    position: absolute;

    right: 25px;
    top: 50%;

    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);

    color: #ffffff;

    font-size: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 100001;

    transition: 0.25s ease;
}

.cultural-lightbox-next:hover {
    background: #dce7eb;
    color: #105b78;
}


/* =========================================================
   BODY SCROLL LOCK
========================================================= */

body.cultural-lightbox-open {
    overflow: hidden;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .cultural-gallery {
        grid-template-rows:
            175px
            175px
            175px
            175px;

        gap: 11px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .cultural-activities-section {
        padding: 25px 0 40px;
    }

    .cultural-gallery {

        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            190px
            190px
            190px
            190px
            190px;

        grid-template-areas:
            "one one"
            "two three"
            "four three"
            "five six"
            "seven eight";

        gap: 10px;
    }


    #culturalLightboxImage {
        max-width: 85vw;
        max-height: 82vh;
    }

    .cultural-lightbox-prev {
        left: 15px;
    }

    .cultural-lightbox-next {
        right: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cultural-activities-section {
        padding: 20px 0 35px;
    }

    .cultural-gallery {

        grid-template-columns: 1fr;

        grid-template-rows:
            repeat(8, 230px);

        grid-template-areas:
            "one"
            "two"
            "three"
            "four"
            "five"
            "six"
            "seven"
            "eight";

        gap: 10px;
    }


    #culturalLightboxImage {
        max-width: 90vw;
        max-height: 75vh;
    }


    .cultural-lightbox-close {
        top: 10px;
        right: 12px;

        font-size: 32px;
    }


    .cultural-lightbox-prev,
    .cultural-lightbox-next {
        width: 40px;
        height: 40px;

        font-size: 23px;
    }

    .cultural-lightbox-prev {
        left: 8px;
    }

    .cultural-lightbox-next {
        right: 8px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .cultural-gallery {
        grid-template-rows:
            repeat(8, 220px);

        gap: 9px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .cultural-gallery {
        grid-template-rows:
            repeat(8, 200px);

        gap: 8px;
    }

    #culturalLightboxImage {
        max-width: 88vw;
        max-height: 72vh;
    }

}




/* =========================================================
   TPO CELL - ONLY CUSTOM COLOR
========================================================= */

.tpo-color {
    color: #105b78 !important;
}

.tpo-bg-color {
    background-color: #105b78 !important;
}

.tpo-table-head th {
    background-color: #105b78 !important;
    color: #ffffff !important;
}

.tpo-table a {
    color: #105b78 !important;
}


/* Pagination */

#tpoPagination .page-link {
    color: #105b78;
}

#tpoPagination .page-item.active .page-link {
    background-color: #105b78;
    border-color: #105b78;
    color: #ffffff;
}

#tpoPagination .page-link:hover {
    background-color: #105b78;
    border-color: #105b78;
    color: #ffffff;
}


/* Mobile table */

.tpo-table {
    min-width: 750px;
}

@media (max-width: 767px) {

    .tpo-table {
        min-width: 700px;
    }

}

/* =========================================================
   TPO MESSAGE PAGE
========================================================= */

.tpo-color {
    color: #105b78 !important;
}

.tpo-line {
    width: 40px;
    height: 2px;
    background-color: #105b78;
}


/* PAGE TITLE */

.tpo-title {
    font-size: 22px;
}


/* PROFILE IMAGE */

.tpo-profile-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto;
}


/* MOBILE */

@media (max-width: 767px) {

    .tpo-title {
        font-size: 20px;
    }

    .tpo-profile-image {
        max-width: 240px;
    }

}
/* =========================================================
   LINKAGED WITH DEPARTMENT PAGE
========================================================= */

.linkage-section {
    background: #f8fafc;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.linkage-breadcrumb-section {
    background: #fff;
}

.linkage-breadcrumb-section .breadcrumb {
    font-size: 14px;
}

.linkage-breadcrumb-section .breadcrumb-item a {
    color: #105b78;
}

.linkage-breadcrumb-section .breadcrumb-item.active {
    color: #6c757d;
}


/* =========================================================
   TITLE
========================================================= */

.linkage-title {
    color: #105b78;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.linkage-subtitle {
    color: #6c757d;
    font-size: 15px;
}


/* =========================================================
   SEARCH
========================================================= */

.linkage-search-box {
    width: 100%;
}

.linkage-search-box .input-group {
    width: 100%;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.linkage-search-box .input-group-text {
    background: #fff;
    color: #105b78;
    border: 1px solid #ced4da;
    border-right: none;
    padding-left: 14px;
    padding-right: 12px;
}

.linkage-search-box .form-control {
    height: 44px;
    border: 1px solid #ced4da;
    border-left: none;
    box-shadow: none;
    font-size: 14px;
}

.linkage-search-box .form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
}

.linkage-search-box .form-control::placeholder {
    color: #9aa3aa;
}


/* =========================================================
   TABLE CARD
========================================================= */

.linkage-card {
    width: 100%;
    background: #fff;
    border: 1px solid #e2e8ec;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}


/* =========================================================
   TABLE
========================================================= */

.linkage-table {
    width: 100%;
    margin: 0;
    font-size: 15px;
    table-layout: fixed;
}

.linkage-table thead th {
    background: #105b78;
    color: #fff;
    font-weight: 600;
    padding: 14px 16px;
    border: none;
    vertical-align: middle;
}

.linkage-table thead th:nth-child(1) {
    width: 10%;
    text-align: center;
}

.linkage-table thead th:nth-child(2) {
    width: 45%;
}

.linkage-table thead th:nth-child(3) {
    width: 45%;
}

.linkage-table tbody td {
    padding: 13px 16px;
    color: #343a40;
    border-color: #e9ecef;
    vertical-align: middle;
    word-break: break-word;
}

.linkage-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.linkage-table tbody tr:hover {
    background: #eef6f9;
    transition: 0.2s ease;
}

.linkage-table .sr-column {
    width: 10%;
}


/* =========================================================
   NO RESULT
========================================================= */

.linkage-no-result {
    padding: 25px 15px;
    text-align: center;
    color: #6c757d;
    font-size: 14px;
}


/* =========================================================
   PAGINATION
========================================================= */

.linkage-pagination-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 20px 15px;
    border-top: 1px solid #e9ecef;
    background: #fff;
}

.linkage-page-info {
    width: 100%;
    text-align: center;
    color: #6c757d;
    font-size: 13px;
}

.linkage-pagination-wrapper nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.linkage-pagination-wrapper .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0 auto !important;
}

.linkage-pagination-wrapper .page-link {
    color: #105b78;
    background: #fff;
    border: 1px solid #dce4e8;
    font-size: 13px;
    min-width: 38px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 5px 10px;
    box-shadow: none;
    cursor: pointer;
    border-radius: 5px !important;
}

.linkage-pagination-wrapper .page-link:hover {
    background: #105b78;
    border-color: #105b78;
    color: #fff;
}

.linkage-pagination-wrapper .page-item.active .page-link {
    background: #105b78;
    border-color: #105b78;
    color: #fff;
}

.linkage-pagination-wrapper .linkage-arrow {
    font-size: 20px;
    font-weight: 500;
}

.linkage-pagination-wrapper .page-item.disabled .page-link {
    color: #adb5bd;
    background: #f8f9fa;
    cursor: not-allowed;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .linkage-section .container {
        max-width: 1140px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1199.98px) {

    .linkage-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .linkage-title {
        font-size: 27px;
    }

    .linkage-subtitle {
        font-size: 14px;
    }

    .linkage-search-box {
        max-width: 600px;
        margin: 0 auto;
    }

    .linkage-table {
        font-size: 13px;
    }

    .linkage-table thead th {
        padding: 12px 12px;
    }

    .linkage-table tbody td {
        padding: 12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .linkage-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }


    /* -----------------------------------------
       TITLE
    ----------------------------------------- */

    .linkage-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 7px;
    }

    .linkage-subtitle {
        font-size: 12px;
        padding: 0 10px;
    }


    /* -----------------------------------------
       SEARCH
    ----------------------------------------- */

    .linkage-search-box {
        width: 100%;
    }

    .linkage-search-box .input-group {
        border-radius: 6px;
    }

    .linkage-search-box .form-control {
        height: 42px;
        font-size: 13px;
    }

    .linkage-search-box .input-group-text {
        height: 42px;
        padding-left: 11px;
        padding-right: 10px;
    }


    /* -----------------------------------------
       CARD
    ----------------------------------------- */

    .linkage-card {
        border-radius: 9px;
        width: 100%;
    }


    /* -----------------------------------------
       RESPONSIVE TABLE
    ----------------------------------------- */

    .linkage-card .table-responsive {
        overflow: visible !important;
    }

    .linkage-table {
        width: 100%;
        min-width: 0 !important;
        display: block;
        font-size: 13px;
    }

    .linkage-table thead {
        display: none;
    }

    .linkage-table tbody {
        display: block;
        width: 100%;
    }

    .linkage-table tbody tr {
        display: grid;
        grid-template-columns: 42px 1fr;
        width: 100%;
        padding: 12px 13px;
        border-bottom: 1px solid #e9ecef;
        background: #fff !important;
    }

    .linkage-table tbody tr:last-child {
        border-bottom: none;
    }

    .linkage-table tbody tr:hover {
        background: #f8fafc !important;
    }

    .linkage-table tbody td {
        display: block;
        border: none;
        padding: 3px 5px;
        width: auto !important;
        word-break: break-word;
    }


    /* Sr No */

    .linkage-table tbody td:first-child {
        grid-row: 1 / span 2;
        grid-column: 1;

        font-weight: 700;
        color: #105b78;

        padding-top: 5px;
        text-align: left !important;
    }


    /* Organization */

    .linkage-table tbody td:nth-child(2) {
        grid-column: 2;
        font-weight: 600;
        color: #343a40;
        line-height: 1.4;
    }


    /* Department */

    .linkage-table tbody td:nth-child(3) {
        grid-column: 2;
        color: #6c757d;
        font-size: 12px;
        line-height: 1.4;
        margin-top: 2px;
    }


    /* -----------------------------------------
       PAGINATION
    ----------------------------------------- */

    .linkage-pagination-wrapper {
        padding: 15px 8px;
        gap: 9px;
    }

    .linkage-page-info {
        font-size: 11px;
    }

    .linkage-pagination-wrapper nav {
        width: 100%;
    }

    .linkage-pagination-wrapper .pagination {
        gap: 3px;
        max-width: 100%;
    }

    .linkage-pagination-wrapper .page-link {
        min-width: 32px;
        height: 32px;
        padding: 4px 7px;
        font-size: 12px;
    }

    .linkage-pagination-wrapper .linkage-arrow {
        font-size: 17px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .linkage-title {
        font-size: 20px;
    }

    .linkage-subtitle {
        font-size: 11px;
    }

    .linkage-table tbody tr {
        grid-template-columns: 36px 1fr;
        padding: 11px 10px;
    }

    .linkage-table tbody td:nth-child(2) {
        font-size: 12px;
    }

    .linkage-table tbody td:nth-child(3) {
        font-size: 11px;
    }

    .linkage-pagination-wrapper .page-link {
        min-width: 29px;
        height: 30px;
        padding: 3px 6px;
        font-size: 11px;
    }

}

/* =========================================================
   NOTICES PAGE
========================================================= */

.notices-section {
    background: #ffffff;
    min-height: 500px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.notices-breadcrumb {
    background: #ffffff;
}

.notices-breadcrumb .breadcrumb {
    font-size: 14px;
}

.notices-breadcrumb a {
    color: #555;
}

.notices-breadcrumb .active {
    color: #888;
}


/* =========================================================
   HEADING
========================================================= */

.notices-heading {
    max-width: 800px;
    margin: 0 auto;
}

.notices-title {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #222;
}

.notices-title-line {
    width: 55px;
    height: 3px;
    background: #105b78;
    margin: 14px auto 12px;
    border-radius: 10px;
}

.notices-subtitle {
    margin: 0;
    font-size: 16px;
    color: #777;
}


/* =========================================================
   NOTICE LIST
========================================================= */

.notices-list {
    max-width: 950px;
    margin: 0 auto;
}


/* =========================================================
   NOTICE CARD
========================================================= */

.notice-card {
    display: flex;
    align-items: center;

    width: 100%;

    padding: 20px 24px;
    margin-bottom: 16px;

    background: #ffffff;

    border: 1px solid #e5e5e5;
    border-radius: 8px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);

    transition: all 0.25s ease;
}


.notice-card:hover {
    transform: translateY(-2px);

    border-color: #105b78;

    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   ICON
========================================================= */

.notice-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 6px;

    background: #fff3e8;

    color: #105b78;

    font-size: 22px;
}


/* =========================================================
   CONTENT
========================================================= */

.notice-content {
    flex: 1;

    padding: 0 18px;
}

.notice-label {
    display: block;

    margin-bottom: 4px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    color: #105b78;
}

.notice-content h3 {
    margin: 0;

    font-size: 17px;
    font-weight: 600;

    color: #333;
}


/* =========================================================
   ARROW
========================================================= */

.notice-arrow {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #777;

    font-size: 18px;

    transition: all 0.25s ease;
}

.notice-card:hover .notice-arrow {
    color: #105b78;
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .notices-section {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .notices-title {
        font-size: 30px;
    }

    .notices-list {
        max-width: 100%;
    }

    .notice-card {
        padding: 18px 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .notices-section {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .notices-heading {
        margin-bottom: 30px !important;
    }

    .notices-title {
        font-size: 25px;
    }

    .notices-subtitle {
        font-size: 14px;
    }

    .notice-card {
        padding: 15px;
        margin-bottom: 12px;
    }

    .notice-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 19px;
    }

    .notice-content {
        padding: 0 12px;
    }

    .notice-content h3 {
        font-size: 15px;
        line-height: 1.4;
    }

    .notice-label {
        font-size: 9px;
    }

    .notice-arrow {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

}

/* =========================================================
   ACADEMIC YEAR 2025-26 - PLACED STUDENTS
   DESKTOP + TABLET + MOBILE RESPONSIVE
========================================================= */

.placement-students-section {
    padding: 45px 0 60px;
    background: #fff;
}

/* =========================================================
   BREADCRUMB
========================================================= */

.placement-breadcrumb {
    background: #fff;
}

.placement-breadcrumb .breadcrumb {
    margin: 0;
}

.placement-breadcrumb .breadcrumb-item a {
    color: #105b78;
    text-decoration: none;
    font-weight: 600;
}

.placement-breadcrumb .breadcrumb-item.active {
    color: #666;
}

/* =========================================================
   HEADING
========================================================= */

.placement-heading {
    text-align: center;
    margin-bottom: 30px;
}

.placement-heading h1 {
    margin: 0;
    color: #105b78;
    font-size: 32px;
    font-weight: 700;
}

.placement-heading p {
    margin: 8px 0 0;
    color: #666;
    font-size: 16px;
}

.placement-title-line {
    width: 65px;
    height: 3px;
    background: #105b78;
    border-radius: 10px;
    margin: 12px auto 0;
}

/* =========================================================
   SEARCH
========================================================= */

.placement-search-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.placement-search {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 48px;
}

.placement-search input {
    width: 100%;
    height: 100%;

    padding: 0 45px;

    border: 1px solid #d8d8d8;
    border-radius: 8px;

    outline: none;

    background: #fff;
    color: #333;

    font-size: 15px;

    transition: 0.2s ease;
}

.placement-search input:focus {
    border-color: #105b78;
    box-shadow: 0 0 0 3px rgba(16, 91, 120, 0.10);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: #105b78;
    font-size: 17px;

    z-index: 2;
}

#clearSearch {
    position: absolute;
    right: 10px;
    top: 50%;

    transform: translateY(-50%);

    width: 30px;
    height: 30px;

    display: none;
    align-items: center;
    justify-content: center;

    border: 0;
    background: transparent;

    color: #777;
    cursor: pointer;
}

#clearSearch:hover {
    color: #105b78;
}

/* =========================================================
   COUNT
========================================================= */

.placement-count {
    margin-top: 10px;

    text-align: center;

    color: #666;
    font-size: 14px;
}

/* =========================================================
   TABLE WRAPPER
========================================================= */

.placement-table-wrapper {
    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    border: 1px solid #e1e1e1;
    border-radius: 8px;

    background: #fff;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);

    -webkit-overflow-scrolling: touch;
}

/* =========================================================
   TABLE
========================================================= */

.placement-table {
    width: 100%;
    min-width: 780px;

    margin: 0;

    border-collapse: collapse;
}

.placement-table thead th {
    background: #105b78;
    color: #fff;

    padding: 14px 10px;

    border: 1px solid #0d4d66;

    text-align: center;
    vertical-align: middle;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;
}

.placement-table tbody td {
    padding: 12px 10px;

    border: 1px solid #e5e5e5;

    background: #fff;

    color: #444;

    text-align: center;
    vertical-align: middle;

    font-size: 14px;
}

.placement-table tbody tr:hover td {
    background: #f5f9fb;
}

/* Student name + company */

.placement-table tbody td:nth-child(2),
.placement-table tbody td:nth-child(4) {
    text-align: left;
}

/* Package */

.placement-table tbody td:nth-child(5) {
    color: #105b78;
    font-weight: 600;
    white-space: nowrap;
}

/* Date */

.placement-table tbody td:nth-child(6) {
    white-space: nowrap;
}

/* =========================================================
   NO RESULTS
========================================================= */

.placement-no-results {
    display: none;

    padding: 30px 15px;

    text-align: center;

    color: #777;

    font-size: 15px;

    border: 1px solid #e5e5e5;
}

/* =========================================================
   PAGINATION
========================================================= */

.placement-pagination-wrapper {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 28px;
}

#placementPagination {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 6px;

    margin: 0;
    padding: 0;
}

#placementPagination .page-item {
    list-style: none;
}

#placementPagination .page-link {
    min-width: 38px;
    height: 38px;

    padding: 0 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid #d7d7d7;
    border-radius: 6px !important;

    background: #fff;
    color: #105b78;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.2s ease;
}

#placementPagination .page-link:hover {
    background: #f1f6f8;
    border-color: #105b78;
}

#placementPagination .page-item.active .page-link {
    background: #105b78;
    border-color: #105b78;
    color: #fff;
}

#placementPagination .page-item.disabled .page-link {
    background: #f5f5f5;
    border-color: #ddd;
    color: #aaa;

    pointer-events: none;
}

/* =========================================================
   LARGE TABLET
   992px - 1199px
========================================================= */

@media (max-width: 1199px) {

    .placement-students-section {
        padding: 40px 0 50px;
    }

    .placement-heading h1 {
        font-size: 30px;
    }

    .placement-table {
        min-width: 760px;
    }

    .placement-table thead th {
        padding: 12px 8px;
        font-size: 13px;
    }

    .placement-table tbody td {
        padding: 11px 8px;
        font-size: 13px;
    }
}

/* =========================================================
   TABLET
   768px - 991px
========================================================= */

@media (max-width: 991px) {

    .placement-students-section {
        padding: 35px 15px 45px;
    }

    .placement-heading {
        margin-bottom: 25px;
    }

    .placement-heading h1 {
        font-size: 27px;
    }

    .placement-heading p {
        font-size: 15px;
    }

    .placement-search {
        max-width: 520px;
    }

    .placement-table {
        min-width: 740px;
    }

    .placement-table thead th {
        padding: 11px 7px;
        font-size: 12.5px;
    }

    .placement-table tbody td {
        padding: 10px 7px;
        font-size: 12.5px;
    }

    .placement-pagination-wrapper {
        margin-top: 24px;
    }
}

/* =========================================================
   MOBILE
   576px - 767px
========================================================= */

@media (max-width: 767px) {

    .placement-students-section {
        padding: 30px 12px 40px;
    }

    /* Breadcrumb */

    .placement-breadcrumb {
        padding: 11px 10px !important;
    }

    .placement-breadcrumb .breadcrumb {
        justify-content: center;
        text-align: center;

        font-size: 13px;

        line-height: 1.5;

        flex-wrap: wrap;
    }

    /* Heading */

    .placement-heading {
        margin-bottom: 22px;
    }

    .placement-heading h1 {
        font-size: 23px;
        line-height: 1.3;
    }

    .placement-heading p {
        font-size: 14px;
        line-height: 1.5;
    }

    .placement-title-line {
        width: 50px;
        height: 2px;
        margin-top: 9px;
    }

    /* Search */

    .placement-search {
        width: 100%;
        max-width: 100%;
        height: 44px;
    }

    .placement-search input {
        font-size: 14px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .search-icon {
        left: 13px;
        font-size: 15px;
    }

    /* =====================================================
       TABLE REMAINS TABLE
       No card conversion
    ===================================================== */

    .placement-table-wrapper {
        width: 100%;

        overflow-x: auto;
        overflow-y: hidden;

        border-radius: 7px;

        scrollbar-width: thin;
    }

    .placement-table {
        width: 100%;
        min-width: 700px;
    }

    .placement-table thead th {
        padding: 10px 7px;
        font-size: 12px;
    }

    .placement-table tbody td {
        padding: 10px 7px;
        font-size: 12px;
        line-height: 1.35;
    }

    /* Pagination */

    .placement-pagination-wrapper {
        margin-top: 22px;
        padding: 0 5px;
    }

    #placementPagination {
        gap: 4px;
    }

    #placementPagination .page-link {
        min-width: 34px;
        height: 34px;

        padding: 0 7px;

        font-size: 12px;
    }
}

/* =========================================================
   SMALL MOBILE
   Below 576px
========================================================= */

@media (max-width: 575px) {

    .placement-students-section {
        padding: 25px 10px 35px;
    }

    .placement-heading h1 {
        font-size: 21px;
    }

    .placement-heading p {
        font-size: 13px;
    }

    .placement-search {
        height: 42px;
    }

    .placement-search input {
        font-size: 13px;
        padding-left: 38px;
        padding-right: 38px;
    }

    .placement-table {
        min-width: 680px;
    }

    .placement-table thead th {
        padding: 9px 6px;
        font-size: 11.5px;
    }

    .placement-table tbody td {
        padding: 9px 6px;
        font-size: 11.5px;
    }

    .placement-count {
        font-size: 12px;
    }

    /* Pagination fits small screen */

    #placementPagination {
        gap: 3px;
    }

    #placementPagination .page-link {
        min-width: 31px;
        height: 31px;

        padding: 0 6px;

        font-size: 11.5px;
    }
}

/* =========================================================
   VERY SMALL MOBILE
   Below 400px
========================================================= */

@media (max-width: 400px) {

    .placement-students-section {
        padding-left: 8px;
        padding-right: 8px;
    }

    .placement-heading h1 {
        font-size: 19px;
    }

    .placement-heading p {
        font-size: 12px;
    }

    .placement-table {
        min-width: 650px;
    }

    .placement-table thead th,
    .placement-table tbody td {
        padding: 8px 5px;
        font-size: 11px;
    }

    #placementPagination .page-link {
        min-width: 29px;
        height: 29px;

        font-size: 11px;
    }
}

/* academic year 2025-26 - 26-may-2026
academic year 2025-26 - 13-may-2026
same css for 2 pages */





/* =========================================================
   BREADCRUMB
========================================================= */

.placement-photo-breadcrumb {
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding-top: 90px !important;
    padding-bottom: 15px;
}

.placement-photo-breadcrumb .breadcrumb {
    font-size: 14px;
    margin-bottom: 0;
}

.placement-photo-breadcrumb .breadcrumb-item a {
    color: #105b78;
    font-weight: 500;
}

.placement-photo-breadcrumb .breadcrumb-item.active {
    color: #555555;
}


/* =========================================================
   PAGE HEADING
========================================================= */

.placement-photo-heading-section {
    position: relative;
    z-index: 1;
    padding: 35px 15px 25px;
    background: #ffffff;
}

.placement-photo-heading {
    text-align: center;
}

.placement-photo-heading h1 {
    margin: 0;
    color: #105b78;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}

.placement-photo-heading p {
    margin: 10px 0 0;
    color: #555555;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}


/* =========================================================
   PHOTO GALLERY SECTION
========================================================= */

.placement-photo-gallery-section {
    position: relative;
    z-index: 1;
    padding: 20px 15px 60px;
    background: #ffffff;
}

.placement-photo-gallery-section .container {
    max-width: 1200px;
}


/* =========================================================
   PHOTO CARD
========================================================= */

.placement-photo-card {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.placement-photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}


/* =========================================================
   PHOTO WRAPPER
========================================================= */

.placement-photo-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f5f5f5;
    cursor: pointer;
}


/* =========================================================
   PHOTO
========================================================= */

.placement-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.placement-photo-card:hover .placement-photo {
    transform: scale(1.05);
}


/* =========================================================
   LIGHTBOX
========================================================= */

.placement-photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    padding: 50px 70px;

    background: rgba(0, 0, 0, 0.90);
}

.placement-photo-lightbox.show {
    display: flex;
}

.placement-photo-lightbox img {
    display: block;
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}


/* =========================================================
   LIGHTBOX BUTTONS
========================================================= */

.placement-lightbox-close,
.placement-lightbox-prev,
.placement-lightbox-next {
    position: absolute;

    border: none;
    outline: none;

    background: transparent;
    color: #ffffff;

    cursor: pointer;

    line-height: 1;

    transition: opacity 0.2s ease;
}

.placement-lightbox-close:hover,
.placement-lightbox-prev:hover,
.placement-lightbox-next:hover {
    opacity: 0.7;
}

.placement-lightbox-close {
    top: 20px;
    right: 30px;
    font-size: 45px;
}

.placement-lightbox-prev {
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 38px;
}

.placement-lightbox-next {
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 38px;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .placement-photo-wrapper {
        height: 270px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .placement-photo-breadcrumb {
        padding-top: 100px !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .placement-photo-heading-section {
        padding: 30px 15px 25px;
    }

    .placement-photo-heading h1 {
        font-size: 28px;
    }

    .placement-photo-heading p {
        font-size: 17px;
    }

    .placement-photo-wrapper {
        height: 250px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .placement-photo-breadcrumb {
        padding-top: 110px !important;
        padding-left: 10px;
        padding-right: 10px;
    }

    .placement-photo-breadcrumb .breadcrumb {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

        font-size: 12px;
        line-height: 1.8;
        text-align: center;
    }

    .placement-photo-heading-section {
        padding: 25px 15px 20px;
    }

    .placement-photo-heading h1 {
        font-size: 24px;
    }

    .placement-photo-heading p {
        margin-top: 8px;
        font-size: 16px;
        line-height: 1.5;
    }

    .placement-photo-gallery-section {
        padding: 15px 15px 45px;
    }

    .placement-photo-wrapper {
        height: 240px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .placement-photo-breadcrumb {
        padding-top: 110px !important;
    }

    .placement-photo-heading h1 {
        font-size: 22px;
    }

    .placement-photo-heading p {
        font-size: 15px;
    }

    .placement-photo-wrapper {
        height: 220px;
    }

    .placement-photo-lightbox {
        padding: 40px 15px;
    }

    .placement-photo-lightbox img {
        max-width: 95%;
        max-height: 80vh;
    }

    .placement-lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 38px;
    }

    .placement-lightbox-prev {
        left: 8px;
        font-size: 30px;
    }

    .placement-lightbox-next {
        right: 8px;
        font-size: 30px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .placement-photo-breadcrumb {
        padding-top: 110px !important;
    }

    .placement-photo-heading h1 {
        font-size: 20px;
    }

    .placement-photo-heading p {
        font-size: 14px;
    }

    .placement-photo-wrapper {
        height: 200px;
    }

}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-breadcrumb-section {
    background: #ffffff;
}

.contact-breadcrumb-section .breadcrumb {
    font-size: 14px;
}

.contact-breadcrumb-section .breadcrumb a {
    color: #1f4e79;
    font-weight: 500;
}

.contact-breadcrumb-section .breadcrumb-item.active {
    color: #6c757d;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    background: #ffffff;
}


/* =========================================================
   PAGE HEADING
========================================================= */

.contact-title {
    margin: 0 0 5px;
    font-size: 27px;
    font-weight: 700;
    color: #1f4e79;
    text-transform: uppercase;
}

.contact-subtitle {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-information {
    background: #ffffff;
    border: 1px solid #e1e5e8;
    border-radius: 6px;
    padding: 28px 30px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}


/* =========================================================
   CONTACT INFORMATION TITLE
========================================================= */

.contact-information-title {
    margin: 0 0 22px;
    padding-bottom: 12px;

    border-bottom: 1px solid #e5e5e5;

    font-size: 20px;
    font-weight: 700;
    color: #1f4e79;
    text-transform: uppercase;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 14px 0;

    border-bottom: 1px solid #eeeeee;
}

.contact-detail:last-child {
    border-bottom: none;
}


/* =========================================================
   ICON
========================================================= */

.contact-icon {
    min-width: 42px;
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1f5f8;
    color: #1f4e79;

    font-size: 18px;
}


/* =========================================================
   DETAILS TEXT
========================================================= */

.contact-detail h5 {
    margin: 0 0 5px;

    font-size: 15.5px;
    font-weight: 700;

    color: #333333;
}

.contact-detail p {
    margin: 0;

    font-size: 15px;
    line-height: 1.6;

    color: #666666;
}


/* =========================================================
   LOCATION
========================================================= */

.contact-location {
    background: #ffffff;

    border: 1px solid #e1e5e8;
    border-radius: 6px;

    padding: 28px 30px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);

    display: flex;
    flex-direction: column;
}


/* =========================================================
   LOCATION TITLE
========================================================= */

.location-title {
    margin: 0 0 20px;
    padding-bottom: 12px;

    border-bottom: 1px solid #e5e5e5;

    font-size: 20px;
    font-weight: 700;

    color: #1f4e79;
    text-transform: uppercase;
}


/* =========================================================
   GOOGLE MAP
========================================================= */

.contact-map {
    width: 100%;
    flex: 1;

    min-height: 350px;

    overflow: hidden;

    border-radius: 5px;
}

.contact-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 350px;

    border: 0;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991.98px) {

    .contact-location {
        min-height: auto;
    }

    .contact-map {
        min-height: 320px;
    }

    .contact-map iframe {
        min-height: 320px;
    }
}


@media (max-width: 767.98px) {

    .contact-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .contact-title {
        font-size: 22px;
    }

    .contact-subtitle {
        font-size: 13px;
    }

    .contact-information,
    .contact-location {
        padding: 20px 17px;
    }

    .contact-information-title,
    .location-title {
        font-size: 18px;
    }

    .contact-detail {
        gap: 12px;
        padding: 12px 0;
    }

    .contact-icon {
        min-width: 38px;
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .contact-detail h5 {
        font-size: 13px;
    }

    .contact-detail p {
        font-size: 13px;
    }

    .contact-map {
        min-height: 280px;
    }

    .contact-map iframe {
        min-height: 280px;
    }
}


/* =========================================================
   ADMISSION ENQUIRY PAGE
========================================================= */

.admission-enquiry-section {
    background: #f8fafc;
}

/* Page Heading */
.admission-enquiry-title {
    color: #105b78;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.admission-enquiry-subtitle {
    color: #6c757d;
    font-size: 15px;
}

/* Main Form Box */
.admission-enquiry-box {
    background: #ffffff;
    border: 1px solid #e3e8ec;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
}

/* Labels */
.admission-form .form-label {
    color: #343a40;
    font-size: 15.5px;
    font-weight: 600;
    margin-bottom: 7px;
}

.admission-form .form-label span {
    color: #dc3545;
}

/* Inputs + Select + Textarea */
.admission-form .form-control,
.admission-form .form-select {
    min-height: 45px;
    border: 1px solid #ced4da;
    border-radius: 7px;
    padding: 10px 13px;
    font-size: 14px;
    color: #343a40;
    background-color: #fff;
    box-shadow: none;
    transition: all 0.2s ease;
}

.admission-form textarea.form-control {
    min-height: auto;
    resize: vertical;
}

/* Placeholder */
.admission-form .form-control::placeholder {
    color: #9aa3aa;
    font-size: 13px;
}

/* Focus */
.admission-form .form-control:focus,
.admission-form .form-select:focus {
    border-color: #105b78;
    box-shadow: 0 0 0 0.15rem rgba(16, 91, 120, 0.12);
}

/* Submit Button */
.admission-submit-btn {
    background: #105b78;
    color: #ffffff;
    border: none;
    border-radius: 7px;
    padding: 11px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.admission-submit-btn:hover {
    background: #0c4860;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(16, 91, 120, 0.20);
}

.admission-submit-btn:active {
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767.98px) {

    .admission-enquiry-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .admission-enquiry-title {
        font-size: 24px;
    }

    .admission-enquiry-subtitle {
        font-size: 13px;
        padding: 0 10px;
    }

    .admission-enquiry-box {
        padding: 20px 16px;
        border-radius: 10px;
    }

    .admission-form .form-label {
        font-size: 13px;
    }

    .admission-form .form-control,
    .admission-form .form-select {
        min-height: 43px;
        font-size: 13px;
    }

    .admission-submit-btn {
        width: 100%;
        padding: 11px 20px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {

    .admission-enquiry-box {
        padding: 25px;
    }

    .admission-enquiry-title {
        font-size: 27px;
    }
}


/* =========================================================
   ONLINE GRIEVANCE REDRESSAL
========================================================= */

.online-grievance-breadcrumb {
    background: #fff;
}

.online-grievance-breadcrumb .breadcrumb {
    margin-bottom: 0;
    font-size: 14px;
}

.online-grievance-breadcrumb .breadcrumb-item a {
    color: #1f4e79;
}

.online-grievance-breadcrumb .breadcrumb-item.active {
    color: #6c757d;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.online-grievance-section {
    background: #fff;
}


/* =========================================================
   PAGE HEADING
========================================================= */

.grievance-title {
    color: #1f4e79;
    font-size: 26px;
    font-weight: 700;
}

.grievance-subtitle {
    color: #6c757d;
    font-size: 14px;
}


/* =========================================================
   FORM WRAPPER
========================================================= */

.grievance-form-wrapper {
    background: #fff;
    padding: 28px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


/* =========================================================
   LABEL
========================================================= */

.grievance-form-wrapper .form-label {
    font-size: 15.5px;
    color: #333;
    margin-bottom: 6px;
}


/* =========================================================
   INPUT / SELECT
========================================================= */

.grievance-form-wrapper .form-control,
.grievance-form-wrapper .form-select {
    font-size: 14px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-shadow: none;
}


/* Remove Bootstrap large input size */

.grievance-form-wrapper .form-control-lg,
.grievance-form-wrapper .form-select-lg {
    min-height: 42px;
    padding: 8px 12px;
    font-size: 14px;
}


/* Focus */

.grievance-form-wrapper .form-control:focus,
.grievance-form-wrapper .form-select:focus {
    border-color: #1f4e79;
    box-shadow: 0 0 0 0.12rem rgba(31, 78, 121, 0.12);
}


/* =========================================================
   TEXTAREA
========================================================= */

.grievance-form-wrapper textarea {
    resize: vertical;
    font-size: 14px;
}


/* =========================================================
   FORM TEXT
========================================================= */

.grievance-form-wrapper .form-text {
    font-size: 12px;
    color: #777;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.grievance-submit {
    background-color: #1f4e79;
    border-color: #1f4e79;
    color: #fff;

    font-size: 14px;
    font-weight: 600;

    padding: 9px 28px;
    border-radius: 4px;

    min-width: 160px;
}

.grievance-submit:hover {
    background-color: #163a5c;
    border-color: #163a5c;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .grievance-form-wrapper {
        padding: 24px;
    }

    .grievance-title {
        font-size: 24px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .online-grievance-section {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

    .grievance-title {
        font-size: 22px;
    }

    .grievance-subtitle {
        font-size: 13px;
    }

    .grievance-form-wrapper {
        padding: 18px;
        border-radius: 5px;
    }

    .grievance-form-wrapper .form-label {
        font-size: 13px;
    }

    .grievance-form-wrapper .form-control,
    .grievance-form-wrapper .form-select {
        font-size: 13px;
    }

    .grievance-form-wrapper .form-control-lg,
    .grievance-form-wrapper .form-select-lg {
        min-height: 40px;
        padding: 7px 10px;
        font-size: 13px;
    }

    .grievance-submit {
        font-size: 13px;
        padding: 8px 22px;
        min-width: 145px;
    }

}




/* =====================================
   FOOTER
===================================== */

.footer-section {
    background: #075574;
    color: #ffffff;
    /* padding-top: 45px; */
}


/* =====================================
   FOOTER TITLE
===================================== */

.footer-title {
    position: relative;
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 22px;
    padding-bottom: 10px;
}


/* Small underline */

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 45px;
    height: 3px;

    background: #ffffff;
}


/* =====================================
   FOOTER LINKS
===================================== */

.footer-links li {
    margin-bottom: 10px;
}


.footer-links li a {
    color: #ffffff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition: all 0.3s ease;
}


.footer-links li a::before {
    content: "›";
    margin-right: 8px;
    font-size: 18px;
}


.footer-links li a:hover {
    padding-left: 5px;
    color: #e8f6ff;
}


/* =====================================
   CONTACT
===================================== */

.contact-info p {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.7;

    margin-bottom: 13px;
}


.contact-info p i {
    min-width: 20px;
    margin-top: 4px;

    font-size: 15px;
}


.contact-info p span {
    flex: 1;
}


.contact-info strong {
    font-weight: 700;
}


.contact-info a {
    color: #ffffff;
    text-decoration: none;
}


.contact-info a:hover {
    text-decoration: underline;
}


/* =====================================
   SOCIAL ICONS
===================================== */

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


.social-icons a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    font-size: 18px;

    transition: all 0.3s ease;
}


.social-icons a:hover {
    background: #ffffff;
    color: #075574;
    transform: translateY(-3px);
}


/* =====================================
   FOOTER BOTTOM
===================================== */

.footer-bottom {
    /* margin-top: 35px; */

    padding: 16px 0;

    background: #05455f;

    border-top: 1px solid rgba(255,255,255,0.2);
}


.footer-bottom p {
    color: #ffffff;

    font-size: 15px;
    line-height: 1.6;
}


.footer-bottom a {
    color: #ffffff;

    text-decoration: none;

    font-weight: 600;
}


.footer-bottom a:hover {
    text-decoration: underline;
}


.heart {
    color: #ff4d6d;
    font-size: 16px;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {

    .footer-section {
        padding-top: 35px;
    }

    .footer-title {
        font-size: 18px;
    }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 576px) {

    .footer-section {
        padding-top: 30px;
    }

    .footer-title {
        font-size: 17px;
        margin-bottom: 18px;
    }

    .footer-links li a {
        font-size: 13px;
    }

    .contact-info p {
        font-size: 13px;
    }

    .social-icons {
        margin-bottom: 10px;
    }

    .footer-bottom {
        margin-top: 20px;
        padding: 14px 10px;
    }

    .footer-bottom p {
        font-size: 12px;
        margin-bottom: 5px !important;
    }

}



  
        /* =========================================================
   FACULTY FEEDBACK PAGE
========================================================= */

        .faculty-feedback-page {
            background: #f4f8fa;
            min-height: 100vh;
            padding: 35px 0 50px;
        }


        /* =========================================================
   PAGE TITLE
========================================================= */

        .survey-title {
            color: #105b78;
            font-size: 30px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 8px;
        }

        .survey-subtitle {
            color: #333;
            font-size: 18px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 8px;
        }

        .survey-description {
            color: #555;
            font-size: 15px;
            text-align: center;
            margin-bottom: 25px;
        }


        /* =========================================================
   MAIN CARD
========================================================= */

        .feedback-card {
            border: 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(16, 91, 120, 0.10);
        }

        .feedback-card-header {
            background: #105b78;
            color: white;
            padding: 16px 20px;
            font-size: 18px;
            font-weight: 600;
        }

        .feedback-card .card-body {
            padding: 30px;
        }


        /* =========================================================
   FORM SECTION
========================================================= */

        .survey-section {
            background: white;
            border: 1px solid #dce7eb;
            border-radius: 12px;
            padding: 22px;
            margin-bottom: 25px;
        }

        .feedback-section-title {
            color: #105b78;
            font-size: 18px;
            font-weight: 700;
            padding-bottom: 10px;
            margin-bottom: 22px;
            border-bottom: 2px solid #dce7eb;
            letter-spacing: .3px;
        }


        /* =========================================================
   FORM CONTROLS
========================================================= */

        .form-label {
            color: #333;
            font-size: 15px;
            margin-bottom: 8px;
        }

        .form-control,
        .form-select {
            min-height: 45px;
            border: 1px solid #cfdde2;
            border-radius: 8px;
            font-size: 15px;
            padding: 10px 13px;
            box-shadow: none;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: #105b78;
            box-shadow: 0 0 0 0.18rem rgba(16, 91, 120, 0.12);
        }


        /* =========================================================
   RATING INSTRUCTION
========================================================= */

        .rating-instruction {
            background: #f9fbfc;
            border: 1px solid #e2ebee;
            border-radius: 10px;
            padding: 13px 16px;
            margin-bottom: 20px;
            color: #444;
            font-size: 14px;
        }

        .rating-instruction strong {
            color: #105b78;
        }


        /* =========================================================
   FEEDBACK QUESTION
========================================================= */

        .feedback-question {
            background: #f9fbfc;
            border: 1px solid #e2ebee;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .feedback-question:last-child {
            margin-bottom: 0;
        }

        .feedback-question .form-label {
            line-height: 1.7;
            margin-bottom: 0;
            font-weight: 600;
        }


        /* =========================================================
   STAR RATING
========================================================= */

        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 6px;
            margin-top: 14px;
        }

        .star-rating input {
            display: none;
        }

        .star-rating label {
            width: 46px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #d3d9dc;
            font-size: 34px;
            line-height: 1;
            transition: all 0.2s ease;
        }

        .star-rating label:hover,
        .star-rating label:hover~label,
        .star-rating input:checked~label {
            color: #ffc107;
        }

        .star-rating label:hover {
            transform: scale(1.08);
        }


        /* =========================================================
   SUGGESTION
========================================================= */

        .suggestion-box {
            min-height: 120px;
            resize: vertical;
        }


        /* =========================================================
   BUTTONS
========================================================= */

        .feedback-actions {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 10px;
        }

        .submit-btn {
            background: #105b78;
            color: white;
            border: 1px solid #105b78;
            border-radius: 8px;
            padding: 11px 25px;
            font-size: 15px;
            font-weight: 600;
        }

        .submit-btn:hover {
            background: #0d4d65;
            color: white;
            border-color: #0d4d65;
        }

        .reset-btn {
            background: white;
            color: #105b78;
            border: 1px solid #105b78;
            border-radius: 8px;
            padding: 11px 25px;
            font-size: 15px;
            font-weight: 600;
        }

        .reset-btn:hover {
            background: #105b78;
            color: white;
        }


        /* =========================================================
   RESPONSIVE
========================================================= */

        @media (max-width: 991px) {

            .faculty-feedback-page {
                padding: 30px 0 40px;
            }

            .survey-title {
                font-size: 27px;
            }

            .feedback-card .card-body {
                padding: 25px;
            }

            .survey-section {
                padding: 20px;
            }

        }


        /* =========================================================
   TABLET
========================================================= */

        @media (max-width: 767px) {

            .faculty-feedback-page {
                padding: 25px 10px 35px;
            }

            .survey-title {
                font-size: 24px;
            }

            .survey-subtitle {
                font-size: 16px;
            }

            .survey-description {
                font-size: 14px;
            }

            .feedback-card {
                border-radius: 12px;
            }

            .feedback-card-header {
                padding: 14px 16px;
                font-size: 17px;
            }

            .feedback-card .card-body {
                padding: 18px;
            }

            .survey-section {
                padding: 17px;
                margin-bottom: 20px;
            }

            .feedback-section-title {
                font-size: 17px;
                margin-bottom: 18px;
            }

            .feedback-question {
                padding: 16px;
            }

            .feedback-question .form-label {
                font-size: 14px;
            }

            .star-rating {
                gap: 4px;
            }

            .star-rating label {
                width: 40px;
                height: 38px;
                font-size: 30px;
            }

        }


        /* =========================================================
   MOBILE
========================================================= */

        @media (max-width: 575px) {

            .faculty-feedback-page {
                padding: 20px 10px 30px;
            }

            .survey-title {
                font-size: 22px;
                line-height: 1.3;
            }

            .survey-subtitle {
                font-size: 15px;
            }

            .survey-description {
                font-size: 13px;
                line-height: 1.6;
            }

            .feedback-card-header {
                font-size: 16px;
                padding: 13px 14px;
            }

            .feedback-card .card-body {
                padding: 13px;
            }

            .survey-section {
                padding: 15px;
                border-radius: 10px;
                margin-bottom: 18px;
            }

            .feedback-section-title {
                font-size: 16px;
                margin-bottom: 16px;
                padding-bottom: 8px;
            }

            .form-label {
                font-size: 14px;
            }

            .form-control,
            .form-select {
                min-height: 43px;
                font-size: 14px;
            }

            .rating-instruction {
                font-size: 12.5px;
                line-height: 1.6;
                padding: 11px 12px;
            }

            .feedback-question {
                padding: 14px;
                margin-bottom: 15px;
            }

            .feedback-question .form-label {
                font-size: 13.5px;
                line-height: 1.6;
            }

            .star-rating {
                justify-content: center;
                gap: 3px;
                margin-top: 12px;
            }

            .star-rating label {
                width: 38px;
                height: 36px;
                font-size: 28px;
            }

            .feedback-actions {
                flex-direction: column;
            }

            .submit-btn,
            .reset-btn {
                width: 100%;
            }

        }


        /* =========================================================
   VERY SMALL MOBILE
========================================================= */

        @media (max-width: 400px) {

            .faculty-feedback-page {
                padding: 18px 7px 25px;
            }

            .survey-title {
                font-size: 20px;
            }

            .survey-subtitle {
                font-size: 14px;
            }

            .feedback-card .card-body {
                padding: 10px;
            }

            .survey-section {
                padding: 13px;
            }

            .feedback-question {
                padding: 12px;
            }

            .feedback-question .form-label {
                font-size: 13px;
            }

            .star-rating {
                gap: 2px;
            }

            .star-rating label {
                width: 34px;
                height: 34px;
                font-size: 25px;
            }

        }
    

    /* PARENT FEEDBACK */

    .parent-view-page {
        width: 90%;
        margin: auto;
        padding: 25px 0 40px;
    }

    .view-title {
        background: #105b78;
        color: white;
        padding: 12px;
        text-align: center;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .feedback-card {
        background: white;
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .section-title {
        background: #105b78;
        color: white;
        padding: 9px 12px;
        border-radius: 6px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .info-row {
        padding: 10px;
        border-bottom: 1px solid #eee;
        line-height: 1.5;
        overflow-wrap: break-word;
    }

    .info-label {
        font-weight: 600;
        color: #105b78;
    }

    .stars {
        color: #ffc107;
        font-size: 21px;
        letter-spacing: 2px;
        margin-top: 4px;
    }

    .suggestion-box {
        background: #f4f8fa;
        padding: 15px;
        border-radius: 8px;
        min-height: 70px;
        overflow-wrap: break-word;
    }

    .back-btn {
        background: #105b78;
        color: white;
        padding: 9px 18px;
        border-radius: 6px;
        text-decoration: none;
        display: inline-block;
    }

    .back-btn:hover {
        background: #0c455c;
        color: white;
    }


    @media(max-width:767px) {

        .parent-view-page {
            width: 100%;
            padding: 20px 10px 30px;
        }

        .view-title {
            font-size: 19px;
        }

        .feedback-card {
            padding: 15px;
        }

        .section-title {
            font-size: 15px;
        }

        .info-row {
            width: 100%;
            padding: 9px 5px;
            font-size: 14px;
        }

        .stars {
            font-size: 20px;
        }

    }



   /* Institute Facilities Feedback */

    .facility-feedback-page {
        width: 78%;
        margin: auto;
        padding: 30px 0 50px;
    }

    .feedback-title {
        /* background: #105b78; */
        color: #105b78;
        text-align: center;
        /* padding: 5px 10px; */
        border-radius: 8px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .feedback-subtitle {
        text-align: center;
        color: #666;
        margin-bottom: 55px;
        font-size: 13px;
    }

    .feedback-card {
        background: white;
        border-radius: 10px;
        padding: 22px;
        margin-bottom: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .section-title {
        background: #105b78;
        color: white;
        padding: 10px 14px;
        border-radius: 6px;
        margin-bottom: 20px;
        font-weight: 600;
        font-size: 17px;
    }

    /* =========================
       QUESTION
    ========================= */

    .feedback-question {
        background: #f8fafb;
        border: 1px solid #e1e8eb;
        border-radius: 8px;
        padding: 16px;
        margin-bottom: 16px;
    }

    .question-text {
        font-weight: 600;
        color: #333;
        line-height: 1.5;
        margin-bottom: 13px;
    }

    .required {
        color: #dc3545;
    }

    /* =========================
       RATING OPTIONS
    ========================= */

    .rating-options {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .rating-option {
        position: relative;
    }

    .rating-option input {
        display: none;
    }

    .rating-option label {
        display: inline-block;
        border: 1px solid #b9cbd2;
        border-radius: 6px;
        padding: 8px 18px;
        min-width: 105px;
        text-align: center;
        cursor: pointer;
        background: white;
        color: #444;
        font-size: 14px;
        transition: 0.2s;
    }

    .rating-option label:hover {
        border-color: #105b78;
        color: #105b78;
    }

    .rating-option input:checked + label {
        background: #105b78;
        color: white;
        border-color: #105b78;
    }

    .suggestion-box {
        width: 100%;
        border-radius: 6px;
    }

    .submit-btn {
        background: #105b78;
        color: white;
        border: none;
        padding: 11px 30px;
        border-radius: 6px;
        font-weight: 600;
    }

    .submit-btn:hover {
        background: #0c455c;
        color: white;
    }

    /* =========================
       TABLET
    ========================= */

    @media (min-width:768px) and (max-width:991px) {

        .facility-feedback-page {
            width: 80%;
        }

        .feedback-card {
            padding: 18px;
        }

    }

    /* =========================
       MOBILE
    ========================= */

    @media(max-width:767px) {

        .facility-feedback-page {
            width: 80%;
            padding: 20px 10px 35px;
        }

        .feedback-title {
            font-size: 19px;
            padding: 12px 8px;
        }

        .feedback-subtitle {
            font-size: 14px;
        }

        .feedback-card {
            padding: 15px;
        }

        .section-title {
            font-size: 15px;
            padding: 9px 10px;
        }

        .feedback-question {
            padding: 13px;
        }

        .question-text {
            font-size: 14px;
        }

        .rating-options {
            gap: 7px;
        }

        .rating-option {
            width: 100%;
        }

        .rating-option label {
            width: 100%;
            padding: 9px 10px;
        }

        .submit-btn {
            width: 100%;
        }

    }

