@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    padding: 0;
    margin: 0;
    height: auto;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1140px;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.wrapper {
    overflow-x: hidden;
}



/* topbar-section-css-start */

.new-topbar {
    width: 100%;
    position: relative;
    z-index: 9999;
    background: linear-gradient(110deg, #071b3b 0%, #0a3d78 45%, #087f8c 100%);
    color: #ffffff;
    overflow: hidden;
}

.new-topbar::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    top: -220px;
    left: 30%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.new-topbar-wrapper {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* left-content */
.new-topbar-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: 0.3s ease;
}

.topbar-item {
    position: relative;
    padding-right: 18px;
}

.topbar-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-50%);
}

.topbar-item i {
    color: #ffd54a;
    font-size: 13px;
}

.topbar-item:hover {
    color: #ffd54a;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-social a {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.topbar-social a:hover {
    background: #ffd54a;
    border-color: #ffd54a;
    color: #071b3b;
    transform: translateY(-2px);
}

.new-topbar-right {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.topbar-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.topbar-marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    animation: topbarMove 18s linear infinite;
}

.topbar-marquee-track span {
    display: block;
    padding-right: 80px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.topbar-marquee-track span::first-letter {
    color: #ffd54a;
}

@keyframes topbarMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1199px) {

    .new-topbar-wrapper {
        gap: 20px;
    }

    .new-topbar-left {
        gap: 12px;
    }

    .topbar-item {
        font-size: 12px;
    }

    .topbar-marquee-track span {
        font-size: 14px;
    }

}

@media (max-width: 767px) {

    .new-topbar-wrapper {
        min-height: 45px;
        justify-content: center;
    }

    /* Hide complete left content */

    .new-topbar-left {
        display: none;
    }

    /* Animated text only */

    .new-topbar-right {
        width: 100%;
        flex: none;
    }

    .topbar-marquee-track span {
        font-size: 14px;
        padding-right: 60px;
    }

}


@media (max-width: 480px) {

    .new-topbar-wrapper {
        min-height: 42px;
    }

    .topbar-marquee-track span {
        font-size: 12px;
        padding-right: 50px;
    }

}


/* topbar-section-css-end */


/* navbar-section-css-start */

/* .esp-modern-navbar {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9998;
    background: #071b3b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.18);
} */

.esp-modern-navbar {
    width: 100%;
    position: relative;
    z-index: 9998;
    background: #071b3b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.18);
}

.esp-modern-navbar.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: espNavbarSlideDown 0.35s ease;
}

@keyframes espNavbarSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.esp-navbar-wrapper {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.esp-navbar-logo {
    width: 115px;
    height: 76px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.esp-navbar-logo img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    display: block;
}


/* =========================================================
   DESKTOP NAV
========================================================= */
.esp-desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 1;
}

.esp-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3px;
}

.esp-nav-item {
    position: relative;
}

.esp-nav-item>a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 31px 9px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.esp-nav-item:hover>a,
.esp-nav-item.active>a {
    color: #ffd54a;
}

.esp-nav-item>a::after {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    bottom: 20px;
    height: 3px;
    border-radius: 10px;
    background: #ffd54a;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.esp-nav-item:hover>a::after,
.esp-nav-item.active>a::after {
    transform: scaleX(1);
}

/* .esp-nav-item:hover > a,
.esp-nav-item.active > a {
    color: #087f8c;
} */

.esp-nav-item:hover>a::after,
.esp-nav-item.active>a::after {
    transform: scaleX(1);
}


/* =========================================================
   DROPDOWN
========================================================= */

.esp-dropdown-link i {
    font-size: 9px;
    transition: transform 0.3s ease;
}

.esp-has-dropdown:hover .esp-dropdown-link i {
    transform: rotate(180deg);
}

.esp-dropdown-menu {
    position: absolute;
    top: calc(100% - 8px);
    left: 0;
    min-width: 270px;
    margin: 0;
    padding: 10px;
    list-style: none;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(7, 27, 59, 0.08);
    box-shadow: 0 20px 50px rgba(7, 27, 59, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
}

.esp-has-dropdown:hover .esp-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.esp-dropdown-menu li {
    margin: 2px 0;
}

.esp-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px;
    color: #071b3b;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.esp-dropdown-menu li a:hover {
    background: linear-gradient(90deg, #eefbfd, #f4fbff);
    color: #087f8c;
    transform: translateX(3px);
}

.esp-dropdown-menu li a>span:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.esp-dropdown-menu strong {
    font-size: 13px;
}

.esp-dropdown-menu small {
    color: #7a8798;
    font-size: 10px;
    font-weight: 500;
}

.esp-dropdown-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    color: #087f8c;
    background: #e9fafd;
}


/* =========================================================
   REGISTRATION BUTTON
========================================================= */

.esp-registration-btn {
    min-height: 44px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #071b3b;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffd54a, #ffb703);
    box-shadow: 0 8px 20px rgba(255, 183, 3, 0.22);
    transition: all 0.3s ease;
}

.esp-registration-btn:hover {
    color: #071b3b;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 183, 3, 0.3);
}

.esp-registration-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 7px;
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.esp-mobile-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #071b3b, #087f8c);
    box-shadow: 0 8px 20px rgba(7, 27, 59, 0.18);
    cursor: pointer;
}

.esp-mobile-toggle span {
    width: 21px;
    height: 2px;
    border-radius: 10px;
    background: #ffffff;
    transition: all 0.3s ease;
}


/* =========================================================
   OFFCANVAS
========================================================= */


.esp-offcanvas {
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh !important;
    background: #071b3b;
    border: 0 !important;
    box-shadow: none !important;
    z-index: 10000 !important;
}

.esp-offcanvas-header {
    min-height: 90px;
    padding: 10px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background:
        linear-gradient(135deg,
            #071b3b 0%,
            #082d5c 55%,
            #087f8c 100%);

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.esp-offcanvas-logo {
    width: 105px;
    height: 70px;
    display: flex;
    align-items: center;
}

.esp-offcanvas-logo img {
    /* width: 100%; */
    max-height: 68px;
    object-fit: contain;
}

.esp-close-btn {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.esp-close-btn:hover {
    background: #ffd54a;
    border-color: #ffd54a;
    color: #071b3b;
    transform: rotate(90deg);
}


/* =========================================================
   OFFCANVAS BODY
========================================================= */

.esp-offcanvas-body {
    padding: 22px 20px 25px;
    overflow-y: auto;
}

.esp-mobile-menu-heading {
    margin-bottom: 15px;
}

.esp-mobile-menu-heading span {
    color: #087f8c;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.esp-mobile-menu-heading h3 {
    margin: 3px 0 0;
    color: #071b3b;
    font-size: 22px;
    font-weight: 800;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.esp-mobile-nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.esp-mobile-nav>li {
    margin-bottom: 6px;
}

.esp-mobile-nav>li>a,
.esp-mobile-dropdown-btn {
    width: 100%;
    min-height: 50px;
    padding: 7px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: #26364b;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
}

.esp-mobile-nav>li>a>span:nth-child(2) {
    flex: 1;
}

.esp-mobile-nav>li>a>i:last-child {
    font-size: 10px;
    color: #9aa5b1;
}

.esp-mobile-nav>li>a:hover,
.esp-mobile-nav>li.active>a {
    color: #087f8c;
    background: #eafafd;
    transform: translateX(3px);
}

.esp-mobile-nav-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #087f8c;
    background: #eafafd;
    border-radius: 9px;
}

.esp-mobile-nav>li.active .esp-mobile-nav-icon {
    color: #ffffff;
    background: linear-gradient(135deg, #087f8c, #08a4d8);
}


/* =========================================================
   MOBILE COURSES
========================================================= */
.esp-mobile-nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.esp-mobile-dropdown-btn>i {
    font-size: 10px;
    color: #9aa5b1;
    transition: transform 0.3s ease;
}

.esp-mobile-dropdown.open .esp-mobile-dropdown-btn>i {
    transform: rotate(180deg);
}

.esp-mobile-submenu {
    display: none;
    margin: 2px 0 7px 46px;
    padding: 5px 0;
    list-style: none;
    border-left: 2px solid #d8f2f5;
}

.esp-mobile-dropdown.open .esp-mobile-submenu {
    display: block;
}

.esp-mobile-submenu li a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    color: #536276;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    border-radius: 7px;
    transition: all 0.3s ease;
}

.esp-mobile-submenu li a i {
    color: #087f8c;
    font-size: 11px;
}

.esp-mobile-submenu li a:hover {
    color: #087f8c;
    background: #eefbfd;
    padding-left: 17px;
}

/* =========================================================
   STUDENT REGISTRATION + STUDENT LOGIN BUTTONS
========================================================= */
.esp-registration-btn,
.esp-mobile-registration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #071b3b;
    background: #ffd54a;
    border: 1px solid #ffd54a;
    border-radius: 9px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* =========================================================
   DESKTOP BUTTON
========================================================= */
.esp-registration-btn {
    min-height: 44px;
    padding: 0 14px;
}

/* =========================================================
   STUDENT LOGIN - DESKTOP
========================================================= */
.esp-registration-btn.esp-login-main {
    color: #ffffff;
    background: #09527e;
    border-color: rgba(8, 164, 216, 0.65);
}

/* =========================================================
   DESKTOP HOVER
========================================================= */
.esp-registration-btn:hover {
    color: #071b3b;
    background: #ffdf70;
    border-color: #ffdf70;
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(255, 213, 74, 0.20);
}

.esp-registration-btn.esp-login-main:hover {
    color: #071b3b;
    background: #08a4d8;
    border-color: #08a4d8;
    box-shadow:
        0 8px 20px rgba(8, 164, 216, 0.20);
}

/* =========================================================
   BUTTON ICON
========================================================= */
.esp-registration-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 7px;
    font-size: 10px;
    background: rgba(255, 255, 255, 0.45);
    color: #071b3b;
    transition: all 0.3s ease;
}

.esp-login-main .esp-registration-icon {
    color: #ffffff;
    background: rgba(8, 164, 216, 0.18);
}

.esp-login-main:hover .esp-registration-icon {
    color: #071b3b;
    background: rgba(255, 255, 255, 0.45);
}

/* =========================================================
   MOBILE BUTTON
========================================================= */
.esp-mobile-registration {
    width: 100%;
    min-height: 50px;
    margin-top: 15px;
    padding: 7px 13px;
    justify-content: flex-start;
    font-size: 13px;
    border-radius: 10px;
    box-shadow:
        0 7px 18px rgba(255, 213, 74, 0.15);
}

/* =========================================================
   MOBILE LOGIN
========================================================= */
.esp-mobile-registration.esp-mobile-login-main {
    color: #ffffff;
    background: rgb(7, 31, 66);
    border-color: rgb(8, 103, 126);
    box-shadow: 0 7px 18px rgba(8, 164, 216, 0.2);
}

/* =========================================================
   MOBILE ICON
========================================================= */
.esp-mobile-registration>span {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.45);
    color: #071b3b;
}

.esp-mobile-login-main>span {
    background: rgba(8, 164, 216, 0.20);
    color: #ffffff;
}

/* =========================================================
   MOBILE ARROW
========================================================= */
.esp-mobile-registration>i:last-child {
    margin-left: auto;
    font-size: 11px;
}

/* =========================================================
   MOBILE HOVER
========================================================= */
.esp-mobile-registration:hover {
    color: #071b3b;
    background: #ffdf70;
    border-color: #ffdf70;
    transform: translateY(-2px);
}

.esp-mobile-login-main:hover {
    color: #071b3b;
    background: #08a4d8;
    border-color: #08a4d8;
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1250px) {

    .esp-registration-btn {
        padding: 0 11px;
        font-size: 10px;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1100px) {

    .esp-registration-btn {
        display: none;
    }

}

@media (max-width: 575px) {

    .esp-mobile-registration {
        min-height: 48px;
        font-size: 12px;
    }

    .esp-mobile-registration>span {
        width: 32px;
        height: 32px;
    }

}

/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 400px) {

    .esp-mobile-registration {
        min-height: 46px;
        font-size: 11px;
    }

    .esp-mobile-registration>span {
        width: 30px;
        height: 30px;
    }

}

/* =========================================================
   CONTACT BOX
========================================================= */

.esp-mobile-contact-box {
    margin-top: 22px;
    padding: 17px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(7, 27, 59, 0.08);
    box-shadow: 0 10px 30px rgba(7, 27, 59, 0.07);
}

.esp-contact-box-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.esp-contact-box-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    border-radius: 11px;
    background: linear-gradient(135deg, #087f8c, #08a4d8);
}

.esp-contact-box-title div {
    display: flex;
    flex-direction: column;
}

.esp-contact-box-title small {
    color: #8793a2;
    font-size: 10px;
}

.esp-contact-box-title strong {
    color: #071b3b;
    font-size: 15px;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.esp-contact-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
}

.esp-contact-detail>span {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #087f8c;
    background: #eafafd;
    border-radius: 8px;
    font-size: 12px;
}

.esp-contact-detail div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.esp-contact-detail small {
    color: #929dac;
    font-size: 9px;
    font-weight: 600;
}

.esp-contact-detail a {
    max-width: 100%;
    overflow: hidden;
    color: #26364b;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 700;
}

.esp-contact-detail a:hover {
    color: #087f8c;
}


/* =========================================================
   CONTACT SOCIAL
========================================================= */

.esp-contact-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 9px;
    padding-top: 13px;
    border-top: 1px solid #edf1f4;
}

.esp-contact-social a {
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    border-radius: 9px;
    background: #071b3b;
    font-size: 12px;
    transition: all 0.3s ease;
}

.esp-contact-social a:hover {
    background: #087f8c;
    transform: translateY(-3px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1250px) {

    .esp-desktop-nav {
        gap: 10px;
    }

    .esp-nav-list {
        gap: 0;
    }

    .esp-nav-item>a {
        padding-left: 7px;
        padding-right: 7px;
        font-size: 12px;
    }

    .esp-nav-item>a::after {
        left: 7px;
        right: 7px;
    }

    .esp-registration-btn {
        padding: 0 12px;
        font-size: 11px;
    }

}


@media (max-width: 1100px) {

    .esp-desktop-nav {
        display: none;
    }

    .esp-mobile-toggle {
        display: flex;
    }

    .esp-navbar-wrapper {
        min-height: 76px;
    }

}


@media (max-width: 575px) {

    .esp-navbar-wrapper {
        min-height: 68px;
    }

    .esp-navbar-logo {
        width: 92px;
        height: 62px;
    }

    .esp-navbar-logo img {
        max-height: 58px;
    }

    .esp-mobile-toggle {
        width: 43px;
        height: 43px;
    }

    .esp-offcanvas {
        width: 380px !important;
        max-width: 94%;
    }

    .esp-offcanvas-header {
        min-height: 74px;
    }

}


@media (max-width: 400px) {

    .esp-offcanvas {
        width: 100% !important;
        max-width: 100%;
    }

    .esp-offcanvas-body {
        padding-left: 15px;
        padding-right: 15px;
    }

}

/* navbar-section-css-end */

/* esp-banner-section-css-start */

.esp-hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Main Slide */
.esp-hero-slide {
    width: 100%;
    min-height: 580px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Slide Backgrounds*/
.esp-slide-one {
    background-image: url("../img/banner/banner01.webp");
}

.esp-slide-two {
    background-image: url("../img/banner/banner02.webp");
}

.esp-slide-three {
    background-image: url("../img/banner/banner03.webp");
}

/* Dark Overlay */
.esp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(3, 18, 42, 0.88) 0%,
            rgba(5, 39, 75, 0.72) 45%,
            rgba(3, 18, 42, 0.82) 100%);
    z-index: 1;
}

/* Decorative-light-effect */
.esp-hero-slide::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -220px;
    right: -100px;
    border-radius: 50%;
    background: rgba(8, 164, 216, 0.12);
    filter: blur(5px);
    z-index: 2;
    pointer-events: none;
}

.esp-hero-slide::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -180px;
    left: -100px;
    border-radius: 50%;
    background: rgba(255, 213, 74, 0.09);
    filter: blur(5px);
    z-index: 2;
    pointer-events: none;
}

/* Content */
.esp-hero-slide .container {
    position: relative;
    z-index: 5;
}

.esp-hero-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Small-Tag */
.esp-hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 17px;
    margin-bottom: 20px;
    color: #ffd54a;
    border: 1px solid rgba(255, 213, 74, 0.45);
    border-radius: 50px;
    background: rgba(255, 213, 74, 0.08);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

/* Heading */
.esp-hero-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

/* Descroption */
.esp-hero-content p {
    max-width: 680px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}

/* button group */
.slider-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

/* button */
.slider-btn {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #071b3b;
    background: linear-gradient(135deg, #ffd54a, #ffb703);
    border: 1px solid #ffd54a;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.18);
    transition: all 0.3s ease;
}

.slider-btn:hover {
    color: #071b3b;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 183, 3, 0.28);
}

.slider-btn i {
    font-size: 12px;
}

/* secondary-button */

.slider-btn-two {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.slider-btn-two:hover {
    color: #071b3b;
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* owl-carousel */
.esp-hero-carousel {
    position: relative;
}

.esp-hero-carousel .owl-stage-outer {
    overflow: hidden;
}

/* owl-dots */

.esp-hero-carousel .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 !important;
}

.esp-hero-carousel .owl-dot {
    width: 9px;
    height: 9px;
    padding: 0 !important;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4) !important;
    transition: all 0.3s ease;
}

.esp-hero-carousel .owl-dot.active {
    width: 28px;
    border-radius: 20px;
    background: #ffd54a !important;
}

/* owl-navigation */

.esp-hero-carousel .owl-nav {
    margin: 0 !important;
}

.esp-hero-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(8px);
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.esp-hero-carousel .owl-nav button:hover {
    color: #071b3b !important;
    background: #ffd54a !important;
    border-color: #ffd54a !important;
}

.esp-hero-carousel .owl-prev {
    left: 25px;
}

.esp-hero-carousel .owl-next {
    right: 25px;
}

.esp-hero-carousel .owl-nav button span {
    display: none;
}

.esp-hero-carousel .owl-prev::before {
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.esp-hero-carousel .owl-next::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* slide-animation */
.esp-hero-carousel .owl-item.active .esp-hero-tag {
    animation: espFadeDown 0.8s ease both;
}

.esp-hero-carousel .owl-item.active h1 {
    animation: espFadeUp 0.9s 0.15s ease both;
}

.esp-hero-carousel .owl-item.active p {
    animation: espFadeUp 0.9s 0.3s ease both;
}

.esp-hero-carousel .owl-item.active .slider-btn-group {
    animation: espFadeUp 0.9s 0.45s ease both;
}

@keyframes espFadeDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes espFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* large-tablet */

@media (max-width: 1199px) {
    .esp-hero-slide {
        min-height: 600px;
    }

    .esp-hero-content {
        max-width: 750px;
    }

    .esp-hero-content h1 {
        font-size: 52px;
    }

    .esp-hero-content p {
        font-size: 15px;
    }
}

/* tablet */

@media (max-width: 991px) {
    .esp-hero-slide {
        min-height: 550px;
    }

    .esp-hero-content {
        padding: 50px 40px;
    }

    .esp-hero-content h1 {
        font-size: 45px;
    }

    .esp-hero-content p {
        max-width: 600px;
        font-size: 14px;
        line-height: 1.7;
    }

    .esp-hero-tag {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .esp-hero-carousel .owl-prev {
        left: 15px;
    }

    .esp-hero-carousel .owl-next {
        right: 15px;
    }
}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {
    .esp-hero-slide {
        min-height: 500px;
    }

    .esp-hero-content {
        padding: 45px 25px 55px;
    }

    .esp-hero-tag {
        min-height: 30px;
        padding: 6px 13px;
        margin-bottom: 17px;
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .esp-hero-content h1 {
        font-size: 36px;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    .esp-hero-content p {
        margin-top: 17px;
        font-size: 13px;
        line-height: 1.7;
    }

    .slider-btn-group {
        width: 100%;
        flex-direction: column;
        gap: 9px;
        margin-top: 24px;
    }

    .slider-btn {
        width: auto;
        min-width: 190px;
        min-height: 46px;
        padding: 0 18px;
        font-size: 12px;
    }

    .esp-hero-carousel .owl-nav {
        display: none;
    }

    .esp-hero-carousel .owl-dots {
        bottom: 18px;
    }
}

/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
    .esp-hero-slide {
        min-height: 450px;
    }

    .esp-hero-content {
        padding: 40px 18px 55px;
    }

    .esp-hero-tag {
        font-size: 8px;
        padding: 5px 11px;
        letter-spacing: 1px;
    }

    .esp-hero-content h1 {
        font-size: 30px;
    }

    .esp-hero-content p {
        font-size: 12px;
        line-height: 1.65;
    }

    .slider-btn {
        min-width: 180px;
        min-height: 44px;
        font-size: 11px;
    }
}

/* esp-banner-section-css-end */


/* about-us-section-css-start */

.esp-about-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f7faff;
}

.esp-about-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.esp-about-shape-one {
    width: 400px;
    height: 400px;
    top: -220px;
    right: -150px;
    background: rgba(8, 61, 120, 0.05);
}

.esp-about-shape-two {
    width: 280px;
    height: 280px;
    bottom: -170px;
    left: -120px;
    background: rgba(255, 213, 74, 0.08);
}

/* =========================================================
LEFT VISUAL
========================================================= */

.esp-about-visual {
    position: relative;
    padding: 15px;
}

.esp-about-image-box {
    position: relative;
    min-height: 500px;
    overflow: visible;
    border-radius: 24px;
}

.esp-about-image {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(7, 27, 59, 0.16);
}

.esp-about-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: 24px;
    background: linear-gradient(180deg, transparent 40%, rgba(7, 27, 59, 0.55) 100%);
    pointer-events: none;
}

.esp-about-image-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 15px;
    left: -15px;
    border: 2px solid #ffd54a;
    border-radius: 24px;
    z-index: 1;
}

/* =========================================================
EXPERIENCE CARD
========================================================= */

.esp-about-experience {
    position: absolute;
    left: -30px;
    bottom: 35px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
    padding: 15px 18px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(7, 27, 59, 0.18);
    animation: espAboutFloat 4s ease-in-out infinite;
}

.esp-about-experience-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #071b3b;
    background: #ffd54a;
    border-radius: 12px;
    font-size: 18px;
}

.esp-about-experience strong,
.esp-about-experience span {
    display: block;
}

.esp-about-experience strong {
    color: #071b3b;
    font-size: 16px;
    font-weight: 800;
}

.esp-about-experience span {
    margin-top: 2px;
    color: #68758a;
    font-size: 12px;
}

/* =========================================================
FLOATING ICON
========================================================= */

.esp-about-floating-icon {
    position: absolute;
    top: 25px;
    right: -25px;
    z-index: 5;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, #071b3b, #087f8c);
    border: 5px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(7, 27, 59, 0.2);
    font-size: 20px;
    animation: espAboutRotate 7s linear infinite;
}

/* =========================================================
ABOUT CONTENT
========================================================= */

.esp-about-content {
    position: relative;
    padding-left: 20px;
}

.esp-about-tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 15px;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.08);
    border-left: 3px solid #ffd54a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.esp-about-title {
    max-width: 700px;
    margin: 18px 0 20px;
    color: #071b3b;
    font-size: 38px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -1px;
}

.esp-about-title span {
    display: inline;
    color: #087f8c;
}

.esp-about-text {
    max-width: 700px;
    margin: 0 0 10px;
    color: #000;
    font-size: 14px;
    line-height: 1.85;
    font-weight: 400;
}

.esp-about-text strong {
    color: #071b3b;
    font-weight: 700;
}

/* =========================================================
FEATURES
========================================================= */

.esp-about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.esp-about-feature {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 17px;
    background: linear-gradient(135deg, #dfce42 0%, #ffd54a 100%);
    border: 1px solid rgba(35, 220, 240, 0.74);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.16);
    transition: all 0.35s ease;
}

.esp-about-feature:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg,
            #dff2ff 0%,
            #e2faf7 100%);
    border-color: #ffd54a;
    box-shadow: 0 18px 35px rgba(7, 27, 59, 0.12);
}

.esp-about-feature-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #f0d246;
    background: rgb(7, 27, 59);
    border-radius: 11px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.esp-about-feature:hover .esp-about-feature-icon {
    color: #ffffff;
    background: #071b3b;
    transform: rotate(-5deg) scale(1.05);
}

.esp-about-feature-content h3 {
    margin: 1px 0 5px;
    color: #071b3b;
    font-size: 15px;
    font-weight: 800;
}

.esp-about-feature-content p {
    margin: 0;
    color: #788498;
    font-size: 12px;
    line-height: 1.6;
}

/* =========================================================
BUTTON
========================================================= */

.esp-about-button-wrap {
    margin-top: 27px;
}

.esp-about-btn {
    position: relative;
    min-height: 48px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    color: #ffffff;
    background: #071b3b;
    border: 1px solid #071b3b;
    border-radius: 11px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: all 0.35s ease;
    isolation: isolate;
}

.esp-about-btn::before {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: #ffd54a;
    transition: width 0.35s ease;
    z-index: -1;
    outline: 0;
}

.esp-about-btn span,
.esp-about-btn i {
    position: relative;
    z-index: 5;
}

.esp-about-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    font-size: 12px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.esp-about-btn:hover {
    color: #071b3b;
    border-color: #ffd54a;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(7, 27, 59, 0.18);
}

.esp-about-btn:hover::before {
    width: 100%;
}

.esp-about-btn:hover i {
    color: #071b3b;
    transform: translateX(5px);
}

/* =========================================================
ANIMATIONS
========================================================= */

@keyframes espAboutFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes espAboutRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =========================================================
TABLET
========================================================= */

@media (max-width: 1199px) {
    .esp-about-section {
        padding: 85px 0;
    }

    .esp-about-title {
        font-size: 37px;
    }

    .esp-about-content {
        padding-left: 10px;
    }

    .esp-about-image,
    .esp-about-image-box {
        height: 460px;
        min-height: 460px;
    }
}

/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {
    .esp-about-section {
        padding: 75px 0;
    }

    .esp-about-visual {
        max-width: 650px;
        margin: 0 auto 25px;
    }

    .esp-about-content {
        padding-left: 0;
    }

    .esp-about-title {
        font-size: 36px;
    }

    .esp-about-text {
        font-size: 14px;
    }

    .esp-about-experience {
        left: -10px;
    }

    .esp-about-floating-icon {
        right: -10px;
    }
}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {
    .esp-about-section {
        padding: 60px 0;
    }

    .esp-about-visual {
        padding: 10px;
        margin-bottom: 10px;
    }

    .esp-about-image,
    .esp-about-image-box {
        height: 360px;
        min-height: 360px;
    }

    .esp-about-image {
        border-radius: 18px;
    }

    .esp-about-image-box::before {
        top: 10px;
        left: -10px;
        border-radius: 18px;
    }

    .esp-about-image-overlay {
        border-radius: 18px;
    }

    .esp-about-experience {
        left: -3px;
        bottom: 20px;
        min-width: 155px;
        padding: 11px 13px;
        gap: 9px;
    }

    .esp-about-experience-icon {
        width: 37px;
        height: 37px;
        font-size: 14px;
    }

    .esp-about-experience strong {
        font-size: 13px;
    }

    .esp-about-experience span {
        font-size: 10px;
    }

    .esp-about-floating-icon {
        top: 15px;
        right: -3px;
        width: 48px;
        height: 48px;
        border-width: 3px;
        font-size: 15px;
    }

    .esp-about-tag {
        padding: 6px 11px;
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .esp-about-title {
        margin: 15px 0 16px;
        font-size: 29px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .esp-about-text {
        margin-bottom: 12px;
        font-size: 12px;
        line-height: 1.7;
    }

    .esp-about-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .esp-about-feature {
        padding: 13px;
        gap: 10px;
        border-radius: 11px;
    }

    .esp-about-feature-icon {
        width: 38px;
        height: 38px;
        border-radius: 9px;
        font-size: 14px;
    }

    .esp-about-feature-content h3 {
        font-size: 13px;
    }

    .esp-about-feature-content p {
        font-size: 10px;
        line-height: 1.5;
    }

    .esp-about-button-wrap {
        margin-top: 21px;
    }

    .esp-about-btn {
        min-height: 43px;
        padding: 0 17px;
        font-size: 11px;
        border-radius: 8px;
    }
}

/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
    .esp-about-section {
        padding: 50px 0;
    }

    .esp-about-image,
    .esp-about-image-box {
        height: 300px;
        min-height: 300px;
    }

    .esp-about-title {
        font-size: 25px;
    }

    .esp-about-text {
        font-size: 11px;
    }

    .esp-about-tag {
        font-size: 8px;
    }

    .esp-about-feature-content h3 {
        font-size: 12px;
    }

    .esp-about-feature-content p {
        font-size: 9px;
    }
}

/* about-us-section-css-end */

/* why-choose-section-css-start */

.esp-program-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(circle at 5% 15%, rgba(255, 213, 74, 0.08), transparent 28%),
        radial-gradient(circle at 95% 85%, rgba(8, 164, 216, 0.08), transparent 30%),
        #04132d;
}

/* BACKGROUND DECORATION */

.esp-program-bg {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.esp-program-bg-one {
    width: 500px;
    height: 500px;
    top: -280px;
    right: -220px;
    border: 1px solid rgba(255, 213, 74, 0.12);
    background: rgba(255, 213, 74, 0.025);
}

.esp-program-bg-two {
    width: 450px;
    height: 450px;
    bottom: -280px;
    left: -220px;
    border: 1px solid rgba(8, 164, 216, 0.10);
    background: rgba(8, 164, 216, 0.025);
}

/* SECTION HEADER */

.esp-program-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.esp-program-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    color: #ffd54a;
    background: rgba(255, 213, 74, 0.08);
    border: 1px solid rgba(255, 213, 74, 0.20);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.esp-program-tag i {
    font-size: 10px;
}

.esp-program-header h2 {
    margin: 8px 0;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.esp-program-header h2 span {
    color: #ffd54a;
}

.esp-program-header p {
    max-width: 680px;
    margin: 0 auto;
    color: #9eafc5;
    font-size: 14px;
    line-height: 1.8;
}

/* PROGRAM ROW */

.esp-program-row {
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
    padding: 30px;
    display: flex;
    align-items: stretch;
    border-radius: 28px;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.018));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: visible;
}

.esp-program-row:last-child {
    margin-bottom: 0;
}

.esp-program-row::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    top: -100px;
    right: -100px;
    border-radius: 50%;
    background: rgba(255, 213, 74, 0.055);
    filter: blur(45px);
    pointer-events: none;
}

.esp-program-row-reverse::before {
    right: auto;
    left: -100px;
    background: rgba(8, 164, 216, 0.055);
}

.esp-program-row>.col-lg-6 {
    display: flex;
    align-items: stretch;
}

.esp-program-row>.col-lg-6>* {
    width: 100%;
}

/* IMAGE AREA */

.esp-program-image-wrap {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: auto;
    padding: 15px;
    display: flex;
    align-items: center;
}

.esp-program-image-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 2;
    border-radius: 24px;
    border: 1px solid rgba(255, 213, 74, 0.40);
    background: rgba(8, 29, 61, 0.70);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.45),
        0 0 45px rgba(255, 213, 74, 0.06);
}

.esp-program-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.esp-program-image-frame:hover .esp-program-image {
    transform: scale(1.035);
}

.esp-program-image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background: rgba(255, 213, 74, 0.15);
    filter: blur(65px);
    border-radius: 50%;
    pointer-events: none;
}

.esp-program-row-reverse .esp-program-image-glow {
    background: rgba(8, 164, 216, 0.14);
}

.esp-program-image-frame::before {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: 3;
    border: 1px solid rgba(255, 213, 74, 0.18);
    border-radius: 17px;
    pointer-events: none;
}

/* IMAGE LABEL */

.esp-program-image-label {
    position: absolute;
    left: 25px;
    bottom: 25px;
    z-index: 5;
    min-width: 230px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background: rgba(4, 19, 45, 0.94);
    border: 1px solid rgba(255, 213, 74, 0.35);
    border-radius: 13px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.esp-program-image-label>i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #071b3b;
    background: #ffd54a;
    border-radius: 10px;
    font-size: 16px;
}

.esp-program-image-label strong,
.esp-program-image-label span {
    display: block;
}

.esp-program-image-label strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.esp-program-image-label span {
    margin-top: 3px;
    color: #9eafc5;
    font-size: 10px;
}

/* NUMBER */

.esp-program-number {
    position: absolute;
    right: -5px;
    top: -5px;
    z-index: 5;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: #ffd54a;
    border: 7px solid #105a91;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 900;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.30),
        0 0 20px rgba(255, 213, 74, 0.12);
}

/* CONTENT AREA */

.esp-program-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 25px 25px 25px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.esp-program-row-reverse .esp-program-content {
    padding-left: 25px;
    padding-right: 35px;
}

/* SMALL TAG */

.esp-program-small-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 14px;
    color: #ffd54a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.esp-program-small-tag i {
    font-size: 11px;
}

/* HEADING */

.esp-program-content h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.esp-program-content h3::after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    margin-top: 12px;
    background: #ffd54a;
    border-radius: 5px;
}

/* PARAGRAPH */

.esp-program-content p {
    margin: 0 0 15px;
    color: #aebdd0;
    font-size: 13px;
    line-height: 1.85;
}

/* HIGHLIGHTS */

.esp-program-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    margin-top: 18px;
}

.esp-program-highlight {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 8px 11px;
    color: #dce5ef;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    font-size: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.esp-program-highlight i {
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #071b3b;
    background: #ffd54a;
    border-radius: 50%;
    font-size: 9px;
}

.esp-program-highlight:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 213, 74, 0.35);
    background: rgba(255, 213, 74, 0.07);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* LARGE TABLET */

@media (max-width: 1199px) {
    .esp-program-section {
        padding: 90px 0;
    }

    .esp-program-header {
        margin-bottom: 50px;
    }

    .esp-program-row {
        padding: 25px;
    }

    .esp-program-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .esp-program-row-reverse .esp-program-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .esp-program-content h3 {
        font-size: 34px;
    }

    .esp-program-content p {
        font-size: 12px;
        line-height: 1.8;
    }

    .esp-program-highlights {
        gap: 7px;
    }
}

/* TABLET */

@media (max-width: 991px) {
    .esp-program-section {
        padding: 75px 0;
    }

    .esp-program-header {
        margin-bottom: 45px;
    }

    .esp-program-header h2 {
        font-size: 36px;
    }

    .esp-program-header p {
        font-size: 13px;
    }

    .esp-program-row {
        display: block;
        margin-bottom: 55px;
        padding: 25px;
        border-radius: 22px;
    }

    .esp-program-row>.col-lg-6 {
        display: block;
    }

    .esp-program-image-wrap {
        max-width: 650px;
        margin: 0 auto 25px;
        padding: 10px;
    }

    .esp-program-content,
    .esp-program-row-reverse .esp-program-content {
        height: auto;
        padding: 15px 5px 10px;
    }

    .esp-program-content h3 {
        font-size: 34px;
    }

    .esp-program-content p {
        font-size: 13px;
    }

    .esp-program-row-reverse {
        display: flex;
        flex-direction: column-reverse;
    }
}

/* MOBILE */

@media (max-width: 767px) {
    .esp-program-section {
        padding: 60px 0;
    }

    .esp-program-header {
        margin-bottom: 40px;
    }

    .esp-program-tag {
        padding: 7px 12px;
        font-size: 9px;
        letter-spacing: 1.3px;
    }

    .esp-program-header h2 {
        margin-top: 14px;
        font-size: 29px;
    }

    .esp-program-header p {
        font-size: 11px;
        line-height: 1.7;
    }

    .esp-program-row {
        margin-bottom: 45px;
        padding: 15px;
        border-radius: 18px;
    }

    .esp-program-image-wrap {
        padding: 8px;
        margin-bottom: 15px;
    }

    .esp-program-image-frame {
        border-radius: 17px;
    }

    .esp-program-image-frame::before {
        inset: 7px;
        border-radius: 12px;
    }

    .esp-program-number {
        width: 50px;
        height: 50px;
        border-width: 5px;
        font-size: 14px;
    }

    .esp-program-image-label {
        left: 16px;
        bottom: 16px;
        min-width: 185px;
        padding: 9px 11px;
        gap: 8px;
        border-radius: 10px;
    }

    .esp-program-image-label>i {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: 13px;
    }

    .esp-program-image-label strong {
        font-size: 10px;
    }

    .esp-program-image-label span {
        font-size: 8px;
    }

    .esp-program-content,
    .esp-program-row-reverse .esp-program-content {
        padding: 8px 3px 5px;
    }

    .esp-program-small-tag {
        margin-bottom: 10px;
        font-size: 8px;
        letter-spacing: 1.2px;
    }

    .esp-program-content h3 {
        margin-bottom: 14px;
        font-size: 28px;
    }

    .esp-program-content h3::after {
        width: 45px;
        height: 2px;
        margin-top: 9px;
    }

    .esp-program-content p {
        margin-bottom: 12px;
        font-size: 11px;
        line-height: 1.75;
    }

    .esp-program-highlights {
        gap: 7px;
        margin-top: 17px;
    }

    .esp-program-highlight {
        min-height: 38px;
        padding: 7px 8px;
        gap: 6px;
        font-size: 8px;
    }

    .esp-program-highlight i {
        width: 18px;
        height: 18px;
        font-size: 7px;
    }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
    .esp-program-section {
        padding: 50px 0;
    }

    .esp-program-header {
        margin-bottom: 35px;
    }

    .esp-program-header h2 {
        font-size: 25px;
    }

    .esp-program-header p {
        font-size: 10px;
    }

    .esp-program-row {
        margin-bottom: 35px;
        padding: 12px;
        border-radius: 16px;
    }

    .esp-program-image-wrap {
        padding: 6px;
    }

    .esp-program-number {
        width: 45px;
        height: 45px;
        border-width: 4px;
        font-size: 12px;
    }

    .esp-program-content,
    .esp-program-row-reverse .esp-program-content {
        padding: 6px 2px;
    }

    .esp-program-content h3 {
        font-size: 25px;
    }

    .esp-program-content p {
        font-size: 10px;
        line-height: 1.7;
    }

    .esp-program-highlights {
        grid-template-columns: 1fr;
    }

    .esp-program-highlight {
        font-size: 9px;
    }

    .esp-program-image-label {
        min-width: 165px;
    }

    .esp-program-image-label strong {
        font-size: 9px;
    }
}

/* EXTRA SMALL DEVICES */

@media (max-width: 360px) {
    .esp-program-section {
        padding: 45px 0;
    }

    .esp-program-row {
        padding: 10px;
    }

    .esp-program-header h2 {
        font-size: 23px;
    }

    .esp-program-content h3 {
        font-size: 23px;
    }

    .esp-program-content p {
        font-size: 9.5px;
    }

    .esp-program-image-label {
        min-width: 145px;
        padding: 8px 9px;
    }

    .esp-program-image-label strong {
        font-size: 8px;
    }

    .esp-program-image-label span {
        font-size: 7px;
    }
}

/* why-choose-section-css-end */


/* mission-vision-section-css-start */

.esp-mission-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background:
        radial-gradient(circle at 8% 20%, rgba(255, 213, 74, 0.10), transparent 28%),
        radial-gradient(circle at 92% 80%, rgba(8, 164, 216, 0.08), transparent 30%),
        #f7f9fc;
}

/* BACKGROUND DECORATION */

.esp-mission-bg {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.esp-mission-bg-one {
    width: 470px;
    height: 470px;
    top: -260px;
    right: -210px;
    border: 1px solid rgba(255, 213, 74, 0.20);
    background: rgba(255, 213, 74, 0.035);
}

.esp-mission-bg-two {
    width: 420px;
    height: 420px;
    bottom: -250px;
    left: -210px;
    border: 1px solid rgba(8, 164, 216, 0.14);
    background: rgba(8, 164, 216, 0.035);
}

/* SECTION HEADER */

.esp-mission-header {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.esp-mission-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: #105a91;
    background: rgba(8, 164, 216, 0.07);
    border: 1px solid rgba(8, 164, 216, 0.18);
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.esp-mission-tag i {
    font-size: 10px;
    color: #ffd54a;
}

.esp-mission-header h2 {
    margin: 14px 0 12px;
    color: #071b3b;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.esp-mission-header h2 span {
    color: #105a91;
}

.esp-mission-header p {
    max-width: 680px;
    margin: 0 auto;
    color: #66758a;
    font-size: 14px;
    line-height: 1.8;
}

/* CARD ROW */

.esp-mission-row {
    position: relative;
    z-index: 2;
}

/* MISSION / VISION CARD */

.esp-mission-card {
    position: relative;
    height: 100%;
    min-height: 540px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.78));
    border: 1px solid rgba(7, 27, 59, 0.09);
    border-radius: 24px;
    box-shadow:
        0 20px 55px rgba(7, 27, 59, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* CARD GLOW */

.esp-mission-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    top: -100px;
    right: -100px;
    border-radius: 50%;
    background: rgba(255, 213, 74, 0.10);
    filter: blur(45px);
    pointer-events: none;
}

.esp-mission-card-vision::before {
    top: auto;
    right: auto;
    bottom: -100px;
    left: -100px;
    background: rgba(8, 164, 216, 0.08);
}

/* CARD HOVER */

.esp-mission-card:hover {
    transform: translateY(-7px);
    border-color: rgba(8, 164, 216, 0.22);
    box-shadow:
        0 28px 70px rgba(7, 27, 59, 0.15),
        0 0 35px rgba(8, 164, 216, 0.06);
}

/* CARD TOP */

.esp-mission-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(7, 27, 59, 0.09);
}

/* ICON */

.esp-mission-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #071b3b;
    background: #ffd54a;
    border-radius: 16px;
    font-size: 23px;
    box-shadow: 0 12px 30px rgba(255, 213, 74, 0.22);
    transition: all 0.35s ease;
}

.esp-mission-card-vision .esp-mission-icon {
    background: #ffd54a;
}

.esp-mission-card:hover .esp-mission-icon {
    transform: rotate(-5deg) scale(1.06);
}

/* LABEL */

.esp-mission-card-label {
    display: block;
    margin-bottom: 6px;
    color: #105a91;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

/* HEADING */

.esp-mission-card-top h3 {
    margin: 0;
    color: #071b3b;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
}

/* CARD CONTENT */

.esp-mission-content {
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 25px 0 20px;
}

.esp-mission-content p {
    margin: 0 0 15px;
    color: #5f6f82;
    font-size: 13px;
    line-height: 1.85;
}

.esp-mission-content p:last-child {
    margin-bottom: 0;
}

/* CARD FOOTER */

.esp-mission-card-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(7, 27, 59, 0.09);
}

/* LINE */

.esp-mission-line {
    width: 70px;
    height: 3px;
    background: #ffd54a;
    border-radius: 10px;
}

/* BUTTON */

.esp-mission-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 17px;
    color: #071b3b;
    background: #ffd54a;
    border: 1px solid #ffd54a;
    border-radius: 8px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    transition: all 0.35s ease;
}

.esp-mission-btn i {
    transition: transform 0.3s ease;
}

.esp-mission-btn:hover {
    color: #ffffff;
    background: #071b3b;
    border-color: #071b3b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(7, 27, 59, 0.18);
}

.esp-mission-btn:hover i {
    transform: translateX(5px);
}

/* LARGE TABLET */

@media (max-width: 1199px) {

    .esp-mission-section {
        padding: 90px 0;
    }

    .esp-mission-header {
        margin-bottom: 50px;
    }

    .esp-mission-card {
        min-height: 550px;
        padding: 28px;
    }

    .esp-mission-card-top h3 {
        font-size: 21px;
    }

    .esp-mission-content p {
        font-size: 12px;
        line-height: 1.8;
    }

}

/* TABLET */

@media (max-width: 991px) {

    .esp-mission-section {
        padding: 75px 0;
    }

    .esp-mission-header {
        margin-bottom: 45px;
    }

    .esp-mission-header h2 {
        font-size: 36px;
    }

    .esp-mission-header p {
        font-size: 13px;
    }

    .esp-mission-card {
        min-height: 500px;
        padding: 27px;
    }

    .esp-mission-card-top h3 {
        font-size: 22px;
    }

    .esp-mission-content p {
        font-size: 13px;
        line-height: 1.8;
    }

}

/* MOBILE */

@media (max-width: 767px) {

    .esp-mission-section {
        padding: 60px 0;
    }

    .esp-mission-header {
        margin-bottom: 38px;
    }

    .esp-mission-tag {
        padding: 7px 12px;
        font-size: 9px;
        letter-spacing: 1.3px;
    }

    .esp-mission-header h2 {
        margin-top: 14px;
        font-size: 29px;
    }

    .esp-mission-header p {
        font-size: 11px;
        line-height: 1.7;
    }

    .esp-mission-card {
        min-height: auto;
        padding: 20px;
        border-radius: 18px;
    }

    .esp-mission-card-top {
        gap: 12px;
        padding-bottom: 18px;
    }

    .esp-mission-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        font-size: 18px;
    }

    .esp-mission-card-label {
        margin-bottom: 4px;
        font-size: 8px;
        letter-spacing: 1.3px;
    }

    .esp-mission-card-top h3 {
        font-size: 18px;
    }

    .esp-mission-content {
        padding: 19px 0 17px;
    }

    .esp-mission-content p {
        margin-bottom: 12px;
        font-size: 11px;
        line-height: 1.75;
    }

    .esp-mission-card-footer {
        padding-top: 16px;
    }

    .esp-mission-line {
        width: 50px;
        height: 2px;
    }

    .esp-mission-btn {
        min-height: 38px;
        padding: 0 13px;
        gap: 8px;
        font-size: 10px;
    }

}

/* SMALL MOBILE */

@media (max-width: 480px) {

    .esp-mission-section {
        padding: 50px 0;
    }

    .esp-mission-header {
        margin-bottom: 32px;
    }

    .esp-mission-header h2 {
        font-size: 25px;
    }

    .esp-mission-header p {
        font-size: 10px;
    }

    .esp-mission-card {
        padding: 17px;
        border-radius: 16px;
    }

    .esp-mission-card-top {
        gap: 10px;
    }

    .esp-mission-icon {
        width: 43px;
        height: 43px;
        border-radius: 10px;
        font-size: 16px;
    }

    .esp-mission-card-label {
        font-size: 7px;
    }

    .esp-mission-card-top h3 {
        font-size: 16px;
    }

    .esp-mission-content p {
        font-size: 10px;
        line-height: 1.7;
    }

    .esp-mission-btn {
        min-height: 36px;
        padding: 0 11px;
        font-size: 9px;
    }

}

/* EXTRA SMALL DEVICES */

@media (max-width: 360px) {

    .esp-mission-section {
        padding: 45px 0;
    }

    .esp-mission-card {
        padding: 15px;
    }

    .esp-mission-card-top h3 {
        font-size: 15px;
    }

    .esp-mission-content p {
        font-size: 9.5px;
    }

    .esp-mission-line {
        width: 40px;
    }

}

/* mission-vision-section-css-end */

/* counter-section-css-start */

.esp-counter-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 55px 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(255, 213, 74, 0.08), transparent 30%),
        radial-gradient(circle at 90% 50%, rgba(8, 164, 216, 0.08), transparent 30%),
        #031126;
}

.esp-counter-bg {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.esp-counter-bg-one {
    width: 300px;
    height: 300px;
    top: -180px;
    right: -100px;
    border: 1px solid rgba(255, 213, 74, 0.10);
    background: rgba(255, 213, 74, 0.025);
}

.esp-counter-bg-two {
    width: 280px;
    height: 280px;
    bottom: -170px;
    left: -100px;
    border: 1px solid rgba(8, 164, 216, 0.10);
    background: rgba(8, 164, 216, 0.025);
}


/* HEADER */

.esp-counter-header {
    position: relative;
    z-index: 2;
    margin-bottom: 32px;
    text-align: center;
}

.esp-counter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    color: #ffd54a;
    background: rgba(255, 213, 74, 0.07);
    border: 1px solid rgba(255, 213, 74, 0.18);
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.esp-counter-tag i {
    font-size: 10px;
}


/* COUNTER ROW */

.esp-counter-row {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* ITEM */

.esp-counter-item {
    position: relative;
    min-height: 145px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.35s ease;
}

.esp-counter-item::after {
    content: "";
    position: absolute;
    top: 25px;
    right: 0;
    width: 1px;
    height: calc(100% - 50px);
    background: rgba(255, 255, 255, 0.09);
}

.esp-counter-item:hover {
    background: rgba(255, 213, 74, 0.035);
}

.esp-counter-item:hover .esp-counter-icon {
    transform: translateY(-4px) scale(1.05);
}


/* ICON */

.esp-counter-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: #ffd54a;
    border-radius: 10px;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(255, 213, 74, 0.12);
    transition: all 0.35s ease;
}


/* NUMBER */

.esp-counter-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
}

.esp-counter-value {
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -1px;
}

.esp-counter-plus {
    margin-left: 2px;
    color: #ffd54a;
    font-size: 18px;
    font-weight: 900;
}

.esp-counter-item p {
    margin: 7px 0 0;
    color: #9eafc5;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}


/* REMOVE LAST DIVIDER */

.esp-counter-row>div:last-child .esp-counter-item::after {
    display: none;
}


/* TABLET */

@media (max-width: 991px) {

    .esp-counter-section {
        padding: 50px 0;
    }

    .esp-counter-header {
        margin-bottom: 28px;
    }

    .esp-counter-item {
        min-height: 135px;
    }

    .esp-counter-value {
        font-size: 27px;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .esp-counter-section {
        padding: 45px 0;
    }

    .esp-counter-header {
        margin-bottom: 25px;
    }

    .esp-counter-tag {
        padding: 6px 12px;
        font-size: 8px;
        letter-spacing: 1.3px;
    }

    .esp-counter-row {
        border-radius: 14px;
    }

    .esp-counter-item {
        min-height: 125px;
        padding: 20px 8px;
    }

    .esp-counter-item::after {
        top: 20px;
        height: calc(100% - 40px);
    }

    .esp-counter-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 8px;
        border-radius: 9px;
        font-size: 13px;
    }

    .esp-counter-value {
        font-size: 24px;
    }

    .esp-counter-plus {
        font-size: 15px;
    }

    .esp-counter-item p {
        margin-top: 6px;
        font-size: 8px;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .esp-counter-section {
        padding: 40px 0;
    }

    .esp-counter-item {
        min-height: 115px;
        padding: 17px 5px;
    }

    .esp-counter-value {
        font-size: 21px;
    }

    .esp-counter-plus {
        font-size: 13px;
    }

    .esp-counter-item p {
        font-size: 7.5px;
        letter-spacing: 0.2px;
    }

    .esp-counter-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

}


/* EXTRA SMALL */

@media (max-width: 360px) {

    .esp-counter-section {
        padding: 35px 0;
    }

    .esp-counter-item {
        min-height: 105px;
    }

    .esp-counter-value {
        font-size: 19px;
    }

    .esp-counter-plus {
        font-size: 12px;
    }

    .esp-counter-item p {
        font-size: 7px;
    }

}

/* counter-section-css-end */


/* video-section-css-start */

.esp-video-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(circle at 5% 15%, rgba(255, 213, 74, 0.10), transparent 28%),
        radial-gradient(circle at 95% 85%, rgba(8, 164, 216, 0.07), transparent 30%),
        #f7f9fc;
}


/* BACKGROUND DECORATION */

.esp-video-bg {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.esp-video-bg-one {
    width: 400px;
    height: 400px;
    top: -230px;
    right: -170px;
    border: 1px solid rgba(255, 213, 74, 0.16);
    background: rgba(255, 213, 74, 0.025);
}

.esp-video-bg-two {
    width: 350px;
    height: 350px;
    bottom: -210px;
    left: -150px;
    border: 1px solid rgba(8, 164, 216, 0.12);
    background: rgba(8, 164, 216, 0.025);
}


/* SECTION HEADER */

.esp-video-header {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto 20px;
    text-align: center;
}

.esp-video-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    color: #105a91;
    background: rgba(8, 164, 216, 0.07);
    border: 1px solid rgba(8, 164, 216, 0.18);
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.esp-video-tag i {
    color: #ffd54a;
    font-size: 10px;
}

.esp-video-header h2 {
    margin: 10px 0 5px;
    color: #071b3b;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.esp-video-header h2 span {
    color: #105a91;
}

.esp-video-header p {
    max-width: 650px;
    margin: 0 auto;
    color: #66758a;
    font-size: 14px;
    line-height: 1.8;
}


/* VIDEO GRID */

.esp-video-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* VIDEO CARD */
.esp-video-card {
    position: relative;
    /* padding: 7px; */
    background: #ffffff;
    border: 5px solid rgb(255, 194, 29);
    border-radius: 17px;
    box-shadow: 0 12px 35px rgba(7, 27, 59, 0.08), 0 2px 8px rgba(7, 27, 59, 0.04);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.esp-video-card:hover {
    transform: translateY(-6px);
    border-color: #ffd54a;
    box-shadow:
        0 20px 45px rgba(7, 27, 59, 0.13),
        0 0 25px rgba(255, 213, 74, 0.15);
}


/* VIDEO FRAME */
.esp-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 11px;
    background: #071b3b;
    border: 1px solid rgba(255, 213, 74, 0.30);
}

.esp-video-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}


/* LARGE TABLET */

@media (max-width: 1199px) {

    .esp-video-section {
        padding: 80px 0;
    }

    .esp-video-grid {
        gap: 20px;
    }

    /* .esp-video-card {
        padding: 6px;
    } */

}


/* TABLET */

@media (max-width: 991px) {

    .esp-video-section {
        padding: 70px 0;
    }

    .esp-video-header {
        margin-bottom: 38px;
    }

    .esp-video-header h2 {
        font-size: 36px;
    }

    .esp-video-header p {
        font-size: 13px;
    }

    .esp-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .esp-video-section {
        padding: 60px 0;
    }

    .esp-video-header {
        margin-bottom: 30px;
    }

    .esp-video-tag {
        padding: 7px 12px;
        font-size: 8px;
        letter-spacing: 1.3px;
    }

    .esp-video-header h2 {
        margin-top: 13px;
        font-size: 29px;
    }

    .esp-video-header p {
        font-size: 11px;
        line-height: 1.7;
    }

    .esp-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .esp-video-frame {
        aspect-ratio: 16 / 9;
        border-radius: 7px;
    }

    .esp-video-card {
        /* padding: 4px; */
        border-radius: 11px;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .esp-video-section {
        padding: 50px 0;
    }

    .esp-video-header {
        margin-bottom: 25px;
    }

    .esp-video-header h2 {
        font-size: 25px;
    }

    .esp-video-header p {
        font-size: 10px;
    }

    .esp-video-grid {
        gap: 8px;
    }

    .esp-video-card {
        /* padding: 3px; */
        border-radius: 9px;
    }

    .esp-video-frame {
        border-radius: 6px;
    }

}


/* EXTRA SMALL DEVICES */

@media (max-width: 360px) {

    .esp-video-section {
        padding: 45px 0;
    }

    .esp-video-grid {
        gap: 7px;
    }

    .esp-video-card {
        /* padding: 3px; */
        border-radius: 8px;
    }

    .esp-video-frame {
        border-radius: 5px;
    }

}

/* video-section-css-end */














/* footer-section-css-start */

.esp-footer-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 20%, rgba(255, 213, 74, 0.05), transparent 25%),
        radial-gradient(circle at 92% 80%, rgba(8, 164, 216, 0.06), transparent 28%),
        #071b3b;
    color: #ffffff;
}


/* =========================================================
   FOOTER MAIN GRID
========================================================= */

.esp-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1.15fr 1.35fr;
    gap: 55px;
    padding: 75px 0 60px;
}


/* =========================================================
   FOOTER COLUMN
========================================================= */

.esp-footer-column {
    position: relative;
    width: 100%;
    text-align: left;
}


/* =========================================================
   COLUMN HEADING
========================================================= */

.esp-footer-column h3 {
    margin: 0 0 25px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.esp-footer-column h3::after {
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    margin-top: 10px;
    background: #ffd54a;
    border-radius: 5px;
}


/* =========================================================
   FOOTER LOGO
========================================================= */

.esp-footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
}

.esp-footer-logo img {
    width: 155px;
    max-width: 100%;
    height: auto;
    display: block;
}


/* =========================================================
   FOOTER ABOUT
========================================================= */

.esp-footer-about p {
    max-width: 320px;
    margin: 0;
    color: #aebdd0;
    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.esp-footer-social {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
}

.esp-footer-social a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd54a;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 213, 74, 0.18);
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.esp-footer-social a:hover {
    color: #071b3b;
    background: #ffd54a;
    border-color: #ffd54a;
    transform: translateY(-3px);
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.esp-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.esp-footer-links li {
    margin-bottom: 13px;
}

.esp-footer-links li:last-child {
    margin-bottom: 0;
}

.esp-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #aebdd0;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.esp-footer-links a i {
    color: #ffd54a;
    font-size: 9px;
    transition: transform 0.3s ease;
}

.esp-footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.esp-footer-links a:hover i {
    transform: translateX(3px);
}


/* =========================================================
   LOGIN BUTTONS
========================================================= */

.esp-footer-login {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 25px;
    width: 100%;
}

.esp-footer-login-btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 220px;
    padding: 0 14px;
    color: #071b3b;
    background: #ffd54a;
    border: 1px solid #ffd54a;
    border-radius: 7px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.esp-footer-login-btn:hover {
    color: #ffffff;
    background: transparent;
    border-color: #ffd54a;
    transform: translateY(-2px);
}

.esp-footer-login-btn i {
    font-size: 12px;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.esp-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.esp-footer-contact-item:last-child {
    margin-bottom: 0;
}

.esp-footer-contact-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: #ffd54a;
    border-radius: 8px;
    font-size: 12px;
}

.esp-footer-contact-item p,
.esp-footer-contact-item a {
    margin: 0;
    padding-top: 2px;
    color: #aebdd0;
    font-size: 14px;
    line-height: 1.75;
    text-decoration: none;
    transition: color 0.3s ease;
}

.esp-footer-contact-item a:hover {
    color: #ffd54a;
}


/* =========================================================
   COPYRIGHT SECTION
========================================================= */

.esp-footer-copyright {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.esp-footer-copyright-inner {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 18px 0 20px;
    text-align: center;
}

.esp-footer-copyright p {
    margin: 0;
    color: #8fa0b5;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}

.esp-footer-copyright a {
    color: #ffd54a;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.esp-footer-copyright a:hover {
    color: #ffffff;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .esp-footer-grid {
        grid-template-columns: 1.2fr 1fr 1.1fr 1.25fr;
        gap: 30px;
        padding: 65px 0 50px;
    }

    .esp-footer-about p,
    .esp-footer-links a,
    .esp-footer-contact-item p,
    .esp-footer-contact-item a {
        font-size: 14px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .esp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 35px;
        padding: 60px 0 50px;
    }

    .esp-footer-column h3 {
        margin-bottom: 20px;
    }

    .esp-footer-about p {
        max-width: 360px;
    }

    .esp-footer-login-btn {
        max-width: 220px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .esp-footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 55px 0 45px;
    }

    .esp-footer-column {
        width: 100%;
        text-align: left;
    }

    .esp-footer-column h3 {
        margin-bottom: 18px;
        font-size: 14px;
    }

    .esp-footer-column h3::after {
        width: 30px;
        margin-top: 8px;
    }

    .esp-footer-logo {
        margin-bottom: 5px;
    }

    .esp-footer-logo img {
        width: 140px;
    }

    .esp-footer-about p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.75;
    }

    .esp-footer-social {
        margin-top: 18px;
    }

    .esp-footer-social a {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .esp-footer-links li {
        margin-bottom: 11px;
    }

    .esp-footer-links a {
        font-size: 14px;
    }

    .esp-footer-login {
        max-width: 220px;
        margin-top: 20px;
    }

    .esp-footer-login-btn {
        width: 100%;
        max-width: 220px;
        min-height: 38px;
        font-size: 14px;
    }

    .esp-footer-contact-item {
        margin-bottom: 16px;
    }

    .esp-footer-contact-item p,
    .esp-footer-contact-item a {
        font-size: 14px;
    }

    .esp-footer-contact-icon {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .esp-footer-copyright-inner {
        padding: 17px 15px 19px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        text-align: center;
    }

    .esp-footer-copyright p {
        font-size: 12px;
        line-height: 1.6;
        text-align: center;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .esp-footer-grid {
        gap: 32px;
        padding: 48px 0 40px;
    }

    .esp-footer-logo img {
        width: 130px;
    }

    .esp-footer-about p {
        font-size: 13px;
    }

    .esp-footer-links a {
        font-size: 13px;
    }

    .esp-footer-login {
        max-width: 190px;
    }

    .esp-footer-login-btn {
        max-width: 190px;
        font-size: 13px;
    }

    .esp-footer-contact-item p,
    .esp-footer-contact-item a {
        font-size: 13px;
    }

    .esp-footer-copyright-inner {
        padding: 15px 12px 17px;
        gap: 0px;
    }

    .esp-footer-copyright p {
        font-size: 11px;
    }
}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .esp-footer-grid {
        padding: 42px 0 35px;
        gap: 28px;
    }

    .esp-footer-about p {
        font-size: 12px;
    }

    .esp-footer-links a {
        font-size: 12px;
    }

    .esp-footer-login {
        max-width: 180px;
    }

    .esp-footer-login-btn {
        max-width: 180px;
        min-height: 36px;
        font-size: 12px;
    }

    .esp-footer-contact-item p,
    .esp-footer-contact-item a {
        font-size: 12px;
    }

    .esp-footer-social a {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    .esp-footer-copyright-inner {
        padding: 14px 10px 16px;
    }

    .esp-footer-copyright p {
        font-size: 10px;
    }
}

/* footer-section-css-end */


/* about-us-banner-css-start */

.about-us-banner {
    padding: 85px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 30%, rgba(255, 213, 74, 0.16), transparent 25%),
        radial-gradient(circle at 85% 70%, rgba(8, 127, 140, 0.35), transparent 30%),
        linear-gradient(110deg, #071b3b 0%, #0a3d78 48%, #087f8c 100%);
}

.about-us-banner::before {
    content: "✦   🎓   ✦   📚   ✦   🎓   ✦   📖   ✦";
    position: absolute;
    left: -10%;
    top: 50%;
    width: 120%;
    color: rgba(255, 255, 255, 0.07);
    font-size: 48px;
    letter-spacing: 35px;
    white-space: nowrap;
    transform: translateY(-50%) rotate(-5deg);
    animation: educationFloat 12s ease-in-out infinite;
    pointer-events: none;
}

.about-us-banner::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    top: -220px;
    right: -120px;
    border-radius: 50%;
    background: rgba(255, 213, 74, 0.10);
    filter: blur(5px);
    animation: educationGlow 7s ease-in-out infinite;
    pointer-events: none;
}

@keyframes educationFloat {
    0% {
        transform: translate(-5%, -50%) rotate(-5deg);
    }

    50% {
        transform: translate(5%, -55%) rotate(-2deg);
    }

    100% {
        transform: translate(-5%, -50%) rotate(-5deg);
    }
}

@keyframes educationGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.5;
    }
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-content h1 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.20);
}

.breadcrumb-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.breadcrumb-box a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-box a:hover {
    color: #ffd54a;
}

.breadcrumb-box span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}

.breadcrumb-box span i {
    font-size: 11px;
    color: #ffd54a;
}

.breadcrumb-box .active {
    color: #ffd54a;
    font-weight: 700;
}

@media (max-width: 991px) {
    .about-us-banner {
        padding: 75px 0;
    }

    .about-content h1 {
        font-size: 38px;
    }

    .about-us-banner::before {
        font-size: 38px;
        letter-spacing: 25px;
    }
}

@media (max-width: 768px) {
    .about-us-banner {
        padding: 60px 0;
    }

    .about-content h1 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .breadcrumb-box {
        flex-wrap: wrap;
        gap: 6px;
    }

    .breadcrumb-box a,
    .breadcrumb-box span {
        font-size: 13px;
    }

    .about-us-banner::before {
        content: "🎓   📚   🎓   📖";
        width: 150%;
        left: -25%;
        font-size: 30px;
        letter-spacing: 15px;
        opacity: 0.7;
    }

    .about-us-banner::after {
        width: 280px;
        height: 280px;
        top: -140px;
        right: -100px;
    }
}

@media (max-width: 480px) {
    .about-us-banner {
        padding: 52px 0;
    }

    .about-content h1 {
        font-size: 27px;
    }

    .breadcrumb-box {
        gap: 5px;
    }

    .breadcrumb-box a,
    .breadcrumb-box span {
        font-size: 12px;
    }

    .about-us-banner::before {
        font-size: 24px;
        letter-spacing: 10px;
    }
}

/* about-us-banner-css-end */





/* our-courses-section-css-start */

.our-courses-section {
    width: 100%;
    padding: 90px 0;
    background: #f7fafd;
    position: relative;
    overflow: hidden;
}

.our-courses-heading {
    max-width: 720px;
    margin: 0 auto 50px;
}

.our-courses-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #087f8c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.our-courses-heading h2 {
    margin: 0 0 15px;
    color: #071b3b;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 800;
}

.our-courses-heading p {
    margin: 0;
    color: #68778a;
    font-size: 15px;
    line-height: 1.8;
}

.our-courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.our-course-card {
    min-height: 270px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 35px;
    background: #ffffff;
    border: 1px solid #e6edf3;
    border-radius: 18px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(7, 27, 59, 0.07);
    transition: all 0.4s ease;
}

.our-course-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -55px;
    top: -55px;
    border-radius: 50%;
    background: rgba(255, 213, 74, 0.18);
    transition: all 0.4s ease;
}

.our-course-card:hover {
    transform: translateY(-8px);
    border-color: rgba(8, 127, 140, 0.25);
    box-shadow: 0 18px 45px rgba(7, 27, 59, 0.12);
}

.our-course-card:hover::before {
    transform: scale(1.4);
}

.our-course-icon {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: #ffd54a;
    border-radius: 14px;
    font-size: 23px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.our-course-card:hover .our-course-icon {
    color: #ffffff;
    background: #087f8c;
    transform: rotate(-5deg);
}

.our-course-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.our-course-number {
    display: block;
    margin-bottom: 5px;
    color: #087f8c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.our-course-content h3 {
    margin: 0 0 12px;
    color: #071b3b;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
}

.our-course-content p {
    margin: 0 0 20px;
    color: #6d7c8f;
    font-size: 14px;
    line-height: 1.75;
}

.our-course-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #087f8c;
    font-size: 13px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.our-course-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.our-course-card:hover .our-course-link {
    color: #071b3b;
}

.our-course-card:hover .our-course-link i {
    transform: translateX(5px);
}


/* TABLET */

@media (max-width: 991px) {

    .our-courses-section {
        padding: 75px 0;
    }

    .our-courses-heading {
        margin-bottom: 40px;
    }

    .our-courses-heading h2 {
        font-size: 32px;
    }

    .our-courses-grid {
        gap: 22px;
    }

    .our-course-card {
        gap: 18px;
        padding: 28px;
    }

    .our-course-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .our-course-content h3 {
        font-size: 20px;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .our-courses-section {
        padding: 60px 0;
    }

    .our-courses-heading {
        margin-bottom: 32px;
    }

    .our-courses-heading span {
        font-size: 12px;
    }

    .our-courses-heading h2 {
        font-size: 28px;
    }

    .our-courses-heading p {
        font-size: 14px;
    }

    .our-courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .our-course-card {
        min-height: auto;
        padding: 25px;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .our-courses-section {
        padding: 50px 0;
    }

    .our-courses-heading {
        margin-bottom: 28px;
    }

    .our-courses-heading h2 {
        font-size: 25px;
    }

    .our-courses-heading p {
        font-size: 13px;
        line-height: 1.7;
    }

    .our-course-card {
        gap: 15px;
        padding: 22px;
        border-radius: 15px;
    }

    .our-course-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        font-size: 18px;
    }

    .our-course-content h3 {
        font-size: 18px;
    }

    .our-course-content p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .our-course-link {
        font-size: 12px;
    }

}


/* our-courses-section-css-end */










/* english-literature-section-css-start */

.english-literature-section {
    width: 100%;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: #f6f9fc;
}

.english-literature-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    right: -150px;
    border-radius: 50%;
    background: rgba(8, 127, 140, 0.06);
    pointer-events: none;
}

.english-literature-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -120px;
    border-radius: 50%;
    background: rgba(255, 213, 74, 0.08);
    pointer-events: none;
}


/* COURSE INTRO */

.literature-course-intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    gap: 55px;
    max-width: 1000px;
    margin: 0 auto 65px;
    padding: 45px;
    background:
        linear-gradient(135deg, #071b3b 0%, #0a3d78 55%, #087f8c 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(7, 27, 59, 0.15);
}

.literature-course-intro::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -130px;
    top: -150px;
    border-radius: 50%;
    background: rgba(255, 213, 74, 0.12);
}

.literature-course-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.literature-image-box {
    width: 190px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.05);
}

.literature-image-box img {
    width: 115px;
    height: 115px;
    object-fit: contain;
}

.literature-course-content {
    position: relative;
    z-index: 1;
}

.literature-course-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #ffd54a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.literature-course-content h2 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
}

.literature-course-content>p {
    max-width: 680px;
    margin: 0;
    color: #cbd8e7;
    font-size: 15px;
    line-height: 1.85;
}

.literature-course-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 22px;
}

.literature-course-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.literature-course-meta i {
    color: #ffd54a;
}


/* FEATURES GRID */

.literature-features {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

.literature-feature-card {
    position: relative;
    display: grid;
    grid-template-columns: 40px 55px 1fr;
    align-items: center;
    gap: 18px;
    min-height: 145px;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e6edf3;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(7, 27, 59, 0.05);
    overflow: hidden;
    transition: all 0.35s ease;
}

.literature-feature-card::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 0;
    left: 0;
    top: 0;
    background: #ffd54a;
    transition: height 0.35s ease;
}

.literature-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(8, 127, 140, 0.25);
    box-shadow: 0 15px 35px rgba(7, 27, 59, 0.10);
}

.literature-feature-card:hover::before {
    height: 100%;
}

.literature-feature-number {
    align-self: start;
    padding-top: 4px;
    color: #087f8c;
    font-size: 13px;
    font-weight: 800;
}

.literature-feature-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: #fff4c7;
    border-radius: 13px;
    font-size: 19px;
    transition: all 0.35s ease;
}

.literature-feature-card:hover .literature-feature-icon {
    color: #ffffff;
    background: #087f8c;
    transform: rotate(-5deg);
}

.literature-feature-content h3 {
    margin: 0 0 7px;
    color: #071b3b;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 800;
}

.literature-feature-content p {
    margin: 0;
    color: #6d7c8f;
    font-size: 13px;
    line-height: 1.7;
}


/* TABLET */

@media (max-width: 991px) {

    .english-literature-section {
        padding: 75px 0;
    }

    .literature-course-intro {
        grid-template-columns: 220px 1fr;
        gap: 35px;
        padding: 35px;
        margin-bottom: 50px;
    }

    .literature-image-box {
        width: 160px;
        height: 160px;
    }

    .literature-image-box img {
        width: 95px;
        height: 95px;
    }

    .literature-course-content h2 {
        font-size: 32px;
    }

    .literature-features {
        gap: 18px;
    }

    .literature-feature-card {
        grid-template-columns: 32px 48px 1fr;
        gap: 13px;
        padding: 20px;
    }

    .literature-feature-icon {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .english-literature-section {
        padding: 60px 0;
    }

    .literature-course-intro {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 30px 25px;
        margin-bottom: 40px;
        border-radius: 20px;
        text-align: center;
    }

    .literature-course-image {
        justify-content: center;
    }

    .literature-image-box {
        width: 135px;
        height: 135px;
        border-radius: 20px;
    }

    .literature-image-box img {
        width: 80px;
        height: 80px;
    }

    .literature-course-label {
        font-size: 11px;
    }

    .literature-course-content h2 {
        font-size: 29px;
    }

    .literature-course-content>p {
        font-size: 14px;
        line-height: 1.75;
    }

    .literature-course-meta {
        justify-content: center;
        gap: 12px;
    }

    .literature-course-meta span {
        font-size: 12px;
    }

    .literature-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .literature-feature-card {
        grid-template-columns: 38px 52px 1fr;
        gap: 14px;
        min-height: 125px;
        padding: 20px;
    }

    .literature-feature-icon {
        width: 52px;
        height: 52px;
    }

    .literature-feature-content h3 {
        font-size: 16px;
    }

    .literature-feature-content p {
        font-size: 13px;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .english-literature-section {
        padding: 50px 0;
    }

    .literature-course-intro {
        padding: 25px 18px;
        gap: 22px;
    }

    .literature-image-box {
        width: 115px;
        height: 115px;
    }

    .literature-image-box img {
        width: 68px;
        height: 68px;
    }

    .literature-course-content h2 {
        font-size: 26px;
    }

    .literature-course-content>p {
        font-size: 13px;
    }

    .literature-course-meta {
        flex-direction: column;
        gap: 8px;
    }

    .literature-feature-card {
        grid-template-columns: 30px 45px 1fr;
        gap: 10px;
        padding: 18px 15px;
    }

    .literature-feature-icon {
        width: 45px;
        height: 45px;
        border-radius: 11px;
        font-size: 16px;
    }

    .literature-feature-number {
        font-size: 11px;
    }

    .literature-feature-content h3 {
        font-size: 15px;
    }

    .literature-feature-content p {
        font-size: 12px;
        line-height: 1.65;
    }

}


/* english-literature-section-css-end */







/* admission-form-section-css-start */

.admission-form-section {
    width: 100%;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: #f6f9fc;
}

.admission-form-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    top: -220px;
    right: -180px;
    border-radius: 50%;
    background: rgba(8, 127, 140, 0.06);
    pointer-events: none;
}

.admission-form-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    bottom: -180px;
    left: -150px;
    border-radius: 50%;
    background: rgba(255, 213, 74, 0.07);
    pointer-events: none;
}


/* FORM WRAPPER */

.admission-form-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1050px;
    margin: 0 auto;
}


/* FORM HEADING */
.admission-form-heading {
    max-width: 700px;
    margin: 0 auto 35px;
}

.admission-form-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #087f8c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.admission-form-heading h2 {
    margin: 0 0 12px;
    color: #071b3b;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
}

.admission-form-heading p {
    margin: 0;
    color: #6d7c8f;
    font-size: 15px;
    line-height: 1.7;
}

/* FORM */
.student-admission-form {
    padding: 40px;
    background: #ffffff;
    border: 1px solid #e5edf3;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(7, 27, 59, 0.08);
}

/* SECTION TITLE */
.admission-form-section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.admission-form-title-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: #ffd54a;
    border-radius: 12px;
    font-size: 18px;
}

.admission-form-section-title span {
    display: block;
    margin-bottom: 3px;
    color: #087f8c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.admission-form-section-title h3 {
    margin: 0;
    color: #071b3b;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}


/* FORM GRID */

.admission-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}


/* FORM GROUP */

.admission-form-group {
    width: 100%;
}

.admission-full-width {
    grid-column: 1 / -1;
}

.admission-form-group label,
.admission-upload-group label {
    display: block;
    margin-bottom: 8px;
    color: #071b3b;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;
}

.admission-form-group label span,
.admission-upload-group label span {
    color: #e53935;
}


/* INPUT */

.admission-input-box {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    background: #f8fafc;
    border: 1px solid #dfe7ee;
    border-radius: 9px;
    transition: all 0.3s ease;
}

.admission-input-box:focus-within {
    background: #ffffff;
    border-color: #087f8c;
    box-shadow: 0 0 0 3px rgba(8, 127, 140, 0.08);
}

.admission-input-box>i {
    flex-shrink: 0;
    width: 18px;
    color: #087f8c;
    text-align: center;
    font-size: 13px;
}

.admission-input-box input,
.admission-input-box select,
.admission-input-box textarea {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #26384d;
    font-family: inherit;
    font-size: 13px;
}

.admission-input-box input,
.admission-input-box select {
    height: 46px;
}

.admission-input-box input::placeholder,
.admission-input-box textarea::placeholder {
    color: #9aa8b7;
}

.admission-input-box select {
    cursor: pointer;
}

.admission-textarea-box {
    align-items: flex-start;
    padding-top: 13px;
    padding-bottom: 13px;
}

.admission-textarea-box textarea {
    min-height: 95px;
    resize: vertical;
    line-height: 1.6;
}


/* DOCUMENT SECTION */

.admission-document-heading {
    margin-top: 45px;
    padding-top: 40px;
    border-top: 1px solid #e9eef3;
}


/* UPLOAD GRID */

.admission-upload-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.admission-upload-group {
    width: 100%;
}


/* UPLOAD BOX */

.admission-upload-box {
    min-height: 125px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 20px;
    background: #f8fafc;
    border: 1px dashed #cbd8e3;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.admission-upload-box:hover {
    background: #ffffff;
    border-color: #087f8c;
}

.admission-upload-box>i {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: #fff4c7;
    border-radius: 10px;
    font-size: 17px;
}

.admission-upload-content {
    min-width: 0;
}

.admission-upload-content strong {
    display: block;
    margin-bottom: 4px;
    color: #071b3b;
    font-size: 13px;
    font-weight: 700;
}

.admission-upload-content small {
    display: block;
    color: #8a98a7;
    font-size: 10px;
}


/* FILE INPUT */

.admission-upload-box input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}


/* SUBMIT */

.admission-form-submit {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-top: 35px;
    border-top: 1px solid #e9eef3;
}

.admission-submit-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    border: 1px solid #ffd54a;
    border-radius: 8px;
    background: #ffd54a;
    color: #071b3b;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.35s ease;
}

.admission-submit-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.admission-submit-btn:hover {
    color: #ffffff;
    background: #087f8c;
    border-color: #087f8c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 127, 140, 0.18);
}

.admission-submit-btn:hover i {
    transform: translateX(5px);
}


/* TABLET */

@media (max-width: 991px) {

    .admission-form-section {
        padding: 75px 0;
    }

    .student-admission-form {
        padding: 35px;
    }

    .admission-upload-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .admission-form-section {
        padding: 60px 0;
    }

    .admission-form-heading {
        margin-bottom: 32px;
    }

    .admission-form-heading h2 {
        font-size: 30px;
    }

    .admission-form-heading p {
        font-size: 14px;
    }

    .student-admission-form {
        padding: 28px 22px;
        border-radius: 16px;
    }

    .admission-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .admission-full-width {
        grid-column: auto;
    }

    .admission-form-section-title {
        margin-bottom: 22px;
    }

    .admission-form-title-icon {
        width: 43px;
        height: 43px;
        border-radius: 10px;
        font-size: 16px;
    }

    .admission-form-section-title h3 {
        font-size: 18px;
    }

    .admission-document-heading {
        margin-top: 35px;
        padding-top: 30px;
    }

    .admission-upload-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .admission-upload-box {
        min-height: 105px;
    }

    .admission-form-submit {
        margin-top: 30px;
        padding-top: 28px;
    }

    .admission-submit-btn {
        width: 100%;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .admission-form-section {
        padding: 50px 0;
    }

    .admission-form-heading h2 {
        font-size: 26px;
    }

    .admission-form-heading span {
        font-size: 11px;
    }

    .admission-form-heading p {
        font-size: 13px;
    }

    .student-admission-form {
        padding: 25px 16px;
    }

    .admission-form-group label,
    .admission-upload-group label {
        font-size: 12px;
    }

    .admission-input-box {
        min-height: 46px;
        padding: 0 12px;
    }

    .admission-input-box input,
    .admission-input-box select {
        height: 44px;
        font-size: 12px;
    }

    .admission-input-box textarea {
        font-size: 12px;
    }

    .admission-upload-box {
        padding: 17px;
    }

    .admission-submit-btn {
        min-height: 47px;
        padding: 0 18px;
        font-size: 13px;
    }

}


/* admission-form-section-css-end */










/* achievement-section-css-start */

.achievement-section {
    width: 100%;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: #f6f9fc;
}

.achievement-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    top: -220px;
    right: -170px;
    border-radius: 50%;
    background: rgba(8, 127, 140, 0.06);
    pointer-events: none;
}

.achievement-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    bottom: -180px;
    left: -150px;
    border-radius: 50%;
    background: rgba(255, 213, 74, 0.07);
    pointer-events: none;
}


/* SECTION HEADING */
.achievement-heading {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto 35px;
}

.achievement-heading span {
    display: inline-block;
    margin-bottom: 5px;
    color: #087f8c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.6px;
    background: #ffc403b2;
    padding: 7px;
    border-radius: 4px;
}

.achievement-heading h2 {
    margin: 0 0 5px;
    color: #071b3b;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
}

.achievement-heading p {
    margin: 0;
    color: #6d7c8f;
    font-size: 15px;
    line-height: 1.7;
}


/* ACHIEVEMENT GRID */
.achievement-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}


/* ACHIEVEMENT CARD */
.achievement-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #087488;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(7, 27, 59, 0.06);
    transition: all 0.4s ease;
}

.achievement-card:hover {
    transform: translateY(-8px);
    border-color: rgb(255, 213, 74);
    box-shadow: 0 18px 45px rgba(255, 213, 74, 0.32);
}

/* IMAGE */

.achievement-image {
    height: 245px;
    position: relative;
    overflow: hidden;
    background: #071b3b;
}

.achievement-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(7, 27, 59, 0.35),
            transparent 45%);
    pointer-events: none;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.achievement-card:hover .achievement-image img {
    transform: scale(1.06);
}


/* MARKS */

.achievement-marks {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 2;
    width: 65px;
    height: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffd54a;
    border-radius: 50%;
    color: #071b3b;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}

.achievement-marks strong {
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
}

.achievement-marks span {
    margin-top: 3px;
    font-size: 8px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.8px;
}


/* CONTENT */

.achievement-content {
    padding: 22px 20px 25px;
}

.achievement-student-label {
    display: inline-block;
    margin-bottom: 7px;
    color: #087f8c;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.achievement-content h3 {
    min-height: 26px;
    margin: 0 0 18px;
    color: #071b3b;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
}


/* DETAILS */

.achievement-details {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding-top: 15px;
    border-top: 1px solid #edf1f4;
}

.achievement-detail {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 8px;
    align-items: start;
}

.achievement-detail span {
    color: #8a98a7;
    font-size: 10px;
    line-height: 1.5;
    font-weight: 600;
}

.achievement-detail strong {
    color: #34475b;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 700;
    word-break: break-word;
}


/* LARGE TABLET */

@media (max-width: 1199px) {

    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 850px;
        margin: 0 auto;
    }

    .achievement-image {
        height: 300px;
    }

}


/* TABLET */

@media (max-width: 991px) {

    .achievement-section {
        padding: 75px 0;
    }

    .achievement-heading {
        margin-bottom: 40px;
    }

    .achievement-heading h2 {
        font-size: 34px;
    }

    .achievement-image {
        height: 270px;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .achievement-section {
        padding: 60px 0;
    }

    .achievement-heading {
        margin-bottom: 32px;
    }

    .achievement-heading span {
        font-size: 11px;
    }

    .achievement-heading h2 {
        font-size: 29px;
    }

    .achievement-heading p {
        font-size: 14px;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        gap: 20px;
    }

    .achievement-image {
        height: 330px;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .achievement-section {
        padding: 50px 0;
    }

    .achievement-heading h2 {
        font-size: 26px;
    }

    .achievement-heading p {
        font-size: 13px;
    }

    .achievement-grid {
        gap: 18px;
    }

    .achievement-image {
        height: 280px;
    }

    .achievement-content {
        padding: 20px 17px 22px;
    }

    .achievement-content h3 {
        font-size: 17px;
    }

    .achievement-marks {
        width: 60px;
        height: 60px;
        right: 12px;
        bottom: 12px;
    }

    .achievement-marks strong {
        font-size: 20px;
    }

}


/* achievement-section-css-end */










/* blog-section-css-start */

.esp-blog-section {
    width: 100%;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: #f6f9fc;
}


/* SECTION HEADING */

.esp-blog-heading {
    max-width: 700px;
    margin: 0 auto 50px;
}

.esp-blog-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #087f8c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.esp-blog-heading h2 {
    margin: 0 0 12px;
    color: #071b3b;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
}

.esp-blog-heading p {
    margin: 0;
    color: #6d7c8f;
    font-size: 15px;
    line-height: 1.75;
}


/* BLOG LIST */

.esp-blog-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}


/* BLOG CARD */

.esp-blog-card {
    width: 100%;
    min-height: 290px;
    display: grid;
    grid-template-columns: 38% 62%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e4ebf1;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(7, 27, 59, 0.06);
    transition: all 0.4s ease;
}

.esp-blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(8, 127, 140, 0.25);
    box-shadow: 0 18px 45px rgba(7, 27, 59, 0.11);
}


/* BLOG IMAGE */

.esp-blog-image {
    width: 100%;
    height: 100%;
    min-height: 290px;
    overflow: hidden;
    background: #071b3b;
}

.esp-blog-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.esp-blog-card:hover .esp-blog-image img {
    transform: scale(1.05);
}


/* BLOG CONTENT */

.esp-blog-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 38px 45px;
}


/* CATEGORY */

.esp-blog-category {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 10px;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.08);
    border-radius: 5px;
    font-size: 9px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 1px;
}


/* TITLE */

.esp-blog-content h3 {
    max-width: 750px;
    margin: 0 0 13px;
    color: #071b3b;
    font-size: 23px;
    line-height: 1.4;
    font-weight: 800;
    transition: color 0.3s ease;
}

.esp-blog-card:hover .esp-blog-content h3 {
    color: #087f8c;
}


/* DESCRIPTION */

.esp-blog-content p {
    max-width: 720px;
    margin: 0 0 20px;
    color: #6d7c8f;
    font-size: 14px;
    line-height: 1.8;
}


/* READ MORE */

.esp-blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 17px;
    color: #071b3b;
    background: #ffd54a;
    border: 1px solid #ffd54a;
    border-radius: 7px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.esp-blog-read-more i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.esp-blog-read-more:hover {
    color: #ffffff;
    background: #087f8c;
    border-color: #087f8c;
}

.esp-blog-read-more:hover i {
    transform: translateX(4px);
}


/* LARGE TABLET */

@media (max-width: 991px) {

    .esp-blog-section {
        padding: 75px 0;
    }

    .esp-blog-heading {
        margin-bottom: 40px;
    }

    .esp-blog-heading h2 {
        font-size: 34px;
    }

    .esp-blog-card {
        grid-template-columns: 40% 60%;
        min-height: 260px;
    }

    .esp-blog-image {
        min-height: 260px;
    }

    .esp-blog-content {
        padding: 30px;
    }

    .esp-blog-content h3 {
        font-size: 20px;
    }

    .esp-blog-content p {
        font-size: 13px;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .esp-blog-section {
        padding: 60px 0;
    }

    .esp-blog-heading {
        margin-bottom: 32px;
    }

    .esp-blog-heading span {
        font-size: 11px;
    }

    .esp-blog-heading h2 {
        font-size: 29px;
    }

    .esp-blog-heading p {
        font-size: 14px;
    }

    .esp-blog-list {
        gap: 20px;
    }

    .esp-blog-card {
        display: flex;
        flex-direction: column;
        min-height: auto;
        border-radius: 15px;
    }

    .esp-blog-image {
        width: 100%;
        height: 230px;
        min-height: 230px;
    }

    .esp-blog-content {
        width: 100%;
        padding: 25px 22px 28px;
    }

    .esp-blog-content h3 {
        font-size: 19px;
    }

    .esp-blog-content p {
        font-size: 13px;
        line-height: 1.75;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .esp-blog-section {
        padding: 50px 0;
    }

    .esp-blog-heading h2 {
        font-size: 26px;
    }

    .esp-blog-heading p {
        font-size: 13px;
    }

    .esp-blog-list {
        gap: 18px;
    }

    .esp-blog-image {
        height: 210px;
        min-height: 210px;
    }

    .esp-blog-content {
        padding: 22px 17px 25px;
    }

    .esp-blog-category {
        font-size: 8px;
    }

    .esp-blog-content h3 {
        font-size: 17px;
        line-height: 1.45;
    }

    .esp-blog-content p {
        font-size: 12px;
    }

    .esp-blog-read-more {
        padding: 9px 14px;
        font-size: 11px;
    }

}


/* blog-section-css-end */








/* blog-inner-page-css-start */

.blog-inner-page {
    width: 100%;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 15%, rgba(255, 213, 74, 0.10), transparent 25%),
        radial-gradient(circle at 92% 75%, rgba(8, 127, 140, 0.14), transparent 28%),
        linear-gradient(135deg, #071b3b 0%, #082b57 48%, #087f8c 100%);
}


/* =========================================================
   EDUCATION BACKGROUND ANIMATION
========================================================= */

.blog-inner-page::before {
    content: "✦   📚   ✦   🎓   ✦   📖   ✦   ✎   ✦   📚";
    position: absolute;
    top: 18%;
    left: -10%;
    width: 120%;
    color: rgba(255, 255, 255, 0.035);
    font-size: 50px;
    letter-spacing: 30px;
    white-space: nowrap;
    transform: rotate(-5deg);
    animation: blogEducationFloat 15s ease-in-out infinite;
    pointer-events: none;
}


.blog-inner-page::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -220px;
    bottom: -220px;
    border-radius: 50%;
    background: rgba(255, 213, 74, 0.08);
    filter: blur(10px);
    animation: blogEducationGlow 8s ease-in-out infinite;
    pointer-events: none;
}


/* =========================================================
   EDUCATION ANIMATION
========================================================= */

@keyframes blogEducationFloat {

    0% {
        transform: translateX(-3%) rotate(-5deg);
    }

    50% {
        transform: translateX(5%) rotate(-2deg);
    }

    100% {
        transform: translateX(-3%) rotate(-5deg);
    }

}


@keyframes blogEducationGlow {

    0% {
        transform: scale(0.85);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(0.85);
        opacity: 0.5;
    }

}


/* =========================================================
   CONTAINER
========================================================= */

.blog-inner-page .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   ARTICLE WRAPPER
========================================================= */

.blog-inner-wrapper {
    max-width: 1050px;
    margin: 0 auto;
    padding: 45px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   ARTICLE HEADER
========================================================= */

.blog-inner-header {
    max-width: 850px;
    margin: 0 auto 35px;
    text-align: center;
}


.blog-inner-category {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 13px;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.08);
    border: 1px solid rgba(8, 127, 140, 0.10);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}


.blog-inner-header h1 {
    margin: 0;
    color: #071b3b;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.blog-inner-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 18px;
}


.blog-inner-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #7a8998;
    font-size: 12px;
    font-weight: 600;
}


.blog-inner-meta i {
    color: #087f8c;
    font-size: 12px;
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.blog-inner-featured {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 45px;
    background: #071b3b;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(7, 27, 59, 0.10);
}


.blog-inner-featured img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}


.blog-inner-featured:hover img {
    transform: scale(1.02);
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.blog-inner-content {
    max-width: 850px;
    margin: 0 auto;
}


.blog-inner-content>p,
.blog-inner-section p {
    margin: 0 0 20px;
    color: #596b7e;
    font-size: 15px;
    line-height: 1.9;
}


.blog-inner-content>p:last-child,
.blog-inner-section p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ARTICLE SECTION
========================================================= */

.blog-inner-section {
    margin-top: 45px;
}


.blog-inner-section h2 {
    margin: 0 0 20px;
    color: #071b3b;
    font-size: 27px;
    line-height: 1.4;
    font-weight: 800;
}


.blog-inner-section h3 {
    margin: 0 0 18px;
    color: #071b3b;
    font-size: 21px;
    line-height: 1.4;
    font-weight: 800;
}


/* =========================================================
   IMAGE GALLERY
========================================================= */

.blog-inner-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 40px 0;
}


.blog-gallery-item {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #e9eef3;
    border-radius: 12px;
}


.blog-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}


.blog-gallery-item:hover img {
    transform: scale(1.06);
}


/* =========================================================
   LIST
========================================================= */

.blog-inner-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}


.blog-inner-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #596b7e;
    font-size: 14px;
    line-height: 1.7;
}


.blog-inner-list li i {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    color: #071b3b;
    background: #ffd54a;
    border-radius: 50%;
    font-size: 9px;
}


/* =========================================================
   HIGHLIGHT BOX
========================================================= */

.blog-inner-highlight {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 35px 0;
    padding: 25px 28px;
    background: #071b3b;
    border-left: 4px solid #ffd54a;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(7, 27, 59, 0.10);
}


.blog-highlight-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: #ffd54a;
    border-radius: 10px;
    font-size: 17px;
}


.blog-inner-highlight p {
    margin: 0;
    color: #dbe5ef;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   QUOTE BOX
========================================================= */

.blog-inner-quote {
    position: relative;
    margin: 35px 0;
    padding: 30px 35px;
    background: #f7fafc;
    border: 1px solid #e3eaf0;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.05);
}


.blog-inner-quote>i {
    display: block;
    margin-bottom: 12px;
    color: #ffd54a;
    font-size: 25px;
}


.blog-inner-quote p {
    margin: 0;
    color: #071b3b;
    font-size: 19px;
    line-height: 1.7;
    font-weight: 600;
}


/* =========================================================
   CONCLUSION
========================================================= */

.blog-inner-conclusion {
    margin-top: 50px;
    padding: 35px;
    background:
        radial-gradient(circle at 90% 10%,
            rgba(255, 213, 74, 0.12),
            transparent 30%),
        linear-gradient(135deg,
            #071b3b 0%,
            #0a3d78 55%,
            #087f8c 100%);
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(7, 27, 59, 0.12);
}


.blog-conclusion-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}


.blog-conclusion-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: #ffd54a;
    border-radius: 10px;
}


.blog-conclusion-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: 27px;
    font-weight: 800;
}


.blog-inner-conclusion p {
    margin: 0 0 18px;
    color: #dce7f1;
    font-size: 14px;
    line-height: 1.9;
}


.blog-inner-conclusion p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ARTICLE FOOTER
========================================================= */

.blog-inner-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #dfe7ed;
}


.blog-inner-footer span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #087f8c;
    font-size: 12px;
    font-weight: 700;
}


.blog-inner-footer span i {
    color: #ffd54a;
}


.blog-inner-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #071b3b;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    transition: all 0.3s ease;
}


.blog-inner-footer a:hover {
    color: #087f8c;
}


.blog-inner-footer a i {
    font-size: 10px;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1199px) {

    .blog-inner-wrapper {
        max-width: 950px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .blog-inner-page {
        padding: 75px 0;
    }

    .blog-inner-wrapper {
        padding: 35px;
        border-radius: 20px;
    }

    .blog-inner-header h1 {
        font-size: 36px;
    }

    .blog-inner-featured {
        height: 400px;
        margin-bottom: 38px;
    }

    .blog-inner-content>p,
    .blog-inner-section p {
        font-size: 14px;
    }

    .blog-inner-gallery {
        gap: 12px;
    }

    .blog-gallery-item {
        height: 160px;
    }

    .blog-inner-page::before {
        font-size: 38px;
        letter-spacing: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .blog-inner-page {
        padding: 60px 0;
    }

    .blog-inner-wrapper {
        padding: 25px 20px;
        border-radius: 17px;
    }

    .blog-inner-header {
        margin-bottom: 25px;
    }

    .blog-inner-category {
        margin-bottom: 11px;
        padding: 6px 10px;
        font-size: 9px;
    }

    .blog-inner-header h1 {
        font-size: 29px;
        line-height: 1.35;
    }

    .blog-inner-meta {
        gap: 10px 15px;
    }

    .blog-inner-meta span {
        font-size: 11px;
    }

    .blog-inner-featured {
        height: 280px;
        margin-bottom: 30px;
        border-radius: 14px;
    }

    .blog-inner-content>p,
    .blog-inner-section p {
        font-size: 13px;
        line-height: 1.85;
    }

    .blog-inner-section {
        margin-top: 35px;
    }

    .blog-inner-section h2 {
        font-size: 23px;
    }

    .blog-inner-section h3 {
        font-size: 19px;
    }

    .blog-inner-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 30px 0;
    }

    .blog-gallery-item {
        height: 140px;
        border-radius: 9px;
    }

    .blog-inner-highlight {
        align-items: flex-start;
        gap: 13px;
        padding: 20px;
    }

    .blog-highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .blog-inner-highlight p {
        font-size: 12px;
    }

    .blog-inner-quote {
        padding: 25px 22px;
    }

    .blog-inner-quote p {
        font-size: 16px;
    }

    .blog-inner-conclusion {
        padding: 25px 22px;
        border-radius: 14px;
    }

    .blog-conclusion-heading h2 {
        font-size: 23px;
    }

    .blog-inner-conclusion p {
        font-size: 13px;
    }

    .blog-inner-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-inner-page::before {
        content: "🎓   📚   🎓   📖";
        width: 150%;
        left: -25%;
        top: 15%;
        font-size: 30px;
        letter-spacing: 15px;
    }

    .blog-inner-page::after {
        width: 300px;
        height: 300px;
        right: -150px;
        bottom: -120px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .blog-inner-page {
        padding: 50px 0;
    }

    .blog-inner-wrapper {
        padding: 20px 15px;
        border-radius: 14px;
    }

    .blog-inner-header h1 {
        font-size: 25px;
    }

    .blog-inner-meta {
        gap: 8px 12px;
    }

    .blog-inner-meta span {
        font-size: 10px;
    }

    .blog-inner-featured {
        height: 220px;
        border-radius: 12px;
    }

    .blog-inner-content>p,
    .blog-inner-section p {
        font-size: 12px;
        line-height: 1.85;
    }

    .blog-inner-section h2 {
        font-size: 21px;
    }

    .blog-inner-section h3 {
        font-size: 17px;
    }

    .blog-inner-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .blog-gallery-item {
        height: 115px;
        border-radius: 8px;
    }

    .blog-inner-list {
        gap: 10px;
    }

    .blog-inner-list li {
        font-size: 12px;
    }

    .blog-inner-list li i {
        width: 20px;
        height: 20px;
        font-size: 8px;
    }

    .blog-inner-highlight {
        padding: 18px;
    }

    .blog-highlight-icon {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .blog-inner-highlight p {
        font-size: 11px;
        line-height: 1.7;
    }

    .blog-inner-quote {
        padding: 22px 18px;
    }

    .blog-inner-quote>i {
        font-size: 21px;
    }

    .blog-inner-quote p {
        font-size: 14px;
    }

    .blog-inner-conclusion {
        padding: 22px 18px;
        border-radius: 12px;
    }

    .blog-conclusion-heading {
        gap: 10px;
        margin-bottom: 18px;
    }

    .blog-conclusion-icon {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .blog-conclusion-heading h2 {
        font-size: 21px;
    }

    .blog-inner-conclusion p {
        font-size: 12px;
        line-height: 1.8;
    }

    .blog-inner-footer {
        gap: 13px;
        padding-top: 20px;
    }

    .blog-inner-footer span,
    .blog-inner-footer a {
        font-size: 11px;
    }

    .blog-inner-page::before {
        font-size: 23px;
        letter-spacing: 9px;
    }

}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .blog-inner-page {
        padding: 42px 0;
    }

    .blog-inner-wrapper {
        padding: 18px 12px;
    }

    .blog-inner-header h1 {
        font-size: 22px;
    }

    .blog-inner-category {
        font-size: 8px;
    }

    .blog-inner-featured {
        height: 190px;
    }

    .blog-inner-content>p,
    .blog-inner-section p {
        font-size: 11px;
    }

    .blog-inner-section h2 {
        font-size: 19px;
    }

    .blog-inner-section h3 {
        font-size: 16px;
    }

    .blog-gallery-item {
        height: 95px;
    }

    .blog-inner-list li {
        font-size: 11px;
    }

    .blog-inner-highlight p {
        font-size: 10px;
    }

    .blog-inner-quote p {
        font-size: 13px;
    }

    .blog-inner-conclusion p {
        font-size: 11px;
    }

}


/* blog-inner-page-css-end */












/* payment-section-css-start */

.esp-payment-section {
    width: 100%;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%,
            rgba(255, 213, 74, 0.12),
            transparent 25%),
        radial-gradient(circle at 90% 80%,
            rgba(8, 127, 140, 0.18),
            transparent 30%),
        linear-gradient(135deg,
            #071b3b 0%,
            #0a3d78 52%,
            #087f8c 100%);
}


/* =========================================================
   BACKGROUND EDUCATION ANIMATION
========================================================= */

.esp-payment-section::before {
    content: "✦   💳   ✦   🎓   ✦   💰   ✦   📚   ✦";
    position: absolute;
    width: 120%;
    left: -10%;
    top: 50%;
    color: rgba(255, 255, 255, 0.035);
    font-size: 48px;
    letter-spacing: 30px;
    white-space: nowrap;
    transform: translateY(-50%) rotate(-5deg);
    animation: paymentFloat 14s ease-in-out infinite;
    pointer-events: none;
}


.esp-payment-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -180px;
    border-radius: 50%;
    background: rgba(255, 213, 74, 0.08);
    filter: blur(8px);
    animation: paymentGlow 8s ease-in-out infinite;
    pointer-events: none;
}


@keyframes paymentFloat {

    0% {
        transform: translate(-3%, -50%) rotate(-5deg);
    }

    50% {
        transform: translate(4%, -55%) rotate(-2deg);
    }

    100% {
        transform: translate(-3%, -50%) rotate(-5deg);
    }

}


@keyframes paymentGlow {

    0% {
        transform: scale(0.85);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(0.85);
        opacity: 0.5;
    }

}


/* =========================================================
   PAYMENT WRAPPER
========================================================= */

.esp-payment-section .container {
    position: relative;
    z-index: 2;
}


.esp-payment-wrapper {
    max-width: 620px;
    margin: 0 auto;
    padding: 55px 50px;
    text-align: center;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 24px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   PAYMENT CONTENT
========================================================= */

.esp-payment-content {
    width: 100%;
}


.esp-payment-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    padding: 7px 13px;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.08);
    border: 1px solid rgba(8, 127, 140, 0.10);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
}


.esp-payment-label i {
    font-size: 10px;
}


.esp-payment-content h2 {
    margin: 0;
    color: #071b3b;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 800;
}


/* =========================================================
   PRICE
========================================================= */
.esp-payment-price {
    display: inline-block;
    margin: 10px 0;
    color: #087f8c;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 900;
}


.esp-payment-content p {
    max-width: 430px;
    margin: 0 auto 28px;
    color: #66788a;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   PAY NOW BUTTON
========================================================= */

.esp-payment-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    padding: 0 25px;
    color: #071b3b;
    background: #ffd54a;
    border: 2px solid #ffd54a;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(255, 213, 74, 0.25);
    transition: all 0.3s ease;
}


.esp-payment-btn:hover {
    color: #ffffff;
    background: #071b3b;
    border-color: #071b3b;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(7, 27, 59, 0.20);
}


.esp-payment-btn i:first-child {
    font-size: 12px;
}


.esp-payment-btn i:last-child {
    font-size: 11px;
    transition: transform 0.3s ease;
}


.esp-payment-btn:hover i:last-child {
    transform: translateX(4px);
}


/* =========================================================
   SECURE MESSAGE
========================================================= */

.esp-payment-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 20px;
    color: #8a98a6;
    font-size: 11px;
    font-weight: 600;
}


.esp-payment-secure i {
    color: #087f8c;
    font-size: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .esp-payment-section {
        padding: 75px 0;
    }

    .esp-payment-wrapper {
        max-width: 580px;
        padding: 48px 40px;
    }

    .esp-payment-content h2 {
        font-size: 30px;
    }

    .esp-payment-price {
        font-size: 40px;
    }

    .esp-payment-section::before {
        font-size: 38px;
        letter-spacing: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .esp-payment-section {
        padding: 60px 0;
    }

    .esp-payment-wrapper {
        width: 100%;
        padding: 40px 25px;
        border-radius: 18px;
    }

    .esp-payment-label {
        font-size: 9px;
        margin-bottom: 13px;
    }

    .esp-payment-content h2 {
        font-size: 27px;
    }

    .esp-payment-price {
        margin: 15px 0;
        font-size: 36px;
    }

    .esp-payment-content p {
        margin-bottom: 24px;
        font-size: 13px;
        line-height: 1.75;
    }

    .esp-payment-btn {
        min-height: 47px;
        min-width: 165px;
        padding: 0 20px;
        font-size: 13px;
    }

    .esp-payment-secure {
        margin-top: 17px;
        font-size: 10px;
    }

    .esp-payment-section::before {
        content: "💳   🎓   💳   📚";
        width: 150%;
        left: -25%;
        font-size: 30px;
        letter-spacing: 15px;
    }

    .esp-payment-section::after {
        width: 280px;
        height: 280px;
        right: -130px;
        top: -120px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .esp-payment-section {
        padding: 50px 0;
    }

    .esp-payment-wrapper {
        padding: 35px 18px;
        border-radius: 15px;
    }

    .esp-payment-label {
        padding: 6px 10px;
        font-size: 8px;
        letter-spacing: 1px;
    }

    .esp-payment-content h2 {
        font-size: 24px;
    }

    .esp-payment-price {
        font-size: 32px;
    }

    .esp-payment-content p {
        font-size: 12px;
    }

    .esp-payment-btn {
        width: 100%;
        max-width: 200px;
        min-height: 45px;
        font-size: 12px;
    }

    .esp-payment-secure {
        font-size: 9px;
    }

    .esp-payment-section::before {
        font-size: 23px;
        letter-spacing: 9px;
    }

}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .esp-payment-section {
        padding: 42px 0;
    }

    .esp-payment-wrapper {
        padding: 30px 15px;
    }

    .esp-payment-content h2 {
        font-size: 22px;
    }

    .esp-payment-price {
        font-size: 29px;
    }

    .esp-payment-content p {
        font-size: 11px;
    }

    .esp-payment-btn {
        max-width: 180px;
        min-height: 42px;
        font-size: 11px;
    }

}


/* payment-section-css-end */











/* contact-us-page-css-start */

.esp-contact-page {
    width: 100%;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}


/* =========================================================
   PAGE HEADING
========================================================= */
.esp-contact-page-heading {
    max-width: 720px;
    margin: 0 auto 35px;
    text-align: center;
}

.esp-contact-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 6px;
    padding: 7px 13px;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.07);
    border: 1px solid rgba(8, 127, 140, 0.12);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.esp-contact-label i {
    color: #ffd54a;
    font-size: 10px;
}

.esp-contact-page-heading h1 {
    margin: 0 0 5px;
    color: #071b3b;
    font-size: 38px;
    line-height: 1.3;
    font-weight: 800;
}

.esp-contact-page-heading p {
    max-width: 580px;
    margin: 0 auto;
    color: #718194;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT TOP GRID
========================================================= */

.esp-contact-top-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: stretch;
}


/* =========================================================
   COMMON CARD
========================================================= */

.esp-contact-form-card,
.esp-contact-details-card {
    position: relative;
    padding: 40px;
    background: #ffffff;
    border: 1px solid #e5ebf0;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(7, 27, 59, 0.08);
}


.esp-contact-form-card::before,
.esp-contact-details-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 35px;
    width: 55px;
    height: 3px;
    background: #ffd54a;
    border-radius: 0 0 5px 5px;
}


/* =========================================================
   CARD HEADING
========================================================= */

.esp-contact-card-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 32px;
}


.esp-contact-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: #ffd54a;
    border-radius: 11px;
    font-size: 17px;
}


.esp-contact-card-heading span {
    display: block;
    margin-bottom: 4px;
    color: #087f8c;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.1px;
}


.esp-contact-card-heading h2 {
    margin: 0;
    color: #071b3b;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 800;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.esp-contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


.esp-contact-form-group {
    width: 100%;
}


.esp-contact-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #071b3b;
    font-size: 12px;
    font-weight: 700;
}


.esp-contact-input {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e1e8ee;
    border-radius: 8px;
    transition: all 0.3s ease;
}


.esp-contact-input:focus-within {
    background: #ffffff;
    border-color: #087f8c;
    box-shadow: 0 0 0 3px rgba(8, 127, 140, 0.07);
}


.esp-contact-input>i {
    width: 45px;
    flex-shrink: 0;
    text-align: center;
    color: #087f8c;
    font-size: 12px;
}


.esp-contact-input input,
.esp-contact-input textarea {
    width: 100%;
    height: 100%;
    padding: 0 12px 0 0;
    color: #071b3b;
    background: transparent;
    border: 0;
    outline: 0;
    font-family: inherit;
    font-size: 13px;
}


.esp-contact-input input::placeholder,
.esp-contact-input textarea::placeholder {
    color: #a1adba;
}


.esp-contact-message-group {
    grid-column: 1 / -1;
}


.esp-contact-textarea {
    height: 140px;
    align-items: flex-start;
}


.esp-contact-textarea>i {
    padding-top: 16px;
}


.esp-contact-input textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 14px;
    line-height: 1.6;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.esp-contact-submit {
    min-height: 48px;
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 170px;
    padding: 0 20px;
    color: #071b3b;
    background: #ffd54a;
    border: 1px solid #ffd54a;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}


.esp-contact-submit:hover {
    color: #ffffff;
    background: #071b3b;
    border-color: #071b3b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(7, 27, 59, 0.15);
}


.esp-contact-submit i {
    font-size: 10px;
    transition: transform 0.3s ease;
}


.esp-contact-submit:hover i {
    transform: translateX(4px);
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.esp-contact-details-card {
    background:
        radial-gradient(circle at 100% 0%,
            rgba(255, 213, 74, 0.10),
            transparent 30%),
        #ffffff;
}


.esp-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #e9eef2;
}


.esp-contact-detail:first-of-type {
    padding-top: 0;
}


.esp-contact-detail-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: #ffd54a;
    border-radius: 9px;
    font-size: 13px;
}


.esp-contact-detail-content {
    min-width: 0;
}


.esp-contact-detail-content h5 {
    margin: 0 0 7px;
    color: #071b3b;
    font-size: 13px;
    font-weight: 800;
}


.esp-contact-detail-content p,
.esp-contact-detail-content a {
    display: block;
    margin: 0;
    color: #718194;
    font-size: 13px;
    line-height: 1.8;
    text-decoration: none;
}


.esp-contact-detail-content a {
    color: #087f8c;
    font-weight: 600;
    word-break: break-word;
    transition: color 0.3s ease;
}


.esp-contact-detail-content a:hover {
    color: #071b3b;
}


/* =========================================================
   QUICK CONTACT
========================================================= */

.esp-contact-quick-box {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 25px;
    padding: 17px;
    background: #071b3b;
    border-radius: 10px;
}


.esp-contact-quick-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: #ffd54a;
    border-radius: 8px;
    font-size: 15px;
}


.esp-contact-quick-box span {
    display: block;
    margin-bottom: 3px;
    color: #9fb1c5;
    font-size: 10px;
}


.esp-contact-quick-box a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: color 0.3s ease;
}


.esp-contact-quick-box a:hover {
    color: #ffd54a;
}


/* =========================================================
   MAP CARD
========================================================= */

.esp-contact-map-card {
    margin-top: 30px;
    padding: 35px;
    background: #ffffff;
    border: 1px solid #e5ebf0;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(7, 27, 59, 0.08);
}


.esp-contact-map-heading {
    margin-bottom: 25px;
}


.esp-contact-map-title {
    display: flex;
    align-items: center;
    gap: 14px;
}


.esp-contact-map-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: #ffd54a;
    border-radius: 10px;
    font-size: 15px;
}


.esp-contact-map-title span {
    display: block;
    margin-bottom: 4px;
    color: #087f8c;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.1px;
}


.esp-contact-map-title h2 {
    margin: 0;
    color: #071b3b;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 800;
}


/* =========================================================
   GOOGLE MAP
========================================================= */

.esp-contact-map {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #eef2f5;
    border-radius: 13px;
}


.esp-contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .esp-contact-page {
        padding: 75px 0;
    }

    .esp-contact-page-heading {
        margin-bottom: 45px;
    }

    .esp-contact-page-heading h1 {
        font-size: 36px;
    }

    .esp-contact-top-grid {
        grid-template-columns: 1fr;
    }

    .esp-contact-form-card,
    .esp-contact-details-card {
        padding: 35px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .esp-contact-page {
        padding: 60px 0;
    }

    .esp-contact-page-heading {
        margin-bottom: 35px;
    }

    .esp-contact-page-heading h1 {
        font-size: 30px;
    }

    .esp-contact-page-heading p {
        font-size: 13px;
        line-height: 1.75;
    }

    .esp-contact-form-card,
    .esp-contact-details-card {
        padding: 27px 22px;
        border-radius: 15px;
    }

    .esp-contact-card-heading {
        margin-bottom: 25px;
    }

    .esp-contact-card-icon {
        width: 43px;
        height: 43px;
        font-size: 15px;
    }

    .esp-contact-card-heading h2 {
        font-size: 21px;
    }

    .esp-contact-form {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .esp-contact-message-group {
        grid-column: auto;
    }

    .esp-contact-submit {
        grid-column: auto;
        width: 100%;
    }

    .esp-contact-detail {
        padding: 17px 0;
    }

    .esp-contact-map-card {
        margin-top: 25px;
        padding: 25px 20px;
        border-radius: 15px;
    }

    .esp-contact-map-title h2 {
        font-size: 20px;
    }

    .esp-contact-map {
        height: 330px;
        border-radius: 10px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .esp-contact-page {
        padding: 50px 0;
    }

    .esp-contact-page-heading {
        margin-bottom: 30px;
    }

    .esp-contact-label {
        padding: 6px 10px;
        font-size: 8px;
    }

    .esp-contact-page-heading h1 {
        font-size: 26px;
    }

    .esp-contact-page-heading p {
        font-size: 12px;
    }

    .esp-contact-form-card,
    .esp-contact-details-card {
        padding: 23px 16px;
    }

    .esp-contact-card-heading {
        gap: 11px;
    }

    .esp-contact-card-icon {
        width: 39px;
        height: 39px;
        font-size: 13px;
    }

    .esp-contact-card-heading span {
        font-size: 8px;
    }

    .esp-contact-card-heading h2 {
        font-size: 19px;
    }

    .esp-contact-input {
        height: 45px;
    }

    .esp-contact-input>i {
        width: 40px;
        font-size: 11px;
    }

    .esp-contact-input input,
    .esp-contact-input textarea {
        font-size: 12px;
    }

    .esp-contact-textarea {
        height: 120px;
    }

    .esp-contact-detail-icon {
        width: 37px;
        height: 37px;
        font-size: 11px;
    }

    .esp-contact-detail-content h5 {
        font-size: 12px;
    }

    .esp-contact-detail-content p,
    .esp-contact-detail-content a {
        font-size: 11px;
    }

    .esp-contact-quick-box {
        padding: 14px;
    }

    .esp-contact-quick-icon {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .esp-contact-map-card {
        padding: 22px 15px;
    }

    .esp-contact-map-icon {
        width: 39px;
        height: 39px;
        font-size: 13px;
    }

    .esp-contact-map-title h2 {
        font-size: 18px;
    }

    .esp-contact-map {
        height: 280px;
    }

}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .esp-contact-page {
        padding: 42px 0;
    }

    .esp-contact-page-heading h1 {
        font-size: 23px;
    }

    .esp-contact-page-heading p {
        font-size: 11px;
    }

    .esp-contact-form-card,
    .esp-contact-details-card {
        padding: 20px 13px;
    }

    .esp-contact-card-heading h2 {
        font-size: 17px;
    }

    .esp-contact-form-group label {
        font-size: 11px;
    }

    .esp-contact-detail-content p,
    .esp-contact-detail-content a {
        font-size: 10px;
    }

    .esp-contact-map {
        height: 240px;
    }

}


/* contact-us-page-css-end */












/* admin-login-section-css-start */

.admin-login-section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 213, 74, 0.08), transparent 28%),
        radial-gradient(circle at 90% 80%, rgba(8, 164, 216, 0.08), transparent 30%),
        #071b3b;
}

.admin-login-bg {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.admin-login-bg-one {
    width: 430px;
    height: 430px;
    top: -240px;
    right: -180px;
    border: 1px solid rgba(255, 213, 74, 0.12);
    background: rgba(255, 213, 74, 0.025);
}

.admin-login-bg-two {
    width: 380px;
    height: 380px;
    bottom: -220px;
    left: -180px;
    border: 1px solid rgba(8, 164, 216, 0.12);
    background: rgba(8, 164, 216, 0.025);
}

.admin-login-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.admin-login-card {
    width: 100%;
    max-width: 470px;
    padding: 42px 40px;
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(8, 164, 216, 0.04);
    backdrop-filter: blur(15px);
}

.admin-login-header {
    text-align: center;
    margin-bottom: 20px;
}

.admin-login-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: linear-gradient(135deg, #ffd54a, #ffb703);
    border-radius: 15px;
    font-size: 21px;
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.18);
}

.admin-login-tag {
    display: inline-block;
    color: #ffd54a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.admin-login-header h2 {
    margin: 3px 0 0;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.admin-login-header h2 span {
    color: #ffd54a;
}

.admin-login-form {
    width: 100%;
}

.admin-login-field {
    margin-bottom: 20px;
}

.admin-login-field label {
    display: block;
    margin-bottom: 8px;
    color: #dce5ef;
    font-size: 11px;
    font-weight: 700;
}

.admin-login-input {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.admin-login-input>i {
    width: 18px;
    flex-shrink: 0;
    margin-right: 10px;
    color: #ffd54a;
    font-size: 13px;
    text-align: center;
}

.admin-login-input input {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
    font-size: 12px;
}

.admin-login-input input::placeholder {
    color: #71839a;
}

.admin-login-input:focus-within {
    border-color: rgba(255, 213, 74, 0.65);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 0 0 3px rgba(255, 213, 74, 0.07);
}

.admin-password-toggle {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 7px;
    padding: 0;
    border: 0;
    color: #8293a8;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    transition: color 0.3s ease;
}

.admin-password-toggle:hover {
    color: #ffd54a;
}

.admin-login-btn {
    width: 100%;
    height: 50px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    position: relative;
    box-sizing: border-box;
    border: 1px solid #ffd54a;
    border-radius: 10px;
    color: #071b3b;
    background: linear-gradient(135deg, #ffd54a, #ffb703);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.admin-login-btn>span {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.42);
    font-size: 11px;
}

.admin-login-btn:hover {
    color: #071b3b;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 183, 3, 0.25);
}

@media (max-width: 1199px) {
    .admin-login-section {
        min-height: 680px;
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .admin-login-section {
        min-height: 650px;
        padding: 70px 0;
    }

    .admin-login-card {
        max-width: 450px;
        padding: 38px 35px;
    }
}

@media (max-width: 767px) {
    .admin-login-section {
        min-height: auto;
        padding: 60px 0;
    }

    .admin-login-card {
        max-width: 100%;
        padding: 32px 25px;
        border-radius: 18px;
    }

    .admin-login-header {
        margin-bottom: 27px;
    }

    .admin-login-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 13px;
        border-radius: 13px;
        font-size: 19px;
    }

    .admin-login-header h2 {
        font-size: 28px;
    }

    .admin-login-input,
    .admin-login-btn {
        height: 48px;
    }
}

@media (max-width: 480px) {
    .admin-login-section {
        padding: 50px 0;
    }

    .admin-login-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .admin-login-header {
        margin-bottom: 25px;
    }

    .admin-login-header h2 {
        font-size: 25px;
    }

    .admin-login-field {
        margin-bottom: 17px;
    }

    .admin-login-field label {
        font-size: 10px;
    }

    .admin-login-input {
        height: 46px;
        padding: 0 12px;
    }

    .admin-login-input input {
        font-size: 11px;
    }

    .admin-login-btn {
        height: 46px;
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .admin-login-section {
        padding: 45px 0;
    }

    .admin-login-card {
        padding: 25px 16px;
    }

    .admin-login-header h2 {
        font-size: 23px;
    }

    .admin-login-input,
    .admin-login-btn {
        height: 44px;
    }
}

/* admin-login-section-css-end */












/* admin-dashboard-section-css-start */

.admin-dashboard-section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    background: #f4f7fb;
}

/* sidebar */

.admin-dashboard-sidebar {
    width: 270px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    background: #071b3b;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 8px 0 35px rgba(7, 27, 59, 0.08);
}

/* sidebar-header */

.admin-sidebar-header {
    width: 100%;
    min-height: 82px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* .admin-sidebar-logo img {
    max-width: 145px;
    max-height: 48px;
    object-fit: contain;
} */
.admin-sidebar-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

/* close-button */

.admin-sidebar-close {
    display: none;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 16px;
    cursor: pointer;
}

/* admin-profile */
.admin-sidebar-profile {
    margin: 10px 18px 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.admin-sidebar-avatar {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid rgba(255, 213, 74, 0.65);
    border-radius: 50%;
}

.admin-sidebar-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.admin-sidebar-profile-info {
    min-width: 0;
}

.admin-sidebar-profile-info h4 {
    margin: 0 0 3px;
    overflow: hidden;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.admin-sidebar-profile-info span {
    color: #8293a8;
    font-size: 9px;
    font-weight: 600;
}

/* sidebar-nav */

.admin-sidebar-nav {
    width: 100%;
    flex: 1;
    padding: 8px 15px 20px;
    overflow-y: auto;
}

.admin-sidebar-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.admin-sidebar-nav li {
    margin-bottom: 5px;
}

.admin-sidebar-nav li a {
    width: 100%;
    min-height: 47px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #9eafc3;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.admin-sidebar-nav li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.07);
    transform: translateX(2px);
}

.admin-sidebar-nav li.active a {
    color: #071b3b;
    background: linear-gradient(135deg, #ffd54a, #ffb703);
    border-color: #ffd54a;
    box-shadow: 0 8px 20px rgba(255, 183, 3, 0.13);
}

/* nav-icon */

.admin-nav-icon {
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 7px;
	color: #ffd54a;
	background: rgba(10, 115, 187, 0.25);
	font-size: 12px;
	transition: background 0.3s ease, color 0.3s ease;
}

.admin-sidebar-nav li.active .admin-nav-icon {
	color: #fff;
	background: rgb(7, 27, 59);
}

.admin-sidebar-nav li a:hover .admin-nav-icon {
	color: #ffd54a;
	background: rgb(7, 27, 59);
}

/* logout */

.admin-nav-logout {
    margin-top: 18px !important;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-nav-logout a {
    color: #ff8f8f !important;
}

.admin-nav-logout .admin-nav-icon {
    color: #ff7777;
}

.admin-nav-logout a:hover {
    color: #ffffff !important;
    background: rgba(255, 80, 80, 0.08) !important;
}

/* dashboard-main */

.admin-dashboard-main {
    width: calc(100% - 270px);
    min-height: 100vh;
    margin-left: 270px;
    padding: 35px;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 213, 74, 0.08), transparent 25%),
        #f4f7fb;
}

.admin-dashboard-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* welcome-box */

.admin-welcome-box {
    width: 100%;
    min-height: 270px;
    padding: 40px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #071b3b 0%, #0a315f 65%, #087f8c 100%);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(7, 27, 59, 0.12);
}

.admin-welcome-box::before {
    content: "";
    width: 330px;
    height: 330px;
    position: absolute;
    top: -190px;
    right: 170px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.admin-welcome-box::after {
    content: "";
    width: 260px;
    height: 260px;
    position: absolute;
    bottom: -190px;
    left: 40%;
    border: 1px solid rgba(255, 213, 74, 0.09);
    border-radius: 50%;
}

/* welcome-content */

.admin-welcome-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.admin-welcome-tag {
    display: inline-block;
    margin-bottom: 10px;
    color: #ffd54a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.admin-welcome-content h1 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
}

.admin-welcome-content h1 span {
    color: #ffd54a;
}

.admin-welcome-content p {
    max-width: 520px;
    margin: 0;
    color: #b8c8d9;
    font-size: 12px;
    line-height: 1.8;
}

/* admin-photo */

.admin-welcome-photo {
    width: 155px;
    height: 155px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    padding: 6px;
    border: 1px solid rgba(255, 213, 74, 0.45);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.admin-welcome-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

/* mobile-topbar */

.admin-mobile-topbar {
    display: none;
}

/* overlay */

.admin-sidebar-overlay {
    display: none;
}

/* 1199px */

@media (max-width: 1199px) {
    .admin-dashboard-sidebar {
        width: 250px;
    }

    .admin-dashboard-main {
        width: calc(100% - 250px);
        margin-left: 250px;
        padding: 30px;
    }

    .admin-welcome-box {
        padding: 35px;
    }

    .admin-welcome-content h1 {
        font-size: 32px;
    }
}

/* 991px */

@media (max-width: 991px) {
    .admin-dashboard-sidebar {
        width: 235px;
    }

    .admin-dashboard-main {
        width: calc(100% - 235px);
        margin-left: 235px;
        padding: 25px;
    }

    .admin-sidebar-header {
        padding-left: 20px;
        padding-right: 20px;
    }

    .admin-welcome-box {
        min-height: 240px;
        padding: 30px;
    }

    .admin-welcome-content h1 {
        font-size: 28px;
    }

    .admin-welcome-photo {
        width: 130px;
        height: 130px;
    }
}

/* 767px */

@media (max-width: 767px) {
    .admin-dashboard-section {
        display: block;
        min-height: 100vh;
    }

    /* mobile-topbar */

    .admin-mobile-topbar {
        width: 100%;
        height: 68px;
        padding: 0 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1100;
        background: #071b3b;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 8px 25px rgba(7, 27, 59, 0.15);
    }

    /* mobile-logo */

    .admin-mobile-logo {
        display: flex;
        align-items: center;
    }

    .admin-mobile-logo a {
        display: flex;
        align-items: center;
    }

    .admin-mobile-logo img {
        max-width: 135px;
        max-height: 45px;
        object-fit: contain;
    }

    /* mobile-menu-button */

    .admin-mobile-toggle {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 1px solid rgba(255, 213, 74, 0.25);
        border-radius: 9px;
        color: #071b3b;
        background: #ffd54a;
        font-size: 16px;
        cursor: pointer;
    }

    /* sidebar */

    .admin-dashboard-sidebar {
        width: 310px;
        max-width: 85%;
        height: 100vh;
        top: 0;
        left: 0;
        z-index: 1200;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        box-shadow: 12px 0 40px rgba(0, 0, 0, 0.25);
    }

    .admin-dashboard-sidebar.active {
        transform: translateX(0);
    }

    /* sidebar-header */

    .admin-sidebar-header {
        min-height: 76px;
        padding: 10px 18px;
    }

    .admin-sidebar-logo img {
        max-width: 135px;
        max-height: 70px;
    }

    .admin-sidebar-close {
        display: flex;
    }

    /* overlay */

    .admin-sidebar-overlay {
        width: 100%;
        height: 100vh;
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1150;
        visibility: hidden;
        opacity: 0;
        background: rgba(0, 0, 0, 0.55);
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .admin-sidebar-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    /* dashboard-main */

    .admin-dashboard-main {
        width: 100%;
        min-height: 100vh;
        margin-left: 0;
        padding: 93px 18px 25px;
    }

    /* welcome-box */

    .admin-welcome-box {
        min-height: 230px;
        padding: 28px;
        border-radius: 17px;
    }

    .admin-welcome-content {
        max-width: 65%;
    }

    .admin-welcome-content h1 {
        font-size: 24px;
        margin: 0px 0px 7px;
    }

    .admin-welcome-content p {
        font-size: 11px;
    }

    .admin-welcome-photo {
        width: 110px;
        height: 110px;
    }
}

/* 480px */

@media (max-width: 480px) {

    /* .admin-mobile-topbar {
        height: 62px;
        padding: 0 14px;
    } */
    .admin-mobile-topbar {
        height: 70px;
        padding: 0 14px;
    }

    .admin-mobile-logo img {
        max-width: 120px;
        max-height: 60px;
    }

    .admin-mobile-toggle {
        width: 37px;
        height: 37px;
        font-size: 14px;
    }

    /* offcanvas */

    .admin-dashboard-sidebar {
        width: 290px;
        max-width: 88%;
    }

    /* dashboard-main */

    .admin-dashboard-main {
        padding: 82px 13px 20px;
    }

    /* welcome-box */

    .admin-welcome-box {
        min-height: 260px;
        padding: 25px 20px;
        display: flex;
        align-items: center;
    }

    .admin-welcome-content {
        max-width: 70%;
        position: relative;
        z-index: 3;
    }

    .admin-welcome-tag {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .admin-welcome-content h1 {
        font-size: 20px;
        line-height: 1.25;
    }

    .admin-welcome-content p {
        max-width: 250px;
        font-size: 10px;
        line-height: 1.7;
    }

    .admin-welcome-photo {
        width: 85px;
        height: 85px;
        /* position: absolute; */
        right: 18px;
        bottom: 20px;
        opacity: 0.95;
    }
}

/* 360px */

@media (max-width: 360px) {
    .admin-dashboard-main {
        padding-left: 10px;
        padding-right: 10px;
    }

    .admin-welcome-box {
        min-height: 190px;
        padding: 22px 17px;
    }

    .admin-welcome-content h1 {
        font-size: 21px;
    }

    .admin-welcome-content p {
        font-size: 9px;
    }

    .admin-welcome-photo {
        width: 75px;
        height: 75px;
        right: 15px;
        bottom: 15px;
    }
}


/* dashboard-stats */

.admin-dashboard-stats {
    width: 100%;
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.admin-stat-card {
    min-height: 145px;
    padding: 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(7, 27, 59, 0.08);
}

.admin-stat-card::before {
    content: "";
    width: 110px;
    height: 110px;
    position: absolute;
    right: -45px;
    top: -45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.admin-stat-content {
    position: relative;
    z-index: 2;
}

.admin-stat-label {
    display: block;
    margin-bottom: 7px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.admin-stat-content h3 {
    margin: 0 0 3px;
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.admin-stat-content p {
    margin: 0;
    font-size: 10px;
    font-weight: 600;
    opacity: 0.75;
}

.admin-stat-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.22);
    font-size: 18px;
}

.admin-stat-admission {
    color: #ffffff;
    background: linear-gradient(135deg, #087f8c, #08a4d8);
}

.admin-stat-year {
    color: #ffffff;
    background: linear-gradient(135deg, #6a4c93, #9b5de5);
}

.admin-stat-certified {
    color: #071b3b;
    background: linear-gradient(135deg, #ffd54a, #ffb703);
}

.admin-stat-six-month {
    color: #ffffff;
    background: linear-gradient(135deg, #12bd58, #079447);
}

/* dashboard-lists */

.admin-dashboard-lists {
    width: 100%;
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.admin-dashboard-list-box {
    min-width: 0;
    padding: 23px;
    background: #ffffff;
    border: 1px solid #e7edf4;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(7, 27, 59, 0.06);
}

/* list-header */

.admin-list-header {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.admin-list-tag {
    display: block;
    margin-bottom: 5px;
    color: #087f8c;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.admin-list-header h3 {
    margin: 0;
    color: #071b3b;
    font-size: 17px;
    font-weight: 800;
}

.admin-list-header>a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    color: #087f8c;
    text-decoration: none;
    font-size: 9px;
    font-weight: 800;
}

.admin-list-header>a i {
    font-size: 8px;
    transition: transform 0.3s ease;
}

.admin-list-header>a:hover i {
    transform: translateX(3px);
}

/* list-table */

.admin-list-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.admin-list-table {
    width: 100%;
    min-width: 570px;
    border-collapse: collapse;
}

.admin-list-table th {
    padding: 11px 8px;
    color: #8293a8;
    background: #f7f9fc;
    border-bottom: 1px solid #e9eef4;
    font-size: 8px;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-list-table td {
    padding: 10px 8px;
    color: #506176;
    border-bottom: 1px solid #edf1f5;
    font-size: 9px;
    font-weight: 600;
    vertical-align: middle;
}

.admin-list-table tbody tr:last-child td {
    border-bottom: 0;
}

.admin-list-table tbody tr {
    transition: background 0.3s ease;
}

.admin-list-table tbody tr:hover {
    background: #f9fbfd;
}

/* table-user */

.admin-table-user {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.admin-table-avatar {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
    background: #eef3f7;
}

.admin-table-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.admin-table-user span {
    color: #071b3b;
    font-size: 9px;
    font-weight: 800;
}

/* status */

.admin-status-badge {
    min-width: 55px;
    padding: 5px 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 7px;
    font-weight: 800;
}

.admin-status-badge.certified {
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
}

.admin-status-badge.new {
    color: #6a4c93;
    background: rgba(106, 76, 147, 0.09);
}

.admin-status-badge.approved {
    color: #12a34a;
    background: rgba(18, 189, 88, 0.09);
}

.admin-status-badge.pending {
    color: #d28b00;
    background: rgba(255, 183, 3, 0.12);
}

/* pagination */

.admin-list-pagination {
    margin-top: 17px;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    border-top: 1px solid #edf1f5;
}

.admin-pagination-btn {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #e1e7ee;
    border-radius: 6px;
    color: #71839a;
    background: #ffffff;
    font-size: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.admin-pagination-btn:hover,
.admin-pagination-btn.active {
    color: #071b3b;
    background: #ffd54a;
    border-color: #ffd54a;
}

/* 1199px */

@media (max-width: 1199px) {
    .admin-dashboard-stats {
        gap: 14px;
    }

    .admin-stat-card {
        padding: 18px;
    }

    .admin-stat-content h3 {
        font-size: 27px;
    }

    .admin-stat-icon {
        width: 43px;
        height: 43px;
        font-size: 16px;
    }
}

/* 991px */

@media (max-width: 991px) {
    .admin-dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-dashboard-lists {
        grid-template-columns: 1fr;
    }

    .admin-dashboard-list-box {
        width: 100%;
    }
}

/* 767px */

@media (max-width: 767px) {
    .admin-dashboard-stats {
        margin-top: 20px;
        gap: 12px;
    }

    .admin-stat-card {
        min-height: 125px;
        padding: 17px;
        border-radius: 13px;
    }

    .admin-stat-label {
        font-size: 8px;
    }

    .admin-stat-content h3 {
        font-size: 25px;
    }

    .admin-stat-content p {
        font-size: 9px;
    }

    .admin-stat-icon {
        width: 38px;
        height: 38px;
        border-radius: 9px;
        font-size: 14px;
    }

    .admin-dashboard-lists {
        margin-top: 20px;
        gap: 15px;
    }

    .admin-dashboard-list-box {
        padding: 17px;
        border-radius: 13px;
    }

    .admin-list-header {
        margin-bottom: 15px;
    }

    .admin-list-header h3 {
        font-size: 15px;
    }
}

/* 480px */

@media (max-width: 480px) {
    .admin-dashboard-stats {
        gap: 10px;
    }

    .admin-stat-card {
        min-height: 115px;
        padding: 14px;
    }

    .admin-stat-label {
        max-width: 100px;
        font-size: 7px;
        line-height: 1.4;
    }

    .admin-stat-content h3 {
        font-size: 22px;
    }

    .admin-stat-content p {
        font-size: 8px;
    }

    .admin-stat-icon {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .admin-dashboard-list-box {
        padding: 14px;
    }

    .admin-list-header h3 {
        font-size: 14px;
    }

    .admin-list-header>a {
        font-size: 8px;
    }
}

/* 360px */

@media (max-width: 360px) {
    .admin-stat-card {
        min-height: 108px;
        padding: 12px;
    }

    .admin-stat-label {
        font-size: 6.5px;
    }

    .admin-stat-content h3 {
        font-size: 20px;
    }

    .admin-stat-content p {
        font-size: 7px;
    }

    .admin-stat-icon {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .admin-list-header {
        align-items: flex-start;
    }

    .admin-list-header h3 {
        font-size: 13px;
    }
}

/* admin-dashboard-section-css-end */



















/* admin-admission-section-css-start */

.admin-admission-section {
    width: 100%;
}


/* page-heading-start */

.admin-admission-heading {
    width: 100%;
    margin-bottom: 22px;
    padding: 28px 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    background: #ffffff;
    border: 1px solid #e7edf4;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(7, 27, 59, 0.05);
}

.admin-admission-title {
    min-width: 0;
}

.admin-page-tag {
    display: block;
    margin-bottom: 7px;
    color: #087f8c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.admin-admission-title h1 {
    margin: 0 0 8px;
    color: #071b3b;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.admin-admission-title p {
    margin: 0;
    color: #71839a;
    font-size: 12px;
    line-height: 1.7;
}


/* search-filter-start */

.admin-admission-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.admin-admission-search {
    width: 245px;
    height: 43px;
    position: relative;
}

.admin-admission-search input {
    width: 100%;
    height: 100%;
    padding: 0 48px 0 15px;
    border: 1px solid #dfe6ee;
    border-radius: 9px;
    outline: none;
    color: #071b3b;
    background: #f8fafc;
    font-size: 11px;
    font-weight: 600;
    transition: 0.3s ease;
}

.admin-admission-search input::placeholder {
    color: #9aa8b8;
}

.admin-admission-search input:focus {
    border-color: #087f8c;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(8, 127, 140, 0.08);
}

.admin-admission-search button {
    width: 40px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    border-radius: 0 9px 9px 0;
    color: #087f8c;
    background: transparent;
    font-size: 13px;
    cursor: pointer;
}

.admin-filter-btn {
    height: 43px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #dfe6ee;
    border-radius: 9px;
    color: #071b3b;
    background: #ffffff;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.admin-filter-btn i {
    color: #087f8c;
}

.admin-filter-btn:hover,
.admin-filter-btn.active {
    color: #071b3b;
    background: #ffd54a;
    border-color: #ffd54a;
}


/* filter-box-start */

.admin-admission-filter-box {
    width: 100%;
    margin-bottom: 18px;
    padding: 18px 20px;
    display: none;
    align-items: flex-end;
    gap: 15px;
    background: #ffffff;
    border: 1px solid #e7edf4;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.05);
}

.admin-admission-filter-box.active {
    display: flex;
}

.admin-filter-group {
    width: 230px;
}

.admin-filter-group label {
    display: block;
    margin-bottom: 6px;
    color: #506176;
    font-size: 10px;
    font-weight: 800;
}

.admin-filter-group select {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #dfe6ee;
    border-radius: 8px;
    outline: none;
    color: #071b3b;
    background: #f8fafc;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
}

.admin-filter-clear {
    height: 40px;
    padding: 0 15px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    background: #071b3b;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}


/* table-box-start */

.admin-admission-table-box {
    width: 100%;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e7edf4;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(7, 27, 59, 0.06);
}

.admin-admission-table-header {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.admin-admission-table-header span {
    display: block;
    margin-bottom: 5px;
    color: #087f8c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.admin-admission-table-header h3 {
    margin: 0;
    color: #071b3b;
    font-size: 19px;
    font-weight: 800;
}

.admin-admission-count {
    padding: 8px 12px;
    border-radius: 8px;
    color: #71839a;
    background: #f6f8fb;
    font-size: 10px;
    font-weight: 700;
}

.admin-admission-count strong {
    margin-right: 3px;
    color: #087f8c;
    font-size: 14px;
}


/* admission-table-start */

.admin-admission-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.admin-admission-table {
    width: 100%;
    min-width: 780px;
    border-collapse: collapse;
}

.admin-admission-table th {
    padding: 13px 12px;
    color: #071b3b;
    background: #f7f9fc;
    border-bottom: 1px solid #e7edf4;
    font-size: 12px;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.admin-admission-table th:first-child {
    border-radius: 8px 0 0 0;
}

.admin-admission-table th:last-child {
    border-radius: 0 8px 0 0;
}

.admin-admission-table td {
    padding: 14px 12px;
    color: #506176;
    border-bottom: 1px solid #edf1f5;
    font-size: 12px;
    font-weight: 600;
    vertical-align: middle;
}

.admin-admission-table tbody tr {
    transition: background 0.25s ease;
}

.admin-admission-table tbody tr:hover {
    background: #f9fbfd;
}

.admin-admission-table tbody tr:last-child td {
    border-bottom: 0;
}


/* admission-id-start */
.admin-admission-id {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
    font-size: 13px;
    font-weight: 800;
}


/* admission-student-start */

.admin-admission-student {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
}

.admin-admission-avatar {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.10);
    font-size: 13px;
}

.admin-admission-student strong {
    display: block;
    margin-bottom: 3px;
    color: #071b3b;
    font-size: 13px;
    font-weight: 800;
}

.admin-admission-student small {
    display: block;
    color: #98a5b5;
    font-size: 10px;
    font-weight: 600;
}


/* course-badge-start */
.admin-course-badge {
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    color: #6a4c93;
    background: rgba(106, 76, 147, 0.08);
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}


/* action-buttons-start */

.admin-admission-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.admin-action-btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 10px;
    cursor: pointer;
    transition: 0.25s ease;
}

.admin-view-btn {
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
}

.admin-view-btn:hover {
    color: #ffffff;
    background: #087f8c;
}

.admin-edit-btn {
    color: #b17a00;
    background: rgba(255, 183, 3, 0.12);
}

.admin-edit-btn:hover {
    color: #071b3b;
    background: #ffd54a;
}

.admin-delete-btn {
    color: #dc4d4d;
    background: rgba(220, 77, 77, 0.09);
}

.admin-delete-btn:hover {
    color: #ffffff;
    background: #dc4d4d;
}


/* modal-start */

.admin-admission-modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.admin-admission-modal.active {
    display: flex;
}

.admin-admission-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 27, 59, 0.68);
    backdrop-filter: blur(4px);
}

.admin-admission-modal-box {
    width: 100%;
    max-width: 850px;
    max-height: 90vh;
    position: relative;
    z-index: 2;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    animation: admissionModalIn 0.25s ease;
}

@keyframes admissionModalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* modal-header-start */

.admin-admission-modal-header {
    padding: 22px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid #e8edf3;
}

.admin-admission-modal-header span {
    display: block;
    margin-bottom: 5px;
    color: #087f8c;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.admin-admission-modal-header h3 {
    margin: 0;
    color: #071b3b;
    font-size: 20px;
    font-weight: 800;
}

.admin-admission-modal-header>button {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    color: #71839a;
    background: #f3f6f9;
    font-size: 13px;
    cursor: pointer;
    transition: 0.25s ease;
}

.admin-admission-modal-header>button:hover {
    color: #ffffff;
    background: #071b3b;
}


/* details-start */

.admin-student-details {
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.admin-detail-item {
    min-width: 0;
    padding: 14px 15px;
    border: 1px solid #e8edf3;
    border-radius: 10px;
    background: #fafbfd;
}

.admin-detail-item label {
    display: block;
    margin-bottom: 6px;
    color: #8a99a9;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-detail-item strong {
    display: block;
    color: #071b3b;
    font-size: 11px;
    line-height: 1.6;
    font-weight: 700;
    word-break: break-word;
}

.admin-detail-full {
    grid-column: 1 / -1;
}


/* documents-start */

.admin-student-documents {
    margin: 0 25px 25px;
    padding-top: 20px;
    border-top: 1px solid #e8edf3;
}

.admin-student-documents h4 {
    margin: 0 0 13px;
    color: #071b3b;
    font-size: 14px;
    font-weight: 800;
}

.admin-document-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.admin-document-card {
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid #e5ebf2;
    border-radius: 10px;
    background: #fafbfd;
}

.admin-document-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
    font-size: 12px;
}

.admin-document-card div:nth-child(2) {
    min-width: 0;
    flex: 1;
}

.admin-document-card span {
    display: block;
    margin-bottom: 2px;
    color: #506176;
    font-size: 9px;
    font-weight: 700;
}

.admin-document-card strong {
    display: block;
    color: #12a34a;
    font-size: 8px;
    font-weight: 800;
}

.admin-document-card>button {
    width: 27px;
    height: 27px;
    flex-shrink: 0;
    border: 0;
    border-radius: 6px;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.08);
    cursor: pointer;
}


/* edit-form-start */

.admin-edit-modal-box {
    max-width: 900px;
}

.admin-edit-grid {
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.admin-form-group {
    min-width: 0;
}

.admin-form-group label {
    display: block;
    margin-bottom: 6px;
    color: #506176;
    font-size: 10px;
    font-weight: 800;
}

.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
    width: 100%;
    padding: 0 12px;
    border: 1px solid #dfe6ee;
    border-radius: 8px;
    outline: none;
    color: #071b3b;
    background: #f9fbfd;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    transition: 0.25s ease;
}

.admin-form-group input,
.admin-form-group select {
    height: 42px;
}

.admin-form-group textarea {
    min-height: 85px;
    padding-top: 11px;
    padding-bottom: 11px;
    resize: vertical;
}

.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus {
    border-color: #087f8c;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(8, 127, 140, 0.07);
}

.admin-form-group input[type="file"] {
    padding: 9px;
    font-size: 9px;
}

.admin-form-group input[readonly] {
    color: #71839a;
    background: #eef2f6;
}

.admin-form-full {
    grid-column: 1 / -1;
}


/* modal-footer-start */

.admin-modal-footer {
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    border-top: 1px solid #e8edf3;
    background: #fafbfd;
}

.admin-modal-close-btn,
.admin-modal-cancel-btn,
.admin-modal-save-btn {
    min-height: 38px;
    padding: 0 17px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.admin-modal-close-btn,
.admin-modal-cancel-btn {
    border: 1px solid #dfe6ee;
    color: #506176;
    background: #ffffff;
}

.admin-modal-close-btn:hover,
.admin-modal-cancel-btn:hover {
    color: #071b3b;
    border-color: #cbd5df;
}

.admin-modal-save-btn {
    border: 1px solid #ffd54a;
    color: #071b3b;
    background: #ffd54a;
}

.admin-modal-save-btn:hover {
    background: #ffb703;
    border-color: #ffb703;
}


/* responsive-991-start */

@media (max-width: 991px) {

    .admin-admission-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-admission-tools {
        width: 100%;
    }

    .admin-admission-search {
        flex: 1;
    }

    .admin-course-badge {
        padding: 6px 9px;
        display: inline-flex;
        align-items: center;
        border-radius: 6px;
        color: #6a4c93;
        background: rgba(106, 76, 147, 0.08);
        font-size: 9px;
        font-weight: 800;
        white-space: nowrap;
    }

}


/* responsive-767-start */

@media (max-width: 767px) {

    .admin-admission-heading {
        margin-bottom: 15px;
        padding: 20px;
        border-radius: 14px;
    }

    .admin-admission-title h1 {
        font-size: 24px;
    }

    .admin-admission-title p {
        font-size: 10px;
    }

    .admin-admission-tools {
        width: 100%;
    }

    .admin-admission-search {
        width: auto;
        flex: 1;
    }

    .admin-filter-btn {
        padding: 0 13px;
    }

    .admin-admission-table-box {
        padding: 17px;
        border-radius: 14px;
    }

    .admin-admission-table-header h3 {
        font-size: 16px;
    }

    .admin-admission-count {
        font-size: 8px;
    }

    .admin-student-details {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .admin-detail-full {
        grid-column: auto;
    }

    .admin-student-documents {
        margin: 0 18px 18px;
    }

    .admin-document-grid {
        grid-template-columns: 1fr;
    }

    .admin-edit-grid {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .admin-form-full {
        grid-column: auto;
    }

    .admin-admission-modal {
        padding: 12px;
    }

    .admin-admission-modal-box {
        max-height: 94vh;
        border-radius: 14px;
    }

    .admin-admission-modal-header {
        padding: 17px 18px;
    }

    .admin-admission-modal-header h3 {
        font-size: 17px;
    }

    .admin-modal-footer {
        padding: 14px 18px;
    }

    .admin-admission-id {
        width: 35px;
        height: 35px;
        font-size: 11px;
    }

}


/* responsive-480-start */

@media (max-width: 480px) {

    .admin-admission-heading {
        padding: 17px;
        gap: 10px;
    }

    .admin-page-tag {
        font-size: 10px;
    }

    .admin-admission-title h1 {
        font-size: 21px;
    }

    .admin-admission-title p {
        font-size: 11px;
    }

    .admin-admission-tools {
        gap: 7px;
    }

    .admin-filter-btn {
        width: 42px;
        padding: 0;
    }

    .admin-filter-btn span {
        display: none;
    }

    .admin-admission-table-box {
        padding: 13px;
    }

    .admin-admission-table-header {
        margin-bottom: 13px;
    }

    .admin-admission-table-header h3 {
        font-size: 14px;
    }

    .admin-admission-count {
        padding: 6px 8px;
        font-size: 7px;
    }

    .admin-admission-table th {
        padding: 11px 9px;
        font-size: 11px;
    }

    .admin-admission-table td {
        padding: 11px 9px;
        font-size: 10px;
    }

    .admin-admission-avatar {
        width: 34px;
        height: 34px;
    }

    .admin-admission-student strong {
        font-size: 11px;
    }

    .admin-admission-student small {
        font-size: 9px;
    }

    .admin-action-btn {
        width: 29px;
        height: 29px;
        font-size: 9px;
    }

    .admin-student-details {
        padding: 14px;
        gap: 9px;
    }

    .admin-detail-item {
        padding: 11px 12px;
    }

    .admin-admission-modal-header {
        padding: 15px;
    }

    .admin-admission-modal-header h3 {
        font-size: 15px;
    }

    .admin-student-documents {
        margin: 0 14px 15px;
    }

    .admin-edit-grid {
        padding: 14px;
    }

}


/* responsive-360-start */

@media (max-width: 360px) {

    .admin-admission-search input {
        padding-left: 11px;
        font-size: 9px;
    }

    .admin-admission-table-box {
        padding: 10px;
    }

    .admin-admission-table {
        min-width: 730px;
    }

}

/* admin-admission-section-css-end */















/* admin-certificate-section-css-start */

.admin-certificate-section {
    width: 100%;
}

/* heading-start */

.admin-certificate-heading {
    width: 100%;
    margin-bottom: 22px;
    padding: 28px 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    background: #ffffff;
    border: 1px solid #e7edf4;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(7, 27, 59, 0.05);
}

.admin-certificate-title {
    min-width: 0;
}

.admin-certificate-title h1 {
    margin: 0 0 8px;
    color: #071b3b;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.admin-certificate-title p {
    margin: 0;
    color: #71839a;
    font-size: 12px;
    line-height: 1.7;
}

/* tools-start */

.admin-certificate-tools {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}

.admin-certificate-search {
    width: 230px;
    height: 43px;
    position: relative;
}

.admin-certificate-search input {
    width: 100%;
    height: 100%;
    padding: 0 45px 0 14px;
    border: 1px solid #dfe6ee;
    border-radius: 9px;
    outline: none;
    color: #071b3b;
    background: #f8fafc;
    font-size: 11px;
    font-weight: 600;
    transition: 0.3s ease;
}

.admin-certificate-search input:focus {
    border-color: #087f8c;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(8, 127, 140, 0.08);
}

.admin-certificate-search button {
    width: 40px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    border-radius: 0 9px 9px 0;
    color: #087f8c;
    background: transparent;
    cursor: pointer;
}

.admin-certificate-filter-btn {
    height: 43px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #dfe6ee;
    border-radius: 9px;
    color: #071b3b;
    background: #ffffff;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.admin-certificate-filter-btn i {
    color: #087f8c;
}

.admin-certificate-filter-btn:hover,
.admin-certificate-filter-btn.active {
    background: #ffd54a;
    border-color: #ffd54a;
}

.admin-add-certificate-btn {
    height: 43px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #071b3b;
    border-radius: 9px;
    color: #ffffff;
    background: #071b3b;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.admin-add-certificate-btn i {
    color: #ffd54a;
}

.admin-add-certificate-btn:hover {
    color: #071b3b;
    background: #ffd54a;
    border-color: #ffd54a;
}

.admin-add-certificate-btn:hover i {
    color: #071b3b;
}

/* filter-start */

.admin-certificate-filter-box {
    width: 100%;
    margin-bottom: 18px;
    padding: 18px 20px;
    display: none;
    align-items: flex-end;
    gap: 15px;
    background: #ffffff;
    border: 1px solid #e7edf4;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.05);
}

.admin-certificate-filter-box.active {
    display: flex;
}

.admin-certificate-filter-group {
    width: 230px;
}

.admin-certificate-filter-group label {
    display: block;
    margin-bottom: 6px;
    color: #506176;
    font-size: 10px;
    font-weight: 800;
}

.admin-certificate-filter-group select {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #dfe6ee;
    border-radius: 8px;
    outline: none;
    color: #071b3b;
    background: #f8fafc;
    font-size: 11px;
    font-weight: 600;
}

.admin-certificate-filter-clear {
    height: 40px;
    padding: 0 15px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    background: #071b3b;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

/* table-box-start */

.admin-certificate-table-box {
    width: 100%;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e7edf4;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(7, 27, 59, 0.06);
}

.admin-certificate-table-header {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.admin-certificate-table-header span {
    display: block;
    margin-bottom: 5px;
    color: #087f8c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.admin-certificate-table-header h3 {
    margin: 0;
    color: #071b3b;
    font-size: 19px;
    font-weight: 800;
}

.admin-certificate-count {
    padding: 8px 12px;
    border-radius: 8px;
    color: #71839a;
    background: #f6f8fb;
    font-size: 10px;
    font-weight: 700;
}

.admin-certificate-count strong {
    margin-right: 3px;
    color: #087f8c;
    font-size: 14px;
}

/* table-start */

.admin-certificate-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.admin-certificate-table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
}

.admin-certificate-table th {
    padding: 13px 12px;
    color: #071b3b;
    background: #f7f9fc;
    border-bottom: 1px solid #e7edf4;
    font-size: 11px;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.admin-certificate-table td {
    padding: 13px 12px;
    color: #506176;
    border-bottom: 1px solid #edf1f5;
    font-size: 11px;
    font-weight: 600;
    vertical-align: middle;
}

.admin-certificate-table tbody tr {
    transition: 0.25s ease;
}

.admin-certificate-table tbody tr:hover {
    background: #f9fbfd;
}

.admin-certificate-table tbody tr:last-child td {
    border-bottom: 0;
}

/* id-start */

.admin-certificate-id {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
    font-size: 12px;
    font-weight: 800;
}

/* photo-start */

.admin-certificate-photo {
    width: 42px;
    height: 42px;
    overflow: hidden;
    border-radius: 9px;
    background: #eef3f7;
}

.admin-certificate-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* student-start */

.admin-certificate-student {
    min-width: 160px;
}

.admin-certificate-student strong {
    display: block;
    margin-bottom: 3px;
    color: #071b3b;
    font-size: 12px;
    font-weight: 800;
}

.admin-certificate-student small {
    color: #98a5b5;
    font-size: 9px;
    font-weight: 600;
}

/* course-start */

.admin-certificate-course {
    padding: 7px 10px;
    display: inline-flex;
    border-radius: 6px;
    color: #6a4c93;
    background: rgba(106, 76, 147, 0.08);
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

/* download-start */

.admin-certificate-download {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
    font-size: 11px;
    text-decoration: none;
    transition: 0.25s ease;
}

.admin-certificate-download:hover {
    color: #ffffff;
    background: #087f8c;
}

/* actions-start */

.admin-certificate-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.admin-certificate-action {
    width: 31px;
    height: 31px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 7px;
    cursor: pointer;
    transition: 0.25s ease;
}

.admin-certificate-view {
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
}

.admin-certificate-view:hover {
    color: #ffffff;
    background: #087f8c;
}

.admin-certificate-edit {
    color: #b17a00;
    background: rgba(255, 183, 3, 0.12);
}

.admin-certificate-edit:hover {
    color: #071b3b;
    background: #ffd54a;
}

.admin-certificate-delete {
    color: #dc4d4d;
    background: rgba(220, 77, 77, 0.09);
}

.admin-certificate-delete:hover {
    color: #ffffff;
    background: #dc4d4d;
}

/* modal-start */

.admin-certificate-modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    inset: 0;
    z-index: 6000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-certificate-modal.active {
    display: flex;
}

.admin-certificate-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 27, 59, 0.68);
    backdrop-filter: blur(4px);
}

.admin-certificate-modal-box {
    width: 100%;
    max-width: 850px;
    max-height: 92vh;
    position: relative;
    z-index: 2;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    animation: certificateModalIn 0.25s ease;
}

@keyframes certificateModalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* modal-header-start */

.admin-certificate-modal-header {
    padding: 22px 25px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid #e8edf3;
}

.admin-certificate-modal-header span {
    display: block;
    margin-bottom: 5px;
    color: #087f8c;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.admin-certificate-modal-header h3 {
    margin: 0 0 6px;
    color: #071b3b;
    font-size: 20px;
    font-weight: 800;
}

.admin-certificate-modal-header p {
    margin: 0;
    color: #71839a;
    font-size: 10px;
    line-height: 1.6;
}

.admin-certificate-modal-header > button {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    color: #71839a;
    background: #f3f6f9;
    cursor: pointer;
    transition: 0.25s ease;
}

.admin-certificate-modal-header > button:hover {
    color: #ffffff;
    background: #071b3b;
}

/* form-start */

.admin-certificate-form-grid {
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.admin-certificate-form-group {
    min-width: 0;
}

.admin-certificate-form-full {
    grid-column: 1 / -1;
}

.admin-certificate-form-group label {
    display: block;
    margin-bottom: 6px;
    color: #506176;
    font-size: 10px;
    font-weight: 800;
}

.admin-certificate-form-group input,
.admin-certificate-form-group select,
.admin-certificate-form-group textarea {
    width: 100%;
    border: 1px solid #dfe6ee;
    border-radius: 8px;
    outline: none;
    color: #071b3b;
    background: #f9fbfd;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    transition: 0.25s ease;
}

.admin-certificate-form-group input,
.admin-certificate-form-group select {
    height: 42px;
    padding: 0 12px;
}

.admin-certificate-form-group textarea {
    min-height: 85px;
    padding: 11px 12px;
    resize: vertical;
}

.admin-certificate-form-group input:focus,
.admin-certificate-form-group select:focus,
.admin-certificate-form-group textarea:focus {
    border-color: #087f8c;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(8, 127, 140, 0.07);
}

.admin-certificate-form-group input[type="file"] {
    padding: 9px;
    font-size: 9px;
}

.admin-certificate-form-group small {
    display: block;
    margin-top: 5px;
    color: #8b99a9;
    font-size: 8px;
}

/* view-content-start */

.admin-certificate-view-content {
    padding: 25px;
}

.admin-certificate-view-photo {
    width: 95px;
    height: 110px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 3px solid #eef3f7;
    border-radius: 10px;
    background: #f6f8fb;
}

.admin-certificate-view-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.admin-certificate-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.admin-certificate-detail {
    padding: 14px 15px;
    border: 1px solid #e8edf3;
    border-radius: 10px;
    background: #fafbfd;
}

.admin-certificate-detail-full {
    grid-column: 1 / -1;
}

.admin-certificate-detail label {
    display: block;
    margin-bottom: 6px;
    color: #8a99a9;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-certificate-detail strong {
    display: block;
    color: #071b3b;
    font-size: 11px;
    line-height: 1.6;
    font-weight: 700;
    word-break: break-word;
}

/* file-box-start */

.admin-certificate-file-box {
    margin-top: 15px;
    padding: 14px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 1px solid #e5ebf2;
    border-radius: 10px;
    background: #fafbfd;
}

.admin-certificate-file-box span {
    display: block;
    margin-bottom: 3px;
    color: #8a99a9;
    font-size: 9px;
    font-weight: 800;
}

.admin-certificate-file-box strong {
    color: #071b3b;
    font-size: 11px;
}

.admin-certificate-file-download {
    min-height: 35px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 7px;
    color: #ffffff;
    background: #087f8c;
    font-size: 9px;
    font-weight: 800;
    text-decoration: none;
}

/* footer-start */

.admin-certificate-modal-footer {
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    border-top: 1px solid #e8edf3;
    background: #fafbfd;
}

.admin-certificate-cancel-btn,
.admin-certificate-save-btn {
    min-height: 38px;
    padding: 0 17px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.admin-certificate-cancel-btn {
    border: 1px solid #dfe6ee;
    color: #506176;
    background: #ffffff;
}

.admin-certificate-cancel-btn:hover {
    color: #071b3b;
    border-color: #cbd5df;
}

.admin-certificate-save-btn {
    border: 1px solid #ffd54a;
    color: #071b3b;
    background: #ffd54a;
}

.admin-certificate-save-btn:hover {
    background: #ffb703;
    border-color: #ffb703;
}

/* responsive-991-start */

@media (max-width: 991px) {
    .admin-certificate-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-certificate-tools {
        width: 100%;
    }

    .admin-certificate-search {
        flex: 1;
        width: auto;
    }
}

/* responsive-767-start */

@media (max-width: 767px) {
    .admin-certificate-heading {
        margin-bottom: 15px;
        padding: 20px;
        border-radius: 14px;
    }

    .admin-certificate-title h1 {
        font-size: 24px;
    }

    .admin-certificate-title p {
        font-size: 10px;
    }

    .admin-certificate-tools {
        width: 100%;
    }

    .admin-certificate-search {
        flex: 1;
    }

    .admin-add-certificate-btn {
        padding: 0 12px;
    }

    .admin-certificate-table-box {
        padding: 17px;
        border-radius: 14px;
    }

    .admin-certificate-table-header h3 {
        font-size: 16px;
    }

    .admin-certificate-filter-box {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-certificate-filter-group {
        width: 100%;
    }

    .admin-certificate-filter-clear {
        width: fit-content;
    }

    .admin-certificate-form-grid {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .admin-certificate-form-full {
        grid-column: auto;
    }

    .admin-certificate-details-grid {
        grid-template-columns: 1fr;
    }

    .admin-certificate-detail-full {
        grid-column: auto;
    }

    .admin-certificate-view-content {
        padding: 18px;
    }

    .admin-certificate-modal {
        padding: 12px;
    }

    .admin-certificate-modal-box {
        max-height: 94vh;
        border-radius: 14px;
    }

    .admin-certificate-modal-header {
        padding: 17px 18px;
    }

    .admin-certificate-modal-header h3 {
        font-size: 17px;
    }

    .admin-certificate-modal-footer {
        padding: 14px 18px;
    }
}

/* responsive-480-start */

@media (max-width: 480px) {
    .admin-certificate-heading {
        padding: 17px;
        gap: 12px;
    }

    .admin-certificate-title h1 {
        font-size: 21px;
    }

    .admin-certificate-title p {
        font-size: 10px;
    }

    .admin-certificate-tools {
        gap: 6px;
    }

    .admin-certificate-filter-btn {
        width: 42px;
        padding: 0;
    }

    .admin-certificate-filter-btn span {
        display: none;
    }

    .admin-add-certificate-btn {
        width: 42px;
        padding: 0;
    }

    .admin-add-certificate-btn span {
        display: none;
    }

    .admin-certificate-table-box {
        padding: 13px;
    }

    .admin-certificate-table-header {
        margin-bottom: 13px;
    }

    .admin-certificate-table-header h3 {
        font-size: 14px;
    }

    .admin-certificate-count {
        padding: 6px 8px;
        font-size: 7px;
    }

    .admin-certificate-table th {
        padding: 11px 9px;
        font-size: 10px;
    }

    .admin-certificate-table td {
        padding: 11px 9px;
        font-size: 10px;
    }

    .admin-certificate-photo {
        width: 36px;
        height: 36px;
    }

    .admin-certificate-student strong {
        font-size: 11px;
    }

    .admin-certificate-student small {
        font-size: 8px;
    }

    .admin-certificate-action {
        width: 29px;
        height: 29px;
        font-size: 9px;
    }

    .admin-certificate-view-photo {
        width: 80px;
        height: 95px;
    }

    .admin-certificate-modal-header {
        padding: 15px;
    }

    .admin-certificate-modal-header h3 {
        font-size: 15px;
    }

    .admin-certificate-modal-header p {
        font-size: 9px;
    }

    .admin-certificate-form-grid {
        padding: 14px;
    }

    .admin-certificate-view-content {
        padding: 14px;
    }

    .admin-certificate-modal-footer {
        padding: 13px 14px;
    }

    .admin-certificate-file-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-certificate-file-download {
        width: 100%;
        justify-content: center;
    }
}

/* responsive-360-start */

@media (max-width: 360px) {
    .admin-certificate-search input {
        padding-left: 10px;
        padding-right: 38px;
        font-size: 9px;
    }

    .admin-certificate-table-box {
        padding: 10px;
    }

    .admin-certificate-table {
        min-width: 820px;
    }

    .admin-certificate-title h1 {
        font-size: 19px;
    }
}

/* admin-certificate-section-css-end */







/* admin-achievement-section-css-start */

.admin-achievement-section {
    width: 100%;
}

/* heading */
.admin-achievement-heading {
    width: 100%;
    margin-bottom: 22px;
    padding: 28px 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    background: #ffffff;
    border: 1px solid #e7edf4;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(7, 27, 59, 0.05);
}

.admin-achievement-title {
    min-width: 0;
}

.admin-achievement-title h1 {
    margin: 0 0 8px;
    color: #071b3b;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.admin-achievement-title p {
    margin: 0;
    color: #71839a;
    font-size: 12px;
    line-height: 1.7;
}

/* tools */
.admin-achievement-tools {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}

.admin-achievement-search {
    width: 230px;
    height: 43px;
    position: relative;
}

.admin-achievement-search input {
    width: 100%;
    height: 100%;
    padding: 0 45px 0 14px;
    border: 1px solid #dfe6ee;
    border-radius: 9px;
    outline: none;
    color: #071b3b;
    background: #f8fafc;
    font-size: 11px;
    font-weight: 600;
    transition: 0.3s ease;
}

.admin-achievement-search input:focus {
    border-color: #087f8c;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(8, 127, 140, 0.08);
}

.admin-achievement-search button {
    width: 40px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    border: 0;
    border-radius: 0 9px 9px 0;
    color: #087f8c;
    background: transparent;
    cursor: pointer;
}

/* filter button */
.admin-achievement-filter-btn {
    height: 43px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #dfe6ee;
    border-radius: 9px;
    color: #071b3b;
    background: #ffffff;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.admin-achievement-filter-btn i {
    color: #087f8c;
}

.admin-achievement-filter-btn:hover,
.admin-achievement-filter-btn.active {
    background: #ffd54a;
    border-color: #ffd54a;
}

/* add button */
.admin-add-achievement-btn {
    height: 43px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #071b3b;
    border-radius: 9px;
    color: #ffffff;
    background: #071b3b;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.admin-add-achievement-btn i {
    color: #ffd54a;
}

.admin-add-achievement-btn:hover {
    color: #071b3b;
    background: #ffd54a;
    border-color: #ffd54a;
}

.admin-add-achievement-btn:hover i {
    color: #071b3b;
}

/* filter box */
.admin-achievement-filter-box {
    width: 100%;
    margin-bottom: 18px;
    padding: 18px 20px;
    display: none;
    align-items: flex-end;
    gap: 15px;
    background: #ffffff;
    border: 1px solid #e7edf4;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.05);
}

.admin-achievement-filter-box.active {
    display: flex;
}

.admin-achievement-filter-group {
    width: 230px;
}

.admin-achievement-filter-group label {
    display: block;
    margin-bottom: 6px;
    color: #506176;
    font-size: 10px;
    font-weight: 800;
}

.admin-achievement-filter-group select {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #dfe6ee;
    border-radius: 8px;
    outline: none;
    color: #071b3b;
    background: #f8fafc;
    font-size: 11px;
    font-weight: 600;
}

.admin-achievement-filter-clear {
    height: 40px;
    padding: 0 15px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    background: #071b3b;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

/* table box */
.admin-achievement-table-box {
    width: 100%;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e7edf4;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(7, 27, 59, 0.06);
}

.admin-achievement-table-header {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.admin-achievement-table-header span {
    display: block;
    margin-bottom: 5px;
    color: #087f8c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.admin-achievement-table-header h3 {
    margin: 0;
    color: #071b3b;
    font-size: 19px;
    font-weight: 800;
}

.admin-achievement-count {
    padding: 8px 12px;
    border-radius: 8px;
    color: #71839a;
    background: #f6f8fb;
    font-size: 10px;
    font-weight: 700;
}

.admin-achievement-count strong {
    margin-right: 3px;
    color: #087f8c;
    font-size: 14px;
}

/* table */
.admin-achievement-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.admin-achievement-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.admin-achievement-table th {
    padding: 13px 12px;
    color: #071b3b;
    background: #f7f9fc;
    border-bottom: 1px solid #e7edf4;
    font-size: 11px;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.admin-achievement-table td {
    padding: 13px 12px;
    color: #506176;
    border-bottom: 1px solid #edf1f5;
    font-size: 11px;
    font-weight: 600;
    vertical-align: middle;
}

.admin-achievement-table tbody tr {
    transition: 0.25s ease;
}

.admin-achievement-table tbody tr:hover {
    background: #f9fbfd;
}

.admin-achievement-table tbody tr:last-child td {
    border-bottom: 0;
}

/* id */
.admin-achievement-id {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
    font-size: 12px;
    font-weight: 800;
}

/* photo */
.admin-achievement-photo {
    width: 42px;
    height: 42px;
    overflow: hidden;
    border-radius: 9px;
    background: #eef3f7;
}

.admin-achievement-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* student */
.admin-achievement-student {
    min-width: 160px;
}

.admin-achievement-student strong {
    display: block;
    margin-bottom: 3px;
    color: #071b3b;
    font-size: 12px;
    font-weight: 800;
}

.admin-achievement-student small {
    color: #98a5b5;
    font-size: 9px;
    font-weight: 600;
}

/* marks */
.admin-achievement-marks {
    min-width: 38px;
    height: 30px;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
    font-size: 11px;
    font-weight: 800;
}

/* actions */
.admin-achievement-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.admin-achievement-action {
    width: 31px;
    height: 31px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 7px;
    cursor: pointer;
    transition: 0.25s ease;
}

.admin-achievement-view {
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
}

.admin-achievement-view:hover {
    color: #ffffff;
    background: #087f8c;
}

.admin-achievement-edit {
    color: #b17a00;
    background: rgba(255, 183, 3, 0.12);
}

.admin-achievement-edit:hover {
    color: #071b3b;
    background: #ffd54a;
}

.admin-achievement-delete {
    color: #dc4d4d;
    background: rgba(220, 77, 77, 0.09);
}

.admin-achievement-delete:hover {
    color: #ffffff;
    background: #dc4d4d;
}

/* modal */
.admin-achievement-modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    inset: 0;
    z-index: 6000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-achievement-modal.active {
    display: flex;
}

.admin-achievement-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 27, 59, 0.68);
    backdrop-filter: blur(4px);
}

.admin-achievement-modal-box {
    width: 100%;
    max-width: 850px;
    max-height: 92vh;
    position: relative;
    z-index: 2;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    animation: achievementModalIn 0.25s ease;
}

@keyframes achievementModalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* modal header */
.admin-achievement-modal-header {
    padding: 22px 25px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid #e8edf3;
}

.admin-achievement-modal-header span {
    display: block;
    margin-bottom: 5px;
    color: #087f8c;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.admin-achievement-modal-header h3 {
    margin: 0 0 6px;
    color: #071b3b;
    font-size: 20px;
    font-weight: 800;
}

.admin-achievement-modal-header p {
    margin: 0;
    color: #71839a;
    font-size: 10px;
    line-height: 1.6;
}

.admin-achievement-modal-header > button {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    color: #71839a;
    background: #f3f6f9;
    cursor: pointer;
    transition: 0.25s ease;
}

.admin-achievement-modal-header > button:hover {
    color: #ffffff;
    background: #071b3b;
}

/* back button */
.admin-achievement-back-box {
    padding: 15px 25px 0;
}

.admin-achievement-back-box a {
    min-height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #dfe6ee;
    border-radius: 7px;
    color: #506176;
    background: #ffffff;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.25s ease;
}

.admin-achievement-back-box a i {
    color: #087f8c;
}

.admin-achievement-back-box a:hover {
    color: #071b3b;
    border-color: #ffd54a;
    background: #ffd54a;
}

/* form */
.admin-achievement-form-grid {
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.admin-achievement-form-group {
    min-width: 0;
}

.admin-achievement-form-full {
    grid-column: 1 / -1;
}

.admin-achievement-form-group label {
    display: block;
    margin-bottom: 6px;
    color: #506176;
    font-size: 10px;
    font-weight: 800;
}

.admin-achievement-form-group input,
.admin-achievement-form-group select {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #dfe6ee;
    border-radius: 8px;
    outline: none;
    color: #071b3b;
    background: #f9fbfd;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    transition: 0.25s ease;
}

.admin-achievement-form-group input:focus,
.admin-achievement-form-group select:focus {
    border-color: #087f8c;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(8, 127, 140, 0.07);
}

.admin-achievement-form-group input[type="file"] {
    padding: 9px;
    font-size: 9px;
}

/* view content */
.admin-achievement-view-content {
    padding: 25px;
}

.admin-achievement-view-photo {
    width: 95px;
    height: 110px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 3px solid #eef3f7;
    border-radius: 10px;
    background: #f6f8fb;
}

.admin-achievement-view-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* details */
.admin-achievement-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.admin-achievement-detail {
    padding: 14px 15px;
    border: 1px solid #e8edf3;
    border-radius: 10px;
    background: #fafbfd;
}

.admin-achievement-detail-full {
    grid-column: 1 / -1;
}

.admin-achievement-detail label {
    display: block;
    margin-bottom: 6px;
    color: #8a99a9;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-achievement-detail strong {
    display: block;
    color: #071b3b;
    font-size: 11px;
    line-height: 1.6;
    font-weight: 700;
    word-break: break-word;
}

/* modal footer */
.admin-achievement-modal-footer {
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    border-top: 1px solid #e8edf3;
    background: #fafbfd;
}

.admin-achievement-cancel-btn,
.admin-achievement-save-btn {
    min-height: 38px;
    padding: 0 17px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.admin-achievement-cancel-btn {
    border: 1px solid #dfe6ee;
    color: #506176;
    background: #ffffff;
}

.admin-achievement-cancel-btn:hover {
    color: #071b3b;
    border-color: #cbd5df;
}

.admin-achievement-save-btn {
    border: 1px solid #ffd54a;
    color: #071b3b;
    background: #ffd54a;
}

.admin-achievement-save-btn:hover {
    background: #ffb703;
    border-color: #ffb703;
}

/* responsive 991 */
@media (max-width: 991px) {
    .admin-achievement-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-achievement-tools {
        width: 100%;
    }

    .admin-achievement-search {
        flex: 1;
        width: auto;
    }
}

/* responsive 767 */
@media (max-width: 767px) {
    .admin-achievement-heading {
        margin-bottom: 15px;
        padding: 20px;
        border-radius: 14px;
    }

    .admin-achievement-title h1 {
        font-size: 24px;
    }

    .admin-achievement-title p {
        font-size: 10px;
    }

    .admin-achievement-tools {
        width: 100%;
    }

    .admin-achievement-search {
        flex: 1;
    }

    .admin-add-achievement-btn {
        padding: 0 12px;
    }

    .admin-achievement-table-box {
        padding: 17px;
        border-radius: 14px;
    }

    .admin-achievement-table-header h3 {
        font-size: 16px;
    }

    .admin-achievement-filter-box {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-achievement-filter-group {
        width: 100%;
    }

    .admin-achievement-filter-clear {
        width: fit-content;
    }

    .admin-achievement-form-grid {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .admin-achievement-form-full {
        grid-column: auto;
    }

    .admin-achievement-details-grid {
        grid-template-columns: 1fr;
    }

    .admin-achievement-detail-full {
        grid-column: auto;
    }

    .admin-achievement-view-content {
        padding: 18px;
    }

    .admin-achievement-modal {
        padding: 12px;
    }

    .admin-achievement-modal-box {
        max-height: 94vh;
        border-radius: 14px;
    }

    .admin-achievement-modal-header {
        padding: 17px 18px;
    }

    .admin-achievement-modal-header h3 {
        font-size: 17px;
    }

    .admin-achievement-modal-footer {
        padding: 14px 18px;
    }

    .admin-achievement-back-box {
        padding: 14px 18px 0;
    }
}

/* responsive 480 */
@media (max-width: 480px) {
    .admin-achievement-heading {
        padding: 17px;
        gap: 12px;
    }

    .admin-achievement-title h1 {
        font-size: 21px;
    }

    .admin-achievement-title p {
        font-size: 10px;
    }

    .admin-achievement-tools {
        gap: 6px;
    }

    .admin-achievement-filter-btn {
        width: 42px;
        padding: 0;
    }

    .admin-achievement-filter-btn span {
        display: none;
    }

    .admin-add-achievement-btn {
        width: 42px;
        padding: 0;
    }

    .admin-add-achievement-btn span {
        display: none;
    }

    .admin-achievement-table-box {
        padding: 13px;
    }

    .admin-achievement-table-header {
        margin-bottom: 13px;
    }

    .admin-achievement-table-header h3 {
        font-size: 14px;
    }

    .admin-achievement-count {
        padding: 6px 8px;
        font-size: 7px;
    }

    .admin-achievement-table th {
        padding: 11px 9px;
        font-size: 10px;
    }

    .admin-achievement-table td {
        padding: 11px 9px;
        font-size: 10px;
    }

    .admin-achievement-photo {
        width: 36px;
        height: 36px;
    }

    .admin-achievement-student strong {
        font-size: 11px;
    }

    .admin-achievement-student small {
        font-size: 8px;
    }

    .admin-achievement-action {
        width: 29px;
        height: 29px;
        font-size: 9px;
    }

    .admin-achievement-view-photo {
        width: 80px;
        height: 95px;
    }

    .admin-achievement-modal-header {
        padding: 15px;
    }

    .admin-achievement-modal-header h3 {
        font-size: 15px;
    }

    .admin-achievement-modal-header p {
        font-size: 9px;
    }

    .admin-achievement-form-grid {
        padding: 14px;
    }

    .admin-achievement-view-content {
        padding: 14px;
    }

    .admin-achievement-modal-footer {
        padding: 13px 14px;
    }

    .admin-achievement-back-box {
        padding: 12px 14px 0;
    }
}

/* responsive 360 */
@media (max-width: 360px) {
    .admin-achievement-search input {
        padding-left: 10px;
        padding-right: 38px;
        font-size: 9px;
    }

    .admin-achievement-table-box {
        padding: 10px;
    }

    .admin-achievement-table {
        min-width: 730px;
    }

    .admin-achievement-title h1 {
        font-size: 19px;
    }
}

/* admin-achievement-section-css-end */











/* admin-change-password-section-css-start */

.admin-change-password-section {
    width: 100%;
}

.admin-change-password-card {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    padding: 35px;
    background: #ffffff;
    border: 1px solid #e7edf4;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(7, 27, 59, 0.06);
}

.admin-change-password-heading {
    margin-bottom: 28px;
}

.admin-change-password-heading span {
    display: block;
    margin-bottom: 7px;
    color: #087f8c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.admin-change-password-heading h2 {
    margin: 0 0 7px;
    color: #071b3b;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
}

.admin-change-password-heading p {
    margin: 0;
    color: #71839a;
    font-size: 11px;
    line-height: 1.6;
}

.admin-change-password-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.admin-change-password-group {
    width: 100%;
}

.admin-change-password-group label {
    display: block;
    margin-bottom: 7px;
    color: #506176;
    font-size: 11px;
    font-weight: 800;
}

.admin-password-input {
    width: 100%;
    height: 45px;
    position: relative;
}

.admin-password-input input {
    width: 100%;
    height: 100%;
    padding: 0 45px 0 14px;
    border: 1px solid #dfe6ee;
    border-radius: 9px;
    outline: none;
    color: #071b3b;
    background: #f8fafc;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    transition: 0.25s ease;
}

.admin-password-input input::placeholder {
    color: #a2afbd;
    font-weight: 500;
}

.admin-password-input input:focus {
    border-color: #087f8c;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(8, 127, 140, 0.08);
}

.admin-password-toggle {
    width: 42px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #71839a;
    background: transparent;
    cursor: pointer;
    transition: 0.25s ease;
}

.admin-password-toggle:hover {
    color: #087f8c;
}

.admin-change-password-submit {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
    padding-top: 20px;
    border-top: 1px solid #edf1f5;
}

.admin-change-password-submit button {
    min-height: 43px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #071b3b;
    border-radius: 9px;
    color: #ffffff;
    background: #071b3b;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.admin-change-password-submit button i {
    color: #ffd54a;
}

.admin-change-password-submit button:hover {
    color: #071b3b;
    background: #ffd54a;
    border-color: #ffd54a;
}

.admin-change-password-submit button:hover i {
    color: #071b3b;
}

/* responsive-767-start */

@media (max-width: 767px) {

    .admin-change-password-card {
        padding: 25px;
        border-radius: 15px;
    }

    .admin-change-password-heading {
        margin-bottom: 22px;
    }

    .admin-change-password-heading h2 {
        font-size: 24px;
    }

    .admin-change-password-form {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .admin-change-password-submit {
        grid-column: auto;
        justify-content: stretch;
        margin-top: 3px;
        padding-top: 18px;
    }

    .admin-change-password-submit button {
        width: 100%;
    }

}

/* responsive-480-start */

@media (max-width: 480px) {

    .admin-change-password-card {
        padding: 18px;
        border-radius: 13px;
    }

    .admin-change-password-heading {
        margin-bottom: 19px;
    }

    .admin-change-password-heading span {
        font-size: 9px;
    }

    .admin-change-password-heading h2 {
        font-size: 21px;
    }

    .admin-change-password-heading p {
        font-size: 10px;
    }

    .admin-change-password-form {
        gap: 15px;
    }

    .admin-change-password-group label {
        font-size: 10px;
    }

    .admin-password-input {
        height: 43px;
    }

    .admin-password-input input {
        padding-left: 12px;
        font-size: 10px;
    }

    .admin-change-password-submit button {
        min-height: 42px;
        font-size: 10px;
    }

}

/* responsive-360-start */

@media (max-width: 360px) {

    .admin-change-password-card {
        padding: 15px;
    }

    .admin-change-password-heading h2 {
        font-size: 19px;
    }

    .admin-password-input input {
        font-size: 9px;
    }

}

/* admin-change-password-section-css-end */



















/* student-register-section-css-start */

.student-register-section {
    width: 100%;
    min-height: 100vh;
    height: auto;
    /* position: relative;
    overflow: visible; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 213, 74, 0.08), transparent 28%),
        radial-gradient(circle at 90% 80%, rgba(8, 164, 216, 0.08), transparent 30%),
        #071b3b;
}

.student-register-bg {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.student-register-bg-one {
    width: 500px;
    height: 500px;
    top: -280px;
    right: -210px;
    border: 1px solid rgba(255, 213, 74, 0.12);
    background: rgba(255, 213, 74, 0.025);
}

.student-register-bg-two {
    width: 430px;
    height: 430px;
    bottom: -250px;
    left: -210px;
    border: 1px solid rgba(8, 164, 216, 0.12);
    background: rgba(8, 164, 216, 0.025);
}

.student-register-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.student-register-card {
    width: 100%;
    max-width: 620px;
    padding: 42px 40px;
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35), 0 0 40px rgba(8, 164, 216, 0.04);
    backdrop-filter: blur(15px);
}

.student-register-header {
    text-align: center;
    margin-bottom: 32px;
}

.student-register-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: linear-gradient(135deg, #ffd54a, #ffb703);
    border-radius: 15px;
    font-size: 21px;
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.18);
}

.student-register-tag {
    display: inline-block;
    color: #ffd54a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.student-register-header h2 {
    margin: 9px 0 8px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.student-register-header h2 span {
    color: #ffd54a;
}

.student-register-header p {
    max-width: 400px;
    margin: 0 auto;
    color: #9eafc3;
    font-size: 12px;
    line-height: 1.75;
}

.student-register-form {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 18px;
}

.student-register-field {
    margin-bottom: 20px;
}

.student-register-full-field {
    grid-column: 1 / -1;
}

.student-register-field label {
    display: block;
    margin-bottom: 8px;
    color: #dce5ef;
    font-size: 11px;
    font-weight: 700;
}

.student-register-input {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
}

.student-register-input>i {
    width: 18px;
    flex-shrink: 0;
    margin-right: 10px;
    color: #ffd54a;
    font-size: 13px;
    text-align: center;
}

.student-register-input input,
.student-register-input select {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
    font-size: 12px;
    margin-left: 8px;
}

.student-register-input input::placeholder {
    color: #71839a;
}

.student-register-input select {
    cursor: pointer;
}

.student-register-input select option {
    color: #071b3b;
    background: #ffffff;
}

.student-register-input input[type="date"] {
    color-scheme: dark;
}

.student-register-input:focus-within {
    border-color: rgba(255, 213, 74, 0.65);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 0 0 3px rgba(255, 213, 74, 0.07);
}

.student-register-textarea {
    width: 100%;
    min-height: 105px;
    display: flex;
    align-items: flex-start;
    position: relative;
    padding: 14px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.student-register-textarea>i {
    width: 18px;
    flex-shrink: 0;
    margin-right: 10px;
    padding-top: 2px;
    color: #ffd54a;
    font-size: 13px;
    text-align: center;
}

.student-register-textarea textarea {
    width: 100%;
    min-height: 75px;
    padding: 0;
    border: 0;
    outline: 0;
    resize: vertical;
    color: #ffffff;
    background: transparent;
    font-family: inherit;
    font-size: 12px;
    line-height: 1.6;
}

.student-register-textarea textarea::placeholder {
    color: #71839a;
}

.student-register-textarea:focus-within {
    border-color: rgba(255, 213, 74, 0.65);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 0 0 3px rgba(255, 213, 74, 0.07);
}

.student-register-password-toggle {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 7px;
    padding: 0;
    border: 0;
    color: #8293a8;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    transition: color 0.3s ease;
}

.student-register-password-toggle:hover {
    color: #ffd54a;
}

.student-register-btn {
    width: 100%;
    height: 50px;
    grid-column: 1 / -1;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    position: relative;
    border: 1px solid #ffd54a;
    border-radius: 10px;
    color: #071b3b;
    background: linear-gradient(135deg, #ffd54a, #ffb703);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.student-register-btn>span {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.42);
    font-size: 11px;
}

.student-register-btn-arrow {
    position: absolute;
    right: 15px;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.student-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 183, 3, 0.25);
}

.student-register-btn:hover .student-register-btn-arrow {
    transform: translateX(4px);
}

.student-register-login {
    margin-top: 25px;
    padding-top: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.student-register-login span {
    color: #8293a8;
    font-size: 11px;
}

.student-register-login a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #ffd54a;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    transition: color 0.3s ease;
}

.student-register-login a i {
    font-size: 9px;
    transition: transform 0.3s ease;
}

.student-register-login a:hover {
    color: #ffffff;
}

.student-register-login a:hover i {
    transform: translateX(3px);
}

@media (max-width: 1199px) {
    .student-register-section {
        min-height: auto;
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .student-register-section {
        padding: 70px 0;
    }

    .student-register-card {
        max-width: 600px;
        padding: 38px 35px;
    }

    .student-register-bg-one {
        width: 500px;
        height: 500px;
        top: -280px;
        right: 0px;
        border: 1px solid rgba(255, 213, 74, 0.12);
        background: rgba(255, 213, 74, 0.025);
    }
}

@media (max-width: 767px) {
    .student-register-section {
        padding: 60px 0;
    }

    .student-register-card {
        max-width: 100%;
        padding: 32px 25px;
        border-radius: 18px;
    }

    .student-register-header {
        margin-bottom: 27px;
    }

    .student-register-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 13px;
        border-radius: 13px;
        font-size: 19px;
    }

    .student-register-header h2 {
        font-size: 28px;
    }

    .student-register-header p {
        font-size: 11px;
    }

    .student-register-form {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .student-register-full-field {
        grid-column: auto;
    }

    .student-register-input,
    .student-register-btn {
        height: 48px;
    }

    .student-register-textarea {
        min-height: 100px;
    }

    .student-register-btn {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .student-register-section {
        padding: 50px 0;
    }

    .student-register-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .student-register-header {
        margin-bottom: 25px;
    }

    .student-register-header h2 {
        font-size: 25px;
    }

    .student-register-header p {
        font-size: 10px;
        line-height: 1.7;
    }

    .student-register-field {
        margin-bottom: 17px;
    }

    .student-register-field label {
        font-size: 10px;
    }

    .student-register-input {
        height: 46px;
        padding: 0 12px;
    }

    .student-register-input input,
    .student-register-input select,
    .student-register-textarea textarea {
        font-size: 11px;
    }

    .student-register-textarea {
        padding: 12px;
    }

    .student-register-btn {
        height: 46px;
        font-size: 11px;
    }

    .student-register-login {
        flex-direction: column;
        gap: 4px;
        margin-top: 22px;
        padding-top: 18px;
    }

    .student-register-login span,
    .student-register-login a {
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    .student-register-section {
        padding: 45px 0;
    }

    .student-register-card {
        padding: 25px 16px;
    }

    .student-register-header h2 {
        font-size: 23px;
    }

    .student-register-header p {
        font-size: 9px;
    }

    .student-register-input,
    .student-register-btn {
        height: 44px;
    }

    .student-register-textarea {
        min-height: 95px;
    }
}

/* student-register-section-css-end */









/* student-login-section-css-start */

.student-login-section {
    width: 100%;
    height: 100vh;
    /* min-height: 720px; */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 213, 74, 0.08), transparent 28%),
        radial-gradient(circle at 90% 80%, rgba(8, 164, 216, 0.08), transparent 30%),
        #071b3b;
}

.student-login-bg {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
}

.student-login-bg-one {
    width: 430px;
    height: 430px;
    top: -240px;
    right: -180px;
    border: 1px solid rgba(255, 213, 74, 0.12);
    background: rgba(255, 213, 74, 0.025);
}

.student-login-bg-two {
    width: 380px;
    height: 380px;
    bottom: -220px;
    left: -180px;
    border: 1px solid rgba(8, 164, 216, 0.12);
    background: rgba(8, 164, 216, 0.025);
}

.student-login-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.student-login-card {
    width: 100%;
    max-width: 470px;
    padding: 42px 40px;
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35), 0 0 40px rgba(8, 164, 216, 0.04);
    backdrop-filter: blur(15px);
}

.student-login-header {
    text-align: center;
    margin-bottom: 32px;
}

.student-login-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: linear-gradient(135deg, #ffd54a, #ffb703);
    border-radius: 15px;
    font-size: 21px;
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.18);
}

.student-login-tag {
    display: inline-block;
    color: #ffd54a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.student-login-header h2 {
    margin: 9px 0 8px;
    color: #ffffff;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.student-login-header h2 span {
    color: #ffd54a;
}

.student-login-header p {
    max-width: 370px;
    margin: 0 auto;
    color: #9eafc3;
    font-size: 12px;
    line-height: 1.75;
}

.student-login-form {
    width: 100%;
}

.student-login-field {
    margin-bottom: 20px;
}

.student-login-field label {
    display: block;
    margin-bottom: 8px;
    color: #dce5ef;
    font-size: 11px;
    font-weight: 700;
}

.student-login-input {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.student-login-input>i {
    width: 18px;
    flex-shrink: 0;
    margin-right: 10px;
    color: #ffd54a;
    font-size: 13px;
    text-align: center;
}

.student-login-input input {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
    font-size: 12px;
}

.student-login-input input::placeholder {
    color: #71839a;
}

.student-login-input:focus-within {
    border-color: rgba(255, 213, 74, 0.65);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 0 0 3px rgba(255, 213, 74, 0.07);
}

.student-password-toggle {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 7px;
    padding: 0;
    border: 0;
    color: #8293a8;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    transition: color 0.3s ease;
}

.student-password-toggle:hover {
    color: #ffd54a;
}

.student-login-btn {
    width: 100%;
    height: 50px;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    position: relative;
    border: 1px solid #ffd54a;
    border-radius: 10px;
    color: #071b3b;
    background: linear-gradient(135deg, #ffd54a, #ffb703);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.student-login-btn {
    text-decoration: none;
    box-sizing: border-box;
}

.student-login-btn>span {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.42);
    font-size: 11px;
}

.student-login-btn-arrow {
    position: absolute;
    right: 15px;
    font-size: 11px;
    transition: transform 0.3s ease;
}

.student-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 183, 3, 0.25);
}

.student-login-btn:hover .student-login-btn-arrow {
    transform: translateX(4px);
}

.student-login-register {
    margin-top: 25px;
    padding-top: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.student-login-register span {
    color: #8293a8;
    font-size: 11px;
}

.student-login-register a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #ffd54a;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    transition: color 0.3s ease;
}

.student-login-register a i {
    font-size: 9px;
    transition: transform 0.3s ease;
}

.student-login-register a:hover {
    color: #ffffff;
}

.student-login-register a:hover i {
    transform: translateX(3px);
}

@media (max-width: 1199px) {
    .student-login-section {
        min-height: 680px;
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .student-login-section {
        min-height: 650px;
        padding: 70px 0;
    }

    .student-login-card {
        max-width: 450px;
        padding: 38px 35px;
    }
}

@media (max-width: 767px) {
    .student-login-section {
        min-height: auto;
        padding: 60px 0;
    }

    .student-login-card {
        max-width: 100%;
        padding: 32px 25px;
        border-radius: 18px;
    }

    .student-login-header {
        margin-bottom: 27px;
    }

    .student-login-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 13px;
        border-radius: 13px;
        font-size: 19px;
    }

    .student-login-header h2 {
        font-size: 28px;
    }

    .student-login-header p {
        font-size: 11px;
    }

    .student-login-input,
    .student-login-btn {
        height: 48px;
    }
}

@media (max-width: 480px) {
    .student-login-section {
        padding: 50px 0;
    }

    .student-login-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .student-login-header {
        margin-bottom: 25px;
    }

    .student-login-header h2 {
        font-size: 25px;
    }

    .student-login-header p {
        font-size: 10px;
        line-height: 1.7;
    }

    .student-login-field {
        margin-bottom: 17px;
    }

    .student-login-field label {
        font-size: 10px;
    }

    .student-login-input {
        height: 46px;
        padding: 0 12px;
    }

    .student-login-input input {
        font-size: 11px;
    }

    .student-login-btn {
        height: 46px;
        font-size: 11px;
    }

    .student-login-register {
        flex-direction: column;
        gap: 4px;
        margin-top: 22px;
        padding-top: 18px;
    }

    .student-login-register span,
    .student-login-register a {
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    .student-login-section {
        padding: 45px 0;
    }

    .student-login-card {
        padding: 25px 16px;
    }

    .student-login-header h2 {
        font-size: 23px;
    }

    .student-login-header p {
        font-size: 9px;
    }

    .student-login-input,
    .student-login-btn {
        height: 44px;
    }
}

/* student-login-section-css-end */














/* student-dashboard-section-css-start */

.student-dashboard-section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    background: #f4f7fb;
}

/* sidebar */

.student-dashboard-sidebar {
    width: 270px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    background: #071b3b;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 8px 0 35px rgba(7, 27, 59, 0.08);
}

/* sidebar-header */

.student-sidebar-header {
    width: 100%;
    min-height: 82px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.student-sidebar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.student-sidebar-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

/* close-button */

.student-sidebar-close {
    display: none;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 16px;
    cursor: pointer;
}

/* student-profile */

.student-sidebar-profile {
    margin: 10px 18px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.student-sidebar-avatar {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid rgba(255, 213, 74, 0.65);
    border-radius: 50%;
}

.student-sidebar-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.student-sidebar-profile-info {
    min-width: 0;
}

.student-sidebar-profile-info h4 {
    margin: 0 0 3px;
    overflow: hidden;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.student-sidebar-profile-info span {
    color: #8293a8;
    font-size: 8px;
    font-weight: 600;
}

/* sidebar-nav */

.student-sidebar-nav {
    width: 100%;
    flex: 1;
    padding: 8px 15px 20px;
    overflow-y: auto;
}

.student-sidebar-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.student-sidebar-nav li {
    margin-bottom: 5px;
}

.student-sidebar-nav li a {
    width: 100%;
    min-height: 47px;
    padding: 0 13px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #9eafc3;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: 0.3s ease;
}

.student-sidebar-nav li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.07);
    transform: translateX(2px);
}

.student-sidebar-nav li.active a {
    color: #071b3b;
    background: linear-gradient(135deg, #ffd54a, #ffb703);
    border-color: #ffd54a;
    box-shadow: 0 8px 20px rgba(255, 183, 3, 0.13);
}

/* nav-icon */

.student-nav-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    color: #ffd54a;
    background: rgba(10, 115, 187, 0.25);
    font-size: 12px;
    transition: 0.3s ease;
}

.student-sidebar-nav li.active .student-nav-icon {
    color: #ffffff;
    background: #071b3b;
}

.student-sidebar-nav li a:hover .student-nav-icon {
    color: #ffd54a;
    background: #071b3b;
}

/* logout */

.student-nav-logout {
    margin-top: 18px !important;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.student-nav-logout a {
    color: #ff8f8f !important;
}

.student-nav-logout .student-nav-icon {
    color: #ff7777;
}

.student-nav-logout a:hover {
    color: #ffffff !important;
    background: rgba(255, 80, 80, 0.08) !important;
}

/* main */

.student-dashboard-main {
    width: calc(100% - 270px);
    min-height: 100vh;
    margin-left: 270px;
    padding: 35px;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 213, 74, 0.08), transparent 25%),
        #f4f7fb;
}

.student-dashboard-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* welcome-box */

.student-welcome-box {
    width: 100%;
    min-height: 270px;
    padding: 40px 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #071b3b 0%, #0a315f 65%, #087f8c 100%);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(7, 27, 59, 0.12);
}

.student-welcome-box::before {
    content: "";
    width: 330px;
    height: 330px;
    position: absolute;
    top: -190px;
    right: 170px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.student-welcome-box::after {
    content: "";
    width: 260px;
    height: 260px;
    position: absolute;
    bottom: -190px;
    left: 40%;
    border: 1px solid rgba(255, 213, 74, 0.09);
    border-radius: 50%;
}

/* welcome-content */

.student-welcome-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.student-welcome-tag {
    display: inline-block;
    margin-bottom: 10px;
    color: #ffd54a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.student-welcome-content h1 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
}

.student-welcome-content h1 span {
    color: #ffd54a;
}

.student-welcome-content p {
    max-width: 520px;
    margin: 0;
    color: #b8c8d9;
    font-size: 12px;
    line-height: 1.8;
}

/* student-photo */

.student-welcome-photo {
    width: 155px;
    height: 155px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    padding: 6px;
    border: 1px solid rgba(255, 213, 74, 0.45);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.student-welcome-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

/* mobile-topbar */

.student-mobile-topbar {
    display: none;
}

.student-sidebar-overlay {
    display: none;
}

/* statistics */

.student-dashboard-stats {
    width: 100%;
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.student-stat-card {
    min-height: 145px;
    padding: 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(7, 27, 59, 0.08);
}

.student-stat-card::before {
    content: "";
    width: 110px;
    height: 110px;
    position: absolute;
    right: -45px;
    top: -45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.student-stat-content {
    position: relative;
    z-index: 2;
}

.student-stat-label {
    display: block;
    margin-bottom: 7px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.student-stat-content h3 {
    margin: 0 0 3px;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}

.student-stat-content p {
    margin: 0;
    font-size: 10px;
    font-weight: 600;
    opacity: 0.75;
}

.student-stat-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.22);
    font-size: 18px;
}

.student-stat-progress {
    color: #ffffff;
    background: linear-gradient(135deg, #087f8c, #08a4d8);
}

.student-stat-attendance {
    color: #ffffff;
    background: linear-gradient(135deg, #6a4c93, #9b5de5);
}

.student-stat-fee {
    color: #071b3b;
    background: linear-gradient(135deg, #ffd54a, #ffb703);
}

.student-stat-result {
    color: #ffffff;
    background: linear-gradient(135deg, #12bd58, #079447);
}

/* dashboard-lists */

.student-dashboard-lists {
    width: 100%;
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.student-dashboard-list-box {
    min-width: 0;
    padding: 23px;
    background: #ffffff;
    border: 1px solid #e7edf4;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(7, 27, 59, 0.06);
}

/* list-header */

.student-list-header {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.student-list-tag {
    display: block;
    margin-bottom: 5px;
    color: #087f8c;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.student-list-header h3 {
    margin: 0;
    color: #071b3b;
    font-size: 17px;
    font-weight: 800;
}

.student-list-header > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    color: #087f8c;
    text-decoration: none;
    font-size: 9px;
    font-weight: 800;
}

.student-list-header > a i {
    font-size: 8px;
    transition: transform 0.3s ease;
}

.student-list-header > a:hover i {
    transform: translateX(3px);
}

/* course-card */

.student-course-card {
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f7f9fc;
    border: 1px solid #edf1f5;
    border-radius: 12px;
}

.student-course-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.1);
    border-radius: 12px;
    font-size: 20px;
}

.student-course-info {
    flex: 1;
    min-width: 0;
}

.student-course-info h4 {
    margin: 0 0 3px;
    color: #071b3b;
    font-size: 14px;
    font-weight: 800;
}

.student-course-info > p {
    margin: 0 0 13px;
    color: #8293a8;
    font-size: 9px;
    font-weight: 600;
}

.student-progress-top {
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    color: #71839a;
    font-size: 8px;
    font-weight: 700;
}

.student-progress-top strong {
    color: #087f8c;
}

.student-progress-bar {
    width: 100%;
    height: 6px;
    overflow: hidden;
    background: #e4ebf1;
    border-radius: 10px;
}

.student-progress-bar span {
    height: 100%;
    display: block;
    background: linear-gradient(90deg, #087f8c, #08a4d8);
    border-radius: inherit;
}

/* attendance */

.student-attendance-summary {
    min-height: 130px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 25px;
    background: #f7f9fc;
    border: 1px solid #edf1f5;
    border-radius: 12px;
}

.student-attendance-circle {
    width: 95px;
    height: 95px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 7px solid #087f8c;
    border-right-color: #dcecef;
    border-radius: 50%;
}

.student-attendance-circle span {
    color: #071b3b;
    font-size: 19px;
    font-weight: 800;
}

.student-attendance-circle small {
    color: #8293a8;
    font-size: 7px;
    font-weight: 700;
}

.student-attendance-details {
    flex: 1;
}

.student-attendance-details div {
    padding: 7px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e9eef4;
}

.student-attendance-details div:last-child {
    border-bottom: 0;
}

.student-attendance-details span {
    color: #8293a8;
    font-size: 9px;
    font-weight: 600;
}

.student-attendance-details strong {
    color: #071b3b;
    font-size: 10px;
    font-weight: 800;
}

/* result-table */

.student-result-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.student-result-table {
    width: 100%;
    border-collapse: collapse;
}

.student-result-table th {
    padding: 10px 8px;
    color: #8293a8;
    background: #f7f9fc;
    border-bottom: 1px solid #e9eef4;
    font-size: 8px;
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
}

.student-result-table td {
    padding: 11px 8px;
    color: #506176;
    border-bottom: 1px solid #edf1f5;
    font-size: 9px;
    font-weight: 600;
}

.student-result-table tbody tr:last-child td {
    border-bottom: 0;
}

.student-grade-badge {
    min-width: 28px;
    padding: 4px 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #12a34a;
    background: rgba(18, 189, 88, 0.09);
    border-radius: 5px;
    font-size: 8px;
    font-weight: 800;
}

/* fee */

.student-fee-box {
    min-height: 120px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    background: #f7f9fc;
    border: 1px solid #edf1f5;
    border-radius: 12px;
}

.student-fee-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #12a34a;
    background: rgba(18, 189, 88, 0.1);
    border-radius: 10px;
    font-size: 20px;
}

.student-fee-content {
    min-width: 0;
    flex: 1;
}

.student-fee-content span {
    color: #8293a8;
    font-size: 8px;
    font-weight: 700;
}

.student-fee-content h4 {
    margin: 4px 0;
    color: #071b3b;
    font-size: 13px;
    font-weight: 800;
}

.student-fee-content p {
    margin: 0;
    color: #8293a8;
    font-size: 8px;
    line-height: 1.6;
}

.student-fee-status {
    padding: 6px 9px;
    color: #12a34a;
    background: rgba(18, 189, 88, 0.1);
    border-radius: 5px;
    font-size: 8px;
    font-weight: 800;
}

/* 1199px */

@media (max-width: 1199px) {

    .student-dashboard-sidebar {
        width: 250px;
    }

    .student-dashboard-main {
        width: calc(100% - 250px);
        margin-left: 250px;
        padding: 30px;
    }

    .student-welcome-box {
        padding: 35px;
    }

    .student-welcome-content h1 {
        font-size: 32px;
    }

    .student-dashboard-stats {
        gap: 14px;
    }

    .student-stat-card {
        padding: 18px;
    }

}

/* 991px */

@media (max-width: 991px) {

    .student-dashboard-sidebar {
        width: 235px;
    }

    .student-dashboard-main {
        width: calc(100% - 235px);
        margin-left: 235px;
        padding: 25px;
    }

    .student-sidebar-header {
        padding-left: 20px;
        padding-right: 20px;
    }

    .student-welcome-box {
        min-height: 240px;
        padding: 30px;
    }

    .student-welcome-content h1 {
        font-size: 28px;
    }

    .student-welcome-photo {
        width: 130px;
        height: 130px;
    }

    .student-dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .student-dashboard-lists {
        grid-template-columns: 1fr;
    }

}

/* 767px */

@media (max-width: 767px) {

    .student-dashboard-section {
        display: block;
        min-height: 100vh;
    }

    /* mobile-topbar */

    .student-mobile-topbar {
        width: 100%;
        height: 68px;
        padding: 0 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1100;
        background: #071b3b;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 8px 25px rgba(7, 27, 59, 0.15);
    }

    .student-mobile-logo {
        display: flex;
        align-items: center;
    }

    .student-mobile-logo a {
        display: flex;
        align-items: center;
    }

    .student-mobile-logo img {
        max-width: 135px;
        max-height: 45px;
        object-fit: contain;
    }

    .student-mobile-toggle {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 1px solid rgba(255, 213, 74, 0.25);
        border-radius: 9px;
        color: #071b3b;
        background: #ffd54a;
        font-size: 16px;
        cursor: pointer;
    }

    /* offcanvas */

    .student-dashboard-sidebar {
        width: 310px;
        max-width: 85%;
        height: 100vh;
        top: 0;
        left: 0;
        z-index: 1200;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        box-shadow: 12px 0 40px rgba(0, 0, 0, 0.25);
    }

    .student-dashboard-sidebar.active {
        transform: translateX(0);
    }

    .student-sidebar-header {
        min-height: 76px;
        padding: 10px 18px;
    }

    .student-sidebar-logo img {
        max-width: 135px;
        max-height: 70px;
    }

    .student-sidebar-close {
        display: flex;
    }

    /* overlay */

    .student-sidebar-overlay {
        width: 100%;
        height: 100vh;
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1150;
        visibility: hidden;
        opacity: 0;
        background: rgba(0, 0, 0, 0.55);
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .student-sidebar-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    /* main */

    .student-dashboard-main {
        width: 100%;
        min-height: 100vh;
        margin-left: 0;
        padding: 93px 18px 25px;
    }

    .student-welcome-box {
        min-height: 230px;
        padding: 28px;
        border-radius: 17px;
    }

    .student-welcome-content {
        max-width: 65%;
    }

    .student-welcome-content h1 {
        font-size: 24px;
        margin-bottom: 7px;
    }

    .student-welcome-content p {
        font-size: 11px;
    }

    .student-welcome-photo {
        width: 110px;
        height: 110px;
    }

    .student-dashboard-stats {
        margin-top: 20px;
        gap: 12px;
    }

    .student-stat-card {
        min-height: 125px;
        padding: 17px;
        border-radius: 13px;
    }

    .student-stat-label {
        font-size: 8px;
    }

    .student-stat-content h3 {
        font-size: 25px;
    }

    .student-stat-content p {
        font-size: 9px;
    }

    .student-stat-icon {
        width: 38px;
        height: 38px;
        border-radius: 9px;
        font-size: 14px;
    }

    .student-dashboard-lists {
        margin-top: 20px;
        gap: 15px;
    }

    .student-dashboard-list-box {
        padding: 17px;
        border-radius: 13px;
    }

    .student-list-header {
        margin-bottom: 15px;
    }

    .student-list-header h3 {
        font-size: 15px;
    }

}

/* 480px */

@media (max-width: 480px) {

    .student-mobile-topbar {
        height: 70px;
        padding: 0 14px;
    }

    .student-mobile-logo img {
        max-width: 120px;
        max-height: 60px;
    }

    .student-mobile-toggle {
        width: 37px;
        height: 37px;
        font-size: 14px;
    }

    .student-dashboard-sidebar {
        width: 290px;
        max-width: 88%;
    }

    .student-dashboard-main {
        padding: 82px 13px 20px;
    }

    .student-welcome-box {
        min-height: 260px;
        padding: 25px 20px;
    }

    .student-welcome-content {
        max-width: 70%;
    }

    .student-welcome-tag {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .student-welcome-content h1 {
        font-size: 20px;
        line-height: 1.25;
    }

    .student-welcome-content p {
        max-width: 250px;
        font-size: 10px;
        line-height: 1.7;
    }

    .student-welcome-photo {
        width: 85px;
        height: 85px;
        right: 18px;
        bottom: 20px;
    }

    .student-dashboard-stats {
        gap: 10px;
    }

    .student-stat-card {
        min-height: 115px;
        padding: 14px;
    }

    .student-stat-label {
        max-width: 100px;
        font-size: 7px;
        line-height: 1.4;
    }

    .student-stat-content h3 {
        font-size: 22px;
    }

    .student-stat-content p {
        font-size: 8px;
    }

    .student-stat-icon {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .student-dashboard-list-box {
        padding: 14px;
    }

    .student-list-header h3 {
        font-size: 14px;
    }

    .student-list-header > a {
        font-size: 8px;
    }

    .student-course-card {
        padding: 13px;
        gap: 11px;
    }

    .student-course-icon {
        width: 43px;
        height: 43px;
        font-size: 16px;
    }

    .student-course-info h4 {
        font-size: 12px;
    }

    .student-attendance-summary {
        gap: 15px;
        padding: 12px;
    }

    .student-attendance-circle {
        width: 75px;
        height: 75px;
        border-width: 5px;
    }

    .student-attendance-circle span {
        font-size: 16px;
    }

    .student-attendance-details span {
        font-size: 8px;
    }

    .student-fee-box {
        padding: 13px;
        gap: 10px;
    }

    .student-fee-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .student-fee-content h4 {
        font-size: 11px;
    }

    .student-fee-content p {
        font-size: 7px;
    }

    .student-fee-status {
        padding: 5px 7px;
        font-size: 7px;
    }

}

/* 360px */

@media (max-width: 360px) {

    .student-dashboard-main {
        padding-left: 10px;
        padding-right: 10px;
    }

    .student-welcome-box {
        min-height: 190px;
        padding: 22px 17px;
    }

    .student-welcome-content h1 {
        font-size: 21px;
    }

    .student-welcome-content p {
        font-size: 9px;
    }

    .student-welcome-photo {
        width: 75px;
        height: 75px;
        right: 15px;
        bottom: 15px;
    }

    .student-stat-card {
        min-height: 108px;
        padding: 12px;
    }

    .student-stat-label {
        font-size: 6.5px;
    }

    .student-stat-content h3 {
        font-size: 20px;
    }

    .student-stat-content p {
        font-size: 7px;
    }

    .student-stat-icon {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .student-list-header {
        align-items: flex-start;
    }

    .student-list-header h3 {
        font-size: 13px;
    }

    .student-attendance-summary {
        gap: 10px;
    }

    .student-attendance-circle {
        width: 68px;
        height: 68px;
    }

    .student-attendance-circle span {
        font-size: 14px;
    }

}

/* student-dashboard-section-css-end */















/* student-profile-section-css-start */

.student-profile-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.student-profile-header {
    width: 100%;
    min-height: 155px;
    padding: 30px 35px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #071b3b 0%, #0a315f 60%, #087f8c 100%);
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(7, 27, 59, 0.12);
}

.student-profile-header::before {
    content: "";
    width: 250px;
    height: 250px;
    position: absolute;
    top: -170px;
    right: 80px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.student-profile-header::after {
    content: "";
    width: 180px;
    height: 180px;
    position: absolute;
    right: -70px;
    bottom: -100px;
    border: 1px solid rgba(255, 213, 74, 0.12);
    border-radius: 50%;
}

.student-profile-main {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.student-profile-photo {
    width: 90px;
    height: 90px;
    padding: 4px;
    flex-shrink: 0;
    position: relative;
    border: 2px solid rgba(255, 213, 74, 0.65);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.student-profile-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}

.student-profile-online {
    width: 14px;
    height: 14px;
    position: absolute;
    right: 4px;
    bottom: 5px;
    border: 3px solid #071b3b;
    border-radius: 50%;
    background: #12bd58;
}

.student-profile-name h2 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
}

.student-profile-name span {
    color: #b8c8d9;
    font-size: 11px;
    font-weight: 600;
}

.student-profile-status {
    padding: 7px 13px;
    position: relative;
    z-index: 2;
    color: #12a34a;
    background: #ffffff;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.student-profile-section {
    width: 100%;
    margin-bottom: 25px;
}

.student-profile-section-head {
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.student-profile-section-head span {
    display: block;
    margin-bottom: 4px;
    color: #087f8c;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.student-profile-section-head h3 {
    margin: 0;
    color: #071b3b;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 800;
}

.student-profile-edit {
    min-height: 34px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
    color: #087f8c;
    background: #ffffff;
    border: 1px solid #dce7ed;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.student-profile-edit:hover {
    color: #ffffff;
    background: #087f8c;
    border-color: #087f8c;
}

.student-profile-card {
    width: 100%;
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #e8eef3;
    border: 1px solid #e8eef3;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.05);
}

.student-profile-detail {
    min-width: 0;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: #ffffff;
}

.student-profile-detail-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
    border-radius: 10px;
    font-size: 16px;
}

.student-profile-detail > div:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.student-profile-detail span {
    color: #8293a8;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.student-profile-detail strong {
    overflow: hidden;
    color: #071b3b;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.student-profile-course-card {
    width: 100%;
    min-height: 110px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 17px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #071b3b, #0a315f);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(7, 27, 59, 0.10);
}

.student-profile-course-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: #ffd54a;
    border-radius: 13px;
    font-size: 22px;
}

.student-profile-course-info {
    min-width: 0;
    flex: 1;
}

.student-profile-course-info > span {
    display: block;
    margin-bottom: 5px;
    color: #ffd54a;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.student-profile-course-info h4 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.student-profile-course-info p {
    margin: 0;
    color: #aebfd0;
    font-size: 9px;
    font-weight: 600;
}

.student-profile-course-arrow {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd54a;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    font-size: 12px;
}

.student-profile-fee-card {
    width: 100%;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 25px;
    background: #ffffff;
    border: 1px solid #e7edf4;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.05);
}

.student-profile-fee-item {
    min-width: 120px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.student-profile-fee-item span {
    color: #8293a8;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.student-profile-fee-item strong {
    color: #071b3b;
    font-size: 19px;
    font-weight: 800;
}

.student-profile-fee-item strong.paid {
    color: #12a34a;
}

.student-profile-fee-item strong.due {
    color: #087f8c;
}

.student-profile-fee-divider {
    width: 1px;
    height: 45px;
    flex-shrink: 0;
    background: #e6edf3;
}

.student-profile-fee-status {
    margin-left: auto;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #12a34a;
    background: rgba(18, 189, 88, 0.09);
    border-radius: 7px;
    font-size: 8px;
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 991px) {

    .student-profile-header {
        padding: 25px;
    }

    .student-profile-card {
        grid-template-columns: 1fr;
    }

    .student-profile-fee-card {
        gap: 18px;
    }

}

@media (max-width: 767px) {

    .student-profile-header {
        min-height: 150px;
        padding: 25px 20px;
        border-radius: 15px;
    }

    .student-profile-photo {
        width: 70px;
        height: 70px;
    }

    .student-profile-name h2 {
        font-size: 20px;
    }

    .student-profile-card {
        padding: 1px;
    }

    .student-profile-detail {
        padding: 14px;
    }

    .student-profile-detail-icon {
        width: 37px;
        height: 37px;
        font-size: 14px;
    }

    .student-profile-course-card {
        min-height: 95px;
        padding: 16px;
    }

    .student-profile-course-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .student-profile-fee-card {
        padding: 16px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .student-profile-fee-item {
        min-width: calc(33.333% - 15px);
    }

    .student-profile-fee-status {
        width: 100%;
        margin-left: 0;
        justify-content: center;
    }

}

@media (max-width: 480px) {

    .student-profile-header {
        min-height: 165px;
        padding: 20px 16px;
        align-items: flex-start;
    }

    .student-profile-photo {
        width: 62px;
        height: 62px;
    }

    .student-profile-name h2 {
        font-size: 18px;
    }

    .student-profile-status {
        position: absolute;
        right: 16px;
        bottom: 18px;
    }

    .student-profile-section-head h3 {
        font-size: 14px;
    }

    .student-profile-detail {
        padding: 12px;
    }

    .student-profile-detail-icon {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .student-profile-detail strong {
        font-size: 9px;
    }

    .student-profile-course-card {
        padding: 14px;
    }

    .student-profile-course-icon {
        width: 43px;
        height: 43px;
        font-size: 16px;
    }

    .student-profile-course-info h4 {
        font-size: 12px;
    }

    .student-profile-course-arrow {
        width: 29px;
        height: 29px;
    }

    .student-profile-fee-card {
        padding: 14px;
        gap: 10px;
    }

    .student-profile-fee-item {
        min-width: calc(33.333% - 8px);
    }

    .student-profile-fee-item strong {
        font-size: 13px;
    }

}

@media (max-width: 360px) {

    .student-profile-header {
        min-height: 155px;
        padding: 18px 13px;
    }

    .student-profile-photo {
        width: 55px;
        height: 55px;
    }

    .student-profile-name h2 {
        font-size: 16px;
    }

    .student-profile-status {
        right: 13px;
        bottom: 14px;
    }

    .student-profile-section-head h3 {
        font-size: 13px;
    }

    .student-profile-detail {
        padding: 10px;
    }

    .student-profile-detail-icon {
        width: 31px;
        height: 31px;
        font-size: 11px;
    }

    .student-profile-detail strong {
        font-size: 8px;
    }

    .student-profile-course-card {
        padding: 12px;
    }

    .student-profile-course-icon {
        width: 39px;
        height: 39px;
        font-size: 14px;
    }

    .student-profile-course-info h4 {
        font-size: 11px;
    }

    .student-profile-course-arrow {
        display: none;
    }

    .student-profile-fee-card {
        padding: 12px;
    }

    .student-profile-fee-item strong {
        font-size: 12px;
    }

}


/* student-profile-edit-modal-css-start */

.student-profile-modal {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.student-profile-modal.active {
    display: flex;
}

.student-profile-modal-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: rgba(7, 27, 59, 0.65);
    backdrop-filter: blur(4px);
}

.student-profile-modal-box {
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 70px rgba(7, 27, 59, 0.25);
    animation: studentProfileModalOpen 0.25s ease;
}

@keyframes studentProfileModalOpen {

    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

.student-profile-modal-header {
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: linear-gradient(135deg, #071b3b, #087f8c);
}

.student-profile-modal-header span {
    display: block;
    margin-bottom: 4px;
    color: #ffd54a;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.student-profile-modal-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 19px;
    font-weight: 800;
}

.student-profile-modal-close {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.student-profile-modal-close:hover {
    color: #071b3b;
    background: #ffd54a;
}

.student-profile-modal-body {
    max-height: calc(90vh - 145px);
    padding: 22px;
    overflow-y: auto;
}

.student-profile-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.student-profile-form-group {
    width: 100%;
}

.student-profile-form-group.full-width {
    grid-column: 1 / -1;
}

.student-profile-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #071b3b;
    font-size: 9px;
    font-weight: 800;
}

.student-profile-form-group input,
.student-profile-form-group select,
.student-profile-form-group textarea {
    width: 100%;
    min-height: 42px;
    padding: 0 12px;
    color: #071b3b;
    background: #f8fafc;
    border: 1px solid #dce5ec;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    font-size: 10px;
    font-weight: 600;
    transition: 0.3s ease;
}

.student-profile-form-group textarea {
    height: 90px;
    padding-top: 12px;
    resize: vertical;
}

.student-profile-form-group input:focus,
.student-profile-form-group select:focus,
.student-profile-form-group textarea:focus {
    border-color: #087f8c;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(8, 127, 140, 0.08);
}

.student-profile-modal-footer {
    padding: 15px 22px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    background: #f8fafc;
    border-top: 1px solid #e8eef3;
}

.student-profile-cancel,
.student-profile-save {
    min-height: 36px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 7px;
    font-size: 9px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.student-profile-cancel {
    color: #071b3b;
    background: #ffffff;
    border: 1px solid #dce5ec;
}

.student-profile-cancel:hover {
    background: #eef3f7;
}

.student-profile-save {
    color: #071b3b;
    background: #ffd54a;
    border: 1px solid #ffd54a;
}

.student-profile-save:hover {
    background: #f4c832;
    border-color: #f4c832;
    transform: translateY(-1px);
}

body.student-profile-modal-open {
    overflow: hidden;
}

@media (max-width: 767px) {

    .student-profile-modal {
        padding: 15px;
    }

    .student-profile-modal-box {
        max-height: 92vh;
        border-radius: 14px;
    }

    .student-profile-modal-header {
        padding: 17px 18px;
    }

    .student-profile-modal-header h3 {
        font-size: 16px;
    }

    .student-profile-modal-body {
        max-height: calc(92vh - 135px);
        padding: 18px;
    }

    .student-profile-form-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .student-profile-form-group.full-width {
        grid-column: auto;
    }

    .student-profile-modal-footer {
        padding: 12px 18px;
    }

}

@media (max-width: 480px) {

    .student-profile-modal {
        padding: 10px;
        align-items: flex-end;
    }

    .student-profile-modal-box {
        max-height: 94vh;
        border-radius: 14px 14px 0 0;
    }

    .student-profile-modal-header {
        padding: 15px;
    }

    .student-profile-modal-header span {
        font-size: 6px;
    }

    .student-profile-modal-header h3 {
        font-size: 14px;
    }

    .student-profile-modal-close {
        width: 31px;
        height: 31px;
        font-size: 11px;
    }

    .student-profile-modal-body {
        max-height: calc(94vh - 125px);
        padding: 15px;
    }

    .student-profile-form-group label {
        font-size: 8px;
    }

    .student-profile-form-group input,
    .student-profile-form-group select,
    .student-profile-form-group textarea {
        min-height: 40px;
        font-size: 9px;
    }

    .student-profile-modal-footer {
        padding: 11px 15px;
    }

    .student-profile-cancel,
    .student-profile-save {
        min-height: 34px;
        padding: 0 12px;
        font-size: 8px;
    }

}

/* student-profile-edit-modal-css-end */

/* student-profile-section-css-end */





















/* student-course-details-section-css-start */

.student-course-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.student-course-heading {
    width: 100%;
    margin-bottom: 16px;
}

.student-course-heading span {
	display: block;
	margin-bottom: 4px;
	color: #087f8c;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1.7px;
}

.student-course-heading h3 {
    margin: 0;
    color: #071b3b;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.student-course-booked {
    width: 100%;
    margin-bottom: 28px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #071b3b 0%, #0a315f 62%, #087f8c 100%);
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(7, 27, 59, 0.12);
}

.student-course-booked::before {
    content: "";
    width: 240px;
    height: 240px;
    position: absolute;
    top: -150px;
    right: 100px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.student-course-booked::after {
    content: "";
    width: 180px;
    height: 180px;
    position: absolute;
    right: -80px;
    bottom: -100px;
    border: 1px solid rgba(255, 213, 74, 0.12);
    border-radius: 50%;
}

.student-course-booked-icon {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    color: #071b3b;
    background: #ffd54a;
    border-radius: 14px;
    font-size: 24px;
}

.student-course-booked-info {
    min-width: 0;
    flex: 1;
    position: relative;
    z-index: 2;
}

.student-course-enrolled {
    display: block;
    margin-bottom: 6px;
    color: #ffd54a;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.student-course-booked-info h4 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 800;
}

.student-course-booked-info > p {
    max-width: 680px;
    margin: 0 0 20px;
    color: #b9c9d9;
    font-size: 10px;
    line-height: 1.7;
    font-weight: 500;
}

.student-course-detail-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.student-course-detail-item {
	min-width: 0;
	min-height: 62px;
	padding: 11px;
	display: flex;
	align-items: center;
	gap: 9px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 9px;
	color: #fff;
}

.student-course-detail-item > i {
    width: 29px;
    height: 29px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd54a;
    background: rgba(255, 213, 74, 0.10);
    border-radius: 7px;
    font-size: 11px;
}

.student-course-detail-item > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.student-course-detail-item span {
	color: #91a7ba;
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
}

.student-course-detail-item strong {
    overflow: hidden;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.student-course-booked-progress {
    margin-top: 20px;
}

.student-course-booked-progress > div:first-child {
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.student-course-booked-progress span {
	color: #b9c9d9;
	font-size: 10px;
	font-weight: 600;
}

.student-course-booked-progress strong {
    color: #ffd54a;
    font-size: 9px;
    font-weight: 800;
}

.student-course-progress-bar {
    width: 100%;
    height: 7px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
}

.student-course-progress-bar span {
    height: 100%;
    display: block;
    background: #ffd54a;
    border-radius: 20px;
}

.student-course-learning-actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.student-course-learning-btn {
    min-height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 7px;
    font-size: 8px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
}
.student-course-learning-btn {
	font-size: 10px;
	font-weight: 800;
	cursor: pointer;
}

.student-course-video-btn {
    color: #071b3b;
    background: #ffd54a;
    border: 1px solid #ffd54a;
}

.student-course-video-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
}

.student-course-pdf-btn {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.student-course-pdf-btn:hover {
    color: #071b3b;
    background: #ffffff;
}

.student-course-learning-btn i {
    font-size: 11px;
}

.student-course-booked-status {
    padding: 7px 12px;
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    color: #12a34a;
    background: #ffffff;
    border-radius: 20px;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.student-course-video-section {
    width: 100%;
    margin-bottom: 28px;
    padding: 22px;
    display: none;
    background: #ffffff;
    border: 1px solid #e5edf3;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.06);
}

.student-course-video-section.active {
    display: block;
}

.student-course-video-heading {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.student-course-video-heading span {
    display: block;
    margin-bottom: 4px;
    color: #087f8c;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.student-course-video-heading h3 {
    margin: 0;
    color: #071b3b;
    font-size: 17px;
    font-weight: 800;
}

.student-course-video-close {
    width: 33px;
    height: 33px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: #f2f6f9;
    border: 1px solid #e2eaf0;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.student-course-video-close:hover {
    color: #ffffff;
    background: #087f8c;
    border-color: #087f8c;
}

.student-course-video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #071b3b;
    border-radius: 11px;
}

.student-course-video-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.student-course-video-info {
    margin-top: 12px;
    padding: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #f7fafc;
    border-radius: 9px;
}

.student-course-video-info div {
    min-width: 0;
}

.student-course-video-info span {
    display: block;
    margin-bottom: 4px;
    color: #8293a8;
    font-size: 7px;
    font-weight: 800;
}

.student-course-video-info strong {
    color: #071b3b;
    font-size: 9px;
    font-weight: 800;
}

.student-course-content-section {
    width: 100%;
    margin-bottom: 20px;
}

.student-course-content-card {
    width: 100%;
    min-height: 95px;
    margin-bottom: 10px;
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    border: 1px solid #e7edf3;
    border-radius: 13px;
    box-shadow: 0 6px 20px rgba(7, 27, 59, 0.04);
    transition: 0.3s ease;
}

.student-course-content-card:hover {
    border-color: #b9d9dd;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(7, 27, 59, 0.07);
}

.student-course-content-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
    border-radius: 11px;
    font-size: 18px;
}

.student-course-content-info {
    min-width: 0;
    flex: 1;
}

.student-course-content-info > span {
	display: block;
	margin-bottom: 4px;
	color: #087f8c;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 1.3px;
}

.student-course-content-info h4 {
    margin: 0 0 4px;
    color: #071b3b;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
}

.student-course-content-info p {
	max-width: 800px;
	margin: 0;
	color: #8293a8;
	font-size: 11px;
	line-height: 1.55;
	font-weight: 500;
}

.student-course-content-count {
	padding: 7px 10px;
	flex-shrink: 0;
	color: #087f8c;
	background: rgba(8, 127, 140, 0.08);
	border-radius: 6px;
	font-size: 10px;
	font-weight: 800;
	white-space: nowrap;
} 

/* tablet */

@media (max-width: 991px) {

    .student-course-booked {
        padding: 24px;
    }

    .student-course-detail-list {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* mobile */

@media (max-width: 767px) {

    .student-course-heading h3 {
        font-size: 17px;
    }

    .student-course-booked {
        padding: 20px;
        flex-wrap: wrap;
        gap: 15px;
        border-radius: 14px;
    }

    .student-course-booked-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .student-course-booked-info h4 {
        font-size: 20px;
    }

    .student-course-booked-info > p {
        font-size: 9px;
    }

    .student-course-detail-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .student-course-booked-status {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .student-course-learning-actions {
        flex-wrap: wrap;
    }

    .student-course-learning-btn {
        flex: 1;
    }

    .student-course-video-section {
        padding: 17px;
    }

    .student-course-content-card {
        padding: 14px;
    }

}

/* small-mobile */

@media (max-width: 480px) {

    .student-course-heading {
        margin-bottom: 12px;
    }

    .student-course-heading span {
        font-size: 7px;
    }

    .student-course-heading h3 {
        font-size: 15px;
    }

    .student-course-booked {
        padding: 17px;
        display: block;
    }

    .student-course-booked-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 13px;
        font-size: 17px;
    }

    .student-course-booked-status {
        top: 17px;
        right: 17px;
        padding: 6px 9px;
        font-size: 7px;
    }

    .student-course-booked-info h4 {
        padding-right: 60px;
        font-size: 17px;
    }

    .student-course-booked-info > p {
        margin-bottom: 15px;
        font-size: 8px;
        line-height: 1.6;
    }

    .student-course-detail-list {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .student-course-detail-item {
        min-height: 52px;
        padding: 9px;
    }

    .student-course-detail-item > i {
        width: 27px;
        height: 27px;
        font-size: 10px;
    }

    .student-course-detail-item strong {
        font-size: 8px;
    }

    .student-course-learning-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .student-course-learning-btn {
        width: 100%;
        padding: 0 8px;
        font-size: 7px;
    }

    .student-course-video-section {
        padding: 14px;
    }

    .student-course-video-heading h3 {
        font-size: 13px;
    }

    .student-course-video-info {
        display: block;
    }

    .student-course-video-info div + div {
        margin-top: 10px;
    }

    .student-course-content-card {
        min-height: 0;
        padding: 12px;
        align-items: flex-start;
        gap: 10px;
    }

    .student-course-content-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .student-course-content-info h4 {
        font-size: 10px;
    }

    .student-course-content-info p {
        font-size: 8px;
    }

    .student-course-content-count {
        padding: 5px 7px;
        font-size: 6px;
    }

}

/* extra-small-mobile */

@media (max-width: 360px) {

    .student-course-booked {
        padding: 14px;
    }

    .student-course-booked-status {
        top: 14px;
        right: 14px;
    }

    .student-course-booked-info h4 {
        font-size: 15px;
    }

    .student-course-learning-actions {
        grid-template-columns: 1fr;
    }

    .student-course-content-card {
        display: grid;
        grid-template-columns: 38px 1fr;
    }

    .student-course-content-count {
        grid-column: 2;
        width: fit-content;
    }

}

/* student-course-details-section-css-end */












/* student-fee-status-section-css-start */

.student-fee-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.student-fee-heading {
    width: 100%;
    margin-bottom: 16px;
}

.student-fee-heading span {
    display: block;
    margin-bottom: 5px;
    color: #087f8c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.student-fee-heading h3 {
    margin: 0;
    color: #071b3b;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.student-fee-summary {
    width: 100%;
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.student-fee-summary-item {
    min-height: 145px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5edf2;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.05);
}

.student-fee-summary-item::after {
    content: "";
    width: 90px;
    height: 90px;
    position: absolute;
    right: -30px;
    bottom: -40px;
    border: 1px solid rgba(7, 27, 59, 0.05);
    border-radius: 50%;
}

.student-fee-summary-icon {
    width: 43px;
    height: 43px;
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
}

.student-fee-summary-item > span {
    margin-bottom: 5px;
    color: #8293a8;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.student-fee-summary-item strong {
    color: #071b3b;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.student-fee-total .student-fee-summary-icon {
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
}

.student-fee-paid .student-fee-summary-icon {
    color: #12a34a;
    background: rgba(18, 163, 74, 0.09);
}

.student-fee-paid strong {
    color: #12a34a;
}

.student-fee-due .student-fee-summary-icon {
    color: #d99500;
    background: rgba(255, 193, 7, 0.12);
}

.student-fee-due strong {
    color: #d99500;
}

.student-fee-block {
    width: 100%;
    margin-bottom: 25px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #e5edf2;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.05);
}

.student-fee-block-heading {
    margin-bottom: 17px;
}

.student-fee-block-heading span {
    display: block;
    margin-bottom: 5px;
    color: #087f8c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.student-fee-block-heading h4 {
    margin: 0;
    color: #071b3b;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
}

.student-fee-history-item {
    width: 100%;
    min-height: 76px;
    margin-bottom: 9px;
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: #f8fafc;
    border: 1px solid #edf2f5;
    border-radius: 10px;
    transition: 0.3s ease;
}

.student-fee-history-item:last-child {
    margin-bottom: 0;
}

.student-fee-history-item:hover {
    border-color: #cfe1e5;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(7, 27, 59, 0.05);
}

.student-fee-history-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
    border-radius: 9px;
    font-size: 14px;
}

.student-fee-history-info {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.student-fee-history-info strong {
    color: #071b3b;
    font-size: 14px;
    font-weight: 800;
}

.student-fee-history-info span {
    color: #62758a;
    font-size: 10px;
    font-weight: 600;
}

.student-fee-history-info small {
    overflow: hidden;
    color: #8b9bad;
    font-size: 9px;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.student-fee-history-status {
    padding: 7px 12px;
    flex-shrink: 0;
    color: #12a34a;
    background: rgba(18, 163, 74, 0.09);
    border-radius: 7px;
    font-size: 10px;
    font-weight: 800;
}

.student-fee-invoice {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.student-fee-invoice-btn {
    min-height: 42px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #ffffff;
    background: #071b3b;
    border: 1px solid #071b3b;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.student-fee-invoice-btn:hover {
    color: #071b3b;
    background: #ffd54a;
    border-color: #ffd54a;
}

.student-fee-invoice-btn i:last-child {
    font-size: 10px;
}

/* tablet */

@media (max-width: 991px) {

    .student-fee-summary {
        grid-template-columns: repeat(3, 1fr);
    }

    .student-fee-summary-item {
        padding: 18px;
    }

    .student-fee-summary-item strong {
        font-size: 19px;
    }

}

/* mobile */

@media (max-width: 767px) {

    .student-fee-heading span {
        font-size: 9px;
    }

    .student-fee-heading h3 {
        font-size: 17px;
    }

    .student-fee-summary {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .student-fee-summary-item {
        min-height: 105px;
        padding: 16px;
    }

    .student-fee-summary-icon {
        width: 37px;
        height: 37px;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .student-fee-summary-item > span {
        font-size: 9px;
    }

    .student-fee-summary-item strong {
        font-size: 18px;
    }

    .student-fee-block {
        padding: 16px;
    }

    .student-fee-block-heading span {
        font-size: 9px;
    }

    .student-fee-block-heading h4 {
        font-size: 14px;
    }

    .student-fee-history-item {
        padding: 11px;
        gap: 10px;
    }

    .student-fee-history-icon {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .student-fee-history-info strong {
        font-size: 11px;
    }

    .student-fee-history-info span {
        font-size: 9px;
    }

    .student-fee-history-info small {
        font-size: 8px;
    }

    .student-fee-history-status {
        padding: 6px 9px;
        font-size: 8px;
    }

    .student-fee-invoice-btn {
        min-height: 38px;
        font-size: 9px;
    }

}

/* small-mobile */

@media (max-width: 480px) {

    .student-fee-heading {
        margin-bottom: 12px;
    }

    .student-fee-heading span {
        font-size: 8px;
    }

    .student-fee-heading h3 {
        font-size: 15px;
    }

    .student-fee-summary {
        margin-bottom: 18px;
    }

    .student-fee-summary-item {
        min-height: 90px;
        padding: 13px;
    }

    .student-fee-summary-icon {
        width: 33px;
        height: 33px;
        margin-bottom: 6px;
        font-size: 12px;
    }

    .student-fee-summary-item > span {
        font-size: 8px;
    }

    .student-fee-summary-item strong {
        font-size: 15px;
    }

    .student-fee-block {
        margin-bottom: 18px;
        padding: 12px;
        border-radius: 12px;
    }

    .student-fee-block-heading {
        margin-bottom: 12px;
    }

    .student-fee-block-heading span {
        font-size: 8px;
    }

    .student-fee-block-heading h4 {
        font-size: 12px;
    }

    .student-fee-history-item {
        min-height: 65px;
        padding: 9px;
        gap: 8px;
    }

    .student-fee-history-icon {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }

    .student-fee-history-info {
        gap: 2px;
    }

    .student-fee-history-info strong {
        font-size: 10px;
    }

    .student-fee-history-info span {
        font-size: 8px;
    }

    .student-fee-history-info small {
        font-size: 7px;
    }

    .student-fee-history-status {
        padding: 5px 7px;
        font-size: 7px;
    }

    .student-fee-invoice {
        justify-content: stretch;
    }

    .student-fee-invoice-btn {
        width: 100%;
        min-height: 36px;
        font-size: 8px;
    }

}

/* extra-small-mobile */

@media (max-width: 360px) {

    .student-fee-summary-item {
        min-height: 82px;
        padding: 11px;
    }

    .student-fee-summary-item strong {
        font-size: 14px;
    }

    .student-fee-block {
        padding: 10px;
    }

    .student-fee-history-item {
        display: grid;
        grid-template-columns: 32px 1fr auto;
        padding: 8px;
    }

    .student-fee-history-icon {
        width: 30px;
        height: 30px;
    }

    .student-fee-history-info strong {
        font-size: 9px;
    }

    .student-fee-history-info span {
        font-size: 7px;
    }

    .student-fee-history-info small {
        font-size: 6px;
    }

    .student-fee-history-status {
        font-size: 6px;
        padding: 5px 6px;
    }

}

/* student-fee-status-section-css-end */




















/* student-attendance-summary-section-css-start */

.student-attendance-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.student-attendance-heading {
    width: 100%;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.student-attendance-heading span {
    display: block;
    margin-bottom: 5px;
    color: #087f8c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.student-attendance-heading h3 {
    margin: 0;
    color: #071b3b;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.student-attendance-percentage {
    min-width: 72px;
    padding: 9px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e4edf2;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(7, 27, 59, 0.05);
}

.student-attendance-percentage strong {
    color: #087f8c;
    font-size: 17px;
    line-height: 1.1;
    font-weight: 800;
}

.student-attendance-percentage span {
    margin: 3px 0 0;
    color: #8293a8;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0;
}

.student-attendance-grid {
    width: 100%;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.student-attendance-card {
    min-height: 115px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5edf2;
    border-radius: 14px;
    box-shadow: 0 7px 22px rgba(7, 27, 59, 0.05);
    transition: 0.3s ease;
}

.student-attendance-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 11px 27px rgba(7, 27, 59, 0.08);
}

.student-attendance-card::after {
    content: "";
    width: 100px;
    height: 100px;
    position: absolute;
    right: -40px;
    bottom: -55px;
    border: 1px solid rgba(7, 27, 59, 0.05);
    border-radius: 50%;
}

.student-attendance-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: 17px;
}

.student-attendance-card-content {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.student-attendance-card-content span {
    overflow: hidden;
    color: #8293a8;
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.student-attendance-card-content strong {
    color: #071b3b;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.student-attendance-card-content small {
    color: #8b9aaa;
    font-size: 9px;
    font-weight: 600;
}

.student-attendance-arrow {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8293a8;
    background: #f3f7f9;
    border-radius: 7px;
    font-size: 9px;
    transition: 0.3s ease;
}

.student-attendance-card:hover .student-attendance-arrow {
    color: #ffffff;
    background: #087f8c;
}

/* blue */

.student-attendance-blue .student-attendance-icon {
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
}

/* green */

.student-attendance-green .student-attendance-icon {
    color: #12a34a;
    background: rgba(18, 163, 74, 0.09);
}

.student-attendance-green .student-attendance-card-content strong {
    color: #12a34a;
}

/* purple */

.student-attendance-purple .student-attendance-icon {
    color: #7656c7;
    background: rgba(118, 86, 199, 0.09);
}

.student-attendance-purple .student-attendance-card-content strong {
    color: #7656c7;
}

/* yellow */

.student-attendance-yellow .student-attendance-icon {
    color: #d99500;
    background: rgba(255, 193, 7, 0.12);
}

.student-attendance-yellow .student-attendance-card-content strong {
    color: #d99500;
}

/* record */

.student-attendance-record {
    grid-column: 1 / -1;
}

.student-attendance-record .student-attendance-icon {
    color: #071b3b;
    background: rgba(7, 27, 59, 0.08);
}

/* attendance-status */

.student-attendance-status {
    width: 100%;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #e5edf2;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.05);
}

.student-attendance-status-head {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.student-attendance-status-head span {
    display: block;
    margin-bottom: 4px;
    color: #087f8c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.student-attendance-status-head h4 {
    margin: 0;
    color: #071b3b;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 800;
}

.student-attendance-status-head > strong {
    color: #087f8c;
    font-size: 19px;
    font-weight: 800;
}

.student-attendance-progress {
    width: 100%;
    height: 9px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #eaf0f3;
    border-radius: 20px;
}

.student-attendance-progress span {
    height: 100%;
    display: block;
    background: linear-gradient(90deg, #087f8c, #12bd58);
    border-radius: 20px;
}

.student-attendance-status-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.student-attendance-status-bottom span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #687b8f;
    font-size: 9px;
    font-weight: 700;
}

.student-attendance-status-bottom i {
    color: #12bd58;
    font-size: 6px;
}

.student-attendance-status-bottom span:nth-child(2) i {
    color: #e66a6a;
}

.student-attendance-status-bottom span:nth-child(3) i {
    color: #087f8c;
}

/* tablet */

@media (max-width: 991px) {

    .student-attendance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .student-attendance-card {
        min-height: 110px;
        padding: 16px;
    }

}

/* mobile */

@media (max-width: 767px) {

    .student-attendance-heading {
        margin-bottom: 14px;
    }

    .student-attendance-heading span {
        font-size: 9px;
    }

    .student-attendance-heading h3 {
        font-size: 17px;
    }

    .student-attendance-percentage {
        min-width: 62px;
        padding: 8px 10px;
    }

    .student-attendance-percentage strong {
        font-size: 15px;
    }

    .student-attendance-percentage span {
        font-size: 7px;
    }

    .student-attendance-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .student-attendance-card {
        min-height: 90px;
        padding: 13px;
    }

    .student-attendance-record {
        grid-column: auto;
    }

    .student-attendance-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .student-attendance-card-content span {
        font-size: 8px;
    }

    .student-attendance-card-content strong {
        font-size: 15px;
    }

    .student-attendance-card-content small {
        font-size: 8px;
    }

    .student-attendance-arrow {
        width: 25px;
        height: 25px;
        font-size: 8px;
    }

    .student-attendance-status {
        padding: 16px;
    }

    .student-attendance-status-head span {
        font-size: 8px;
    }

    .student-attendance-status-head h4 {
        font-size: 13px;
    }

    .student-attendance-status-head > strong {
        font-size: 16px;
    }

    .student-attendance-progress {
        height: 7px;
    }

    .student-attendance-status-bottom {
        flex-wrap: wrap;
        gap: 8px 15px;
    }

    .student-attendance-status-bottom span {
        font-size: 8px;
    }

}

/* small-mobile */

@media (max-width: 480px) {

    .student-attendance-heading {
        align-items: flex-start;
    }

    .student-attendance-heading span {
        font-size: 8px;
    }

    .student-attendance-heading h3 {
        font-size: 15px;
    }

    .student-attendance-percentage {
        min-width: 55px;
        padding: 7px 8px;
    }

    .student-attendance-percentage strong {
        font-size: 13px;
    }

    .student-attendance-percentage span {
        font-size: 6px;
    }

    .student-attendance-card {
        min-height: 78px;
        padding: 10px;
        gap: 9px;
        border-radius: 11px;
    }

    .student-attendance-icon {
        width: 34px;
        height: 34px;
        font-size: 11px;
        border-radius: 8px;
    }

    .student-attendance-card-content {
        gap: 2px;
    }

    .student-attendance-card-content span {
        font-size: 7px;
    }

    .student-attendance-card-content strong {
        font-size: 12px;
    }

    .student-attendance-card-content small {
        font-size: 7px;
    }

    .student-attendance-arrow {
        width: 22px;
        height: 22px;
        font-size: 7px;
    }

    .student-attendance-status {
        padding: 12px;
        border-radius: 11px;
    }

    .student-attendance-status-head {
        margin-bottom: 10px;
    }

    .student-attendance-status-head span {
        font-size: 7px;
    }

    .student-attendance-status-head h4 {
        font-size: 11px;
    }

    .student-attendance-status-head > strong {
        font-size: 14px;
    }

    .student-attendance-progress {
        height: 6px;
        margin-bottom: 10px;
    }

    .student-attendance-status-bottom {
        gap: 6px 10px;
    }

    .student-attendance-status-bottom span {
        font-size: 7px;
    }

    .student-attendance-status-bottom i {
        font-size: 5px;
    }

}

/* extra-small-mobile */

@media (max-width: 360px) {

    .student-attendance-heading h3 {
        font-size: 14px;
    }

    .student-attendance-percentage {
        min-width: 50px;
        padding: 6px;
    }

    .student-attendance-percentage strong {
        font-size: 12px;
    }

    .student-attendance-card {
        min-height: 72px;
        padding: 8px;
    }

    .student-attendance-icon {
        width: 31px;
        height: 31px;
        font-size: 10px;
    }

    .student-attendance-card-content span {
        font-size: 6px;
    }

    .student-attendance-card-content strong {
        font-size: 11px;
    }

    .student-attendance-card-content small {
        font-size: 6px;
    }

    .student-attendance-arrow {
        width: 20px;
        height: 20px;
        font-size: 6px;
    }

    .student-attendance-status {
        padding: 10px;
    }

    .student-attendance-status-head h4 {
        font-size: 10px;
    }

    .student-attendance-status-head > strong {
        font-size: 12px;
    }

    .student-attendance-status-bottom span {
        font-size: 6px;
    }

}

/* student-attendance-summary-section-css-end */

















/* student-certificate-section-css-start */

.student-certificate-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.student-certificate-heading {
    width: 100%;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.student-certificate-heading span {
    display: block;
    margin-bottom: 5px;
    color: #087f8c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.student-certificate-heading h3 {
    margin: 0;
    color: #071b3b;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.student-certificate-block {
    width: 100%;
}

.student-certificate-card {
    width: 100%;
    min-height: 120px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5edf2;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.05);
    transition: 0.3s ease;
}

.student-certificate-card::before {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    top: -95px;
    right: 80px;
    border: 1px solid rgba(8, 127, 140, 0.07);
    border-radius: 50%;
}

.student-certificate-card::after {
    content: "";
    width: 100px;
    height: 100px;
    position: absolute;
    right: -35px;
    bottom: -55px;
    border: 1px solid rgba(255, 213, 74, 0.15);
    border-radius: 50%;
}

.student-certificate-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(7, 27, 59, 0.08);
}

.student-certificate-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e53935;
    background: rgba(229, 57, 53, 0.09);
    border-radius: 12px;
    font-size: 22px;
    position: relative;
    z-index: 1;
}

.student-certificate-card-content {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 1;
}

.student-certificate-card-content strong {
    color: #071b3b;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
}

.student-certificate-card-content span {
    color: #8293a8;
    font-size: 10px;
    line-height: 1.5;
    font-weight: 600;
}

.student-certificate-download {
    min-height: 38px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    color: #071b3b;
    background: #ffd54a;
    border: 1px solid #ffd54a;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s ease;
}

.student-certificate-download:hover {
    color: #ffffff;
    background: #087f8c;
    border-color: #087f8c;
}

.student-certificate-download i {
    font-size: 11px;
}

/* tablet */

@media (max-width: 991px) {

    .student-certificate-card {
        padding: 20px;
    }

}

/* mobile */

@media (max-width: 767px) {

    .student-certificate-heading {
        margin-bottom: 14px;
    }

    .student-certificate-heading span {
        font-size: 9px;
    }

    .student-certificate-heading h3 {
        font-size: 17px;
    }

    .student-certificate-card {
        min-height: 105px;
        padding: 16px;
        gap: 13px;
        border-radius: 12px;
    }

    .student-certificate-icon {
        width: 43px;
        height: 43px;
        border-radius: 9px;
        font-size: 17px;
    }

    .student-certificate-card-content strong {
        font-size: 11px;
    }

    .student-certificate-card-content span {
        font-size: 8px;
    }

    .student-certificate-download {
        min-height: 34px;
        padding: 0 11px;
        gap: 5px;
        font-size: 8px;
    }

    .student-certificate-download i {
        font-size: 9px;
    }

}

/* small-mobile */

@media (max-width: 480px) {

    .student-certificate-heading span {
        font-size: 8px;
    }

    .student-certificate-heading h3 {
        font-size: 15px;
    }

    .student-certificate-card {
        min-height: 95px;
        padding: 12px;
        gap: 9px;
        border-radius: 10px;
    }

    .student-certificate-icon {
        width: 35px;
        height: 35px;
        border-radius: 7px;
        font-size: 13px;
    }

    .student-certificate-card-content {
        gap: 3px;
    }

    .student-certificate-card-content strong {
        font-size: 9px;
    }

    .student-certificate-card-content span {
        font-size: 7px;
        line-height: 1.4;
    }

    .student-certificate-download {
        min-height: 30px;
        padding: 0 8px;
        gap: 4px;
        border-radius: 6px;
        font-size: 7px;
    }

    .student-certificate-download i {
        font-size: 8px;
    }

}

/* extra-small-mobile */

@media (max-width: 360px) {

    .student-certificate-heading h3 {
        font-size: 14px;
    }

    .student-certificate-card {
        padding: 10px;
        gap: 8px;
    }

    .student-certificate-icon {
        width: 31px;
        height: 31px;
        font-size: 11px;
    }

    .student-certificate-card-content strong {
        font-size: 8px;
    }

    .student-certificate-card-content span {
        font-size: 6px;
    }

    .student-certificate-download {
        min-height: 27px;
        padding: 0 6px;
        font-size: 6px;
    }

    .student-certificate-download i {
        font-size: 7px;
    }

    .student-certificate-download span {
        display: none;
    }

}

/* student-certificate-section-css-end */



















/* student-result-section-css-start */

.student-result-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.student-result-heading {
    width: 100%;
    margin-bottom: 18px;
}

.student-result-heading span {
    display: block;
    margin-bottom: 5px;
    color: #087f8c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.student-result-heading h3 {
    margin: 0;
    color: #071b3b;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.student-result-card {
    width: 100%;
    padding: 22px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e4edf2;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.05);
}

.student-result-card::before {
    content: "";
    width: 180px;
    height: 180px;
    position: absolute;
    top: -120px;
    right: 80px;
    border: 1px solid rgba(8, 127, 140, 0.06);
    border-radius: 50%;
}

.student-result-card::after {
    content: "";
    width: 120px;
    height: 120px;
    position: absolute;
    right: -50px;
    bottom: -70px;
    border: 1px solid rgba(255, 213, 74, 0.12);
    border-radius: 50%;
}

.student-result-card-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.student-result-card-title {
    display: flex;
    align-items: center;
    gap: 13px;
}

.student-result-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
    border-radius: 10px;
    font-size: 17px;
}

.student-result-card-title > div:last-child {
    min-width: 0;
}

.student-result-card-title span {
    display: block;
    margin-bottom: 4px;
    color: #087f8c;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.student-result-card-title h4 {
    margin: 0;
    color: #071b3b;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
}

.student-result-status {
    padding: 7px 11px;
    flex-shrink: 0;
    color: #12a34a;
    background: rgba(18, 163, 74, 0.09);
    border-radius: 20px;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.student-result-test-info {
    margin-bottom: 18px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    position: relative;
    z-index: 1;
    background: #f7fafb;
    border-radius: 10px;
}

.student-result-test-info div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.student-result-test-info span {
    color: #8293a8;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.student-result-test-info strong {
    overflow: hidden;
    color: #071b3b;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.student-result-score {
    margin-bottom: 18px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #071b3b, #0a315f);
    border-radius: 12px;
}

.student-result-score-main {
    min-width: 150px;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.student-result-score-main span {
    color: #9eb2c5;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.student-result-score-main strong {
    color: #ffffff;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
}

.student-result-score-main strong small {
    color: #aebfd0;
    font-size: 14px;
    font-weight: 600;
}

.student-result-score-main em {
    color: #ffd54a;
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
}

.student-result-score-details {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.student-result-score-details div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.student-result-score-details span {
    color: #9eb2c5;
    font-size: 8px;
    font-weight: 600;
}

.student-result-score-details strong {
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
}

.student-result-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.student-result-card-footer > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #12a34a;
    font-size: 9px;
    font-weight: 700;
}

.student-result-card-footer > span i {
    font-size: 10px;
}

.student-view-result-btn {
    min-height: 36px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #071b3b;
    background: #ffd54a;
    border: 1px solid #ffd54a;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.student-view-result-btn:hover {
    color: #ffffff;
    background: #087f8c;
    border-color: #087f8c;
}

/* result-modal */

.student-result-modal {
    width: 100%;
    height: 100%;
    padding: 25px;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.student-result-modal.active {
    display: flex;
}

.student-result-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 27, 59, 0.72);
    backdrop-filter: blur(4px);
}

.student-result-modal-box {
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    padding: 24px;
    overflow-y: auto;
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 70px rgba(7, 27, 59, 0.25);
    animation: studentResultModalShow 0.25s ease;
}

@keyframes studentResultModalShow {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.student-result-modal-header {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.student-result-modal-heading {
    display: flex;
    align-items: center;
    gap: 12px;
}

.student-result-modal-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
    border-radius: 10px;
    font-size: 16px;
}

.student-result-modal-heading span {
    display: block;
    margin-bottom: 3px;
    color: #087f8c;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.student-result-modal-heading h3 {
    margin: 0;
    color: #071b3b;
    font-size: 16px;
    font-weight: 800;
}

.student-result-modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #687b8f;
    background: #f3f6f8;
    border: 0;
    border-radius: 7px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

.student-result-modal-close:hover {
    color: #ffffff;
    background: #e05252;
}

.student-result-modal-status {
    margin-bottom: 18px;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #12a34a;
    background: rgba(18, 163, 74, 0.08);
    border-radius: 7px;
    font-size: 9px;
    font-weight: 700;
}

.student-result-modal-section {
    margin-bottom: 18px;
}

.student-result-modal-section-title {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #087f8c;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.student-result-modal-section-title i {
    font-size: 11px;
}

.student-result-modal-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    overflow: hidden;
    background: #e4edf2;
    border: 1px solid #e4edf2;
    border-radius: 10px;
}

.student-result-modal-info-grid div {
    min-width: 0;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #ffffff;
}

.student-result-modal-info-grid span {
    color: #8293a8;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.student-result-modal-info-grid strong {
    overflow: hidden;
    color: #071b3b;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.student-result-modal-score {
    margin-bottom: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(135deg, #071b3b, #0a315f);
    border-radius: 11px;
}

.student-result-modal-score-main {
    min-width: 145px;
    padding-right: 25px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.student-result-modal-score-main span {
    color: #9eb2c5;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.student-result-modal-score-main strong {
    color: #ffffff;
    font-size: 29px;
    font-weight: 800;
}

.student-result-modal-score-main strong small {
    color: #aebfd0;
    font-size: 12px;
}

.student-result-modal-score-main em {
    color: #ffd54a;
    font-size: 8px;
    font-style: normal;
    font-weight: 700;
}

.student-result-modal-score-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.student-result-modal-score-grid div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.student-result-modal-score-grid span {
    color: #9eb2c5;
    font-size: 7px;
    font-weight: 600;
}

.student-result-modal-score-grid strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.student-result-performance {
    padding: 14px;
    background: #f7fafb;
    border: 1px solid #e4edf2;
    border-radius: 10px;
}

.student-result-performance-row {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.student-result-performance-row span {
    color: #687b8f;
    font-size: 9px;
    font-weight: 700;
}

.student-result-performance-row strong {
    color: #071b3b;
    font-size: 9px;
    font-weight: 800;
}

.student-result-performance-bar {
    width: 100%;
    height: 6px;
    margin-bottom: 11px;
    overflow: hidden;
    background: #e1e9ed;
    border-radius: 20px;
}

.student-result-performance-bar span {
    height: 100%;
    display: block;
    background: #087f8c;
    border-radius: 20px;
}

.student-result-performance-bar.student-performance-green span {
    background: #12bd58;
}

.student-result-performance-bar.student-performance-red span {
    background: #e05252;
}

.student-result-modal-message {
    margin-bottom: 18px;
    padding: 13px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: rgba(255, 213, 74, 0.11);
    border: 1px solid rgba(255, 213, 74, 0.25);
    border-radius: 9px;
}

.student-result-modal-message-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: #ffd54a;
    border-radius: 8px;
    font-size: 14px;
}

.student-result-modal-message > div:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.student-result-modal-message strong {
    color: #071b3b;
    font-size: 10px;
    font-weight: 800;
}

.student-result-modal-message span {
    color: #687b8f;
    font-size: 8px;
    line-height: 1.5;
    font-weight: 600;
}

.student-result-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
}

.student-result-download-btn,
.student-result-close-btn {
    min-height: 35px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 7px;
    font-size: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.student-result-download-btn {
    color: #071b3b;
    background: #ffd54a;
    border: 1px solid #ffd54a;
}

.student-result-download-btn:hover {
    color: #ffffff;
    background: #087f8c;
    border-color: #087f8c;
}

.student-result-close-btn {
    color: #687b8f;
    background: #ffffff;
    border: 1px solid #dce5ea;
}

.student-result-close-btn:hover {
    color: #ffffff;
    background: #071b3b;
    border-color: #071b3b;
}

/* tablet */

@media (max-width: 991px) {

    .student-result-card {
        padding: 20px;
    }

    .student-result-score {
        gap: 20px;
    }

    .student-result-score-main {
        padding-right: 20px;
    }

}

/* mobile */

@media (max-width: 767px) {

    .student-result-heading {
        margin-bottom: 14px;
    }

    .student-result-heading span {
        font-size: 9px;
    }

    .student-result-heading h3 {
        font-size: 17px;
    }

    .student-result-card {
        padding: 16px;
        border-radius: 12px;
    }

    .student-result-card-header {
        margin-bottom: 14px;
    }

    .student-result-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .student-result-card-title {
        gap: 10px;
    }

    .student-result-card-title span {
        font-size: 7px;
    }

    .student-result-card-title h4 {
        font-size: 12px;
    }

    .student-result-status {
        padding: 6px 9px;
        font-size: 7px;
    }

    .student-result-test-info {
        margin-bottom: 12px;
        padding: 11px;
        gap: 10px;
    }

    .student-result-test-info span {
        font-size: 7px;
    }

    .student-result-test-info strong {
        font-size: 9px;
    }

    .student-result-score {
        margin-bottom: 13px;
        padding: 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .student-result-score-main {
        min-width: 0;
        padding: 0 0 12px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .student-result-score-main span {
        font-size: 7px;
    }

    .student-result-score-main strong {
        font-size: 26px;
    }

    .student-result-score-main strong small {
        font-size: 11px;
    }

    .student-result-score-main em {
        font-size: 8px;
    }

    .student-result-score-details {
        gap: 8px;
    }

    .student-result-score-details span {
        font-size: 7px;
    }

    .student-result-score-details strong {
        font-size: 14px;
    }

    .student-result-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .student-result-card-footer > span {
        font-size: 8px;
    }

    .student-view-result-btn {
        width: 100%;
        min-height: 34px;
        font-size: 8px;
    }

    .student-result-modal {
        padding: 12px;
    }

    .student-result-modal-box {
        max-height: 94vh;
        padding: 16px;
        border-radius: 12px;
    }

    .student-result-modal-info-grid {
        grid-template-columns: 1fr;
    }

    .student-result-modal-score {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .student-result-modal-score-main {
        min-width: 0;
        padding: 0 0 12px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .student-result-modal-score-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .student-result-modal-footer {
        flex-direction: column;
    }

    .student-result-download-btn,
    .student-result-close-btn {
        width: 100%;
    }

}

/* small-mobile */

@media (max-width: 480px) {

    .student-result-heading span {
        font-size: 8px;
    }

    .student-result-heading h3 {
        font-size: 15px;
    }

    .student-result-card {
        padding: 12px;
        border-radius: 10px;
    }

    .student-result-card-header {
        gap: 8px;
    }

    .student-result-icon {
        width: 34px;
        height: 34px;
        font-size: 11px;
        border-radius: 8px;
    }

    .student-result-card-title {
        gap: 8px;
    }

    .student-result-card-title span {
        font-size: 6px;
    }

    .student-result-card-title h4 {
        font-size: 10px;
    }

    .student-result-status {
        padding: 5px 7px;
        font-size: 6px;
    }

    .student-result-test-info {
        padding: 9px;
    }

    .student-result-test-info span {
        font-size: 6px;
    }

    .student-result-test-info strong {
        font-size: 8px;
    }

    .student-result-score {
        padding: 11px;
    }

    .student-result-score-main span {
        font-size: 6px;
    }

    .student-result-score-main strong {
        font-size: 23px;
    }

    .student-result-score-main strong small {
        font-size: 9px;
    }

    .student-result-score-main em {
        font-size: 7px;
    }

    .student-result-score-details span {
        font-size: 6px;
    }

    .student-result-score-details strong {
        font-size: 12px;
    }

    .student-result-card-footer > span {
        font-size: 7px;
    }

    .student-view-result-btn {
        min-height: 31px;
        font-size: 7px;
    }

    .student-result-modal {
        padding: 8px;
    }

    .student-result-modal-box {
        padding: 12px;
    }

    .student-result-modal-icon {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .student-result-modal-heading {
        gap: 8px;
    }

    .student-result-modal-heading span {
        font-size: 6px;
    }

    .student-result-modal-heading h3 {
        font-size: 11px;
    }

    .student-result-modal-close {
        width: 27px;
        height: 27px;
        font-size: 10px;
    }

    .student-result-modal-status {
        font-size: 7px;
    }

    .student-result-modal-section-title {
        font-size: 7px;
    }

    .student-result-modal-info-grid div {
        padding: 9px;
    }

    .student-result-modal-info-grid span {
        font-size: 6px;
    }

    .student-result-modal-info-grid strong {
        font-size: 8px;
    }

    .student-result-modal-score {
        padding: 11px;
    }

    .student-result-modal-score-main span {
        font-size: 6px;
    }

    .student-result-modal-score-main strong {
        font-size: 22px;
    }

    .student-result-modal-score-grid span {
        font-size: 6px;
    }

    .student-result-modal-score-grid strong {
        font-size: 11px;
    }

    .student-result-performance {
        padding: 10px;
    }

    .student-result-performance-row span,
    .student-result-performance-row strong {
        font-size: 7px;
    }

    .student-result-modal-message {
        padding: 9px;
    }

    .student-result-modal-message-icon {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .student-result-modal-message strong {
        font-size: 8px;
    }

    .student-result-modal-message span {
        font-size: 7px;
    }

    .student-result-download-btn,
    .student-result-close-btn {
        min-height: 31px;
        font-size: 7px;
    }

}

/* extra-small-mobile */

@media (max-width: 360px) {

    .student-result-card-title h4 {
        font-size: 9px;
    }

    .student-result-status {
        padding: 4px 6px;
        font-size: 5px;
    }

    .student-result-score-details {
        gap: 5px;
    }

    .student-result-modal-box {
        padding: 10px;
    }

    .student-result-modal-score-grid {
        gap: 7px;
    }

}

/* student-result-section-css-end */















/* student-examination-section-css-start */

.student-examination-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* student-examination-heading-css-start */

.student-examination-heading {
    width: 100%;
    margin-bottom: 18px;
}

.student-examination-heading span {
    display: block;
    margin-bottom: 5px;
    color: #087f8c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.student-examination-heading h3 {
    margin: 0;
    color: #071b3b;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
}

/* student-examination-heading-css-end */

/* student-examination-card-css-start */

.student-examination-card {
    width: 100%;
    padding: 22px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e4edf2;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.05);
}

.student-examination-card::before {
    content: "";
    width: 190px;
    height: 190px;
    position: absolute;
    top: -120px;
    right: 80px;
    border: 1px solid rgba(8, 127, 140, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.student-examination-card::after {
    content: "";
    width: 130px;
    height: 130px;
    position: absolute;
    right: -60px;
    bottom: -75px;
    border: 1px solid rgba(255, 213, 74, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

/* student-examination-card-css-end */

/* student-exam-countdown-css-start */

.student-exam-countdown {
    margin-bottom: 22px;
    padding: 22px;
    position: relative;
    z-index: 1;
    text-align: center;
    background: linear-gradient(135deg, #071b3b 0%, #0a315f 100%);
    border-radius: 13px;
    overflow: hidden;
}

.student-exam-countdown-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd54a;
    background: rgba(255, 213, 74, 0.12);
    border-radius: 10px;
    font-size: 18px;
}

.student-exam-countdown-status {
    margin-bottom: 6px;
    color: #ffd54a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.student-exam-countdown-message {
    margin: 0 0 17px;
    color: #aebfd0;
    font-size: 14px;
    font-weight: 600;
}

.student-exam-clock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.student-clock-unit {
    min-width: 75px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
}

.student-clock-unit span {
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}

.student-clock-unit small {
    margin-top: 6px;
    color: #9eb2c5;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.student-clock-separator {
    color: #ffd54a;
    font-size: 24px;
    font-weight: 800;
}

.student-exam-countdown-period {
    margin-top: 15px;
    color: #9eb2c5;
    font-size: 12px;
    font-weight: 600;
}

/* student-exam-countdown-css-end */

/* student-exam-login-css-start */

.student-exam-login {
    margin-bottom: 22px;
    padding: 18px;
    position: relative;
    z-index: 1;
    background: #f7fafb;
    border: 1px solid #e4edf2;
    border-radius: 11px;
}

.student-exam-login-header {
    margin-bottom: 17px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.student-exam-login-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
    border-radius: 9px;
    font-size: 17px;
}

.student-exam-login-header span {
    display: block;
    margin-bottom: 4px;
    color: #087f8c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.student-exam-login-header h4 {
    margin: 0 0 4px;
    color: #071b3b;
    font-size: 18px;
    font-weight: 800;
}

.student-exam-login-header p {
    margin: 0;
    color: #8293a8;
    font-size: 14px;
    font-weight: 600;
}

.student-exam-login-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.student-exam-login-item {
    padding: 15px;
    background: #ffffff;
    border: 1px solid #e4edf2;
    border-radius: 9px;
}

.student-exam-login-item label {
    display: block;
    margin-bottom: 7px;
    color: #8293a8;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.student-exam-login-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.student-exam-login-value strong {
    overflow: hidden;
    color: #071b3b;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.student-copy-login-btn {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.08);
    border: 0;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

.student-copy-login-btn:hover {
    color: #ffffff;
    background: #087f8c;
}

.student-exam-login-note {
    margin-top: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #687b8f;
    background: rgba(255, 213, 74, 0.10);
    border: 1px solid rgba(255, 213, 74, 0.25);
    border-radius: 7px;
}

.student-exam-login-note > i {
    margin-top: 3px;
    flex-shrink: 0;
    color: #087f8c;
    font-size: 13px;
}

.student-exam-login-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
}

.student-exam-login-note strong {
    color: #071b3b;
    font-weight: 800;
}

/* student-exam-login-css-end */

/* student-exam-details-css-start */

.student-exam-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    position: relative;
    z-index: 1;
}

.student-exam-detail-item {
    min-width: 0;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e4edf2;
    border-radius: 9px;
    transition: 0.3s ease;
}

.student-exam-detail-item:hover {
    border-color: rgba(8, 127, 140, 0.25);
    box-shadow: 0 5px 15px rgba(7, 27, 59, 0.04);
}

.student-exam-detail-item label {
    display: block;
    margin-bottom: 7px;
    color: #8293a8;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.student-exam-detail-item p {
    margin: 0;
    overflow: hidden;
    color: #071b3b;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.student-exam-detail-item p strong {
    color: #087f8c;
    font-size: 18px;
}

.student-exam-status {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    color: #12a34a;
    background: rgba(18, 163, 74, 0.09);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

/* student-exam-details-css-end */

/* student-no-exam-css-start */

.student-no-exam {
    padding: 50px 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.student-no-exam-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8293a8;
    background: #f3f6f8;
    border-radius: 12px;
    font-size: 21px;
}

.student-no-exam h4 {
    margin: 0 0 6px;
    color: #071b3b;
    font-size: 18px;
    font-weight: 800;
}

.student-no-exam p {
    margin: 0;
    color: #8293a8;
    font-size: 14px;
    font-weight: 600;
}

/* student-no-exam-css-end */

/* student-exam-instructions-css-start */

.student-exam-instructions {
    margin-top: 18px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e4edf2;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.04);
}

.student-exam-instructions-header {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.student-exam-instructions-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.09);
    border-radius: 8px;
    font-size: 15px;
}

.student-exam-instructions-header span {
    display: block;
    margin-bottom: 3px;
    color: #087f8c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.student-exam-instructions-header h4 {
    margin: 0;
    color: #071b3b;
    font-size: 18px;
    font-weight: 800;
}

.student-exam-instructions ul {
    margin: 0;
    padding-left: 20px;
}

.student-exam-instructions li {
    margin-bottom: 8px;
    padding-left: 3px;
    color: #687b8f;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
}

.student-exam-instructions li:last-child {
    margin-bottom: 0;
}

/* student-exam-instructions-css-end */

/* student-exam-start-button-css-start */

.student-exam-start-wrap {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.student-start-exam-btn {
    min-height: 46px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #071b3b;
    background: #ffd54a;
    border: 1px solid #ffd54a;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s ease;
}

.student-start-exam-btn:hover {
    color: #ffffff;
    background: #087f8c;
    border-color: #087f8c;
}

.student-start-exam-btn i {
    font-size: 14px;
}

/* student-exam-start-button-css-end */

/* student-examination-tablet-css-start */

@media (max-width: 991px) {
    .student-examination-card {
        padding: 20px;
    }

    .student-exam-clock {
        gap: 9px;
    }

    .student-clock-unit {
        min-width: 65px;
    }
}

/* student-examination-tablet-css-end */

/* student-examination-mobile-css-start */

@media (max-width: 767px) {
    .student-examination-heading {
        margin-bottom: 14px;
    }

    .student-examination-heading span {
        font-size: 10px;
    }

    .student-examination-heading h3 {
        font-size: 21px;
    }

    .student-examination-card {
        padding: 16px;
        border-radius: 12px;
    }

    .student-exam-countdown {
        padding: 17px 12px;
        border-radius: 11px;
    }

    .student-exam-countdown-icon {
        width: 43px;
        height: 43px;
        font-size: 16px;
    }

    .student-exam-countdown-status {
        font-size: 10px;
    }

    .student-exam-countdown-message {
        font-size: 12px;
    }

    .student-exam-clock {
        gap: 5px;
    }

    .student-clock-unit {
        min-width: 52px;
        padding: 9px 5px;
    }

    .student-clock-unit span {
        font-size: 20px;
    }

    .student-clock-unit small {
        font-size: 8px;
    }

    .student-clock-separator {
        font-size: 17px;
    }

    .student-exam-countdown-period {
        font-size: 10px;
        line-height: 1.5;
    }

    .student-exam-login {
        padding: 14px;
    }

    .student-exam-login-header {
        gap: 9px;
    }

    .student-exam-login-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .student-exam-login-header span {
        font-size: 9px;
    }

    .student-exam-login-header h4 {
        font-size: 15px;
    }

    .student-exam-login-header p {
        font-size: 11px;
    }

    .student-exam-login-grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .student-exam-login-item {
        padding: 12px;
    }

    .student-exam-login-item label {
        font-size: 9px;
    }

    .student-exam-login-value strong {
        font-size: 12px;
    }

    .student-exam-login-note p {
        font-size: 11px;
    }

    .student-exam-details {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .student-exam-detail-item {
        padding: 12px;
    }

    .student-exam-detail-item label {
        font-size: 9px;
    }

    .student-exam-detail-item p {
        font-size: 12px;
    }

    .student-exam-detail-item p strong {
        font-size: 16px;
    }

    .student-exam-status {
        font-size: 9px;
    }

    .student-exam-instructions {
        padding: 14px;
    }

    .student-exam-instructions-header h4 {
        font-size: 15px;
    }

    .student-exam-instructions li {
        font-size: 11px;
    }

    .student-exam-start-wrap {
        margin-top: 14px;
    }

    .student-start-exam-btn {
        width: 100%;
        min-height: 42px;
        font-size: 12px;
    }
}

/* student-examination-mobile-css-end */

/* student-examination-small-mobile-css-start */

@media (max-width: 480px) {
    .student-examination-heading span {
        font-size: 9px;
    }

    .student-examination-heading h3 {
        font-size: 19px;
    }

    .student-examination-card {
        padding: 12px;
        border-radius: 10px;
    }

    .student-exam-countdown {
        padding: 14px 7px;
    }

    .student-clock-unit {
        min-width: 44px;
        padding: 8px 3px;
    }

    .student-clock-unit span {
        font-size: 17px;
    }

    .student-clock-unit small {
        font-size: 7px;
    }

    .student-clock-separator {
        font-size: 14px;
    }

    .student-exam-countdown-status {
        font-size: 9px;
    }

    .student-exam-countdown-message {
        font-size: 10px;
    }

    .student-exam-login {
        padding: 11px;
    }

    .student-exam-login-header h4 {
        font-size: 13px;
    }

    .student-exam-login-header p {
        font-size: 10px;
    }

    .student-exam-login-item label {
        font-size: 8px;
    }

    .student-exam-login-value strong {
        font-size: 11px;
    }

    .student-copy-login-btn {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }

    .student-exam-login-note {
        padding: 9px;
    }

    .student-exam-login-note p {
        font-size: 9px;
    }

    .student-exam-detail-item {
        padding: 10px;
    }

    .student-exam-detail-item label {
        font-size: 8px;
    }

    .student-exam-detail-item p {
        font-size: 11px;
    }

    .student-exam-detail-item p strong {
        font-size: 14px;
    }

    .student-exam-status {
        padding: 6px 9px;
        font-size: 8px;
    }

    .student-exam-instructions {
        padding: 11px;
    }

    .student-exam-instructions-icon {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .student-exam-instructions-header span {
        font-size: 8px;
    }

    .student-exam-instructions-header h4 {
        font-size: 13px;
    }

    .student-exam-instructions li {
        font-size: 9px;
    }

    .student-start-exam-btn {
        min-height: 38px;
        font-size: 10px;
    }
}

/* student-examination-small-mobile-css-end */

/* student-examination-extra-small-mobile-css-start */

@media (max-width: 360px) {
    .student-exam-clock {
        gap: 3px;
    }

    .student-clock-unit {
        min-width: 38px;
    }

    .student-clock-unit span {
        font-size: 15px;
    }

    .student-clock-unit small {
        font-size: 6px;
    }

    .student-clock-separator {
        font-size: 12px;
    }

    .student-examination-card {
        padding: 10px;
    }

    .student-exam-countdown-message {
        font-size: 9px;
    }

    .student-exam-login-note p {
        font-size: 8px;
    }

    .student-exam-detail-item p {
        font-size: 10px;
    }

    .student-exam-instructions li {
        font-size: 8px;
    }
}

/* student-examination-extra-small-mobile-css-end */

/* student-examination-section-css-end */























/* student-exam-paper-section-css-start */

.student-main-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* exam-paper-section-css-start */

.exam-paper-section {
    width: 100%;
}

/* exam-paper-header-css-start */

.exam-paper-header {
    width: 100%;
    margin-bottom: 18px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #e4edf2;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.04);
}

/* exam-header-left-css-start */

.exam-header-left {
    min-width: 0;
}

.exam-header-left h3 {
    margin: 0;
    color: #071b3b;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 800;
}

.exam-header-left h3:first-child {
    margin-bottom: 5px;
}

.exam-header-left h3 i {
    margin-right: 8px;
    color: #087f8c;
    font-size: 17px;
}

.exam-header-left h3 span {
    color: #087f8c;
}

/* exam-header-left-css-end */

/* exam-header-right-css-start */

.exam-header-right {
    flex-shrink: 0;
}

/* exam-header-right-css-end */

/* exam-timer-css-start */

.exam-timer {
    min-width: 155px;
    padding: 11px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #ffffff;
    background: #071b3b;
    border-radius: 9px;
}

.exam-timer i {
    color: #ffd54a;
    font-size: 14px;
}

.exam-timer span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

/* exam-timer-css-end */

/* exam-paper-wrapper-css-start */

.exam-paper-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 235px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

/* exam-paper-wrapper-css-end */

/* question-palette-css-start */

.question-palette {
    width: 100%;
    padding: 18px;
    position: sticky;
    top: 20px;
    background: #ffffff;
    border: 1px solid #e4edf2;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.04);
}

/* question-palette-css-end */

/* palette-header-css-start */

.palette-header {
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8eef2;
}

.palette-header h4 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #071b3b;
    font-size: 14px;
    font-weight: 800;
}

.palette-header h4 i {
    color: #087f8c;
    font-size: 14px;
}

/* palette-header-css-end */

/* question-number-grid-css-start */

.question-number-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

/* question-number-grid-css-end */

/* question-button-css-start */

.q-btn {
    width: 100%;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #071b3b;
    background: #f5f8fa;
    border: 1px solid #dfe8ed;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.q-btn:hover {
    color: #087f8c;
    background: rgba(8, 127, 140, 0.08);
    border-color: rgba(8, 127, 140, 0.25);
}

.q-btn.active {
    color: #071b3b;
    background: #ffd54a;
    border-color: #ffd54a;
}

/* question-button-css-end */

/* answered-question-button-css-start */

.q-btn.answered {
    color: #ffffff;
    background: #087f8c;
    border-color: #087f8c;
}

.q-btn.answered:hover {
    color: #ffffff;
    background: #071b3b;
    border-color: #071b3b;
}

/* answered-question-button-css-end */

/* question-area-css-start */

.question-area {
    width: 100%;
    min-width: 0;
}

/* question-area-css-end */

/* question-card-css-start */

.question-card {
    width: 100%;
    min-height: 410px;
    padding: 25px;
    position: relative;
    background: #ffffff;
    border: 1px solid #e4edf2;
    border-radius: 13px;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.05);
}

/* question-card-css-end */

/* question-top-css-start */

.question-top {
    width: 100%;
    margin-bottom: 16px;
}

.question-top span {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    color: #087f8c;
    background: rgba(8, 127, 140, 0.08);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

/* question-top-css-end */

/* question-title-css-start */

.question-title {
    max-width: 900px;
    margin: 0 0 25px;
    color: #071b3b;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 800;
}

/* question-title-css-end */

/* question-options-css-start */

.question-options {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

/* question-options-css-end */

/* option-box-css-start */

.option-box {
    width: 100%;
    min-height: 58px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    color: #071b3b;
    background: #ffffff;
    border: 1px solid #dfe8ed;
    border-radius: 9px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    transition: 0.3s ease;
}

.option-box input {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    accent-color: #087f8c;
    cursor: pointer;
}

.option-box:hover {
    background: #f7fafb;
    border-color: rgba(8, 127, 140, 0.35);
    box-shadow: 0 5px 15px rgba(7, 27, 59, 0.04);
}

.option-box:has(input:checked) {
    color: #071b3b;
    background: rgba(8, 127, 140, 0.06);
    border-color: #087f8c;
    box-shadow: 0 5px 15px rgba(8, 127, 140, 0.08);
}

.option-box span {
    flex: 1;
}

/* option-box-css-end */

/* exam-navigation-css-start */

.exam-navigation {
    width: 100%;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* exam-navigation-css-end */

/* exam-button-css-start */

.exam-btn {
    min-height: 43px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.exam-btn i {
    font-size: 12px;
}

/* exam-button-css-end */

/* exam-previous-button-css-start */

.exam-prev {
    color: #071b3b;
    background: #ffffff;
    border: 1px solid #dfe8ed;
}

.exam-prev:hover {
    color: #ffffff;
    background: #071b3b;
    border-color: #071b3b;
}

/* exam-previous-button-css-end */

/* exam-next-button-css-start */

.exam-next {
    margin-left: auto;
    color: #ffffff;
    background: #087f8c;
    border: 1px solid #087f8c;
}

.exam-next:hover {
    color: #ffffff;
    background: #071b3b;
    border-color: #071b3b;
}

/* exam-next-button-css-end */

/* exam-submit-button-css-start */

.exam-submit {
    color: #071b3b;
    background: #ffd54a;
    border: 1px solid #ffd54a;
}

.exam-submit:hover {
    color: #ffffff;
    background: #087f8c;
    border-color: #087f8c;
}

/* exam-submit-button-css-end */

/* exam-disabled-button-css-start */

.exam-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* exam-disabled-button-css-end */

/* student-exam-paper-tablet-css-start */

@media (max-width: 991px) {
    .exam-paper-header {
        padding: 16px;
    }

    .exam-header-left h3 {
        font-size: 16px;
    }

    .exam-paper-wrapper {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 14px;
    }

    .question-palette {
        padding: 14px;
    }

    .question-number-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .question-card {
        padding: 20px;
        min-height: 390px;
    }

    .question-title {
        font-size: 17px;
    }

    .question-options {
        gap: 10px;
    }

    .option-box {
        padding: 12px;
        font-size: 13px;
    }
}

/* student-exam-paper-tablet-css-end */

/* student-exam-paper-mobile-css-start */

@media (max-width: 767px) {
    .exam-paper-header {
        padding: 14px;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .exam-header-left {
        width: 100%;
    }

    .exam-header-left h3 {
        font-size: 15px;
    }

    .exam-header-left h3 i {
        font-size: 14px;
    }

    .exam-header-right {
        width: 100%;
    }

    .exam-timer {
        width: 100%;
        min-width: 0;
        padding: 10px;
    }

    .exam-paper-wrapper {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .question-palette {
        width: 100%;
        position: static;
        padding: 13px;
    }

    .palette-header {
        margin-bottom: 11px;
        padding-bottom: 10px;
    }

    .palette-header h4 {
        font-size: 13px;
    }

    .question-number-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 6px;
    }

    .q-btn {
        height: 35px;
        font-size: 12px;
    }

    .question-card {
        min-height: auto;
        padding: 17px;
        border-radius: 11px;
    }

    .question-top {
        margin-bottom: 12px;
    }

    .question-top span {
        padding: 5px 9px;
        font-size: 10px;
    }

    .question-title {
        margin-bottom: 18px;
        font-size: 15px;
        line-height: 1.5;
    }

    .question-options {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .option-box {
        min-height: 48px;
        padding: 11px 12px;
        gap: 9px;
        font-size: 13px;
    }

    .option-box input {
        width: 15px;
        height: 15px;
    }

    .exam-navigation {
        flex-wrap: wrap;
        gap: 8px;
    }

    .exam-btn {
        min-height: 40px;
        padding: 0 14px;
        font-size: 12px;
    }

    .exam-prev {
        order: 1;
    }

    .exam-next {
        order: 2;
    }

    .exam-submit {
        width: 100%;
        order: 3;
    }
}

/* student-exam-paper-mobile-css-end */

/* student-exam-paper-small-mobile-css-start */

@media (max-width: 480px) {
    .exam-paper-header {
        margin-bottom: 12px;
        padding: 12px;
        border-radius: 10px;
    }

    .exam-header-left h3 {
        font-size: 13px;
    }

    .exam-header-left h3:first-child {
        margin-bottom: 4px;
    }

    .exam-header-left h3 i {
        margin-right: 5px;
        font-size: 12px;
    }

    .exam-timer {
        padding: 9px;
    }

    .exam-timer i {
        font-size: 12px;
    }

    .exam-timer span {
        font-size: 12px;
    }

    .question-palette {
        padding: 11px;
        border-radius: 10px;
    }

    .palette-header h4 {
        font-size: 12px;
    }

    .question-number-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 5px;
    }

    .q-btn {
        height: 32px;
        font-size: 11px;
        border-radius: 6px;
    }

    .question-card {
        padding: 13px;
        border-radius: 10px;
    }

    .question-top span {
        font-size: 9px;
    }

    .question-title {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.5;
    }

    .option-box {
        min-height: 44px;
        padding: 9px 10px;
        font-size: 12px;
        border-radius: 7px;
    }

    .option-box input {
        width: 14px;
        height: 14px;
    }

    .exam-navigation {
        margin-top: 12px;
    }

    .exam-btn {
        min-height: 38px;
        padding: 0 11px;
        font-size: 11px;
    }
}

/* student-exam-paper-small-mobile-css-end */

/* student-exam-paper-extra-small-mobile-css-start */

@media (max-width: 360px) {
    .exam-header-left h3 {
        font-size: 12px;
    }

    .exam-timer span {
        font-size: 11px;
    }

    .question-number-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .q-btn {
        height: 30px;
        font-size: 10px;
    }

    .question-card {
        padding: 11px;
    }

    .question-title {
        font-size: 13px;
    }

    .option-box {
        font-size: 11px;
    }

    .exam-btn {
        font-size: 10px;
    }
}

/* student-exam-paper-extra-small-mobile-css-end */

/* exam-paper-section-css-end */

/* student-exam-paper-section-css-end */































/* student-floating-buttons-css-start */

.student-floating-buttons {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.student-whatsapp-btn,
.student-scroll-top-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.student-whatsapp-btn {
    color: #ffffff;
    background: #25d366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.30);
    font-size: 23px;
}

.student-whatsapp-btn:hover {
    color: #ffffff;
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.40);
}

.student-scroll-top-btn {
    color: #071b3b;
    background: #ffd54a;
    box-shadow: 0 8px 25px rgba(7, 27, 59, 0.18);
    font-size: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
}

.student-scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.student-scroll-top-btn:hover {
    color: #ffffff;
    background: #087f8c;
    transform: translateY(-3px);
}


/* mobile */

@media (max-width: 767px) {

    .student-floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 8px;
    }

    .student-whatsapp-btn,
    .student-scroll-top-btn {
        width: 42px;
        height: 42px;
    }

    .student-whatsapp-btn {
        font-size: 20px;
    }

    .student-scroll-top-btn {
        font-size: 13px;
    }

}


@media (max-width: 480px) {

    .student-floating-buttons {
        right: 12px;
        bottom: 12px;
    }

    .student-whatsapp-btn,
    .student-scroll-top-btn {
        width: 40px;
        height: 40px;
    }

    .student-whatsapp-btn {
        font-size: 19px;
    }

}


/* student-floating-buttons-css-end */
