:root {
    --adm-green-dark: #0a3d2e;
    --adm-green-mid: #0f6e56;
    --adm-green-light: #1D9E75;
    --adm-green-pale: #e1f5ee;
    --adm-text-dark: #111610;
    --adm-text-mid: #3a4a3f;
    --adm-text-muted: #7a9080;
    --adm-amber: #c9832a;
    --adm-amber-pale: #fdf2e3;
    --adm-border: rgba(10, 61, 46, 0.12);
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
    border: none !important;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/* =========================
   TOPBAR (Professional Look)
========================= */
/* =========================
       TOPBAR
    ========================= */
.topbar {
    background: #1b7fcc;
    padding: 6px 20px;
    font-size: 14px;
}

.topbar a {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.topbar a:hover {
    color: #ffd700;
}

.topbar .btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    transition: 0.3s;
}

.topbar .btn:hover {
    background: #ffd700;
    color: #1b7fcccf;
    border-color: #ffd700;
}

/* =========================
       HEADER AREA
    ========================= */
.header-area {
    background: linear-gradient(180deg, #1b7fcc, #1b7fcccf, #4d9df20f);
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all .5s ease;
}

.nav-bar.sticky-top {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    z-index: 9999;

    background: #1b7fcc;
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

    animation: slideDown 0.4s ease forwards;
}

.nav-bar {
    transition: all 0.4s ease-in-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* =========================
       LOGO
    ========================= */
.navbar-brand img {
    max-height: 95px;
    width: auto;
    transition: 0.3s;
}

/* =========================
       NAVBAR
    ========================= */
.navbar {
    width: 100%;
    padding: 0;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin: 0 15px;
    padding: 28px 0;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff !important;
    letter-spacing: 0.5px;
    transition: 0.3s;
    white-space: nowrap;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #ffc800 !important;
}

/* Underline Animation */
.navbar-light .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: 12px;
    background: #ffc800;
    transition: 0.4s;
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    width: 100%;
}

/* =========================
       DROPDOWN
    ========================= */
.dropdown-menu {
    border: none;
    border-radius: 6px;
    padding: 8px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
    font-size: 14px;
    padding: 10px 20px;
    color: #333;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: #f5f7fa;
    color: #0b2c5f;
    padding-left: 25px;
}

/* Desktop Hover */
@media (min-width: 992px) {

    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
    }

    .navbar .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


/* =========================
   LARGE SCREEN FIX
========================= */
@media (max-width: 1456px) {

    /* Logo reduce */
    .navbar-brand img {
        max-height: 78px;
    }

    /* Navbar spacing reduce */
    .navbar-light .navbar-nav .nav-link {
        margin: 0 10px;
        padding: 24px 0;
        font-size: 14px;
    }
}

/* =========================
   1300px
========================= */
@media (max-width: 1300px) {

    .navbar-brand img {
        max-height: 72px;
    }

    .navbar-light .navbar-nav .nav-link {
        margin: 0 8px;
        padding: 22px 0;
        font-size: 13.5px;
    }
}

/* =========================
   1200px
========================= */
@media (max-width: 1200px) {

    .navbar-brand img {
        max-height: 68px;
    }

    .navbar-light .navbar-nav .nav-link {
        margin: 0 6px;
        padding: 20px 0;
        font-size: 13px;
    }
}

/* =========================
   TABLET VIEW
========================= */
@media (max-width: 991px) {

    /* Topbar */
    .topbar {
        padding: 10px 15px;
    }

    .topbar .row {
        row-gap: 10px;
    }

    .topbar .d-flex {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .topbar .d-inline-flex {
        justify-content: center;
        width: 100%;
        margin-top: 5px;
    }

    .topbar a {
        font-size: 13px;
    }

    .topbar .btn {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Header */
    .header-area {
        position: relative;
        top: 0;
        background: #1b7fcc;
        /* background: linear-gradient(180deg,
            #1b7fcc,
            #002e520d); */
    }

    .nav-bar {
        padding: 10px 15px;
    }

    .navbar {
        width: 100%;
    }

    .navbar-brand img {
        max-height: 65px;
        width: auto;
    }

    .navbar-toggler {
        border: none;
        box-shadow: none !important;
        padding: 0;
        font-size: 28px;
        color: #fff;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        background: #ffffff;
        margin-top: 15px;
        padding: 15px 20px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav {
        width: 100%;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 14px 0;
        margin: 0;
        color: #333 !important;
        border-bottom: 1px solid #eee;
        width: 100%;
        font-size: 15px;
    }

    .navbar-light .navbar-nav .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        background: #f8f8f8;
        margin-top: 8px;
        border-radius: 8px;
        padding: 8px 0;
    }

    .dropdown-item {
        padding: 10px 15px;
    }
}

/* =========================
   MOBILE VIEW
========================= */
@media (max-width: 576px) {

    /* Topbar */
    .topbar {
        padding: 10px;
    }

    .topbar .d-flex {
        /* flex-direction: column; */
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .topbar a {
        font-size: 12px;
        text-align: center;
        line-height: 1.5;
    }

    .topbar .d-inline-flex {
        justify-content: center;
        /* gap: 8px; */
        width: 100%;
    }

    .topbar .btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    /* Navbar */
    .nav-bar {
        padding: 8px 12px;
    }

    .navbar-brand img {
        max-height: 44px;
    }

    .navbar-toggler {
        font-size: 24px;
    }

    .navbar-collapse {
        padding: 12px 15px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 14px;
        padding: 12px 0;
    }

    .dropdown-item {
        font-size: 13px;
    }
}

/* =========================
   EXTRA SMALL DEVICES
========================= */
@media (max-width: 400px) {

    .navbar-brand img {
        max-height: 48px;
    }

    .topbar a {
        font-size: 11px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 13px;
    }
}
#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}

/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(#1b7fccd1, #1b7fcc7d), url(../img/STE_3718.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}

/*** Single Page Hero Header End ***/


/* ==========================================================
   PROFESSIONAL COLLEGE HERO CAROUSEL
   Minimal • Premium • Image Visible • University Style
========================================================== */

/* =========================
   HERO WRAPPER
========================= */
.carousel-header {
    position: relative;
    overflow: hidden;
}

/* Clean white wave at bottom */
/* .carousel-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 90px;
    background: #fff;
    clip-path: ellipse(75% 100% at 50% 100%);
    z-index: 3;
} */

/* =========================
   SLIDE ITEM
========================= */
.carousel-header .carousel-item {
    position: relative;
    min-height: 100vh;
}

/* =========================
   BACKGROUND IMAGE
========================= */
.carousel-header .carousel-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;

    /* Keep image clearly visible */
    filter: brightness(0.92) contrast(1.05) saturate(1.05);

    transform: scale(1);
    transition: transform 8s ease;
}

/* Subtle zoom */
.carousel-header .carousel-item.active img {
    transform: scale(1.06);
}

/* =========================
   OVERLAY
   Dark gradient only on left side
========================= */
.carousel-header .carousel-caption {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 0 8%;

    background:
        linear-gradient(
            90deg,
            rgba(4, 25, 55, 0.78) 0%,
            rgba(4, 25, 55, 0.62) 32%,
            rgba(4, 25, 55, 0.28) 58%,
            rgba(4, 25, 55, 0.06) 100%
        );
}

/* =========================
   CONTENT AREA
========================= */
.carousel-caption .text-center {
    max-width: 720px !important;
    text-align: left !important;
    padding: 0 !important;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

/* =========================
   TOP LABEL
========================= */
.carousel-caption .text-center::before {
    content: "WELCOME TO CSI COLLEGE OF NURSING";
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 18px;
    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* =========================
   MAIN HEADING
========================= */
.carousel-caption h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.30);
}

/* Accent color if wrapped in span */
.carousel-caption h1 span {
    color: #f8d14f;
}

/* =========================
   DESCRIPTION
========================= */
.carousel-caption p {
    font-size: 1.15rem;
    line-height: 1.9;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin: 0 0 32px;
}

/* =========================
   OPTIONAL BUTTON STYLING
========================= */
.carousel-caption .btn {
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
}

/* =========================
   TEXT ANIMATION
========================= */
.carousel-caption .text-center {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.carousel-item.active .text-center {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   NAVIGATION ARROWS
========================= */
.carousel-control-prev,
.carousel-control-next {
    width: 7%;
    opacity: 1;
    z-index: 5;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.22);
    background-size: 45%;

    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.95);
    transform: scale(1.08);
}

/* =========================
   INDICATORS
========================= */
/* .carousel-indicators {
    margin-bottom: 30px;
    z-index: 10;
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.45);
    transition: all 0.4s ease;
}

.carousel-indicators li.active {
    width: 32px;
    border-radius: 50px;
    background: #f8d14f;
} */

/* =========================
   DESKTOP (≤1456px)
========================= */
@media (max-width: 1456px) {
    .carousel-caption h1 {
        font-size: 4.3rem;
    }
}

/* =========================
   LAPTOP (≤1200px)
========================= */
@media (max-width: 1200px) {
    .carousel-caption h1 {
        font-size: 3.6rem;
    }

    .carousel-caption p {
        font-size: 1.05rem;
    }
}

/* =========================
   TABLET (≤991px)
========================= */
@media (max-width: 991px) {
    .carousel-header .carousel-item {
        min-height: 85vh;
    }

    .carousel-header .carousel-caption {
        justify-content: center;
        text-align: center;
        padding: 0 30px;
        background:
            linear-gradient(
                180deg,
                rgba(4, 25, 55, 0.72),
                rgba(4, 25, 55, 0.45)
            );
    }

    .carousel-caption .text-center {
        max-width: 100% !important;
        text-align: center !important;
    }

    .carousel-caption p {
        margin: 0 auto 28px;
    }

    .carousel-caption h1 {
        font-size: 2.8rem;
        line-height: 1.15;
        letter-spacing: -1px;
    }
}

/* =========================
   MOBILE (≤576px)
========================= */
@media (max-width: 576px) {
    .carousel-header::after {
        height: 45px;
    }

    .carousel-header .carousel-item {
        min-height: 65vh;
    }

    .carousel-header .carousel-caption {
        padding: 0 20px;
    }

    .carousel-caption .text-center::before {
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 14px;
    }

    .carousel-caption h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .carousel-caption p {
        font-size: 0.92rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .carousel-indicators {
        margin-bottom: 16px;
    }
}

/* =========================
   EXTRA SMALL (≤400px)
========================= */
@media (max-width: 400px) {
    .carousel-caption h1 {
        font-size: 1.65rem;
    }

    .carousel-caption p {
        font-size: 0.82rem;
    }
}
/*** Carousel Hero Header End ***/




/*** Counter Facts Start ***/
.counter-facts {
    background: linear-gradient(rgb(18 18 18 / 90%), rgb(78 75 75 / 80%)), url(../img/STE_1397.JPG);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--bs-white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: var(--bs-primary);

}

.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-20px);
    font-size: 50px;
    line-height: 90px;
    color: var(--bs-secondary);
    background: rgba(1, 143, 252, 0.5);
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter-facts .counter .counter-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 90px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: rgba(0, 58, 102, 0.5);
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter-facts .counter:hover .counter-icon i {
    transform: rotate(360deg);
    transition: all 0.3s ease;
}

.counter-facts .counter h3 {
    color: var(--bs-primary);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter {
        margin-bottom: 40px;
    }
}

/*** Counter Facts End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}

/*** Service End ***/


/*** Features Start ***/
.features .feature-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.features .feature-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 58, 102, 0.1);
    z-index: -1;
    transition: 0.5s;
}

.features .feature-item:hover::after {
    height: 100%;
}

.features .feature-item .feature-icon {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon {
    border-radius: 50%;
    background: var(--bs-white) !important;
}

.features .feature-item .feature-icon i {
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
    color: var(--bs-secondary) !important;
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

/*** Features End ***/


/*** Country Start ***/
.country .country-item {
    position: relative;
}

.country .country-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 58, 102, 0.7);
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.country .country-item:hover::after {
    height: 100%;
}

.country .country-item .country-flag {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
    z-index: 2;
}

.country .country-item .country-flag img {
    border: 5px solid var(--bs-white);
    transition: 0.5s;
}

.country .country-item:hover .country-flag img {
    border: 5px solid var(--bs-white);
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

.country .country-item .country-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.country .country-item:hover .country-name {
    opacity: 1;
}

.country .country-item img {
    transition: 0.5s;
}

.country .country-item:hover img {
    transform: scale(1.2);
}

.country .country-item .country-name a.fs-4 {
    transition: 0.5s;
}

.country .country-item .country-name a.fs-4:hover {
    color: var(--bs-secondary) !important;
}

/*** Country End ***/


/*** testimonial Start ***/
/* .testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
} */
/*** testimonial end ***/


/*** training Start ***/
.training .training-item .training-inner {
    position: relative;
}

.training .training-item .training-inner .training-title-name {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: center;
    transition: 0.5s;
}

.training .training-item {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.training .training-item:hover .training-inner .training-title-name {
    background: rgba(0, 58, 102, 0.5);
}

.training .training-item:hover .training-inner .training-title-name a {
    opacity: 0;
}

.training .training-item .training-inner img {
    transition: 0.5s;
}

.training .training-item:hover .training-inner img {
    transform: scale(1.3);
}

.training .training-item .training-content {
    position: absolute;
    width: 100%;
    bottom: -100%;
    left: 0;
    transition: 0.5s;
}

.training .training-item:hover .training-content {
    bottom: 0;
}

/*** training End ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: #1b7fcc;
}

.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: #f9a825;
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-secondary) !important;
}

/*** copyright end ***/

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

.blog-slider {
    position: relative;
    margin: auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 40px;
    border-radius: 25px;
    transition: 0.4s ease;
}

.blog-slider:hover {
    transform: translateY(-5px);
}

.blog-slider__item {
    display: flex;
    align-items: center;
    gap: 40px;
}

@media screen and (max-width: 768px) {
    .blog-slider__item {
        flex-direction: column;
        gap: 20px;
    }
}

.blog-slider__img {
    width: 320px;
    height: 320px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: 0.4s;
    animation: floatImage 4s ease-in-out infinite;
}

.blog-slider__img:hover {
    transform: scale(1.05);
}

.blog-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.blog-slider__img:hover img {
    transform: scale(1.1);
}

/* Content */
.blog-slider__content {
    flex: 1;
}

.blog-slider__title {
    font-size: 28px;
    font-weight: 700;
    color: #0d0925;
    margin-bottom: 15px;
}

.blog-slider__text {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

/* Button */
.blog-slider__button {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
    padding: 14px 35px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
}

.blog-slider__button:hover {
    background: linear-gradient(135deg, #0369a1, #0ea5e9);
    transform: translateY(-2px);
}

/* Text animation */
.blog-slider__content>* {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.blog-slider__content>*:nth-child(1) {
    animation-delay: 0.2s;
}

.blog-slider__content>*:nth-child(2) {
    animation-delay: 0.4s;
}

.blog-slider__content>*:nth-child(3) {
    animation-delay: 0.6s;
}

.blog-slider__content>*:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image zoom on hover */
.blog-slider__img img {
    transition: transform 0.5s ease;
}

.blog-slider__img:hover img {
    transform: scale(1.15);
}

/* Button animation */
.blog-slider__button {
    position: relative;
    overflow: hidden;
}

.blog-slider__button::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.4s;
}

.blog-slider__button:hover::before {
    width: 100%;
}

/* Section fade-in on scroll */
.blog-slider {
    opacity: 0;
    transform: translateY(60px);
    transition: 0.8s ease;
}

.blog-slider.show {
    opacity: 1;
    transform: translateY(0);
}

.mgmt-section {
    position: relative;
    overflow: hidden;
    padding: 60px 24px 80px;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #002a4d, #004a80);
}

.mgmt-section::before {
    content: "";
    position: absolute;
    inset: 0;

    /* subtle diagonal grid */
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.035) 0px,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px,
            transparent 40px);

    animation: movePattern 60s linear infinite;
    z-index: 0;
}

@keyframes movePattern {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200px 200px;
    }
}

.mgmt-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;

    background: radial-gradient(circle, rgba(96, 165, 250, 0.15), transparent 70%);
    z-index: 0;
}

.mgmt-header {
    text-align: center;
    margin-bottom: 48px;
}

.mgmt-header .pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: var(--bs-secondary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(167, 139, 250, 0.3);
    margin-bottom: 14px;
}

.mgmt-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.mgmt-header h2 span {
    color: var(--bs-secondary);
}

.mgmt-header p {
    color: #94a3b8;
    font-size: 14px;
}

.mgmt-header .bar {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-secondary), #60a5fa);
    border-radius: 2px;
    margin: 14px auto 0;
}

.swiper {
    overflow: hidden;
    padding-bottom: 56px !important;
}

.member-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.member-card:hover {
    transform: translateY(-8px);
    border-color: rgba(167, 139, 250, 0.5);
    box-shadow: 0 24px 60px rgba(124, 58, 237, 0.25);
}

/* Big photo area */
.photo-area {
    position: relative;
    width: 100%;
    height: 540px;
    overflow: hidden;
}

.photo-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.member-card:hover .photo-area img {
    transform: scale(1.05);
}

/* Placeholder when no photo */
.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4f46e5, #7c3aed, #a21caf);
    gap: 8px;
}

.photo-placeholder .big-initial {
    font-size: 72px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
}

.photo-placeholder .ph-name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Name + designation overlay on photo */
.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 8, 40, 0.95) 0%, rgba(10, 8, 40, 0.5) 60%, transparent 100%);
    padding: 20px 18px 16px;
}

.overlay-desig {
    display: inline-block;
    /* background: linear-gradient(90deg, var(--bs-secondary), var(--bs-secondary)); */
    background-color: #f5a425;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.overlay-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    white-space: normal;
}

.overlay-name span {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 3px;
}

/* Qualification row below photo */
.card-footer-info {
    padding: 14px 18px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.qual-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qual-icon svg {
    width: 18px;
    height: 18px;
}

.qual-text-wrap {
    flex: 1;
    min-width: 0;
}

.qual-label {
    font-size: 10px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.qual-value {
    font-size: 13px;
    color: #c4b5fd;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.qual-sub {
    font-size: 11px;
    color: #64748b;
}

/* Pagination dots */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.25) !important;
    width: 8px !important;
    height: 8px !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #a78bfa !important;
    width: 26px !important;
    border-radius: 4px !important;
}

/* Arrow buttons */
.nav-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 6px;
}

.nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
}

.nav-btn:hover {
    background: #7c3aed;
    border-color: #7c3aed;
}



.post-slide {
    background: #fff;
    margin: 20px 15px 20px;
    border-radius: 15px;
    padding-top: 1px;
    box-shadow: 0px 14px 22px -9px #bbcbd8;
}

.post-slide .post-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: -12px 15px 8px 15px;
    /* margin-left: -10px; */
}

.post-slide .post-img img {
    width: 100%;
    height: auto;
    transform: scale(1, 1);
    transition: transform 0.2s linear;
}

.post-slide:hover .post-img img {
    transform: scale(1.1, 1.1);
}

.post-slide .over-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background: linear-gradient(-45deg, rgba(6, 190, 244, 0.75) 0%, rgba(45, 112, 253, 0.6) 100%);
    transition: all 0.50s linear;
}

.post-slide:hover .over-layer {
    opacity: 1;
    text-decoration: none;
}

.post-slide .over-layer i {
    position: relative;
    top: 45%;
    text-align: center;
    display: block;
    color: #fff;
    font-size: 25px;
}

.post-slide .post-content {
    background: #fff;
    padding: 2px 20px 40px;
    border-radius: 15px;
}

.post-slide .post-title a {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease 0s;
}

.post-slide .post-title a:hover {
    text-decoration: none;
    color: #3498db;
}

.post-slide .post-description {
    line-height: 24px;
    color: #808080;
    margin-bottom: 25px;
    text-align: justify;
}

.post-slide .post-date {
    color: #a9a9a9;
    font-size: 14px;
}

.post-slide .post-date i {
    font-size: 20px;
    margin-right: 8px;
    color: #CFDACE;
}

.post-slide .read-more {
    padding: 7px 20px;
    float: right;
    font-size: 12px;
    background: var(--bs-secondary);
    color: #ffffff;
    box-shadow: 0px 10px 20px -10px rgba(27,127,204,.8);
    border-radius: 25px;
    text-transform: uppercase;
}

.post-slide .read-more:hover {
    background: #3498db;
    text-decoration: none;
    color: #fff;
}

.owl-controls .owl-buttons {
    text-align: center;
    margin-top: 20px;
}

.owl-controls .owl-buttons .owl-prev {
    background: #fff;
    position: absolute;
    top: -13%;
    left: 15px;
    padding: 0 18px 0 15px;
    border-radius: 50px;
    box-shadow: 3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-next {
    background: #fff;
    position: absolute;
    top: -13%;
    right: 15px;
    padding: 0 15px 0 18px;
    border-radius: 50px;
    box-shadow: -3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
}

.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
    content: "\f104";
    font-family: FontAwesome;
    color: #333;
    font-size: 30px;
}

.owl-controls .owl-buttons .owl-next:after {
    content: "\f105";
}

@media only screen and (max-width:1280px) {
    .post-slide .post-content {
        padding: 0px 15px 25px 15px;
    }
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
    position: relative;
    padding: 100px 15px;
    /* background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%); */
    /* overflow: hidden; */
    font-family: 'Poppins', sans-serif;
}

/* =========================
   BACKGROUND SHAPES
========================= */

.about-bg-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(50px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 58, 102, 0.08);
    top: -100px;
    left: -80px;
    animation: floatShape 7s ease-in-out infinite;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(14, 165, 233, 0.08);
    bottom: -80px;
    right: -60px;
    animation: floatShape 9s ease-in-out infinite;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================
   IMAGE SIDE
========================= */

.position-relative {
    z-index: 2;
}

.image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1b7fcc, #1b7fcc);
    top: 20px;
    left: 20px;
    border-radius: 30px;
    opacity: 0.15;
    z-index: 0;
}

.img-placeholder {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.img-placeholder img {
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.img-placeholder:hover img {
    transform: scale(1.05);
}

/* =========================
   FLOATING BADGE
========================= */

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003a66, #005792);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 58, 102, 0.25);
    border: 6px solid #fff;
    z-index: 5;
    animation: floating 4s ease-in-out infinite;
}

.experience-badge h3 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    color: wheat;
}

.experience-badge span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================
   CONTENT SIDE
========================= */

.section-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(14, 165, 233, 0.08);
    color: #0ea5e9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #003a66;
    margin: 0;
}

.accent-line {
    width: 90px;
    height: 5px;
    border-radius: 10px;
    background: linear-gradient(to right, #003a66, #0ea5e9);
}

.about-body {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    text-align: justify;
    margin: 0;
}

/* =========================
   STATS
========================= */

.stat-card {
    background: #fff;
    border-radius: 22px;
    padding: 28px 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
    border: 1px solid rgba(0, 58, 102, 0.08);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003a66, #005792);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 22px;
}

.stat-num {
    font-size: 22px;
    font-weight: 700;
    color: #003a66;
}

.stat-label {
    font-size: 12px;
    color: #777;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================
   AFFILIATIONS
========================= */

/* .affiliations {
    display: flex;
    flex-direction: column;
    gap: 14px;
} */

.affil-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    color: #444;
    font-size: 14px;
    transition: 0.3s ease;
}

.affil-item:hover {
    transform: translateX(8px);
}

.affil-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003a66, #0ea5e9);
    flex-shrink: 0;
}

/* =========================
   BUTTON
========================= */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 15px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, #003a66, #005792);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 15px 30px rgba(0, 58, 102, 0.2);
}

.about-btn:hover {
    background: linear-gradient(135deg, #0ea5e9, #003a66);
    transform: translateY(-4px);
    color: #fff;
}

/* =========================
   FLOATING ANIMATION
========================= */

@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .about-title {
        font-size: 38px;
    }

    .img-placeholder img {
        min-height: auto;
    }
}

@media (max-width: 768px) {

    .about-section {
        padding: 70px 15px;
    }

    .about-title {
        font-size: 30px;
    }

    .experience-badge {
        width: 95px;
        height: 95px;
        right: 15px;
        bottom: -15px;
    }

    .experience-badge h3 {
        font-size: 22px;
    }

    .experience-badge span {
        font-size: 9px;
    }

    .stat-card {
        padding: 20px 10px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .stat-num {
        font-size: 18px;
    }

    .stat-label {
        font-size: 10px;
    }

    .affil-item {
        font-size: 13px;
    }
}

/* ======================
   LOGO SIGNIFIES
====================== */

.ls-logo-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
}

.ls-logo-panel:hover {
    transform: translateY(-6px);
}

.ls-logo-frame {
    width: clamp(220px, 30vw, 420px);
    aspect-ratio: 1 / 1;
    margin: auto;
    border-radius: 50%;
    padding: clamp(8px, 1vw, 14px);
    background: linear-gradient(135deg, #0ea5e9, #BA7517);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.ls-logo-frame:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 60px rgba(14, 165, 233, 0.28);
}

.ls-logo-frame img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    padding: clamp(8px, 1vw, 14px);
}

/* Tablet */
@media (max-width: 992px) {
    .ls-logo-frame {
        width: 320px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .ls-logo-frame {
        width: 240px;
    }
}

.ls-motto {
    margin-top: 24px;
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: linear-gradient(135deg, #e0f4ff, #fff7eb);
    color: #0369a1;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(14, 165, 233, 0.12);
}

.ls-verse {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* ======================
   CARDS WRAPPER
====================== */

.ls-cards {
    height: 100%;
}

/* ======================
   CARDS
====================== */

.ls-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    height: 100%;
}

.ls-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.ls-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(14, 165, 233, 0.04);
    border-radius: 50%;
    right: -40px;
    top: -40px;
}

/* ======================
   HIGHLIGHT CARD
====================== */

.ls-card--highlight {
    margin-top: 18px;
    background: linear-gradient(135deg, #fff4e5, #fff9f2);
    border: 1px solid rgba(186, 117, 23, 0.15);
}

/* ======================
   ICONS
====================== */

.ls-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.ls-icon i {
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

/* ICON COLORS */

.ls-green {
    background: linear-gradient(135deg, #1ba97f, #0f6e56);
}

.ls-pink {
    background: linear-gradient(135deg, #38bdf8, #0284c7);
}

.ls-blue {
    background: linear-gradient(135deg, #3498ff, #185FA5);
}

.ls-red {
    background: linear-gradient(135deg, #ff6b6b, #b12b2b);
}

.ls-olive {
    background: linear-gradient(135deg, #79c83d, #4a8f16);
}

.ls-gold {
    background: linear-gradient(135deg, #ffcb6b, #d89417);
}

/* ======================
   TEXT
====================== */

.ls-card-text {
    flex: 1;
}

.ls-card-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #132238;
    margin-bottom: 6px;
    line-height: 1.3;
}

.ls-card-desc {
    display: block;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 991px) {

    .ls-logo-panel {
        margin-bottom: 25px;
    }

    .ls-logo-frame {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {

    .ls-card {
        padding: 20px;
    }

    .ls-logo-frame {
        width: 190px;
        height: 190px;
    }

    .ls-card-name {
        font-size: 18px;
    }
}

@media (max-width: 576px) {

    .ls-card {
        flex-direction: row;
        align-items: flex-start;
    }

    .ls-icon {
        min-width: 55px;
        width: 55px;
        height: 55px;
    }

    .ls-icon i {
        font-size: 20px;
    }

    .ls-card-name {
        font-size: 17px;
    }

    .ls-card-desc {
        font-size: 13px;
    }

    .ls-logo-panel {
        padding: 30px 20px;
    }
}

/* =========================
   Mission & Vision Section
========================= */

.mv-section {
    background:
        linear-gradient(135deg, #f0f9ff 0%, #ffffff 45%, #fffde7 100%);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Floating Background */
.mv-section::before,
.mv-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    filter: blur(10px);
}

/* Header */
.mv-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
}

.mv-main-title {
    font-size: 52px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.mv-subtitle {
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    max-width: 700px;
    margin: auto;
}

.mv-title-line {
    width: 90px;
    height: 5px;
    border-radius: 50px;
    background: linear-gradient(to right, #0ea5e9, #f59e0b);
    margin: 24px auto 0;
}

/* Cards */
.mv-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    z-index: 1;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Glow */
.mv-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    top: -60px;
    right: -60px;
    opacity: 0.18;
}

/* Icon */
.mv-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Icons */
.mv-icon i {
    font-size: 34px;
    line-height: 1;
}

.mission-icon i {
    color: #2576b4;
}

.vision-icon i {
    color: #b38b00;
}

.mission-icon {
    background: linear-gradient(135deg, #56a9e9, #a8cde9);
}

.vision-icon {
    background: linear-gradient(135deg, #fff1d6, #ffe6a8);
}

/* Labels */
.mv-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.mission-label {
    background: #cde0ee;
    color: #003a66;
}

.vision-label {
    background: #fff1d0;
    color: #8f6900;
}

.mv-card-title {
    font-size: 34px;
    font-weight: 800;
    color: #111;
    margin-bottom: 0;
}

/* Bar */
.mv-bar {
    width: 100%;
    height: 5px;
    border-radius: 30px;
    margin: 28px 0 24px;
}

.mission-bar {
    background: linear-gradient(to right, #003a66, #2576b4);
}

.vision-bar {
    background: linear-gradient(to right, #b38b00, #ffd45c);
}

/* Description */
.mv-description {
    font-size: 15px;
    line-height: 2;
    color: #555;
    margin-bottom: 28px;
}

/* Tags */
.mv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mv-tags span {
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    background: #cde0ee;
    color: #003a66;
    border: 1px solid #cde0ee;
    transition: 0.3s ease;
}

.mv-tags span:hover {
    transform: translateY(-3px);
}

.vision-tags span {
    background: #fff3d8;
    color: #8b6500;
    border-color: #ffe3a0;
}

/* Responsive */
@media (max-width: 991px) {

    .mv-main-title {
        font-size: 40px;
    }

    .mv-card {
        padding: 32px;
    }

}

@media (max-width: 767px) {

    .mv-main-title {
        font-size: 34px;
    }

    .mv-subtitle {
        font-size: 14px;
    }

    .mv-card-title {
        font-size: 28px;
    }

    .mv-card {
        padding: 28px 24px;
    }

    .mv-icon {
        width: 65px;
        height: 65px;
    }

}

/* =========================
            SECTION
========================= */
.faculty-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title span {
    display: inline-block;
    background: rgba(14, 165, 233, 0.08);
    color: var(--bs-secondary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: #003a66;
}

/* =========================
            TABS
========================= */
.faculty-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.faculty-tabs .nav-link {
    border: none;
    background: #fff;
    color: #003a66;
    padding: 14px 28px;
    border-radius: 60px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.faculty-tabs .nav-link:hover {
    transform: translateY(-4px);
}

.faculty-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--bs-secondary), var(--bs-secondary));
    color: #fff;
}

/* ==========================================
   PERFECT OVERLAP IMAGE + RIBBON CARD DESIGN
========================================== */

/* Card wrapper */
.staff-card {
    position: relative;
    /* max-width: 320px; */
    padding-top: 110px; /* space for overlapping image */
}

/* Circular image */
.staff-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 5;
    background: #fff;
    padding: 8px;
    box-shadow:
        0 20px 45px rgba(0, 58, 102, 0.18),
        0 0 0 6px #ffffff;
}

/* .staff-image::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003a66, var(--bs-secondary));
    z-index: -1;
    animation: staffRotate 5s linear infinite;
} */

.staff-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Main content box */
.staff-content {
    position: relative;
    /* background: linear-gradient(135deg, #003a66, #001d36); */
    border-radius: 28px;
    padding: 145px 25px 30px;
    text-align: center;
    color: #fff;
    overflow: visible;
    /* box-shadow: 0 25px 50px rgba(0, 58, 102, 0.18); */
}

/* Decorative ribbon diamonds */
/* .staff-content::before,
.staff-content::after {
    content: "";
    position: absolute;
    top: 18px;
    width: 28px;
    height: 28px;
    background: var(--bs-secondary);
    transform: rotate(45deg);
} */

.staff-content::before {
    left: 25px;
}

.staff-content::after {
    right: 25px;
}

/* Name badge */
.staff-content h4 {
    display: inline-block;
    background: linear-gradient(135deg, var(--bs-secondary), var(--bs-secondary));
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
    text-transform: capitalize;
}

/* Qualification */
.staff-content .qualification {
    color: black;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Designation */
.staff-content .designation {
    color: black;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Department */
.staff-content .department {
    color: black;
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 22px;
}

/* Social icons */
.staff-footer {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.staff-footer a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: #003a66;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.35s ease;
}

.staff-footer a:hover {
    background: var(--bs-secondary);
    color: #fff;
    transform: translateY(-4px) scale(1.08);
}

/* Rotation animation */
@keyframes staffRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* =========================
          RESPONSIVE
========================= */
@media (max-width: 991px) {
    .section-title h2 {
        font-size: 38px;
    }

    /* .staff-card {
        max-width: 280px;
        height: 280px;
    } */

    .staff-content {
        padding: 20px;
    }

    .staff-content h4 {
        font-size: 1.1rem;
    }

    .staff-content .qualification,
    .staff-content .designation,
    .staff-content .department {
        font-size: 0.8rem;
    }
}

@media (max-width: 767px) {
    .faculty-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .faculty-tabs .nav-link {
        width: 100%;
    }

   .staff-card {
        /* max-width: 290px; */
        padding-top: 95px;
        /* margin-top: 70px; */
    }

    .staff-image {
        width: 210px;
        height: 210px;
    }

    .staff-content {
        padding: 125px 20px 25px;
        border-radius: 24px;
    }

    .staff-content h4 {
        font-size: 1.1rem;
        padding: 10px 22px;
    }

    .staff-content .qualification,
    .staff-content .designation,
    .staff-content .department {
        font-size: 0.85rem;
    }

}

/* ── ADMISSION HERO ── */
.admission-wrapper {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* =========================
       TOP HERO
    ========================= */

.admission-admission {
    background:
        linear-gradient(135deg,
            rgba(0, 33, 71, 0.96),
            rgba(0, 82, 155, 0.92));
    background-size: cover;
    background-position: center;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    padding: 60px 50px;
    /* height: 530px; */
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.admission-admission::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
            rgba(255, 255, 255, 0.14),
            transparent 30%);
}

.admission-content {
    position: relative;
    z-index: 2;
}

.admission-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.admission-title {
    color: #fff;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 25px;
}

.admission-title span {
    color: #0ea5e9;
}

.admission-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.9;
    max-width: 650px;
    margin-bottom: 35px;
}

.admission-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.admission-btn {
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.admission-btn-primary {
    background: linear-gradient(135deg, var(--bs-secondary), var(--bs-secondary));
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 217, 255, 0.35);
}

.admission-btn-primary:hover {
    transform: translateY(-5px);
    color: #fff;
}

.admission-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.admission-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* =========================
       FLOATING STATS
    ========================= */

.floating-cards {
    /* margin-top: -70px; */
    position: relative;
    z-index: 10;
}

.info-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.info-card:hover {
    transform: translateY(-12px);
}

.info-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.info-icon {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin-bottom: 24px;
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.25);
    flex-shrink: 0;
}

.info-number {
    font-size: 52px;
    font-weight: 800;
    color: #002147;
    line-height: 1;
    margin-bottom: 10px;
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.info-desc {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* =========================
   SECTION SPACING
========================= */

.section-space {
    padding: 40px 0 0px;
}

/* =========================
   SECTION HEADING
========================= */

.section-heading h2 {
    font-size: 32px;
    font-weight: 800;
    color: #002147;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    width: 70px;
    height: 5px;
    border-radius: 50px;
    background: linear-gradient(90deg, #0ea5e9, #002147);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
}

.section-heading p {
    color: #666;
    font-size: 16px;
    max-width: 700px;
    margin: 1px auto 0;
    line-height: 1.9;
}


/* =========================
       ELIGIBILITY
    ========================= */


.eligibility-card {
    color: #fff;
    border-radius: 30px;
    padding: 35px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.eligibility-card.card-one {
    
    background: linear-gradient(135deg, #ff7b00, #ffb300);
}

/* CARD 2 */
.eligibility-card.card-two {
    background: linear-gradient(135deg, #002147, #004a8f);
}

/* CARD 3 */
.eligibility-card.card-three {
    background: linear-gradient(135deg, #0369a1, #0ea5e9);
}

.eligibility-card.card-four {
    background: linear-gradient(135deg, #006d77, #00b4d8);
}


.eligibility-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

.eligibility-icon {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 24px;
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.25);
}

.eligibility-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.eligibility-card p {
    color: #ffffff;
    line-height: 1.9;
    margin: 0;
    text-align: justify;
}

/* =========================
   LIST STYLE
========================= */

.admission-list {
    padding-left: 18px;
    margin: 0;
}

.admission-list li {
    margin-bottom: 14px;
    color: #ffffff;
    line-height: 1.9;
    font-size: 15px;
    text-align: justify;
}

/* =========================
   EXAM CARD
========================= */

.adm-exam-card {
    background: #fff;
    border-radius: 35px;
    padding: 45px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.adm-exam-total {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-bottom: 40px;
}

.adm-exam-total strong {
    font-size: 35px;
    color: #002147;
    font-weight: 800;
}

.adm-subject-row {
    display: grid;
    grid-template-columns: 220px 1fr 100px;
    align-items: center;
    gap: 20px;
    margin-bottom: 4px;
}

.adm-subject-name {
    font-size: 12px;
    font-weight: 600;
    color: #222;
}

.adm-bar-track {
    width: 100%;
    height: 10px;
    background: #edf1f7;
    border-radius: 50px;
    overflow: hidden;
}

.adm-bar-fill {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, #0ea5e9, #002147);
    animation: progressGrow 1.5s ease;
}

@keyframes progressGrow {
    from {
        width: 0;
    }
}

.adm-subject-marks {
    font-size: 12px;
    font-weight: 700;
    color: #002147;
    text-align: right;
}


/* =========================
       PROCESS TIMELINE
    ========================= */

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, #0ea5e9, #002147);
    top: 0;
    bottom: 0;
    left: 15px;
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
    background: antiquewhite;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

.timeline-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
    border-radius: 50%;
    left: -40px;
    top: 30px;
    border: 5px solid #f4f7fb;
}

.timeline-item h5 {
    font-size: 22px;
    font-weight: 700;
    color: #002147;
    margin-bottom: 12px;
}

.timeline-item p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* =========================
       DOCUMENTS
    ========================= */

.document-card {
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.document-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #fff, #fff3fa);
}

.document-icon {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
    color: #fff;
    margin: auto auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.document-card h6 {
    font-size: 15px;
    font-weight: 700;
    color: #002147;
    margin: 0;
}

.document-card h6 span{
    font-size: 12px;
    /* font-weight: 500; */
    color: #7a8a9e;
}

/* =========================
   WITHDRAW CARD
========================= */

.withdraw-card {
    background: linear-gradient(135deg, #fff7ea, #fff1d9);
    border-radius: 35px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    border-left: 6px solid #ff9800;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.withdraw-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.withdraw-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff9800, #e67e00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 12px 30px rgba(255, 152, 0, 0.3);
}

.withdraw-card h4 {
    font-size: 34px;
    font-weight: 800;
    color: #8a4f00;
    margin-bottom: 20px;
    margin: 0;
}

.withdraw-card p {
    color: #7a5b25;
    line-height: 2;
    font-size: 15px;
}

/* =========================
       RESPONSIVE
    ========================= */

@media(max-width:991px) {

    .admission-hero {
        padding: 50px 35px;
    }

    .hero-title {
        font-size: 50px;
    }
}

@media(max-width:767px) {

    .hero-title {
        font-size: 38px;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .floating-cards {
        margin-top: 40px;
    }
}

/*
---------------------------------------------
Events page
---------------------------------------------
*/

.card-media {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card-media:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.card-media-object-container {
    width: 40%;
    overflow: hidden;
    position: relative;
}

.card-media-object {
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.card-media:hover .card-media-object {
    transform: scale(1.1);
}

/* DATE BADGE */
.subtle {
    display: inline-block;
    font-size: 12px;
    color: black;
    font-weight: 800;
    background: linear-gradient(45deg, #e0f4ff, #b8e8ff);
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}

/* CONTENT */
.card-media-body {
    width: 60%;
    padding: 20px;
    position: relative;
}

.card-media-body-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.card-media-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

/* BUTTON */
.card-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 18px;
    border-radius: 50px;
    background: linear-gradient(45deg, var(--bs-secondary), var(--bs-secondary));
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.card-btn:hover {
    opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .card-media {
        flex-direction: column;
    }

    .card-media-object-container,
    .card-media-body {
        width: 100%;
    }

    .card-media-object-container {
        height: 220px;
    }
}



/* ---------News --------*/
.card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Info section below image */
.info {
    padding: 15px;
}

/* Title */
.info h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.info h2 a {
    text-decoration: none;
    color: #000;
}

.info h2 a:hover {
    color: var(--bs-secondary);
}

/* Date & Location */
.info ul {
    padding: 0;
    margin: 0 0 10px 0;
    list-style: none;
    color: #666;
    font-size: 14px;
}

/* Paragraph */
.desc {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}


/* ---------Photo Gallery ---------*/
.gallery {
    display: flex;
    flex-wrap: wrap;
    max-width: 1140px;
    margin: 0 auto;
    justify-content: space-between;
    padding: 30px 10px;
}

/* Card Style */
.thumbnail {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    height: 260px;
    min-width: 200px;
    max-width: 23%;
    flex: 0 0 23%;

    margin-bottom: 30px;
    border-radius: 16px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);

    transition: all 0.4s ease;
    overflow: hidden;
}

/* Hover Card Lift */
.thumbnail:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Glow effect */
.thumbnail::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(247, 216, 235, 0.3), transparent);
    opacity: 0;
    transition: 0.4s;
}

.thumbnail:hover::before {
    opacity: 1;
}

/* Title */
.title {
    margin-top: auto;
    padding: 15px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* Folder */
.folder {
    position: relative;
    height: 120px;
    width: 160px;
    margin-top: auto;

    background: #ffc107;
    border-radius: 10px 14px 0 0;

    box-shadow: 0 10px 25px #ffe9a7;
    overflow: visible;
    transition: 0.4s;
}

/* Folder top tab */
.folder::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    height: 20px;
    width: 40%;
    background: #ffc107;
    border-radius: 8px 8px 0 0;
}

/* Folder shine */
.folder::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 6px;
}

.file-img {
    position: absolute;
    bottom: 0;
    left: 8px;

    width: 92%;
    height: 100%;

    object-fit: cover;
    border-radius: 10px;

    transform: scale(0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);

    transition: 0.4s ease;
}

/* Hover Animation */
.thumbnail:hover .file-img {
    transform: translate(20px, -45px) rotate(8deg) scale(1);
}

.thumbnail:hover .folder {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .thumbnail {
        max-width: 48%;
        flex: 0 0 48%;
    }
}

@media (max-width: 576px) {
    .thumbnail {
        max-width: 100%;
        flex: 0 0 100%;
    }
}


/* Video Gallery */

.video-wrapper {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.video-container {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Video */
.responsive-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.responsive-video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Mobile View */
@media (max-width: 768px) {
    .video-wrapper {
        flex-direction: column;
    }
}



section.our-facts {
    position: relative;
    /* important */
    background-image: url(../img/STE_1517.JPG);
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0px 125px 0px;
    overflow: hidden;
}

/* Overlay FIX */
section.our-facts::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* adjust darkness */
    z-index: 1;
}

/* Make content appear above overlay */
section.our-facts * {
    position: relative;
    z-index: 2;
}

/* Heading */
section.our-facts h2 {
    font-size: 38px;
    color: #fff;
    line-height: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 50px;
}

/* Cards */
.count-area-content {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    /* modern glass effect */
    border-radius: 20px;
    padding: 25px 30px 35px 30px;
    margin: 15px 0px;
}

/* Counter */
.percentage .count-digit:after {
    content: '%';
    margin-left: 3px;
}

.count-digit {
    margin: 5px 0px;
    color: #f5a425;
    font-weight: 700;
    font-size: 36px;
}

.count-title {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}

.new-students {
    margin-top: 45px;
}

section.our-facts .video {
    position: relative;
    margin-left: 10px;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    /* maintains video ratio */
}


section.our-facts .video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
    border: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
    padding: 100px 0;
    background: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    position: relative;
}

/* =========================
   LEFT CONTENT
========================= */

.hero-title {
    font-size: 34px;
    font-weight: 700;
    color: #f5a425;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--bs-secondary);
}

.hero-text {
    margin: 20px 0;
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    text-align: justify;
}

.learn-link {
    color: #2F327D;
    text-decoration: underline;
    font-weight: 500;
}

/* =========================
   BUTTON
========================= */

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--bs-secondary);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: 0.4s ease;
}

.about-btn:hover {
    background: var(--bs-secondary);
    color: #fff;
    transform: translateY(-3px);
}

/* =========================
   CIRCLE SHAPE
========================= */

.circle-shape {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--bs-secondary);
    border-radius: 50%;
    top: -5px;
    left: 0;
    z-index: 0;
    animation: floatCircle 4s ease-in-out infinite;
}

@keyframes floatCircle {

    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(8px) scale(1.08);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

/* =========================
   IMAGE AREA
========================= */

.aboutimage-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    margin: auto;
    max-width: 100%;
}

.aboutimage-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    display: block;
}

/* FLOATING BOXES */

.blue-box,
.yellow-box {
    position: absolute;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

.blue-box {
    width: 80px;
    height: 80px;
    background: #23BDEE;
    border-radius: 12px;
    top: -20px;
    left: -20px;
}

.yellow-box {
    width: 120px;
    height: 120px;
    background: #f59e0b;
    border-radius: 12px;
    bottom: -25px;
    right: -25px;
}

@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================
   PLAY BUTTON
========================= */

.play-btn {
    position: absolute;
    width: 65px;
    height: 65px;
    background: white;
    color: #23BDEE;
    font-size: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 3;
}

/* =========================
   LARGE SCREEN
========================= */

@media (max-width: 1400px) {

    .hero-title {
        font-size: 30px;
    }

    .hero-text {
        font-size: 14px;
        text-align: justify;
    }
}

/* =========================
   LAPTOP
========================= */

@media (max-width: 1200px) {

    .hero-section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-text {
        font-size: 14px;
        line-height: 1.8;
        text-align: justify;
    }

    .blue-box {
        width: 70px;
        height: 70px;
    }

    .yellow-box {
        width: 100px;
        height: 100px;
    }
}

/* =========================
   TABLET VIEW
========================= */

@media (max-width: 991px) {

    .hero-section {
        padding: 70px 0;
    }

    /* .hero-section .row {
        row-gap: 50px;
    } */

    .hero-title {
        font-size: 32px;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        font-size: 15px;
        text-align: justify;
    }

    .about-btn {
        display: inline-flex;
        margin: 20px auto 0;
    }

    .col-lg-6.position-relative:first-child {
        text-align: center;
    }

    .circle-shape {
        left: 50%;
        transform: translateX(-50%);
        top: -15px;
                display: none;
    }

    .aboutimage-wrapper {
        max-width: 90%;
    }

    .blue-box {
        width: 60px;
        height: 60px;
        top: -15px;
        left: -15px;
    }

    .yellow-box {
        width: 90px;
        height: 90px;
        bottom: -15px;
        right: -15px;
    }
}

/* =========================
   MOBILE VIEW
========================= */

@media (max-width: 576px) {

    .hero-section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.4;
    }

    .hero-text {
        font-size: 14px;
        line-height: 1.8;
        margin: 15px 0;
        text-align: justify;
    }

    .about-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .aboutimage-wrapper {
        max-width: 100%;
    }

    .aboutimage-wrapper img {
        border-radius: 16px;
    }

    .play-btn {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }

    .blue-box {
        width: 45px;
        height: 45px;
        border-radius: 10px;
        top: -10px;
        left: -10px;
    }

    .yellow-box {
        width: 70px;
        height: 70px;
        border-radius: 10px;
        bottom: -10px;
        right: -10px;
    }

    .circle-shape {
        width: 40px;
        height: 40px;
                display: none;
    }
}

/* =========================
   EXTRA SMALL DEVICES
========================= */

@media (max-width: 400px) {

    .hero-title {
        font-size: 22px;
    }

    .hero-text {
        font-size: 13px;
        text-align: justify;
    }

    .about-btn {
        width: 100%;
        justify-content: center;
    }

    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}
/* ==============
     Library
================= */
.laboratories-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(0, 58, 102, 0.08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(179, 139, 0, 0.08), transparent 30%),
        linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
}

/* .laboratories-section::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(0, 58, 102, 0.04);
        border-radius: 50%;
        top: -200px;
        right: -120px;
    }

    .laboratories-section::after {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        background: rgba(179, 139, 0, 0.06);
        border-radius: 50%;
        bottom: -180px;
        left: -120px;
    } */

/* =========================
        laboratories CARD
    ========================= */

.laboratories-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    border-radius: 32px;
    padding: 16px;
    height: 100%;
    overflow: hidden;
    transition: 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 15px 40px rgba(0, 58, 102, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.laboratories-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 55px rgba(0, 58, 102, 0.18),
        inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.laboratories-card h4 {
    font-size: 14px;
    font-weight: 700;
}

/* .laboratories-card::before {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        background: linear-gradient(135deg,
                rgba(179, 139, 0, 0.12),
                rgba(0, 58, 102, 0.08));
        border-radius: 50%;
        top: -70px;
        right: -70px;
    } */


/* =========================
        FEATURE SECTION
    ========================= */

.sports-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: linear-gradient(135deg, #003A66, #00497f);
    padding: 0;
    box-shadow: 0 25px 55px rgba(0, 58, 102, 0.22);
}

.sports-content {
    padding: 70px;
    color: #fff;
}

.sports-content span {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
}

.sports-content h3 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
}

.sports-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    font-size: 16px;
    text-align: justify;
}

.sports-image {
    height: 100%;
}

.sports-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
        RULES
    ========================= */

.rules-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-radius: 35px;
    padding: 60px;
    box-shadow: 0 15px 45px rgba(0, 58, 102, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.rules-heading {
    text-align: center;
    margin-bottom: 50px;
}

.rules-heading h3 {
    font-size: 44px;
    font-weight: 900;
    color: #003A66;
    margin-bottom: 15px;
}

.rules-heading p {
    color: #68707a;
}

.rule-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-radius: 22px;
    background: #f8fbff;
    margin-bottom: 22px;
    transition: 0.4s ease;
}

.rule-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 58, 102, 0.08);
}

.rule-icon {
    min-width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #003A66, #005792);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0, 58, 102, 0.18);
}

.rule-item p {
    margin: 0;
    line-height: 1.9;
    color: #5d6670;
    font-size: 15px;
}

@media(max-width:991px) {

    .laboratories-heading h2,
    .sports-content h3,
    .rules-heading h3 {
        font-size: 34px;
    }

    .sports-content,
    .rules-box {
        padding: 35px;
    }
}


.quick-links {
    position: sticky;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 58, 102, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.quick-links-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}

.quick-links-header i {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, #003A66, #005792);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0, 58, 102, 0.2);
}

.quick-links-header h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #003A66;
}

.quick-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.quick-links ul li {
    margin-bottom: 14px;
}

.quick-links ul li:last-child {
    margin-bottom: 0;
}

.quick-links ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 16px;
    color: #5f6770;
    font-size: 15px;
    font-weight: 500;
    transition: 0.4s ease;
    background: #f8fbff;
}

.quick-links ul li a i {
    color: #b38b00;
    transition: 0.4s ease;
}

.quick-links ul li a:hover {
    background: linear-gradient(135deg, #003A66, #005792);
    color: #fff;
    transform: translateX(6px);
    box-shadow: 0 10px 25px rgba(0, 58, 102, 0.18);
}

.quick-links ul li a:hover i {
    color: #fff;
}

/* ACTIVE LINK */
.quick-links ul li a.active {
    background: linear-gradient(135deg, #003A66, #005792);
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 58, 102, 0.22);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(6px);
    position: relative;
}

.quick-links ul li a.active i {
    color: #fff;
}

/* Gold side indicator */
.quick-links ul li a.active::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 10px;
    bottom: 10px;
    width: 5px;
    border-radius: 20px;
    background: #b38b00;
}

@media(max-width:991px) {

    .quick-links {
        position: relative;
        top: 0;
        margin-bottom: 35px;
    }

}


.facility-heading {
    text-align: justify;
    position: relative;
    z-index: 2;
}

.facility-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 100px;
    background: rgba(0, 58, 102, 0.08);
    color: #003A66;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.facility-tag i {
    color: #b38b00;
}

.facility-heading h2 {
    font-size: 58px;
    font-weight: 900;
    color: #003A66;
    margin-bottom: 25px;
    line-height: 1.1;
}

.facility-heading h2 span {
    color: #b38b00;
}

.facility-heading p {
    max-width: 950px;
    margin: auto;
    color: #5e6670;
    font-size: 17px;
    line-height: 2;
}

/* =========================
   Modern Image Collection
========================= */

.modern-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 170px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    cursor: pointer;
    background: #f4f4f4;
    transition: 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Different Shapes */
.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Hover Effect */
.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.45),
            transparent);
    opacity: 0;
    transition: 0.4s;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.12) rotate(2deg);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

/* Responsive */

@media(max-width:991px) {

    .modern-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
    }
}

@media(max-width:576px) {

    .modern-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }
}

/* =====================================================
   ACADEMIC RULES & FEE REGULATIONS - MODERN IMAGE UI
   Applies to the HTML structure in your uploaded file.
   :contentReference[oaicite:0]{index=0}
===================================================== */

/* Section Background */
.academic-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    /* background:
        linear-gradient(rgba(0, 58, 102, 0.92), rgba(0, 58, 102, 0.88)),
        url('../img/bg/nursing-campus.jpg') center center / cover no-repeat; */
}

/* Decorative circles */
.academic-section::before,
.academic-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.academic-section::before {
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.06);
    top: -100px;
    left: -100px;
}

.academic-section::after {
    width: 260px;
    height: 260px;
    background: rgba(179, 139, 0, 0.12);
    bottom: -80px;
    right: -80px;
}

/* Keep content above background */
.academic-section .container {
    position: relative;
    z-index: 2;
}

/* =========================
   SECTION HEADING
========================= */
.academic-heading {
    max-width: 850px;
    margin: auto;
}

.academic-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: #ffd86b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.academic-title {
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.2;
}

.academic-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.9;
}

/* =========================
   MAIN CARDS
========================= */
.rule-card,
.fee-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
}

.rule-card:hover,
.fee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.22);
}

/* Top image banner */
.rule-card::before,
.fee-card::before {
    content: "";
    display: block;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Academic Rules image */
.rule-card::before {
    background-image:
        linear-gradient(rgba(0, 58, 102, 0.25), rgba(0, 58, 102, 0.45)),
        url('../img/acadamic.jpg');
}

/* Fee image */
.fee-card::before {
    background-image:
        linear-gradient(rgba(179, 139, 0, 0.15), rgba(179, 139, 0, 0.35)),
        url('../img/payment.jpg');
}

/* Inner content */
.rule-card > *,
.fee-card > * {
    position: relative;
    z-index: 2;
}

/* Content padding */
.rule-card-header,
.rule-list,
.fee-header,
.fee-list {
    padding-left: 35px;
    padding-right: 35px;
}

.rule-card-header,
.fee-header {
    margin-top: -35px;
    margin-bottom: 25px;
}

/* =========================
   CARD HEADERS
========================= */
.rule-card-header,
.fee-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.rule-card-header h4,
.fee-header h4 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    color: antiquewhite;
}

.rule-card-header p {
    margin: 6px 0 0;
    color: #6b7280;
    font-size: 14px;
}

/* Floating icon */
/* .rule-card-header::before,
.fee-header::before {
    content: "";
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, #003A66, #005792);
    box-shadow: 0 15px 30px rgba(0, 58, 102, 0.25);
} */

/* .rule-card-header::after,
.fee-header::after {
    position: absolute;
    left: 57px;
    top: 36px;
    transform: translate(-50%, -50%);
    font-family: "Bootstrap-icons";
    color: #fff;
    font-size: 28px;
    z-index: 3;
} */

.rule-card-header::after {
    content: "\f633"; /* bi-journal-check */
}

.fee-header::after {
    content: "\f3d1"; /* bi-credit-card */
}

/* =========================
   RULE ITEMS
========================= */
.rule-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 35px;
}

.rule-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: linear-gradient(135deg, #f8fbff, #ffffff);
    border-radius: 22px;
    padding: 22px;
    border: 1px solid #eef3f8;
    transition: all 0.3s ease;
}

.rule-item:hover {
    background: #eef6ff;
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(0, 58, 102, 0.08);
}

.rule-item span {
    min-width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #b38b00, #e2b623);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 12px 25px rgba(179, 139, 0, 0.25);
}

.rule-item p {
    margin: 0;
    color: #1f2937;
    line-height: 1.9;
    font-size: 15px;
    text-align: justify;
}

/* =========================
   FEE ITEMS
========================= */
.fee-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 35px;
}

.fee-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f8fbff, #ffffff);
    border: 1px solid #eef3f8;
    transition: all 0.3s ease;
}

.fee-item:hover {
    background: #eef6ff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 58, 102, 0.06);
}

.fee-item i {
    color: #b38b00;
    font-size: 20px;
    margin-top: 3px;
}

.fee-item p {
    margin: 0;
    color: #1f2937;
    line-height: 1.8;
    font-size: 15px;
    text-align: justify;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
    .academic-section {
        padding: 80px 0;
    }

    .academic-title {
        font-size: 34px;
    }

    .rule-card::before,
    .fee-card::before {
        height: 180px;
    }

    .rule-card-header,
    .rule-list,
    .fee-header,
    .fee-list {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 767.98px) {
    .academic-title {
        font-size: 28px;
    }

    .academic-subtitle {
        font-size: 15px;
    }

    .rule-item {
        flex-direction: column;
    }

    .rule-card::before,
    .fee-card::before {
        height: 160px;
    }

    .rule-card-header h4,
    .fee-header h4 {
        font-size: 24px;
    }
}

@media (max-width: 575.98px) {
    .academic-section {
        padding: 70px 0;
    }

    .rule-card,
    .fee-card {
        border-radius: 24px;
    }

    .rule-item,
    .fee-item {
        padding: 16px;
    }
}

/* =========================
   College Rules Section
========================= */

.collegerules-section {
    background: radial-gradient(circle at top left, rgba(0, 58, 102, 0.08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(179, 139, 0, 0.08), transparent 30%),
        linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    overflow: hidden;
}

/* Heading */

.collegerules-heading {
    max-width: 850px;
    margin: auto;
}

.collegerules-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(179, 139, 0, 0.12);
    color: #b38b00;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.collegerules-title {
    font-size: 48px;
    font-weight: 800;
    color: #003A66;
}

.collegerules-subtitle {
    color: #667085;
    line-height: 1.8;
    font-size: 17px;
}

/* Cards */
.collegerules-card,
.collegeside-card,
.collegenotice-box {
    background: #fff;
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 15px 40px rgba(0, 58, 102, 0.08);
    border: 1px solid #edf2f7;
    transition: 0.4s ease;
}

.collegerules-card:hover,
.collegeside-card:hover,
.collegenotice-box:hover {
    transform: translateY(-5px);
}

/* Header */

.collegerules-card-header,
.collegeside-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.collegerules-icon,
.collegeside-header i {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg, #003A66, #005792);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 58, 102, 0.2);
}

.collegerules-icon.gold {
    background: linear-gradient(135deg, #b38b00, #d4a600);
}

.collegerules-icon.red {
    background: linear-gradient(135deg, #b45309, #f59e0b);
}

.collegerules-card-header h4,
.collegeside-header h4 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: #003A66;
}

.collegerules-card-header p {
    margin: 5px 0 0;
    color: #7a8793;
}

/* Rule Boxes */

.collegerules-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.collegerule-box {
    display: flex;
    gap: 18px;
    background: #f8fbff;
    padding: 22px;
    border-radius: 22px;
    transition: 0.3s ease;
}

.collegerule-box:hover {
    background: #eef6ff;
    transform: translateX(6px);
}

.collegerule-number {
    min-width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #003A66, #005792);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.collegerule-content h5 {
    font-size: 19px;
    font-weight: 700;
    color: #003A66;
    margin-bottom: 8px;
}

.collegerule-content p {
    margin: 0;
    color: #5f6770;
    line-height: 1.8;
    text-align: justify;
}

/* Mini Rules */

.collegemini-rules {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.collegemini-rule {
    background: #f8fbff;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #5f6770;
    line-height: 1.7;
}

.collegemini-rule i {
    color: #b38b00;
    margin-top: 3px;
}

/* Timeline */

.collegetimeline {
    position: relative;
    padding-left: 24px;
}

.collegetimeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #d8e7f3;
}

.collegetimeline-item {
    position: relative;
    margin-bottom: 28px;
}

.collegetimeline-item:last-child {
    margin-bottom: 0;
}

.collegetimeline-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #003A66;
    position: absolute;
    left: -24px;
    top: 6px;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px #dcecf8;
}

.collegetimeline-content {
    background: #f8fbff;
    padding: 18px 22px;
    border-radius: 18px;
    color: #5f6770;
    line-height: 1.8;
    text-align: justify;
}

/* Side Card */

.collegeside-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.collegeside-item {
    background: #f8fbff;
    padding: 18px;
    border-radius: 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #5f6770;
    line-height: 1.7;
    text-align: justify;
}

.collegeside-item i {
    color: #b38b00;
    margin-top: 3px;
}

/* Notice */

.collegenotice-box {
    text-align: center;
}

.collegenotice-icon {
    width: 85px;
    height: 85px;
    margin: auto auto 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, #b38b00, #d4a600);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 15px 30px rgba(179, 139, 0, 0.25);
}

.collegenotice-box h4 {
    font-size: 28px;
    font-weight: 800;
    color: #003A66;
    margin-bottom: 14px;
}

.collegenotice-box p {
    color: #667085;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */

@media(max-width:991px) {

    .collegerules-title {
        font-size: 36px;
    }

    .collegerules-card,
    .collegeside-card,
    .collegenotice-box {
        padding: 24px;
    }

}

@media(max-width:576px) {

    .collegerules-title {
        font-size: 28px;
    }

    .collegerule-box {
        flex-direction: column;
    }

}


/* =========================
   Anti Ragging Section
========================= */

.antiragging-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

/* Heading */

.antiragging-heading {
    max-width: 850px;
    margin: auto;
}

.antiragging-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(179, 139, 0, 0.12);
    color: #b38b00;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.antiragging-title {
    font-size: 40px;
    font-weight: 800;
    color: #003A66;
}

.antiragging-subtitle {
    color: #667085;
    line-height: 1.8;
    font-size: 17px;
}

/* Main Card */

.antiragging-main-card,
.antipunishment-card,
.committee-card,
.drugpolicy-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 58, 102, 0.08);
    border: 1px solid #edf2f7;
}

.antiragging-main-card h3 {
    font-size: 30px;
    font-weight: 800;
    color: #003A66;
    margin-bottom: 18px;
}

.antiragging-main-card p {
    color: #5f6770;
    line-height: 1.9;
    font-size: 16px;
    text-align: justify;
}

.antiragging-badge {
    width: 160px;
    height: 160px;
    border-radius: 40px;
    margin: auto;
    background: linear-gradient(135deg, #003A66, #005792);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 70px;
    box-shadow: 0 20px 40px rgba(0, 58, 102, 0.2);
}

/* Feature Cards */

.antiragging-feature-card {
    background: #fff;
    border-radius: 28px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0, 58, 102, 0.08);
    transition: 0.4s ease;
}

.antiragging-feature-card:hover {
    transform: translateY(-6px);
}

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 22px;
    background: linear-gradient(135deg, #003A66, #005792);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
}

.feature-icon.gold {
    background: linear-gradient(135deg, #b38b00, #d4a600);
}

.feature-icon.red {
    background: linear-gradient(135deg, #b45309, #f59e0b);
}

.feature-icon.green {
    background: linear-gradient(135deg, #198754, #20c997);
}

.feature-icon.pink {
    background: linear-gradient(135deg, #0369a1, #38bdf8);
}

.antiragging-feature-card h4 {
    font-size: 24px;
    font-weight: 800;
    color: #003A66;
    margin-bottom: 14px;
}

.antiragging-feature-card p {
    color: #667085;
    line-height: 1.8;
    text-align: justify;
}

.feature-link {
    color: #b38b00;
    font-weight: 700;
    text-decoration: none;
}

/* Section Title */

.section-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 58, 102, 0.08);
    color: #003A66;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
}

/* Punishment */

.punishment-box {
    background: #f8fbff;
    padding: 28px;
    border-radius: 24px;
    text-align: center;
    height: 100%;
    transition: 0.4s ease;
}

.punishment-box:hover {
    background: #eef6ff;
    transform: translateY(-5px);
}

.punishment-box i {
    font-size: 45px;
    color: #d97706;
    margin-bottom: 18px;
}

.punishment-box h5 {
    font-size: 22px;
    font-weight: 800;
    color: #003A66;
    margin-bottom: 12px;
}

.punishment-box p {
    color: #667085;
    line-height: 1.7;
    text-align: justify;
}

/* Table */

.committee-table thead th {
    background: #003A66;
    color: #fff;
    padding: 18px;
    border: none;
}

.committee-table tbody td {
    padding: 18px;
    vertical-align: middle;
}

.committee-table tbody tr:nth-child(even) {
    background: #f8fbff;
}

/* Drug Policy */

.drugpolicy-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.drugpolicy-icon {
    width: 75px;
    height: 75px;
    border-radius: 24px;
    background: linear-gradient(135deg, #b45309, #f59e0b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
}

.drugpolicy-header h3 {
    font-size: 30px;
    font-weight: 800;
    color: #003A66;
}

.drugpolicy-header p {
    margin: 6px 0 0;
    color: #667085;
}

.drugpolicy-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.drug-item {
    background: #fff5f5;
    border-left: 5px solid #d97706;
    padding: 20px;
    border-radius: 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #5f6770;
    line-height: 1.8;
    text-align: justify;
}

.drug-item i {
    color: #d97706;
    margin-top: 3px;
}

/* Responsive */

@media(max-width:991px) {

    .antiragging-title {
        font-size: 36px;
    }

    .antiragging-main-card,
    .antipunishment-card,
    .committee-card,
    .drugpolicy-card {
        padding: 28px;
    }

}

@media(max-width:576px) {

    .antiragging-title {
        font-size: 28px;
    }

    .antiragging-badge {
        width: 120px;
        height: 120px;
        font-size: 50px;
        margin-top: 25px;
    }

    .drugpolicy-header {
        flex-direction: column;
        align-items: flex-start;
    }

}

.feature-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.feature-top h4 {
    margin: 0;
}

/* =========================
   Philosophy & Objectives
========================= */

.po-section {
    background: linear-gradient(135deg, #f4f8ff, #ffffff);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.po-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(0, 58, 102, 0.05);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

.po-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(179, 139, 0, 0.08);
    border-radius: 50%;
    bottom: -120px;
    left: -120px;
}

/* Heading */

.po-tag {
    display: inline-block;
    background: rgba(179, 139, 0, 0.12);
    color: #b38b00;
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.po-title {
    font-size: 42px;
    font-weight: 800;
    color: #003a66;
    margin-bottom: 14px;
}

.po-subtitle {
    max-width: 760px;
    margin: auto;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

/* Cards */

.po-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.po-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.10);
}

.philosophy-card {
    border-top: 6px solid #003a66;
}

.objectives-card {
    border-top: 6px solid #b38b00;
}

/* Card Header */

.po-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.po-card-header h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: #111;
}

.po-icon {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
    flex-shrink: 0;
}

.philosophy-icon {
    background: linear-gradient(135deg, #003a66, #005fa3);
}

.objectives-icon {
    background: linear-gradient(135deg, #b38b00, #e0b400);
}

/* Philosophy Items */

.po-item {
    display: flex;
    gap: 15px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.po-bullet {
    width: 14px;
    height: 14px;
    background: #b38b00;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 0 6px rgba(179, 139, 0, 0.15);
}

.po-item p {
    margin: 0;
    color: #555;
    line-height: 1.9;
    font-size: 15.5px;
}

/* Objective Boxes */

.objective-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 18px;
    background: #f9fbff;
    margin-bottom: 18px;
    transition: 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.objective-box:hover {
    background: #fff8df;
    transform: translateX(8px);
}

.objective-number {
    min-width: 55px;
    height: 55px;
    border-radius: 16px;
    background: linear-gradient(135deg, #003a66, #005fa3);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.objective-box p {
    margin: 0;
    color: #555;
    line-height: 1.8;
    font-size: 15.5px;
}

/* Responsive */

@media(max-width: 991px) {

    .po-title {
        font-size: 34px;
    }

    .po-card {
        padding: 30px;
    }

    .po-card-header h3 {
        font-size: 28px;
    }
}

@media(max-width: 576px) {

    .po-title {
        font-size: 28px;
    }

    .po-card {
        padding: 24px;
        border-radius: 22px;
    }

    .po-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .po-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
}

.blob-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 30px 15px;
}

.blob-item {
    overflow: hidden;
    transition: 0.5s ease;
    position: relative;

    /* Shadow */
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18),
        0 6px 18px rgba(0, 0, 0, 0.12);
}

.blob-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

/* Different Blob Shapes */

.blob-one {
    width: 220px;
    height: 260px;
    border-radius: 58% 42% 70% 30% / 30% 45% 55% 70%;
}

.blob-two {
    width: 260px;
    height: 320px;
    border-radius: 39% 61% 32% 68% / 56% 38% 62% 44%;
}

.blob-three {
    width: 220px;
    height: 260px;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
}

.blob-item:hover {
    transform: translateY(-10px) scale(1.04);

    /* Stronger Hover Shadow */
    box-shadow:
        0 25px 45px rgba(0, 0, 0, 0.25),
        0 10px 25px rgba(0, 0, 0, 0.18);
}

.blob-item:hover img {
    transform: scale(1.12);
}

/* =========================
   Tablet Responsive
========================= */
@media (max-width: 991px) {

    .blob-gallery {
        gap: 14px;
    }

    .blob-one,
    .blob-three {
        width: 190px;
        height: 230px;
    }

    .blob-two {
        width: 220px;
        height: 280px;
    }
}

/* =========================
   Mobile Responsive
========================= */
@media (max-width: 767px) {

    .blob-gallery {
        gap: 16px;
    }

    .blob-one,
    .blob-three {
        width: 170px;
        height: 210px;
    }

    .blob-two {
        width: 190px;
        height: 240px;
    }

    .blob-item:hover {
        transform: translateY(-6px) scale(1.03);
    }
}

/* =========================
   Small Mobile
========================= */
@media (max-width: 480px) {

    .blob-gallery {
        flex-direction: column;
        gap: 20px;
    }

    .blob-one,
    .blob-three {
        width: 220px;
        height: 250px;
    }

    .blob-two {
        width: 240px;
        height: 290px;
    }
}

/* stack */
.stack-gallery {
    position: relative;
    width: 420px;
    height: 320px;
    margin: auto;
}

.stack-card {
    position: absolute;
    width: 240px;
    height: 300px;
    overflow: hidden;
    border-radius: 28px;
    transition: 0.5s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-back {
    left: 0;
    top: 20px;
    transform: rotate(-10deg);
}

.card-middle {
    left: 90px;
    top: 0;
    z-index: 2;
}

.card-front {
    right: 0;
    top: 20px;
    transform: rotate(10deg);
}

.stack-card:hover {
    transform: translateY(-10px) scale(1.04);
    z-index: 5;
}

/* wav */
.wave-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.wave-box {
    width: 220px;
    height: 300px;
    overflow: hidden;
    border-radius: 40px;
    transition: 0.5s ease;
    position: relative;

    /* Shadow */
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18),
        0 6px 18px rgba(0, 0, 0, 0.12);
}

.wave-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.wave-top {
    margin-top: -60px;
}

.wave-bottom {
    margin-top: 60px;
}

.wave-box:hover {
    transform: translateY(-10px) scale(1.05);

    /* Hover Shadow */
    box-shadow:
        0 25px 45px rgba(0, 0, 0, 0.28),
        0 10px 25px rgba(0, 0, 0, 0.18);
}

.wave-box:hover img {
    transform: scale(1.12);
}

/* =========================
   Tablet Responsive
========================= */
@media (max-width: 991px) {

    .wave-box {
        width: 190px;
        height: 260px;
    }

    .wave-top {
        margin-top: -40px;
    }

    .wave-bottom {
        margin-top: 40px;
    }
}

/* =========================
   Mobile Responsive
========================= */
@media (max-width: 767px) {

    .wave-gallery {
        gap: 16px;
    }

    .wave-box {
        width: 170px;
        height: 230px;
        border-radius: 30px;
    }

    .wave-top {
        margin-top: -20px;
    }

    .wave-bottom {
        margin-top: 20px;
    }

    .wave-box:hover {
        transform: translateY(-6px) scale(1.03);
    }
}

/* =========================
   Small Mobile
========================= */
@media (max-width: 480px) {

    .wave-gallery {
        flex-direction: column;
        gap: 20px;
    }

    .wave-box {
        width: 240px;
        height: 300px;
    }

    .wave-top,
    .wave-bottom {
        margin-top: 0;
    }
}


.clover-gallery {
    position: relative;
    width: 420px;
    height: 320px;
    margin: auto;
}

.clover-img {
    position: absolute;
    width: 220px;
    height: 220px;
    overflow: hidden;
    border-radius: 50% 50% 20px 20px;
    transition: 0.5s ease;
}

.clover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.left-img {
    left: 0;
    bottom: 0;
}

.top-img {
    left: 100px;
    top: 0;
    z-index: 2;
}

.right-img {
    right: 0;
    bottom: 0;
}

.clover-img:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 5;
}

.loop-gallery {
    position: relative;
    width: 520px;
    height: 300px;
    margin: auto;
}

/* Common Image Box */
.loop-box {
    position: absolute;
    overflow: hidden;
    border-radius: 50%;
    border: 8px solid #fff;
    transition: 0.5s ease;

    /* Shadow */
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18),
        0 6px 18px rgba(0, 0, 0, 0.12);
}

.loop-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

/* Left Circle */
.loop-left {
    width: 220px;
    height: 220px;
    left: 40px;
    top: 40px;
}

/* Center Circle */
.loop-center {
    width: 180px;
    height: 180px;
    left: 170px;
    top: 0;
    z-index: 2;
}

/* Right Circle */
.loop-right {
    width: 220px;
    height: 220px;
    right: 40px;
    top: 40px;
}

/* Hover Effect */
.loop-box:hover {
    transform: scale(1.08);

    /* Stronger Hover Shadow */
    box-shadow:
        0 25px 45px rgba(0, 0, 0, 0.28),
        0 10px 25px rgba(0, 0, 0, 0.18);

    z-index: 5;
}

.loop-box:hover img {
    transform: scale(1.12);
}

/* =========================
   Tablet Responsive
========================= */
@media (max-width: 991px) {

    .loop-gallery {
        width: 430px;
        height: 260px;
    }

    .loop-left,
    .loop-right {
        width: 180px;
        height: 180px;
    }

    .loop-center {
        width: 150px;
        height: 150px;
        left: 140px;
    }

    .loop-left {
        left: 20px;
        top: 50px;
    }

    .loop-right {
        right: 20px;
        top: 50px;
    }
}

/* =========================
   Mobile Responsive
========================= */
@media (max-width: 767px) {

    .loop-gallery {
        width: 320px;
        height: 420px;
    }

    .loop-box {
        position: absolute;
    }

    .loop-center {
        width: 140px;
        height: 140px;
        left: 90px;
        top: 0;
    }

    .loop-left {
        width: 170px;
        height: 170px;
        left: 0;
        top: 120px;
    }

    .loop-right {
        width: 170px;
        height: 170px;
        right: 0;
        top: 120px;
    }

    .loop-box:hover {
        transform: scale(1.05);
    }
}

/* =========================
   Small Mobile
========================= */
@media (max-width: 480px) {

    .loop-gallery {
        width: 260px;
        height: 360px;
    }

    .loop-center {
        width: 120px;
        height: 120px;
        left: 70px;
    }

    .loop-left {
        width: 140px;
        height: 140px;
        top: 100px;
    }

    .loop-right {
        width: 140px;
        height: 140px;
        top: 100px;
    }

    .loop-box {
        border-width: 6px;
    }
}


.ribbon-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 40px 0;
}

.ribbon-card {
    width: 230px;
    height: 320px;
    overflow: hidden;
    position: relative;
    transition: 0.5s ease;
}

.ribbon-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ribbon Shapes */

.ribbon-one {
    clip-path: polygon(0 0,
            100% 0,
            85% 100%,
            0 100%);
}

.ribbon-two {
    margin-left: -30px;
    margin-right: -30px;
    z-index: 2;

    clip-path: polygon(15% 0,
            100% 0,
            85% 100%,
            0 100%);
}

.ribbon-three {
    clip-path: polygon(15% 0,
            100% 0,
            100% 100%,
            0 100%);
}

.ribbon-card:hover {
    transform: translateY(-10px);
    z-index: 5;
}


/* playground */
.yin-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.yin-box {
    width: 400px;
    height: 400px;
    overflow: hidden;
    border: 8px solid #fff;
    transition: 0.5s ease;

    /* Shadow */
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18),
        0 5px 15px rgba(0, 0, 0, 0.12);
}

.yin-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.yin-left {
    border-radius: 50% 0 0 50%;
}

.yin-right {
    border-radius: 0 50% 50% 0;
    margin-left: -20px;
}

.yin-box:hover {
    transform: scale(1.06);

    /* Stronger shadow on hover */
    box-shadow:
        0 25px 45px rgba(0, 0, 0, 0.28),
        0 10px 25px rgba(0, 0, 0, 0.18);

    z-index: 5;
}

.yin-box:hover img {
    transform: scale(1.12);
}

/* =========================
   Tablet Responsive
========================= */
@media (max-width: 991px) {

    .yin-box {
        width: 300px;
        height: 300px;
    }

    .yin-right {
        margin-left: -15px;
    }
}

/* =========================
   Mobile Responsive
========================= */
@media (max-width: 767px) {

    .yin-gallery {
        flex-direction: column;
        gap: 20px;
    }

    .yin-box {
        width: 260px;
        height: 260px;
    }

    .yin-left {
        border-radius: 50% 50% 0 0;
    }

    .yin-right {
        border-radius: 0 0 50% 50%;
        margin-left: 0;
        margin-top: -40px;
    }
}

/* =========================
   Small Mobile
========================= */
@media (max-width: 480px) {

    .yin-box {
        width: 220px;
        height: 220px;
        border-width: 6px;
    }

    .yin-right {
        margin-top: -30px;
    }
}


/* ==========================================
   FLOATING SIDE BUTTONS
========================================== */
.side-floating-buttons {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ==========================================
   BUTTON BASE STYLE
========================================== */
.side-btn {
    position: relative;
    width: 50px;
    height: 180px;
    border: none;
    border-radius: 18px 0 0 18px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: gold;
    box-shadow:
        -8px 12px 30px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.4s ease;
}

/* Overlay Pattern */
.button-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        repeating-conic-gradient(
            rgb(48, 47, 47) 0.0000001%,
            rgb(51, 51, 51) 0.000104%
        )
        60% 60% / 600% 600%;
    filter: opacity(10%) contrast(105%);
    -webkit-filter: opacity(10%) contrast(105%);
}

/* Vertical Text */
.side-btn span {
    position: relative;
    z-index: 2;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;

    background-image: linear-gradient(to right, #000000, rgb(110 106 106), rgb(0 0 0), #0f0f0f, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300%;
    background-position: -100%;
    animation: animatedText 3s infinite alternate-reverse;
}

/* Left Accent Border */
/* .side-btn::after {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 4px;
    border-radius: 10px;
    background: #0284c7;
} */

/* Hover */
.side-btn:hover {
    width: 50px;
    background-color: #23BDEE;
    transform: translateX(-8px);
    box-shadow:
        -12px 18px 40px rgba(0, 0, 0, 0.28),
        0 0 20px rgba(0, 242, 96, 0.15);
}

.side-btn:hover span {
    letter-spacing: 2px;
    color: #fff;
}

/* Text Gradient Animation */
@keyframes animatedText {
    to {
        background-position: 100%;
    }
}

/* Floating Animation */
.side-btn {
    animation: floatingButton 3s ease-in-out infinite;
}

@keyframes floatingButton {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-4px);
    }
}

/* ==========================================
   TABLET
========================================== */
@media (max-width: 991px) {
    .side-btn {
        width: 58px;
        height: 180px;
    }

    .side-btn span {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
}

/* ==========================================
   MOBILE
========================================== */
@media (max-width: 576px) {
    .side-floating-buttons {
        gap: 12px;
    }

    .side-btn {
        width: 46px;
        height: 130px;
        border-radius: 14px 0 0 14px;
    }

    .side-btn span {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .side-btn:hover {
        width: 54px;
        transform: translateX(-4px);
    }
}


/* ==========================================
   Departments Section
========================================== */
.departments-section {
    background: linear-gradient(135deg, #f8fbff 0%, #eef7ff 100%);
}

/* Section Header */
.section-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, #0d6efd, #00b4d8);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.2);
}

.departmentsection-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Department Card */
.department-card {
    position: relative;
    height: 340px;
    border-radius: 28px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    transition: all 0.5s ease;
}

.department-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Dark Overlay */
.department-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 27, 65, 0.88) 0%,
        rgba(0, 27, 65, 0.55) 45%,
        rgba(0, 27, 65, 0.15) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

/* Content */
.department-content {
    color: #fff;
    position: relative;
    z-index: 2;
}

.department-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.department-content h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: antiquewhite;
}

.department-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2.2rem;
    }

    .department-card {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.8rem;
    }

    .department-card {
        height: 280px;
    }

    .department-overlay {
        padding: 25px;
    }

    .department-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}