﻿@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700;800&display=swap');
.top-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    border-top: 4px solid #0d47a1;
}

.logo {
    height: 75px;
}

.top-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    font-weight: 600;
}

    .top-info i {
        color: #0d6efd;
        margin-right: 8px;
    }

.menu-bar {
    background: #0d47a1;
}

    .menu-bar .nav-link {
        color: #fff!important;
        padding: 18px 14px!important;
        font-weight: 600;
    }

        .menu-bar .nav-link:hover {
            background: #ff9800;
        }

    .menu-bar .navbar-nav {
        flex-wrap: nowrap;
    }

    .menu-bar .nav-link {
        color: #fff !important;
        padding: 18px 12px !important;
        font-weight: 600;
        white-space: nowrap; /* Text এক লাইনে থাকবে */
    }
/* Slider Height */

#carouselExampleIndicators {
    height: 550px;
}

.slider-img {
    height: 550px;
    object-fit: cover;
    filter: brightness(55%);
}

/* Caption */

.custom-caption {
    top: 50%;
    left: 10%;
    right: auto;
    bottom: auto;
    transform: translateY(-50%);
    text-align: left;
    max-width: 600px;
}

    .custom-caption h1 {
        font-size: 3rem;
        font-weight: 700;
        color: #fff;
    }

    .custom-caption p {
        font-size: 18px;
        color: #f8f9fa;
        margin-top: 15px;
    }

/* Buttons */

.btn-admission {
    background: #ff9800;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

    .btn-admission:hover {
        background: #0d6efd;
        color: #fff;
        transform: translateY(-3px);
    }

.btn-contact {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

    .btn-contact:hover {
        background: #fff;
        color: #0d47a1;
    }

/* Mobile */

@media (max-width:768px) {

    #carouselExampleIndicators {
        height: 320px;
    }

    .slider-img {
        height: 320px;
    }

    .custom-caption {
        left: 20px;
        right: 20px;
        max-width: 100%;
    }

        .custom-caption h1 {
            font-size: 28px;
        }

        .custom-caption p {
            font-size: 14px;
        }

    .btn-admission,
    .btn-contact {
        padding: 10px 18px;
        font-size: 14px;
        margin-bottom: 10px;
    }
}

.school-footer {
    background: #0d2b52;
    color: #fff;
    padding: 70px 0 20px;
}

.footer-logo {
    width: 90px;
}

.school-footer h4,
.school-footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
}

.school-footer p {
    color: #d9d9d9;
    line-height: 1.8;
}

.school-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .school-footer ul li {
        margin-bottom: 12px;
    }

        .school-footer ul li a {
            color: #d9d9d9;
            text-decoration: none;
            transition: .3s;
        }

            .school-footer ul li a:hover {
                color: #ffc107;
                padding-left: 6px;
            }

.school-footer i {
    color: #ffc107;
    margin-right: 8px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

    .social-icons a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,.1);
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        text-decoration: none;
        transition: .35s;
    }

        .social-icons a i {
            margin: 0;
            color: #fff;
        }

        .social-icons a:hover {
            background: #ffc107;
            transform: translateY(-5px);
        }

            .social-icons a:hover i {
                color: #000;
            }

.school-footer hr {
    border-color: rgba(255,255,255,.15);
    margin: 45px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .footer-bottom p {
        margin: 0;
        color: #ddd;
    }

    .footer-bottom strong {
        color: #ffc107;
    }

@media (max-width:768px) {

    .school-footer {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .school-footer h4,
    .school-footer h5 {
        margin-top: 20px;
    }
}
/* Hero Cards */

.hero-cards {
    margin-top: -90px; /* Slider overlap */
    position: relative;
    z-index: 100;
}

.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0,0,0,.12);
    transition: .4s;
    height: 100%;
}

    .info-card:hover {
        transform: translateY(-10px);
    }

.active-card {
    background: linear-gradient(135deg,#0d6efd,#0a58ca);
    color: #fff;
}

    .active-card p,
    .active-card a {
        color: #fff;
    }

.icon-box {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #eef5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
}

    .icon-box i {
        font-size: 32px;
        color: #0d6efd;
    }

.active-card .icon-box {
    background: rgba(255,255,255,.2);
}

    .active-card .icon-box i {
        color: #fff;
    }

.info-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    line-height: 1.8;
}

.info-card a {
    text-decoration: none;
    font-weight: 600;
    color: #0d6efd;
}

@media (max-width:991px) {

    .hero-cards {
        margin-top: -50px;
    }
}

@media (max-width:768px) {

    .hero-cards {
        margin-top: 30px; /* Mobile-এ overlap না করে normal */
    }
}

.news-result {
    background: #f5f8fc;
}

.update-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    height: 100%;
    transition: .3s;
}

    .update-card:hover {
        transform: translateY(-6px);
    }

.card-header-custom {
    background: #0d47a1;
    color: #fff;
    padding: 18px 25px;
    font-size: 22px;
    font-weight: 700;
}

    .card-header-custom.result {
        background: #ff9800;
    }

    .card-header-custom i {
        margin-right: 10px;
    }

.update-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}

    .update-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        gap: 20px;
    }

        .update-list li:last-child {
            border-bottom: none;
        }

    .update-list span {
        min-width: 110px;
        background: #eef4ff;
        color: #0d47a1;
        padding: 6px 10px;
        border-radius: 30px;
        text-align: center;
        font-size: 13px;
        font-weight: 600;
    }

    .update-list a {
        text-decoration: none;
        color: #333;
        font-weight: 600;
        flex: 1;
        transition: .3s;
    }

        .update-list a:hover {
            color: #0d6efd;
            padding-left: 6px;
        }

.view-btn {
    display: block;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    color: #0d47a1;
    text-decoration: none;
    font-weight: 700;
}

    .view-btn:hover {
        background: #0d47a1;
        color: #fff;
    }

@media (max-width:768px) {

    .update-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .update-list span {
        margin-bottom: 8px;
    }
}

.facilities {
    background: #f8fbff;
}

.section-subtitle {
    color: #0d6efd;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0;
}

.section-text {
    color: #666;
    max-width: 700px;
    margin: auto;
}

.facility-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .facility-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: #0d6efd;
        transform: scaleX(0);
        transition: .4s;
    }

    .facility-card:hover::before {
        transform: scaleX(1);
    }

    .facility-card:hover {
        transform: translateY(-10px);
    }

.facility-icon {
    width: 85px;
    height: 85px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #eaf3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

    .facility-icon i {
        font-size: 38px;
        color: #0d6efd;
    }

.facility-card:hover .facility-icon {
    background: #0d6efd;
    transform: rotateY(180deg);
}

    .facility-card:hover .facility-icon i {
        color: #fff;
        transform: rotateY(180deg);
    }

.facility-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.facility-card p {
    color: #666;
    line-height: 1.8;
}

@media (max-width:768px) {

    .section-title {
        font-size: 30px;
    }

    .facility-card {
        padding: 25px 20px;
    }
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: linear-gradient(135deg,#0d6efd,#0a58ca);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(13,110,253,.3);
}

    .view-all-btn i {
        transition: .35s;
    }

    .view-all-btn:hover {
        color: #fff;
        transform: translateY(-5px);
        box-shadow: 0 18px 35px rgba(13,110,253,.4);
    }

        .view-all-btn:hover i {
            transform: translateX(6px);
        }

.about-school {
    background: #fff;
}

.about-img-wrap {
    position: relative;
    padding-right: 70px;
}

.main-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.small-img {
    position: absolute;
    right: 0;
    bottom: 40px;
    width: 230px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,.2);
}

.experience-box {
    position: absolute;
    left: -20px;
    bottom: 30px;
    width: 160px;
    background: #0d6efd;
    color: #fff;
    text-align: center;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(13,110,253,.35);
}

    .experience-box h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 5px;
    }

.section-subtitle {
    color: #0d6efd;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0;
}

.about-text {
    color: #666;
    line-height: 1.9;
}

.about-list {
    list-style: none;
    padding: 0;
}

    .about-list li {
        margin-bottom: 15px;
        font-weight: 600;
    }

    .about-list i {
        color: #0d6efd;
        margin-right: 10px;
    }

.about-btn {
    display: inline-block;
    margin-top: 20px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

    .about-btn:hover {
        background: #ff9800;
        color: #fff;
        transform: translateY(-5px);
    }

@media(max-width:991px) {
    .about-img-wrap;

{
    padding-right: 0;
}

.main-img {
    height: 420px;
}

.small-img {
    width: 170px;
    height: 180px;
    right: 15px;
}

.experience-box {
    left: 15px;
    width: 130px;
    padding: 18px;
}

.section-title {
    font-size: 32px;
}

}

@media (max-width:768px) {

    .main-img {
        height: 300px;
    }

    .small-img {
        display: none;
    }

    .experience-box {
        position: relative;
        left: 0;
        bottom: auto;
        margin-top: 20px;
    }

    .section-title {
        font-size: 28px;
    }
}

.principal-section {
    background: #f8fbff;
}

.principal-img-box {
    position: relative;
    text-align: center;
}

.principal-img {
    width: 100%;
    max-width: 420px;
    height: 520px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0,0,0,.15);
    transition: .4s;
}

    .principal-img:hover {
        transform: translateY(-10px);
    }

.principal-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d6efd;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(13,110,253,.35);
}

    .principal-badge i {
        font-size: 22px;
        margin-right: 8px;
    }

    .principal-badge h5 {
        display: inline;
        margin: 0;
        font-weight: 600;
    }

.principal-text {
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
}

.signature-box {
    border-left: 5px solid #0d6efd;
    padding-left: 18px;
    margin-top: 30px;
}

    .signature-box h4 {
        margin: 0;
        color: #0d47a1;
        font-weight: 700;
    }

    .signature-box span {
        color: #888;
        font-size: 15px;
    }

@media (max-width:991px) {

    .principal-img {
        height: 420px;
    }
}

@media (max-width:768px) {

    .principal-img {
        height: 320px;
    }

    .principal-badge {
        padding: 12px 25px;
    }
}

.academics-section {
    background: #fff;
}

.academic-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    height: 100%;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .35s;
    position: relative;
    overflow: hidden;
}

    .academic-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: #0d6efd;
        transform: scaleX(0);
        transition: .35s;
    }

    .academic-card:hover::before {
        transform: scaleX(1);
    }

    .academic-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 45px rgba(0,0,0,.12);
    }

.academic-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #eef5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

    .academic-icon i {
        font-size: 40px;
        color: #0d6efd;
    }

.academic-card:hover .academic-icon {
    background: #0d6efd;
    transform: rotateY(180deg);
}

    .academic-card:hover .academic-icon i {
        color: #fff;
        transform: rotateY(180deg);
    }

.academic-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #0d2b52;
}

.academic-card p {
    color: #666;
    line-height: 1.8;
}

@media (max-width:768px) {

    .academic-card {
        padding: 25px 20px;
    }
}

.admission-section {
    background: #f8fbff;
}

.admission-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s;
    overflow: hidden;
}

    .admission-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 40px rgba(0,0,0,.12);
    }

.step-no {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 42px;
    font-weight: 800;
    color: #e9eef7;
}

.admission-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #eef5ff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .35s;
}

    .admission-icon i {
        font-size: 38px;
        color: #0d6efd;
    }

.admission-card:hover .admission-icon {
    background: #0d6efd;
    transform: rotateY(180deg);
}

    .admission-card:hover .admission-icon i {
        color: #fff;
        transform: rotateY(180deg);
    }

.admission-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0d2b52;
    margin-bottom: 15px;
}

.admission-card p {
    color: #666;
    line-height: 1.8;
}

/* Desktop connector line */
@media (min-width:992px) {

    .admission-card::after {
        content: '';
        position: absolute;
        width: 70px;
        height: 2px;
        background: #0d6efd;
        right: -35px;
        top: 95px;
    }

    .col-lg-3:last-child .admission-card::after {
        display: none;
    }
}

@media (max-width:768px) {

    .admission-card {
        padding: 25px 20px;
    }

    .step-no {
        font-size: 32px;
    }
}

.school-cta {
    background: linear-gradient(rgba(8,35,71,.82),rgba(8,35,71,.82)), url("https://images.pexels.com/photos/30889597/pexels-photo-30889597.jpeg") center center/cover no-repeat;
    padding: 100px 0;
    color: #fff;
    position: relative;
}

.cta-subtitle {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.school-cta h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.school-cta p {
    font-size: 18px;
    color: #f1f1f1;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn1,
.cta-btn2 {
    padding: 15px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: .35s;
}

.cta-btn1 {
    background: #ffc107;
    color: #000;
}

.cta-btn2 {
    border: 2px solid #fff;
    color: #fff;
}

.cta-btn1:hover {
    background: #fff;
    transform: translateY(-5px);
    color: #0d2b52;
}

.cta-btn2:hover {
    background: #fff;
    color: #0d2b52;
    transform: translateY(-5px);
}

@media (max-width:768px) {

    .school-cta {
        padding: 70px 20px;
    }

        .school-cta h2 {
            font-size: 30px;
        }

        .school-cta p {
            font-size: 16px;
        }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn1,
    .cta-btn2 {
        width: 100%;
    }
}

.contact-header {
    background: linear-gradient(135deg,#0048ff,#00bfff);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .contact-header::before {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
        top: -180px;
        left: -120px;
    }

    .contact-header::after {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
        right: -100px;
        bottom: -120px;
    }

.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
}

    .info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,.15);
    }

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,#0066ff,#00b4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    margin: auto;
    margin-bottom: 20px;
}

.contact-box {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.form-control {
    border-radius: 12px;
    padding: 14px;
}

.btn-send {
    background: linear-gradient(135deg,#0052ff,#00aaff);
    border: none;
    color: #fff;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    transition: .4s;
}

    .btn-send:hover {
        transform: translateY(-3px);
    }

.office-card {
    background: linear-gradient(135deg,#003a8c,#0066ff);
    color: #fff;
    border-radius: 20px;
    padding: 30px;
}

.map {
    border-radius: 20px;
    overflow: hidden;
}

iframe {
    width: 100%;
    height: 420px;
    border: none;
}

@media (max-width:768px) {

    .contact-header {
        padding: 60px 15px;
    }

    .contact-box {
        padding: 20px;
    }

    iframe {
        height: 250px;
    }

    .info-card {
        margin-bottom: 20px;
    }
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

    .card-link:hover {
        color: inherit;
    }

.academic-card {
    cursor: pointer;
    transition: .3s;
}

    .academic-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,.15);
    }

/*==========================
   CONTACT BANNER
==========================*/
.contact-banner {
    position: relative;
    background: linear-gradient(rgba(0,45,98,.75),rgba(0,45,98,.75)), url('images/contact-banner.jpg') center center/cover no-repeat;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

    .contact-banner::before {
        content: '';
        position: absolute;
        top: -120px;
        left: -100px;
        width: 280px;
        height: 280px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
    }

    .contact-banner::after {
        content: '';
        position: absolute;
        right: -80px;
        bottom: -80px;
        width: 220px;
        height: 220px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
    }

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
}

    .banner-content h1 {
        font-size: 55px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 15px;
    }

    .banner-content p {
        font-size: 18px;
        color: #f5f5f5;
    }

/*==========================
 CONTACT INFO CARD
==========================*/

.contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

.contact-icon {
    width: 80px;
    height: 80px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.contact-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

/*==========================
 CONTACT FORM
==========================*/

.contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .contact-form h3 {
        font-weight: 700;
    }

.form-control {
    height: 52px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: none;
}

textarea.form-control {
    height: auto;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

.btn-send {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

    .btn-send:hover {
        background: #084298;
    }

/*==========================
 OFFICE TIME
==========================*/

.office-time {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .office-time h4 {
        font-weight: 700;
    }

/*==========================
 GOOGLE MAP
==========================*/

.map-box {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .map-box iframe {
        width: 100%;
        height: 350px;
        border: 0;
    }

/*==========================
 TABLET
==========================*/

@media(max-width:991px) {
    .banner-content h1;

{
    font-size: 42px;
}

.banner-content p {
    font-size: 16px;
}

.contact-form,
.office-time {
    margin-bottom: 25px;
}

}

/*==========================
 MOBILE
==========================*/

@media(max-width:767px) {
    .contact-banner;

{
    min-height: 260px;
    padding: 50px 20px;
}

.banner-content h1 {
    font-size: 30px;
}

.banner-content p {
    font-size: 15px;
}

.contact-card {
    padding: 25px 20px;
}

.contact-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
}

.contact-form {
    padding: 25px;
}

.office-time {
    padding: 25px;
}

.map-box iframe {
    height: 250px;
}

.table td {
    font-size: 14px;
}

} /*==========================
   CONTACT BANNER
==========================*/
.contact-banner {
    position: relative;
    background: linear-gradient(rgba(0,45,98,.75),rgba(0,45,98,.75)), url('images/contact-banner.jpg') center center/cover no-repeat;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

    .contact-banner::before {
        content: '';
        position: absolute;
        top: -120px;
        left: -100px;
        width: 280px;
        height: 280px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
    }

    .contact-banner::after {
        content: '';
        position: absolute;
        right: -80px;
        bottom: -80px;
        width: 220px;
        height: 220px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
    }

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
}

    .banner-content h1 {
        font-size: 55px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 15px;
    }

    .banner-content p {
        font-size: 18px;
        color: #f5f5f5;
    }

/*==========================
 CONTACT INFO CARD
==========================*/

.contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

.contact-icon {
    width: 80px;
    height: 80px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.contact-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

/*==========================
 CONTACT FORM
==========================*/

.contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .contact-form h3 {
        font-weight: 700;
    }

.form-control {
    height: 52px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: none;
}

textarea.form-control {
    height: auto;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

.btn-send {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

    .btn-send:hover {
        background: #084298;
    }

/*==========================
 OFFICE TIME
==========================*/

.office-time {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .office-time h4 {
        font-weight: 700;
    }

/*==========================
 GOOGLE MAP
==========================*/

.map-box {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .map-box iframe {
        width: 100%;
        height: 350px;
        border: 0;
    }

/*==========================
 TABLET
==========================*/

@media(max-width:991px) {
    .banner-content h1;

{
    font-size: 42px;
}

.banner-content p {
    font-size: 16px;
}

.contact-form,
.office-time {
    margin-bottom: 25px;
}

}

/*==========================
 MOBILE
==========================*/

@media(max-width:767px) {
    .contact-banner;

{
    min-height: 260px;
    padding: 50px 20px;
}

.banner-content h1 {
    font-size: 30px;
}

.banner-content p {
    font-size: 15px;
}

.contact-card {
    padding: 25px 20px;
}

.contact-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
}

.contact-form {
    padding: 25px;
}

.office-time {
    padding: 25px;
}

.map-box iframe {
    height: 250px;
}

.table td {
    font-size: 14px;
}

} /*==========================
   CONTACT BANNER
==========================*/
.contact-banner {
    position: relative;
    background: linear-gradient(rgba(0,45,98,.75),rgba(0,45,98,.75)), url('images/contact-banner.jpg') center center/cover no-repeat;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

    .contact-banner::before {
        content: '';
        position: absolute;
        top: -120px;
        left: -100px;
        width: 280px;
        height: 280px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
    }

    .contact-banner::after {
        content: '';
        position: absolute;
        right: -80px;
        bottom: -80px;
        width: 220px;
        height: 220px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
    }

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
}

    .banner-content h1 {
        font-size: 55px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 15px;
    }

    .banner-content p {
        font-size: 18px;
        color: #f5f5f5;
    }

/*==========================
 CONTACT INFO CARD
==========================*/

.contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

.contact-icon {
    width: 80px;
    height: 80px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.contact-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

/*==========================
 CONTACT FORM
==========================*/

.contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .contact-form h3 {
        font-weight: 700;
    }

.form-control {
    height: 52px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: none;
}

textarea.form-control {
    height: auto;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

.btn-send {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

    .btn-send:hover {
        background: #084298;
    }

/*==========================
 OFFICE TIME
==========================*/

.office-time {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .office-time h4 {
        font-weight: 700;
    }

/*==========================
 GOOGLE MAP
==========================*/

.map-box {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .map-box iframe {
        width: 100%;
        height: 350px;
        border: 0;
    }

/*==========================
 TABLET
==========================*/

@media(max-width:991px) {
    .banner-content h1;

{
    font-size: 42px;
}

.banner-content p {
    font-size: 16px;
}

.contact-form,
.office-time {
    margin-bottom: 25px;
}

}

/*==========================
 MOBILE
==========================*/

@media(max-width:767px) {
    .contact-banner;

{
    min-height: 260px;
    padding: 50px 20px;
}

.banner-content h1 {
    font-size: 30px;
}

.banner-content p {
    font-size: 15px;
}

.contact-card {
    padding: 25px 20px;
}

.contact-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
}

.contact-form {
    padding: 25px;
}

.office-time {
    padding: 25px;
}

.map-box iframe {
    height: 250px;
}

.table td {
    font-size: 14px;
}

} /*==========================
   CONTACT BANNER
==========================*/
.contact-banner {
    position: relative;
    background: linear-gradient(rgba(0,45,98,.75),rgba(0,45,98,.75)), url('images/contact-banner.jpg') center center/cover no-repeat;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

    .contact-banner::before {
        content: '';
        position: absolute;
        top: -120px;
        left: -100px;
        width: 280px;
        height: 280px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
    }

    .contact-banner::after {
        content: '';
        position: absolute;
        right: -80px;
        bottom: -80px;
        width: 220px;
        height: 220px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
    }

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
}

    .banner-content h1 {
        font-size: 55px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 15px;
    }

    .banner-content p {
        font-size: 18px;
        color: #f5f5f5;
    }

/*==========================
 CONTACT INFO CARD
==========================*/

.contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

.contact-icon {
    width: 80px;
    height: 80px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.contact-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

/*==========================
 CONTACT FORM
==========================*/

.contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .contact-form h3 {
        font-weight: 700;
    }

.form-control {
    height: 52px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: none;
}

textarea.form-control {
    height: auto;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: none;
}

.btn-send {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

    .btn-send:hover {
        background: #084298;
    }

/*==========================
 OFFICE TIME
==========================*/

.office-time {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .office-time h4 {
        font-weight: 700;
    }

/*==========================
 GOOGLE MAP
==========================*/

.map-box {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .map-box iframe {
        width: 100%;
        height: 350px;
        border: 0;
    }

/*==========================
 TABLET
==========================*/

@media(max-width:991px) {
    .banner-content h1;

{
    font-size: 42px;
}

.banner-content p {
    font-size: 16px;
}

.contact-form,
.office-time {
    margin-bottom: 25px;
}

}

/*==========================
 MOBILE
==========================*/

@media(max-width:767px) {
    .contact-banner;

{
    min-height: 260px;
    padding: 50px 20px;
}

.banner-content h1 {
    font-size: 30px;
}

.banner-content p {
    font-size: 15px;
}

.contact-card {
    padding: 25px 20px;
}

.contact-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
}

.contact-form {
    padding: 25px;
}

.office-time {
    padding: 25px;
}

.map-box iframe {
    height: 250px;
}

.table td {
    font-size: 14px;
}

}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    padding: 8px 0;
}

.dropdown-item {
    padding: 10px 18px;
    transition: .3s;
}

    .dropdown-item:hover {
        background: #0d6efd;
        color: #fff;
    }

.admission-banner {
    background: linear-gradient(rgba(0,55,130,.75),rgba(0,55,130,.75)), url(images/admission.jpg) center/cover;
    min-height: 420px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.banner-content {
    max-width: 700px;
    margin: auto;
}

    .banner-content h1 {
        font-size: 56px;
        font-weight: 700;
        margin: 20px 0;
    }

    .banner-content p {
        font-size: 18px;
    }

.admission-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

.form-control,
.form-select {
    height: 52px;
    border-radius: 10px;
}

textarea.form-control {
    height: auto;
}

.btn-primary {
    padding: 14px;
    font-size: 18px;
    border-radius: 10px;
}

@media (max-width:768px) {
    .admission-banner {
        min-height: 280px;
        padding: 40px 15px;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .banner-content p {
        font-size: 15px;
    }

    .admission-box {
        margin-top: 20px;
        padding: 25px;
    }
}

.vision-mission {
    background: #f8fbff;
}

.section-subtitle {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #0b1f44;
}

.section-text {
    max-width: 650px;
    margin: auto;
    color: #666;
}

.vm-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    transition: .35s;
}

    .vm-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,#0d6efd,#1f8fff);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
}

.vm-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0b1f44;
    margin-bottom: 18px;
}

.vm-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Responsive */

@media (max-width:991px) {
    .section-title {
        font-size: 34px;
    }
}

@media (max-width:767px) {

    .section-title {
        font-size: 28px;
    }

    .section-text {
        font-size: 15px;
    }

    .vm-card {
        padding: 30px 22px;
    }

    .vm-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }

    .vm-card h3 {
        font-size: 24px;
    }

    .vm-card p {
        font-size: 15px;
    }
}

.staff-banner {
    background: linear-gradient(rgba(0,50,120,.75),rgba(0,50,120,.75)), url(images/staff-banner.jpg) center/cover;
    padding: 110px 0;
    color: #fff;
    text-align: center;
}

    .staff-banner h1 {
        font-size: 52px;
        font-weight: 700;
    }

.staff-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #dbe4f0;
    padding: 25px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .staff-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

.staff-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #0d6efd;
    margin-bottom: 20px;
}

.staff-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.staff-post {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 12px;
}

.staff-card p {
    margin: 0;
    color: #666;
}

.staff-card:hover {
    border: 2px solid #0d6efd;
    box-shadow: 0 15px 40px rgba(13,110,253,.18);
}

@media (max-width:768px) {

    .staff-banner {
        padding: 70px 20px;
    }

        .staff-banner h1 {
            font-size: 34px;
        }

    .staff-img {
        width: 120px;
        height: 120px;
    }
}
/*==========================
Banner
==========================*/

.tour-banner {
    background: linear-gradient(rgba(0,50,120,.72),rgba(0,50,120,.72)), url(images/tour-banner.jpg) center/cover;
    min-height: 420px;
    display: flex;
    align-items: center;
    color: #fff;
}

.tour-banner-content {
    max-width: 700px;
}

.tour-badge {
    background: #ffc107;
    color: #000;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.tour-banner h1 {
    font-size: 56px;
    font-weight: 700;
    margin: 20px 0;
}

.tour-banner p {
    font-size: 18px;
}

/*========================*/

.section-tag {
    color: #0d6efd;
    font-weight: 700;
}

.tour-img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

/*========================*/

.tour-point {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid #e8edf4;
}

    .tour-point i {
        color: #0d6efd;
        margin-right: 8px;
    }

/*========================*/

.tour-highlight {
    background: #f8fbff;
}

.highlight-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    border: 1px solid #e6edf7;
    transition: .3s;
    height: 100%;
}

    .highlight-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
        border-color: #0d6efd;
    }

    .highlight-card i {
        font-size: 45px;
        color: #0d6efd;
        margin-bottom: 20px;
    }

/*========================*/

.gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    transition: .4s;
}

    .gallery-img:hover {
        transform: scale(1.05);
    }

/*========================*/

@media (max-width:768px) {

    .tour-banner {
        min-height: 280px;
        text-align: center;
        padding: 40px 20px;
    }

        .tour-banner h1 {
            font-size: 34px;
        }

        .tour-banner p {
            font-size: 15px;
        }

    .gallery-img {
        height: 220px;
    }
}
/* Banner */

.book-banner {
    background: linear-gradient(rgba(0,50,120,.75),rgba(0,50,120,.75)), url(images/book-banner.jpg) center/cover;
    padding: 120px 0;
    text-align: center;
    color: #fff;
}

    .book-banner h1 {
        font-size: 55px;
        font-weight: 700;
    }

    .book-banner p {
        font-size: 18px;
    }

/* Book Card */

.book-card {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    height: 100%;
    border: 1px solid #e5edf6;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s;
}

    .book-card:hover {
        transform: translateY(-8px);
        border-color: #0d6efd;
        box-shadow: 0 20px 45px rgba(13,110,253,.15);
    }

.book-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    background: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #fff;
    margin-bottom: 20px;
}

.book-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

.book-card p {
    color: #666;
}

.download-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: .3s;
}

    .download-btn:hover {
        background: #084298;
        color: #fff;
    }

/* Mobile */

@media (max-width:768px) {

    .book-banner {
        padding: 80px 20px;
    }

        .book-banner h1 {
            font-size: 34px;
        }

    .book-card {
        padding: 25px;
    }

    .book-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
}

.lab-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .4s ease;
    height: 100%;
    border: 1px solid #eef2f7;
}

    .lab-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.18);
    }

.lab-card {
    position: relative;
}

    .lab-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0));
        opacity: 0;
        transition: .4s;
    }

    .lab-card:hover::after {
        opacity: 1;
    }

.lab-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .5s ease;
}

.lab-card:hover .lab-img {
    transform: scale(1.08);
}

.lab-card h6 {
    padding: 18px;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #1d3557;
    background: #fff;
    position: relative;
    z-index: 2;
    transition: .3s;
}

.lab-card:hover h6 {
    color: #0d6efd;
}

@media (max-width:992px) {

    .lab-img {
        height: 220px;
    }

    .lab-card h6 {
        font-size: 18px;
    }
}

@media (max-width:576px) {

    .lab-img {
        height: 180px;
    }

    .lab-card h6 {
        font-size: 16px;
        padding: 14px;
    }
}

.about-library {
    background: #f8fbff;
}

.library-img-box {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

    .library-img-box img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        transition: .5s;
    }

    .library-img-box:hover img {
        transform: scale(1.08);
    }

.section-tag {
    display: inline-block;
    background: #eaf3ff;
    color: #0d6efd;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.about-library h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1b2a4e;
}

.about-library p {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

.highlight-box {
    background: #fff;
    padding: 22px 10px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .3s;
    height: 100%;
}

    .highlight-box:hover {
        transform: translateY(-6px);
        background: #0d6efd;
        color: #fff;
    }

    .highlight-box h3 {
        margin: 0;
        font-size: 30px;
        font-weight: 700;
    }

    .highlight-box span {
        font-size: 15px;
        font-weight: 500;
    }

@media (max-width:991px) {

    .library-img-box img {
        height: 320px;
    }

    .about-library h2 {
        font-size: 30px;
    }
}

@media (max-width:576px) {

    .library-img-box img {
        height: 240px;
    }

    .about-library h2 {
        font-size: 26px;
    }

    .highlight-box {
        padding: 18px 10px;
    }

        .highlight-box h3 {
            font-size: 24px;
        }
}

.book-categories {
    background: #f8f9fa;
}

.category-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: all .35s ease;
}

    .category-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,.15);
    }

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #eaf3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: .3s;
}

.category-card:hover .category-icon {
    background: #0d6efd;
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

.category-card h5 {
    font-weight: 700;
    color: #1b2a4e;
    margin-bottom: 10px;
}

.category-card p {
    color: #6c757d;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

@media (max-width:576px) {

    .category-card {
        padding: 25px 15px;
    }

    .category-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .category-card h5 {
        font-size: 16px;
    }

    .category-card p {
        font-size: 13px;
    }
}

.library-gallery {
    background: #f8fbff;
}

.gallery-card {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.10);
    background: #fff;
    position: relative;
}

    .gallery-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: transform .5s ease;
    }

    .gallery-card:hover img {
        transform: scale(1.12);
    }

    .gallery-card::before {
        content: "";
        position: absolute;
        inset: 0;
        /*background: rgba(13,110,253,.25);*/
        opacity: 0;
        transition: .35s;
        z-index: 1;
    }

    /*.gallery-card::after {
        content: "📚";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%) scale(0);
        font-size: 42px;
        color: #fff;
        z-index: 2;
        transition: .35s;
    }*/

    .gallery-card:hover::before {
        opacity: 1;
    }

    .gallery-card:hover::after {
        transform: translate(-50%,-50%) scale(1);
    }

@media (max-width:768px) {

    .gallery-card img {
        height: 200px;
    }
}

@media (max-width:576px) {

    .gallery-card img {
        height: 160px;
    }
}

.library-rules {
    background: #ffffff;
}

.rule-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .rule-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,.15);
    }

.rule-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.rule-card h5 {
    margin-bottom: 8px;
    font-weight: 700;
    color: #1b2a4e;
}

.rule-card p {
    margin: 0;
    color: #6c757d;
    line-height: 1.7;
}

@media (max-width:576px) {

    .rule-card {
        padding: 18px;
        gap: 15px;
    }

    .rule-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .rule-card h5 {
        font-size: 17px;
    }

    .rule-card p {
        font-size: 14px;
    }
}

.library-timing {
    background: #f8fbff;
}

.timing-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

    .timing-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: #0d6efd;
    }

.timing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 10px 25px rgba(13,110,253,.3);
}

.timing-card table td {
    padding: 16px 10px;
    font-size: 17px;
    border-bottom: 1px solid #ececec;
}

.timing-card table tr:last-child td {
    border-bottom: none;
}

.timing-card table td:first-child {
    color: #1b2a4e;
}

.timing-card table td:last-child {
    font-weight: 600;
    color: #0d6efd;
}

@media (max-width:576px) {

    .timing-card {
        padding: 25px 20px;
    }

    .timing-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .timing-card table td {
        font-size: 14px;
        padding: 12px 5px;
    }
}

.about-hostel {
    background: #f8fbff;
}

.hostel-img {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

    .hostel-img img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        transition: .5s;
    }

    .hostel-img:hover img {
        transform: scale(1.08);
    }

.hostel-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eaf3ff;
    color: #0d6efd;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.about-hostel h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1b2a4e;
}

.about-hostel p {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

.hostel-info {
    background: #fff;
    border-radius: 16px;
    padding: 22px 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: .3s;
    height: 100%;
}

    .hostel-info i {
        font-size: 32px;
        color: #0d6efd;
        margin-bottom: 10px;
        display: block;
    }

    .hostel-info h4 {
        margin: 0;
        font-size: 28px;
        font-weight: 700;
        color: #1b2a4e;
    }

    .hostel-info span {
        color: #666;
        font-size: 15px;
    }

    .hostel-info:hover {
        background: #0d6efd;
        transform: translateY(-6px);
    }

        .hostel-info:hover i,
        .hostel-info:hover h4,
        .hostel-info:hover span {
            color: #fff;
        }

@media (max-width:991px) {

    .hostel-img img {
        height: 320px;
    }

    .about-hostel h2 {
        font-size: 30px;
    }
}

@media (max-width:576px) {

    .hostel-img img {
        height: 230px;
    }

    .about-hostel h2 {
        font-size: 26px;
    }

    .hostel-info {
        padding: 18px 10px;
    }

        .hostel-info h4 {
            font-size: 22px;
        }

        .hostel-info span {
            font-size: 13px;
        }
}

.hostel-facilities {
    background: #ffffff;
}

.facility-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: all .35s ease;
}

    .facility-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,.15);
    }

.facility-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #eaf3ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 34px;
    transition: .3s;
}

.facility-card:hover .facility-icon {
    background: #0d6efd;
    color: #fff;
    transform: rotate(8deg) scale(1.1);
}

.facility-card h5 {
    font-weight: 700;
    color: #1b2a4e;
    margin-bottom: 10px;
}

.facility-card p {
    color: #6c757d;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

@media (max-width:576px) {

    .facility-card {
        padding: 25px 15px;
    }

    .facility-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .facility-card h5 {
        font-size: 16px;
    }

    .facility-card p {
        font-size: 13px;
    }
}

.hostel-section {
    background: #f8fbff;
}

.hostel-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .hostel-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,.15);
    }

.hostel-image {
    overflow: hidden;
}

    .hostel-image img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: .5s;
    }

.hostel-card:hover .hostel-image img {
    transform: scale(1.08);
}

.hostel-content {
    padding: 30px;
}

.hostel-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.hostel-content h3 {
    font-weight: 700;
    color: #1b2a4e;
    margin-bottom: 20px;
}

.hostel-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .hostel-content ul li {
        padding: 10px 0;
        color: #555;
        font-size: 15px;
    }

        .hostel-content ul li i {
            color: #198754;
            margin-right: 10px;
        }

@media (max-width:576px) {

    .hostel-image img {
        height: 200px;
    }

    .hostel-content {
        padding: 20px;
    }

        .hostel-content h3 {
            font-size: 22px;
        }

        .hostel-content ul li {
            font-size: 14px;
        }
}

.hostel-gallery {
    background: #f8fbff;
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.10);
    position: relative;
    cursor: pointer;
}

    .gallery-item img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: all .5s ease;
    }

    .gallery-item::before {
        content: "";
        position: absolute;
        inset: 0;
        /*background: rgba(13,110,253,.30);*/
        opacity: 0;
        transition: .35s;
        z-index: 1;
    }


    .gallery-item:hover img {
        transform: scale(1.12);
    }

    .gallery-item:hover::before {
        opacity: 1;
    }

    .gallery-item:hover::after {
        transform: translate(-50%,-50%) scale(1);
    }

@media (max-width:768px) {
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width:576px) {
    .gallery-item img {
        height: 170px;
    }
}

.hostel-rules {
    background: #ffffff;
}

.rule-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .rule-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,.15);
    }

.rule-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.rule-box h5 {
    margin-bottom: 8px;
    font-weight: 700;
    color: #1b2a4e;
}

.rule-box p {
    margin: 0;
    color: #6c757d;
    line-height: 1.7;
}

@media (max-width:576px) {

    .rule-box {
        padding: 18px;
        gap: 15px;
    }

    .rule-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .rule-box h5 {
        font-size: 17px;
    }

    .rule-box p {
        font-size: 14px;
    }
}

.daily-routine {
    background: #f8fbff;
}

.routine-box {
    max-width: 850px;
    margin: auto;
    position: relative;
}

    .routine-box::before {
        content: "";
        position: absolute;
        left: 110px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: #0d6efd;
    }

.routine-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.routine-time {
    width: 90px;
    font-weight: 700;
    color: #0d6efd;
    font-size: 18px;
    text-align: right;
    margin-right: 35px;
}

.routine-content {
    flex: 1;
    background: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: .3s;
}

    .routine-content::before {
        content: "";
        position: absolute;
        left: 102px;
        width: 18px;
        height: 18px;
        background: #0d6efd;
        border: 4px solid #fff;
        border-radius: 50%;
        box-shadow: 0 0 0 4px #cfe2ff;
    }

    .routine-content:hover {
        transform: translateX(8px);
        box-shadow: 0 15px 35px rgba(0,0,0,.15);
    }

    .routine-content i {
        width: 60px;
        height: 60px;
        background: #eaf3ff;
        color: #0d6efd;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
    }

    .routine-content h5 {
        margin: 0;
        font-weight: 700;
        color: #1b2a4e;
    }

@media (max-width:768px) {

    .routine-box::before {
        display: none;
    }

    .routine-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .routine-time {
        margin: 0 0 10px;
        width: auto;
        text-align: left;
    }

    .routine-content {
        width: 100%;
    }

        .routine-content::before {
            display: none;
        }
}

.safety-security {
    background: #f8fbff;
}

.safety-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 20px;
    text-align: center;
    height: 100%;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: all .35s ease;
}

    .safety-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,.15);
    }

.safety-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #eaf3ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    transition: .35s;
}

.safety-card:hover .safety-icon {
    background: #0d6efd;
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

.safety-card h5 {
    font-weight: 700;
    color: #1b2a4e;
    margin-bottom: 12px;
}

.safety-card p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width:576px) {

    .safety-card {
        padding: 25px 15px;
    }

    .safety-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .safety-card h5 {
        font-size: 16px;
    }

    .safety-card p {
        font-size: 13px;
    }
}

.hostel-timings {
    background: #f8fbff;
}

.timing-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    border: 1px solid #e9ecef;
}

.timing-header {
    /*background: linear-gradient(135deg,#0d6efd,#3b82f6);*/
    color: #0d6efd;
    text-align: center;
    padding: 25px;
}

    .timing-header i {
        font-size: 42px;
        margin-bottom: 10px;
        display: block;
    }

    .timing-header h4 {
        margin: 0;
        font-weight: 700;
    }

.timing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    border-bottom: 1px solid #eef2f7;
    transition: .3s;
}

    .timing-item:last-child {
        border-bottom: none;
    }

    .timing-item:hover {
        background: #f5f9ff;
    }

    .timing-item span {
        color: #444;
        font-weight: 600;
    }

        .timing-item span i {
            color: #0d6efd;
            margin-right: 10px;
        }

    .timing-item strong {
        color: #0d6efd;
        font-weight: 700;
    }

@media (max-width:576px) {

    .timing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px 18px;
    }

    .timing-header {
        padding: 20px;
    }

        .timing-header i {
            font-size: 34px;
        }

        .timing-header h4 {
            font-size: 22px;
        }
}

.about-auditorium {
    background: #f8fbff;
}

.auditorium-img {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

    .auditorium-img img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        transition: .5s;
    }

    .auditorium-img:hover img {
        transform: scale(1.08);
    }

.auditorium-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eaf3ff;
    color: #0d6efd;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.about-auditorium h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1b2a4e;
}

.about-auditorium p {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

.auditorium-info {
    background: #fff;
    border-radius: 16px;
    padding: 22px 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: .3s;
    height: 100%;
}

    .auditorium-info i {
        font-size: 32px;
        color: #0d6efd;
        margin-bottom: 10px;
        display: block;
    }

    .auditorium-info h4 {
        margin: 0;
        font-size: 28px;
        font-weight: 700;
        color: #1b2a4e;
    }

    .auditorium-info span {
        color: #666;
        font-size: 15px;
    }

    .auditorium-info:hover {
        background: #0d6efd;
        transform: translateY(-6px);
    }

        .auditorium-info:hover i,
        .auditorium-info:hover h4,
        .auditorium-info:hover span {
            color: #fff;
        }

@media (max-width:991px) {
    .auditorium-img img {
        height: 320px;
    }

    .about-auditorium h2 {
        font-size: 30px;
    }
}

@media (max-width:576px) {
    .auditorium-img img {
        height: 230px;
    }

    .about-auditorium h2 {
        font-size: 26px;
    }

    .auditorium-info {
        padding: 18px 10px;
    }

        .auditorium-info h4 {
            font-size: 22px;
        }

        .auditorium-info span {
            font-size: 13px;
        }
}

.auditorium-features {
    background: #ffffff;
}

.feature-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: .35s;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,.15);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #eaf3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 34px;
    transition: .35s;
}

.feature-card:hover .feature-icon {
    background: #0d6efd;
    color: #fff;
    transform: rotate(8deg) scale(1.1);
}

.feature-card h5 {
    font-weight: 700;
    color: #1b2a4e;
    margin-bottom: 10px;
}

.feature-card p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width:576px) {

    .feature-card {
        padding: 25px 15px;
    }

    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .feature-card h5 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 13px;
    }
}

.facility-overview {
    background: #f8fbff;
}

.facility-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #e9ecef;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .facility-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,.15);
    }

.facility-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

    .facility-header i {
        width: 70px;
        height: 70px;
        background: #0d6efd;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
    }

    .facility-header h4 {
        margin: 0;
        font-weight: 700;
        color: #1b2a4e;
    }

.facility-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .facility-box ul li {
        padding: 12px 0;
        color: #555;
        font-size: 15px;
        border-bottom: 1px solid #f1f1f1;
    }

        .facility-box ul li:last-child {
            border-bottom: none;
        }

        .facility-box ul li i {
            color: #198754;
            margin-right: 10px;
        }

@media (max-width:576px) {

    .facility-box {
        padding: 25px 20px;
    }

    .facility-header {
        flex-direction: column;
        text-align: center;
    }

        .facility-header i {
            width: 60px;
            height: 60px;
            font-size: 26px;
        }

        .facility-header h4 {
            font-size: 22px;
        }

    .facility-box ul li {
        font-size: 14px;
    }
}

.events-hosted {
    background: #ffffff;
}

.event-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: .35s;
}

    .event-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,.15);
    }

.event-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #eaf3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 34px;
    transition: .35s;
}

.event-card:hover .event-icon {
    background: #0d6efd;
    color: #fff;
    transform: rotate(8deg) scale(1.1);
}

.event-card h5 {
    font-weight: 700;
    color: #1b2a4e;
    margin-bottom: 10px;
}

.event-card p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width:576px) {

    .event-card {
        padding: 25px 15px;
    }

    .event-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .event-card h5 {
        font-size: 16px;
    }

    .event-card p {
        font-size: 13px;
    }
}

.staff-table {
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .staff-table thead th {
        background: linear-gradient(135deg,#0d6efd,#2d8cff);
        color: #fff;
        font-weight: 500;
        font-size: 15px;
        padding: 10px;
        border: none;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .staff-table tbody td {
        padding: 15px;
        border-color: #eef2f7;
        vertical-align: middle;
        font-size: 15px;
    }

    .staff-table tbody tr:nth-child(even) {
        background: #f8fbff;
    }

    .staff-table tbody tr:hover {
        background: #eaf3ff;
        transform: scale(1.003);
        transition: .3s;
    }

    .staff-table tbody td:first-child {
        font-weight: 700;
        color: #0d6efd;
        width: 80px;
    }

    .staff-table tbody td:nth-child(2) {
        text-align: left;
        font-weight: 600;
        color: #1b2a4e;
    }

    .staff-table tbody td:nth-child(3) {
        color: #555;
    }

    .staff-table tbody td:last-child {
        font-weight: 600;
        color: #198754;
    }

.table-responsive {
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width:768px) {

    .staff-table thead th,
    .staff-table tbody td {
        font-size: 13px;
        padding: 10px;
    }
}

.nav-pills .nav-link {
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 600;
    color: #0d6efd;
    border: 2px solid #0d6efd;
    transition: .3s;
}

    .nav-pills .nav-link:hover {
        background: #0d6efd;
        color: #fff;
    }

    .nav-pills .nav-link.active {
        background: #0d6efd;
        color: #fff;
        box-shadow: 0 8px 20px rgba(13,110,253,.3);
    }

.gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
    transition: .4s;
}

    .gallery-img:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(0,0,0,.18);
    }

.list-group-item a {
    text-decoration: none;
    color: #0d6efd;
    font-weight: 600;
    transition: .3s;
}

    .list-group-item a:hover {
        color: #dc3545;
        text-decoration: underline;
    }

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.school-title {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.school-subtitle {
    display: block;
    color: black;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
}

@media (max-width:768px) {

    .logo {
        width: 45px;
        height: 45px;
    }

    .school-title {
        font-size: 16px;
    }

    .school-subtitle {
        font-size: 11px;
    }
}
/* Desktop */
@media (min-width:992px) {

    .top-header {
        display: block;
    }
}

/* Mobile */
@media (max-width:991px) {

    .top-info {
        display: none;
    }

    .top-header {
        padding: 8px 0;
    }

    .brand-box {
        justify-content: center;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

    .school-title {
        font-size: 18px;
    }

    .school-subtitle {
        font-size: 11px;
    }
}

@media (max-width:991px) {

    .top-header {
        padding: 8px 0;
    }

    .top-header-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .email-box,
    .phone-box {
        display: none;
    }

    .brand-box {
        display: flex;
        align-items: center;
    }

    .logo {
        width: 45px;
        height: 45px;
    }

    .school-title {
        font-size: 17px;
        margin-bottom: 0;
    }

    .school-subtitle {
        font-size: 11px;
    }

    .contact-btn {
        padding: 6px 12px;
        font-size: 12px;
        white-space: nowrap;
    }
}

@media (max-width:576px) {

    .about-img-wrap {
        padding: 0;
    }

    .main-img {
        border-radius: 15px;
    }

    .small-img {
        position: relative;
        width: 75%;
        display: block;
        margin: -60px auto 0;
        right: auto;
        bottom: auto;
        border: 5px solid #fff;
    }

    .experience-box {
        top: -472px;
        left: 86px;
        padding: 10px 15px;
    }

        .experience-box h2 {
            font-size: 22px;
        }

        .experience-box p {
            font-size: 12px;
        }
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: .4s;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

    .gallery-img:hover {
        transform: scale(1.05);
    }

.nav-pills .nav-link {
    border-radius: 30px;
    font-weight: 600;
    padding: 10px 30px;
}

    .nav-pills .nav-link.active {
        background: #0d6efd;
    }

@media (max-width:768px) {

    .gallery-img {
        height: 220px;
    }
}
 .more-message {
        display: none;
    }

    .read-more-btn {
        border: none;
        background: #062A63;
        color: #fff;
        padding: 10px 20px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: .3s;
        margin-top: 5px;
        margin-bottom: 20px;
    }

    .read-more-btn:hover {
        background: #D4AF37;
        color: #062A63;
    }

    .read-more-btn i {
        margin-left: 6px;
    }