:root {
    --blue: #245297;
    --dark-blue: #14376d;
    --green: #008f4c;
    --dark-green: #006f3b;
    --gold: #c4ac72;
    --orange: #df8a2d;
    --white: #ffffff;
    --light: #f5f7fb;
    --text: #1f2937;
    --muted: #667085;
    --border: #dfe5ee;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 999;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(20, 55, 109, 0.12);
}

/* Top bar */

.top-bar {
    color: var(--white);
    background: linear-gradient(90deg, var(--dark-blue), var(--blue));
}

.top-bar-inner {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.government-title,
.top-contacts,
.top-contacts a {
    display: flex;
    align-items: center;
}

.government-title {
    gap: 9px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.government-title i {
    display: flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    background: var(--gold);
    border-radius: 50%;
}

.top-contacts {
    gap: 20px;
}

.top-contacts a {
    gap: 7px;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
}

.top-contacts a:hover {
    color: #f2d99e;
}

/* Identity */

.identity-section {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.identity-section::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    content: "";
    opacity: 0.08;
    background: linear-gradient(135deg, var(--blue), var(--green));
    clip-path: polygon(45% 0, 100% 0, 100% 100%, 0 100%);
}

.identity-layout {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 145px;
    grid-template-columns: 125px 1fr auto;
    align-items: center;
    gap: 24px;
}

.logo-link {
    display: block;
}

.institute-logo {
    display: block;
    width: 118px;
    height: 118px;
    object-fit: contain;
}

.logo-fallback {
    display: none;
    width: 105px;
    height: 105px;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--green));
    border: 5px solid var(--gold);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
}

.department-label {
    margin: 0 0 5px;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.identity-text h1 {
    margin: 0;
    color: var(--dark-blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 3vw, 39px);
    font-weight: 800;
    line-height: 1.08;
    text-transform: uppercase;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.contact-row span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.contact-row i {
    color: var(--orange);
}

.motto {
    display: inline-block;
    margin: 10px 0 0;
    padding: 5px 14px;
    color: var(--dark-blue);
    background: rgba(196, 172, 114, 0.2);
    border-left: 4px solid var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.identity-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.portal-btn {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 14px;
    color: var(--dark-blue);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 9px;
    box-shadow: 0 6px 16px rgba(20, 55, 109, 0.1);
    font-size: 13px;
    font-weight: 800;
}

.portal-btn i {
    color: var(--blue);
    font-size: 25px;
}

.portal-btn span {
    display: flex;
    flex-direction: column;
}

.portal-btn small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 500;
}

.portal-btn:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}

.apply-btn {
    display: flex;
    min-height: 46px;
    align-items: center;
    gap: 9px;
    padding: 0 20px;
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--dark-green));
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(0, 143, 76, 0.25);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.apply-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */

.main-navigation {
    background: linear-gradient(90deg, var(--dark-blue), var(--blue));
    border-bottom: 4px solid var(--green);
}

.nav-container {
    position: relative;
}

.navigation-menu {
    display: flex;
    align-items: stretch;
}

.nav-link,
.dropdown-toggle {
    display: flex;
    min-height: 59px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    color: rgba(255, 255, 255, 0.96);
    background: transparent;
    border: 0;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}

.nav-link:hover,
.dropdown-toggle:hover,
.dropdown.open .dropdown-toggle,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.nav-link.active {
    box-shadow: inset 0 -4px 0 var(--gold);
}

.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    display: block;
    width: 330px;
    padding: 10px;
    visibility: hidden;
    opacity: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 4px solid var(--green);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 22px 50px rgba(20, 55, 109, 0.22);
    transform: translateY(10px);
    transition: 0.2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-title {
    padding: 8px 10px 11px;
    color: var(--blue);
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px;
    color: var(--text);
    border-radius: 8px;
}

.dropdown-menu a:hover {
    color: var(--blue);
    background: #f1f5fb;
    transform: translateX(3px);
}

.dropdown-menu > a > i {
    display: flex;
    width: 39px;
    height: 39px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background: rgba(36, 82, 151, 0.1);
    border-radius: 8px;
    font-size: 17px;
}

.dropdown-menu a:nth-child(odd) > i {
    color: var(--green);
    background: rgba(0, 143, 76, 0.1);
}

.dropdown-menu a span {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 800;
}

.dropdown-menu small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
}

.mobile-title,
.menu-toggle,
.mobile-apply {
    display: none;
}

/* Notice */

.notice-bar {
    background: #f8f3e7;
    border-bottom: 1px solid #e7dbc0;
}

.notice-inner {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 16px;
}

.notice-inner strong {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    color: var(--white);
    background: var(--orange);
    font-size: 12px;
    text-transform: uppercase;
}

.notice-inner span {
    flex: 1;
    color: #515b6b;
    font-size: 13px;
    font-weight: 600;
}

.notice-inner a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

/* Mobile */

@media (max-width: 1080px) {
    .identity-layout {
        grid-template-columns: 105px 1fr;
    }

    .institute-logo {
        width: 100px;
        height: 100px;
    }

    .identity-actions {
        display: none;
    }

    .nav-link,
    .dropdown-toggle {
        padding-right: 12px;
        padding-left: 12px;
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .government-title {
        display: none;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .identity-layout {
        min-height: 110px;
        grid-template-columns: 85px 1fr;
        gap: 15px;
    }

    .institute-logo,
    .logo-fallback {
        width: 80px;
        height: 80px;
    }

    .identity-text h1 {
        font-size: 23px;
    }

    .contact-row {
        display: none;
    }

    .nav-container {
        display: flex;
        min-height: 58px;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-title {
        display: block;
        color: var(--white);
        font-size: 22px;
        font-weight: 900;
        letter-spacing: 2px;
    }

    .menu-toggle {
        display: flex;
        width: 43px;
        height: 43px;
        align-items: center;
        justify-content: center;
        color: var(--white);
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        font-size: 24px;
    }

    .navigation-menu {
        position: absolute;
        top: 58px;
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding: 10px;
        background: var(--dark-blue);
        border-top: 4px solid var(--green);
        border-radius: 0 0 12px 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    .navigation-menu.show {
        display: block;
    }

    .nav-link,
    .dropdown-toggle {
        display: flex;
        width: 100%;
        min-height: 48px;
        justify-content: space-between;
        padding: 0 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .nav-link:first-child {
        justify-content: flex-start;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        padding: 6px;
        visibility: visible;
        opacity: 1;
        background: rgba(0, 0, 0, 0.14);
        border: 0;
        border-radius: 0;
        box-shadow: none;
        transform: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-title {
        color: var(--gold);
        border-color: rgba(255, 255, 255, 0.12);
    }

    .dropdown-menu a {
        color: var(--white);
    }

    .dropdown-menu a:hover {
        color: var(--white);
        background: rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu small {
        color: rgba(255, 255, 255, 0.67);
    }

    .dropdown-menu > a > i {
        color: var(--white);
        background: rgba(255, 255, 255, 0.12);
    }

    .mobile-apply {
        display: flex;
        min-height: 47px;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        color: var(--dark-blue);
        background: var(--gold);
        border-radius: 8px;
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 24px, 1240px);
    }

    .top-contacts a {
        font-size: 10px;
    }

    .top-contacts a:last-child {
        display: none;
    }

    .identity-layout {
        min-height: 94px;
        grid-template-columns: 68px 1fr;
        gap: 12px;
    }

    .institute-logo,
    .logo-fallback {
        width: 64px;
        height: 64px;
    }

    .department-label {
        font-size: 9px;
    }

    .identity-text h1 {
        font-size: 17px;
    }

    .motto {
        margin-top: 7px;
        padding: 4px 8px;
        font-size: 8px;
    }

    .notice-inner {
        gap: 9px;
    }

    .notice-inner strong {
        min-height: 34px;
        padding: 0 9px;
        font-size: 10px;
    }

    .notice-inner span {
        font-size: 11px;
    }

    .notice-inner a {
        display: none;
    }
}

/* =========================================================
   PROFESSIONAL HOME HERO SLIDER
   ========================================================= */

.hero-slider {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    color: #ffffff;
    background: #14376d;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition:
        opacity 1.1s ease,
        visibility 1.1s ease;
}

.hero-slide.active {
    z-index: 2;
    visibility: visible;
    opacity: 1;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.07);
    transition: transform 8s ease;
}

.hero-slide.active .hero-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8, 32, 73, 0.96) 0%,
            rgba(20, 55, 109, 0.88) 38%,
            rgba(20, 55, 109, 0.48) 68%,
            rgba(0, 143, 76, 0.15) 100%
        );
}

.hero-overlay::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(
            0deg,
            rgba(3, 18, 44, 0.5) 0%,
            transparent 45%
        );
}

.hero-overlay-green {
    background:
        linear-gradient(
            90deg,
            rgba(5, 50, 43, 0.96) 0%,
            rgba(0, 111, 59, 0.84) 42%,
            rgba(0, 111, 59, 0.36) 72%,
            rgba(20, 55, 109, 0.12) 100%
        );
}

.hero-overlay-blue {
    background:
        linear-gradient(
            90deg,
            rgba(10, 34, 77, 0.97) 0%,
            rgba(36, 82, 151, 0.85) 43%,
            rgba(36, 82, 151, 0.37) 72%,
            transparent 100%
        );
}

.hero-content-wrap {
    position: relative;
    z-index: 4;
    display: flex;
    min-height: 650px;
    align-items: center;
    padding-top: 65px;
    padding-bottom: 95px;
}

.hero-content {
    width: min(780px, 74%);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 7px 16px 7px 8px;
    color: #14376d;
    background: #d0b873;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hero-eyebrow-icon {
    display: inline-flex;
    width: 31px;
    height: 31px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #14376d;
    border-radius: 50%;
}

.hero-content h2 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(47px, 5.3vw, 82px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -1.8px;
    text-shadow: 0 5px 24px rgba(0, 0, 0, 0.32);
}

.hero-content h2 span {
    display: block;
    margin-top: 8px;
    color: #f0d98f;
}

.hero-content p {
    max-width: 690px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.72;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.hero-btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 21px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

.hero-btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, #00934d, #00723d);
    box-shadow: 0 10px 28px rgba(0, 143, 76, 0.34);
}

.hero-btn-primary:hover {
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(0, 143, 76, 0.45);
}

.hero-btn-secondary {
    color: #14376d;
    background: #d0b873;
    box-shadow: 0 10px 28px rgba(208, 184, 115, 0.28);
}

.hero-btn-secondary:hover {
    color: #14376d;
    background: #e1cb8e;
}

.hero-btn-outline {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(8px);
}

.hero-btn-outline:hover {
    color: #14376d;
    background: #ffffff;
    border-color: #ffffff;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 34px;
}

.hero-trust-row > div {
    display: flex;
    align-items: center;
    gap: 11px;
}

.hero-trust-row i {
    color: #d0b873;
    font-size: 27px;
}

.hero-trust-row span {
    display: flex;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.74);
    font-size: 11px;
}

.hero-trust-row strong {
    margin-bottom: 2px;
    color: #ffffff;
    font-size: 13px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 8;
    display: flex;
    width: 51px;
    height: 51px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(8, 32, 73, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    backdrop-filter: blur(9px);
    font-size: 21px;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.hero-arrow:hover {
    background: #00934d;
}

.hero-arrow-prev {
    left: 24px;
}

.hero-arrow-next {
    right: 24px;
}

.hero-controls {
    position: absolute;
    right: 0;
    bottom: 24px;
    left: 0;
    z-index: 8;
}

.hero-controls-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 9px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    background: rgba(255, 255, 255, 0.55);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.hero-dot.active {
    width: 36px;
    background: #d0b873;
}

.hero-pause {
    display: inline-flex;
    min-height: 37px;
    align-items: center;
    gap: 7px;
    padding: 0 13px;
    color: #ffffff;
    background: rgba(8, 32, 73, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.hero-progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
    height: 4px;
    background: rgba(255, 255, 255, 0.16);
}

.hero-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #d0b873, #00934d);
}

/* Slide text animations */

.hero-slide .hero-eyebrow,
.hero-slide h2,
.hero-slide p,
.hero-slide .hero-actions,
.hero-slide .hero-trust-row {
    opacity: 0;
    transform: translateY(28px);
}

.hero-slide.active .hero-eyebrow {
    animation: heroReveal 0.65s 0.15s forwards;
}

.hero-slide.active h2 {
    animation: heroReveal 0.75s 0.28s forwards;
}

.hero-slide.active p {
    animation: heroReveal 0.75s 0.42s forwards;
}

.hero-slide.active .hero-actions {
    animation: heroReveal 0.75s 0.56s forwards;
}

.hero-slide.active .hero-trust-row {
    animation: heroReveal 0.75s 0.68s forwards;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quick access cards */

.hero-quick-access {
    position: relative;
    z-index: 12;
    margin-top: -1px;
    padding: 0 0 36px;
    background: #f5f7fb;
}

.hero-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #ffffff;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 18px 42px rgba(20, 55, 109, 0.14);
}

.quick-access-card {
    position: relative;
    display: flex;
    min-height: 112px;
    align-items: center;
    gap: 14px;
    padding: 22px;
    color: #1f2937;
    border-right: 1px solid #e3e8ef;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.quick-access-card:last-child {
    border-right: 0;
}

.quick-access-card:hover {
    color: #14376d;
    background: #f7f9fc;
    transform: translateY(-4px);
}

.quick-access-icon {
    display: flex;
    width: 49px;
    height: 49px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 21px;
}

.quick-green {
    color: #008b49;
    background: rgba(0, 143, 76, 0.11);
}

.quick-orange {
    color: #d87919;
    background: rgba(223, 138, 45, 0.13);
}

.quick-blue {
    color: #245297;
    background: rgba(36, 82, 151, 0.11);
}

.quick-gold {
    color: #8a6b1d;
    background: rgba(196, 172, 114, 0.2);
}

.quick-access-card > span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
}

.quick-access-card strong {
    color: #14376d;
    font-size: 15px;
}

.quick-access-card small {
    margin-top: 5px;
    color: #667085;
    font-size: 11px;
    line-height: 1.4;
}

.quick-arrow {
    color: #9aa5b5;
}

/* Hero responsive */

@media (max-width: 1000px) {
    .hero-slider,
    .hero-content-wrap {
        min-height: 600px;
    }

    .hero-content {
        width: 82%;
    }

    .hero-content h2 {
        font-size: clamp(43px, 7vw, 67px);
    }

    .hero-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-access-card:nth-child(2) {
        border-right: 0;
    }

    .quick-access-card:nth-child(-n+2) {
        border-bottom: 1px solid #e3e8ef;
    }
}

@media (max-width: 700px) {
    .hero-slider,
    .hero-content-wrap {
        min-height: 640px;
    }

    .hero-content-wrap {
        align-items: flex-end;
        padding-top: 80px;
        padding-bottom: 88px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-overlay,
    .hero-overlay-blue,
    .hero-overlay-green {
        background:
            linear-gradient(
                0deg,
                rgba(8, 32, 73, 0.98) 0%,
                rgba(8, 32, 73, 0.85) 55%,
                rgba(8, 32, 73, 0.3) 100%
            );
    }

    .hero-content h2 {
        font-size: clamp(40px, 12vw, 57px);
        line-height: 1.02;
        letter-spacing: -1px;
    }

    .hero-content p {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.58;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
        margin-top: 23px;
    }

    .hero-btn {
        min-height: 48px;
        padding: 0 12px;
        font-size: 10px;
    }

    .hero-btn-outline {
        grid-column: 1 / -1;
    }

    .hero-trust-row {
        display: none;
    }

    .hero-arrow {
        top: 44%;
        width: 41px;
        height: 41px;
        font-size: 17px;
    }

    .hero-arrow-prev {
        left: 11px;
    }

    .hero-arrow-next {
        right: 11px;
    }

    .hero-pause span {
        display: none;
    }

    .hero-quick-grid {
        grid-template-columns: 1fr;
        border-radius: 0;
    }

    .quick-access-card,
    .quick-access-card:nth-child(2) {
        min-height: 93px;
        border-right: 0;
        border-bottom: 1px solid #e3e8ef;
    }

    .quick-access-card:last-child {
        border-bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-image,
    .hero-slide .hero-eyebrow,
    .hero-slide h2,
    .hero-slide p,
    .hero-slide .hero-actions,
    .hero-slide .hero-trust-row {
        animation: none !important;
        transition: none !important;
    }

    .hero-slide.active .hero-eyebrow,
    .hero-slide.active h2,
    .hero-slide.active p,
    .hero-slide.active .hero-actions,
    .hero-slide.active .hero-trust-row {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   CAMPUSES, PRINCIPAL AND LEADERSHIP SECTIONS
   ========================================================= */

.section-heading {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.section-heading h2,
.principal-content h2 {
    margin: 0;
    color: var(--dark-blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(35px, 4vw, 53px);
    font-weight: 800;
    line-height: 1.08;
}

.section-heading p {
    margin: 17px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.campuses-section {
    padding: 92px 0;
    background: #f5f7fb;
}

.campus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.campus-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e1e7ef;
    border-radius: 15px;
    box-shadow: 0 14px 38px rgba(20, 55, 109, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campus-card:hover {
    box-shadow: 0 22px 48px rgba(20, 55, 109, 0.17);
    transform: translateY(-8px);
}

.campus-image-wrap {
    position: relative;
    height: 270px;
    overflow: hidden;
}

.campus-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.campus-card:hover .campus-image {
    transform: scale(1.08);
}

.campus-badge {
    position: absolute;
    right: 17px;
    bottom: 17px;
    padding: 8px 13px;
    color: #14376d;
    background: #d0b873;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.campus-card-body {
    position: relative;
    padding: 27px;
}

.campus-number {
    position: absolute;
    top: 18px;
    right: 23px;
    color: rgba(20, 55, 109, 0.08);
    font-size: 48px;
    font-weight: 900;
}

.campus-card h3 {
    position: relative;
    margin: 0;
    color: var(--dark-blue);
    font-family: Georgia, serif;
    font-size: 26px;
}

.campus-card p {
    position: relative;
    margin: 14px 0 21px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.72;
}

.campus-card a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.principal-section {
    padding: 100px 0;
    background: #ffffff;
}

.principal-layout {
    display: grid;
    grid-template-columns: 430px 1fr;
    align-items: center;
    gap: 75px;
}

.principal-photo {
    position: relative;
}

.principal-photo-frame {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: #eef2f7;
    border: 10px solid #ffffff;
    border-radius: 15px;
    box-shadow: 0 24px 55px rgba(20, 55, 109, 0.18);
}

.principal-photo-frame::before {
    position: absolute;
    inset: 0;
    z-index: 2;
    content: "";
    border: 3px solid rgba(208, 184, 115, 0.7);
    border-radius: 8px;
    pointer-events: none;
}

.principal-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.principal-photo-label {
    position: absolute;
    right: -28px;
    bottom: 35px;
    z-index: 3;
    display: flex;
    min-width: 245px;
    flex-direction: column;
    padding: 18px 21px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--dark-blue), var(--blue));
    border-left: 5px solid var(--gold);
    border-radius: 8px;
    box-shadow: 0 13px 32px rgba(20, 55, 109, 0.26);
}

.principal-photo-label strong {
    font-size: 15px;
}

.principal-photo-label span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
}

.quote-icon {
    margin-bottom: -18px;
    color: rgba(36, 82, 151, 0.1);
    font-size: 83px;
    line-height: 1;
}

.principal-content p {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.86;
}

.principal-signature {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    padding-left: 15px;
    border-left: 4px solid var(--gold);
}

.principal-signature strong {
    color: var(--dark-blue);
    font-size: 16px;
}

.principal-signature span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.section-button {
    display: inline-flex;
    min-height: 49px;
    align-items: center;
    gap: 10px;
    margin-top: 27px;
    padding: 0 19px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--green), var(--dark-green));
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(0, 143, 76, 0.22);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.leadership-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
}

.board-section {
    background:
        linear-gradient(rgba(20, 55, 109, 0.96), rgba(36, 82, 151, 0.96));
}

.board-section .section-kicker {
    color: #d0b873;
}

.board-section .section-heading h2,
.board-section .section-heading p {
    color: #ffffff;
}

.board-section .section-heading p {
    color: rgba(255, 255, 255, 0.75);
}

.management-section {
    background: #f5f7fb;
}

.leadership-slider {
    position: relative;
}

.leadership-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 12px 4px 28px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.leadership-track::-webkit-scrollbar {
    display: none;
}

.leadership-card {
    min-width: 275px;
    flex: 0 0 275px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 13px;
    box-shadow: 0 15px 36px rgba(8, 32, 73, 0.16);
    transition: transform 0.28s ease;
}

.leadership-card:hover {
    transform: translateY(-7px);
}

.leadership-photo {
    position: relative;
    height: 315px;
    overflow: hidden;
    background: #e9eef5;
}

.leadership-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.leadership-card:hover .leadership-photo img {
    transform: scale(1.06);
}

.leadership-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: rgba(20, 55, 109, 0.35);
    background:
        linear-gradient(135deg, #edf2f8, #dce5f0);
    font-size: 105px;
}

.leadership-card-content {
    position: relative;
    padding: 22px;
    border-top: 4px solid var(--gold);
}

.leadership-position {
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.leadership-card h3 {
    margin: 7px 0 0;
    color: var(--dark-blue);
    font-family: Georgia, serif;
    font-size: 20px;
}

.leadership-card p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.leadership-arrow {
    position: absolute;
    top: 44%;
    z-index: 5;
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    background: #ffffff;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(8, 32, 73, 0.2);
    cursor: pointer;
}

.leadership-prev {
    left: -20px;
}

.leadership-next {
    right: -20px;
}

.section-action {
    text-align: center;
}

.reveal-item,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-item {
    transform: translateY(34px);
}

.reveal-left {
    transform: translateX(-45px);
}

.reveal-right {
    transform: translateX(45px);
}

.reveal-item.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

@media (max-width: 1000px) {
    .campus-grid {
        grid-template-columns: 1fr 1fr;
    }

    .campus-card:last-child {
        grid-column: 1 / -1;
    }

    .principal-layout {
        grid-template-columns: 350px 1fr;
        gap: 45px;
    }

    .principal-photo-frame {
        height: 450px;
    }
}

@media (max-width: 760px) {
    .campuses-section,
    .principal-section,
    .leadership-section {
        padding: 68px 0;
    }

    .campus-grid,
    .principal-layout {
        grid-template-columns: 1fr;
    }

    .campus-card:last-child {
        grid-column: auto;
    }

    .principal-photo {
        max-width: 430px;
        margin: 0 auto;
    }

    .principal-photo-label {
        right: 15px;
    }

    .leadership-arrow {
        display: none;
    }

    .leadership-card {
        min-width: 245px;
        flex-basis: 245px;
    }

    .leadership-photo {
        height: 285px;
    }
}

/* =========================================================
   MOBILE PORTAL LINKS
   ========================================================= */

.mobile-portals {
    display: none;
}

@media (max-width: 900px) {
    .mobile-portals {
        display: block;
        margin-top: 12px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 10px;
    }

    .mobile-portals-title {
        margin: 0 0 10px;
        color: var(--gold);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1.2px;
        text-transform: uppercase;
    }

    .mobile-portal-link {
        display: flex;
        min-height: 58px;
        align-items: center;
        gap: 12px;
        margin-bottom: 8px;
        padding: 10px 12px;
        color: #ffffff;
        border-radius: 8px;
        font-weight: 800;
    }

    .mobile-portal-link:last-child {
        margin-bottom: 0;
    }

    .mobile-portal-link i {
        display: flex;
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.16);
        border-radius: 8px;
        font-size: 18px;
    }

    .mobile-portal-link span {
        display: flex;
        flex-direction: column;
        font-size: 13px;
    }

    .mobile-portal-link small {
        margin-top: 3px;
        color: rgba(255, 255, 255, 0.72);
        font-size: 10px;
        font-weight: 500;
    }

    .mobile-staff {
        background: linear-gradient(135deg, #173665, #2c5393);
    }

    .mobile-student {
        background: linear-gradient(135deg, #245297, #3568b3);
    }

    .mobile-kuccps {
        background: linear-gradient(135deg, #df8a2d, #c66f16);
    }

    .mobile-application {
        background: linear-gradient(135deg, #008f4c, #006f3b);
    }

    .mobile-portal-link:hover {
        color: #ffffff;
        transform: translateY(-1px);
    }
}

/* =========================================================
   LEADERSHIP PROFILE ENHANCEMENTS
   ========================================================= */

.professional-slider {
    position: relative;
}

.professional-slider::before,
.professional-slider::after {
    position: absolute;
    top: 12px;
    bottom: 28px;
    z-index: 3;
    width: 50px;
    content: "";
    pointer-events: none;
}

.professional-slider::before {
    left: 0;
    background: linear-gradient(
        90deg,
        rgba(20, 55, 109, 0.95),
        transparent
    );
}

.management-section .professional-slider::before {
    background: linear-gradient(
        90deg,
        #f5f7fb,
        transparent
    );
}

.professional-slider::after {
    right: 0;
    background: linear-gradient(
        270deg,
        rgba(20, 55, 109, 0.95),
        transparent
    );
}

.management-section .professional-slider::after {
    background: linear-gradient(
        270deg,
        #f5f7fb,
        transparent
    );
}

.leadership-track {
    scroll-snap-type: x mandatory;
}

.leadership-card {
    scroll-snap-align: start;
}

.leadership-photo img {
    object-position: center top;
}

.featured-leader {
    border: 2px solid rgba(208, 184, 115, 0.75);
}

.featured-leader .leadership-card-content {
    background:
        linear-gradient(
            135deg,
            rgba(208, 184, 115, 0.12),
            #ffffff
        );
}

.leader-rank {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 8px 13px;
    color: #14376d;
    background: #d0b873;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.slider-status {
    display: flex;
    max-width: 470px;
    align-items: center;
    gap: 14px;
    margin: 7px auto 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

.management-section .slider-status {
    color: #667085;
}

.slider-progress-line {
    display: block;
    width: 75px;
    height: 3px;
    flex-shrink: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
}

.management-section .slider-progress-line {
    background: rgba(20, 55, 109, 0.15);
}

.slider-progress-line::after {
    display: block;
    width: 48%;
    height: 100%;
    content: "";
    background: linear-gradient(
        90deg,
        #d0b873,
        #00934d
    );
    border-radius: inherit;
    animation: leadershipProgress 3.2s ease-in-out infinite alternate;
}

@keyframes leadershipProgress {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(105%);
    }
}

@media (max-width: 760px) {
    .professional-slider::before,
    .professional-slider::after {
        display: none;
    }

    .leadership-card {
        min-width: 78vw;
        flex-basis: 78vw;
    }

    .leadership-photo {
        height: 360px;
    }

    .slider-status {
        justify-content: center;
        padding: 0 12px;
    }
}

/* =========================================================
   SENIOR MANAGEMENT PAGE
   ========================================================= */

.inner-page-hero {
    position: relative;
    display: flex;
    min-height: 405px;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(
            100deg,
            rgba(8, 32, 73, 0.95),
            rgba(36, 82, 151, 0.8)
        ),
        url("/assets/images/hero/hero-community.webp") center / cover no-repeat;
}

.inner-page-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8, 32, 73, 0.7),
            rgba(0, 143, 76, 0.15)
        );
}

.inner-page-content {
    position: relative;
    z-index: 2;
    padding-top: 72px;
    padding-bottom: 72px;
}

.inner-page-kicker {
    display: inline-flex;
    margin-bottom: 15px;
    padding: 7px 14px;
    color: var(--dark-blue);
    background: var(--gold);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.inner-page-content h2 {
    max-width: 800px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(45px, 6vw, 74px);
    font-weight: 800;
    line-height: 1.03;
}

.inner-page-content > p {
    max-width: 720px;
    margin: 21px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.72;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    font-size: 12px;
    font-weight: 700;
}

.breadcrumb-nav a {
    color: var(--gold);
}

.breadcrumb-nav span,
.breadcrumb-nav i {
    color: rgba(255, 255, 255, 0.72);
}

.management-introduction {
    padding: 90px 0;
    background: #ffffff;
}

.management-intro-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr;
    align-items: center;
    gap: 75px;
}

.management-intro-content h2,
.management-callout h2 {
    margin: 0;
    color: var(--dark-blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
}

.management-intro-content p {
    margin: 19px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.86;
}

.management-values {
    display: grid;
    gap: 16px;
}

.management-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 21px;
    background: #f5f7fb;
    border: 1px solid #e3e8ef;
    border-left: 5px solid var(--green);
    border-radius: 11px;
    box-shadow: 0 8px 22px rgba(20, 55, 109, 0.07);
}

.management-value i {
    display: flex;
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--dark-blue));
    border-radius: 9px;
    font-size: 19px;
}

.management-value span {
    display: flex;
    flex-direction: column;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.management-value strong {
    margin-bottom: 4px;
    color: var(--dark-blue);
    font-size: 14px;
}

.management-profiles-section {
    padding: 95px 0;
    background: #f5f7fb;
}

.management-profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 27px;
}

.management-profile-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e0e6ef;
    border-radius: 15px;
    box-shadow: 0 14px 36px rgba(20, 55, 109, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.management-profile-card:hover {
    box-shadow: 0 22px 48px rgba(20, 55, 109, 0.17);
    transform: translateY(-8px);
}

.management-profile-featured {
    border: 2px solid rgba(208, 184, 115, 0.8);
}

.management-profile-photo {
    position: relative;
    height: 390px;
    overflow: hidden;
    background: #e8edf4;
}

.management-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.55s ease;
}

.management-profile-card:hover img {
    transform: scale(1.05);
}

.management-profile-badge {
    position: absolute;
    top: 17px;
    left: 17px;
    padding: 8px 14px;
    color: var(--dark-blue);
    background: var(--gold);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.management-profile-content {
    padding: 24px;
    border-top: 5px solid var(--green);
}

.management-profile-role {
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.management-profile-content h3 {
    margin: 8px 0 0;
    color: var(--dark-blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
}

.management-profile-content p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
}

.management-callout {
    padding: 78px 0;
    background:
        linear-gradient(
            115deg,
            rgba(20, 55, 109, 0.98),
            rgba(36, 82, 151, 0.94),
            rgba(0, 143, 76, 0.82)
        );
}

.management-callout-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.management-callout .section-kicker {
    color: var(--gold);
}

.management-callout h2 {
    max-width: 750px;
    color: #ffffff;
}

.management-callout p {
    max-width: 700px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.7;
}

.management-callout .section-button {
    flex-shrink: 0;
    margin-top: 0;
    color: var(--dark-blue);
    background: var(--gold);
}

@media (max-width: 1000px) {
    .management-profile-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .management-intro-grid {
        gap: 45px;
    }
}

@media (max-width: 760px) {
    .inner-page-hero {
        min-height: 360px;
    }

    .inner-page-content h2 {
        font-size: 44px;
    }

    .management-introduction,
    .management-profiles-section {
        padding: 68px 0;
    }

    .management-intro-grid,
    .management-profile-grid {
        grid-template-columns: 1fr;
    }

    .management-profile-photo {
        height: 420px;
    }

    .management-callout-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 500px) {
    .management-profile-photo {
        height: 350px;
    }
}

/* BELGUT DEPARTMENTS SECTION CSS START */

.btti-dept-section {
    padding: 95px 0;
    background:
        linear-gradient(
            180deg,
            #f5f7fb 0%,
            #ffffff 100%
        );
}

.btti-dept-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.btti-dept-heading h2 {
    margin: 0;
    color: var(--dark-blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 800;
}

.btti-dept-heading p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.btti-dept-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.btti-dept-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e0e6ef;
    border-radius: 15px;
    box-shadow: 0 14px 36px rgba(20, 55, 109, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.btti-dept-card:hover {
    box-shadow: 0 22px 48px rgba(20, 55, 109, 0.18);
    transform: translateY(-8px);
}

.btti-dept-image {
    position: relative;
    height: 225px;
    overflow: hidden;
}

.btti-dept-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(
            0deg,
            rgba(8, 32, 73, 0.58),
            transparent 60%
        );
}

.btti-dept-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.btti-dept-card:hover .btti-dept-image img {
    transform: scale(1.08);
}

.btti-dept-icon {
    position: absolute;
    bottom: 17px;
    left: 17px;
    z-index: 2;
    display: flex;
    width: 49px;
    height: 49px;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    background: var(--gold);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.17);
    font-size: 21px;
}

.btti-dept-count {
    position: absolute;
    right: 16px;
    bottom: 20px;
    z-index: 2;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.btti-dept-body {
    padding: 24px;
}

.btti-dept-body h3 {
    margin: 0;
    color: var(--dark-blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.18;
}

.btti-dept-body p {
    min-height: 68px;
    margin: 13px 0 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.68;
}

.btti-dept-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.btti-dept-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    color: var(--blue);
    background: transparent;
    border: 0;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.btti-dept-explore i {
    transition: transform 0.2s ease;
}

.btti-dept-explore:hover i {
    transform: translateX(5px);
}

.btti-dept-apply {
    padding: 9px 14px;
    color: #ffffff;
    background: var(--green);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.btti-dept-apply:hover {
    color: #ffffff;
    background: var(--dark-green);
    transform: translateY(-2px);
}

.btti-dept-main-action {
    margin-top: 42px;
    text-align: center;
}

.btti-dept-large-apply {
    display: inline-flex;
    min-height: 53px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 23px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--green),
            var(--dark-green)
        );
    border-radius: 9px;
    box-shadow: 0 12px 26px rgba(0, 143, 76, 0.25);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btti-dept-large-apply:hover {
    color: #ffffff;
    box-shadow: 0 17px 34px rgba(0, 143, 76, 0.34);
    transform: translateY(-4px);
}

/* Department modal */

.btti-dept-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.btti-dept-modal.open {
    display: flex;
}

.btti-dept-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 17, 41, 0.82);
    backdrop-filter: blur(7px);
}

.btti-dept-modal-panel {
    position: relative;
    z-index: 2;
    width: min(1100px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: bttiDepartmentOpen 0.32s ease;
}

@keyframes bttiDepartmentOpen {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.btti-dept-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(8, 32, 73, 0.73);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

.btti-dept-modal-hero {
    position: relative;
    height: 275px;
    overflow: hidden;
}

.btti-dept-modal-hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btti-dept-modal-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8, 32, 73, 0.94),
            rgba(36, 82, 151, 0.66),
            rgba(0, 143, 76, 0.18)
        );
}

.btti-dept-modal-hero > div:last-child {
    position: absolute;
    bottom: 35px;
    left: 40px;
    z-index: 2;
    color: #ffffff;
}

.btti-dept-modal-hero span {
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.btti-dept-modal-hero h3 {
    max-width: 790px;
    margin: 8px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 49px);
    line-height: 1.05;
}

.btti-dept-modal-content {
    display: grid;
    grid-template-columns: 285px 1fr;
    gap: 31px;
    padding: 35px;
}

.btti-dept-hod {
    padding: 18px;
    background: #f5f7fb;
    border: 1px solid #e0e6ef;
    border-radius: 12px;
}

.btti-dept-hod-photo {
    height: 225px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #dce5f0;
    border-radius: 10px;
}

.btti-dept-hod-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.btti-dept-hod-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: rgba(36, 82, 151, 0.4);
    background:
        linear-gradient(
            135deg,
            #edf2f8,
            #dce5f0
        );
    font-size: 90px;
}

.btti-dept-hod > span {
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btti-dept-hod h4 {
    margin: 7px 0 0;
    color: var(--dark-blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
}

.btti-dept-hod p {
    margin: 11px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.65;
}

.btti-dept-courses-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e7ef;
}

.btti-dept-courses-heading span {
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btti-dept-courses-heading h4 {
    margin: 5px 0 0;
    color: var(--dark-blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
}

.btti-dept-courses-heading > a {
    display: inline-flex;
    min-height: 41px;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    color: #ffffff;
    background: var(--green);
    border-radius: 8px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.btti-dept-course-list {
    display: grid;
    gap: 9px;
    margin-top: 18px;
}

.btti-dept-course {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 12px 13px;
    background: #f8fafc;
    border: 1px solid #e5eaf1;
    border-radius: 8px;
    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.btti-dept-course:hover {
    border-color: var(--green);
    transform: translateX(4px);
}

.btti-dept-course > i {
    color: var(--green);
}

.btti-dept-course > span {
    color: #344054;
    font-size: 12px;
    font-weight: 700;
}

.btti-dept-course > a {
    padding: 7px 10px;
    color: var(--blue);
    background: rgba(36, 82, 151, 0.09);
    border-radius: 6px;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

body.btti-dept-modal-open {
    overflow: hidden;
}

@media (max-width: 1000px) {
    .btti-dept-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .btti-dept-section {
        padding: 68px 0;
    }

    .btti-dept-grid {
        grid-template-columns: 1fr;
    }

    .btti-dept-body p {
        min-height: auto;
    }

    .btti-dept-modal {
        padding: 10px;
    }

    .btti-dept-modal-panel {
        max-height: calc(100vh - 20px);
    }

    .btti-dept-modal-hero {
        height: 220px;
    }

    .btti-dept-modal-hero > div:last-child {
        right: 25px;
        bottom: 25px;
        left: 25px;
    }

    .btti-dept-modal-content {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .btti-dept-hod {
        display: grid;
        grid-template-columns: 110px 1fr;
        column-gap: 16px;
        align-items: center;
    }

    .btti-dept-hod-photo {
        height: 120px;
        grid-row: 1 / 5;
        margin-bottom: 0;
    }

    .btti-dept-courses-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .btti-dept-course {
        grid-template-columns: 22px 1fr;
    }

    .btti-dept-course > a {
        grid-column: 2;
        justify-self: start;
    }
}

/* BELGUT DEPARTMENTS SECTION CSS END */

/* BELGUT DEPARTMENT IMAGE SLIDER CSS START */

.btti-dept-slider {
    position: absolute;
    inset: 0;
}

.btti-dept-slider > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    object-fit: cover;
    transform: scale(1.05);
    transition:
        opacity 0.75s ease,
        visibility 0.75s ease,
        transform 5.5s ease;
}

.btti-dept-slider > img.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.btti-dept-slide-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(8, 32, 73, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    backdrop-filter: blur(7px);
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.btti-dept-slide-arrow:hover {
    background: var(--green);
    transform: translateY(-50%) scale(1.07);
}

.btti-dept-slide-prev {
    left: 15px;
}

.btti-dept-slide-next {
    right: 15px;
}

.btti-dept-slide-dots {
    position: absolute;
    right: 0;
    bottom: 14px;
    left: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 7px;
}

.btti-dept-slide-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    background: rgba(255, 255, 255, 0.58);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition:
        width 0.2s ease,
        background 0.2s ease;
}

.btti-dept-slide-dots button.active {
    width: 29px;
    background: var(--gold);
}

@media (max-width: 760px) {
    .btti-dept-slide-arrow {
        width: 36px;
        height: 36px;
    }

    .btti-dept-slide-prev {
        left: 9px;
    }

    .btti-dept-slide-next {
        right: 9px;
    }
}

/* BELGUT DEPARTMENT IMAGE SLIDER CSS END */
/* BELGUT HOME ENHANCEMENTS CSS START */
.btti-section-heading{max-width:780px;margin:0 auto 48px;text-align:center}.btti-section-heading h2{margin:0;color:var(--dark-blue);font:800 clamp(36px,4.2vw,56px)/1.08 Georgia,"Times New Roman",serif}.btti-section-heading p{margin:17px auto 0;color:var(--muted);font-size:15px;line-height:1.75}.btti-section-heading--light h2,.btti-section-heading--light p{color:#fff}.btti-section-heading--light p{color:rgba(255,255,255,.75)}
.btti-why-section,.btti-gallery-section,.btti-news-section,.btti-partners-section,.btti-faq-section{padding:95px 0}.btti-why-section,.btti-news-section,.btti-faq-section{background:#fff}.btti-gallery-section,.btti-partners-section{background:#f5f7fb}
.btti-why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.btti-why-card{padding:27px;background:#fff;border:1px solid #e2e8f0;border-radius:15px;box-shadow:0 14px 34px rgba(20,55,109,.08);transition:.28s}.btti-why-card:hover{transform:translateY(-8px);box-shadow:0 22px 46px rgba(20,55,109,.16);border-color:rgba(0,143,76,.45)}.btti-why-card>span{display:flex;width:52px;height:52px;align-items:center;justify-content:center;border-radius:12px;background:linear-gradient(135deg,var(--blue),var(--dark-blue));color:#fff;font-size:22px}.btti-why-card:nth-child(even)>span{background:linear-gradient(135deg,var(--green),var(--dark-green))}.btti-why-card h3{margin:18px 0 0;color:var(--dark-blue);font:800 22px Georgia,serif}.btti-why-card p{margin:11px 0 0;color:var(--muted);font-size:13px;line-height:1.7}
.btti-achievements-section{padding:90px 0;background:linear-gradient(115deg,#14376d,#245297 58%,#008f4c);color:#fff}.btti-achievements-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}.btti-achievement-card{padding:28px 20px;text-align:center;border:1px solid rgba(255,255,255,.18);border-radius:14px;background:rgba(255,255,255,.08);backdrop-filter:blur(8px);transition:.25s}.btti-achievement-card:hover{transform:translateY(-7px);background:rgba(255,255,255,.13)}.btti-achievement-card i{display:block;color:var(--gold);font-size:30px}.btti-achievement-card strong{display:block;margin-top:14px;color:#fff;font:800 38px Georgia,serif}.btti-achievement-card span{display:block;margin-top:7px;color:rgba(255,255,255,.72);font-size:12px;font-weight:800;text-transform:uppercase}
.btti-intake-section{padding:70px 0;background:#f7f2e7}.btti-intake-inner{display:flex;align-items:center;justify-content:space-between;gap:45px}.btti-intake-inner h2{margin:0;color:var(--dark-blue);font:800 clamp(34px,4vw,52px)/1.1 Georgia,serif}.btti-intake-inner p{max-width:690px;color:var(--muted);line-height:1.7}.btti-intake-actions{display:grid;gap:10px;min-width:245px}.btti-action-btn{display:flex;min-height:48px;align-items:center;justify-content:center;gap:9px;padding:0 16px;border-radius:9px;font-size:11px;font-weight:900;text-transform:uppercase;transition:.23s}.btti-action-btn:hover{transform:translateY(-3px);box-shadow:0 12px 25px rgba(20,55,109,.18)}.btti-action-btn--green{background:var(--green);color:#fff}.btti-action-btn--blue{background:var(--blue);color:#fff}.btti-action-btn--gold{background:var(--gold);color:var(--dark-blue)}
.btti-gallery-filters{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;margin-bottom:25px}.btti-gallery-filters button{padding:9px 15px;border:1px solid #dce3ec;border-radius:999px;background:#fff;color:#596579;font-size:11px;font-weight:900;cursor:pointer;transition:.2s}.btti-gallery-filters button.active,.btti-gallery-filters button:hover{background:var(--green);border-color:var(--green);color:#fff}
.btti-gallery-slider{position:relative}.btti-gallery-track{display:flex;gap:18px;overflow-x:auto;padding:8px 4px 25px;scroll-behavior:smooth;scroll-snap-type:x mandatory;scrollbar-width:none}.btti-gallery-track::-webkit-scrollbar{display:none}.btti-gallery-item{min-width:330px;flex:0 0 330px;scroll-snap-align:start}.btti-gallery-item>button{position:relative;display:block;width:100%;height:270px;overflow:hidden;padding:0;border:0;border-radius:14px;background:#dce5f0;cursor:pointer}.btti-gallery-item img{width:100%;height:100%;object-fit:cover;transition:.55s}.btti-gallery-item:hover img{transform:scale(1.08)}.btti-gallery-overlay{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:flex-end;padding:22px;text-align:left;color:#fff;background:linear-gradient(0deg,rgba(8,32,73,.88),transparent 65%);opacity:.95}.btti-gallery-overlay small{color:var(--gold);font-weight:900;text-transform:uppercase}.btti-gallery-overlay strong{margin-top:5px;font:800 20px Georgia,serif}.btti-gallery-overlay i{position:absolute;top:17px;right:17px;display:flex;width:38px;height:38px;align-items:center;justify-content:center;border-radius:50%;background:rgba(255,255,255,.18);backdrop-filter:blur(6px)}
.btti-gallery-arrow{position:absolute;top:50%;z-index:3;display:flex;width:46px;height:46px;align-items:center;justify-content:center;border:0;border-radius:50%;background:#fff;color:var(--dark-blue);box-shadow:0 10px 24px rgba(20,55,109,.18);cursor:pointer;transform:translateY(-50%)}.btti-gallery-prev{left:-22px}.btti-gallery-next{right:-22px}
.btti-news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.btti-news-card{overflow:hidden;background:#fff;border:1px solid #e1e7ef;border-radius:15px;box-shadow:0 14px 34px rgba(20,55,109,.09);transition:.28s}.btti-news-card:hover{transform:translateY(-7px);box-shadow:0 22px 46px rgba(20,55,109,.16)}.btti-news-card img{width:100%;height:220px;object-fit:cover}.btti-news-card>div{padding:24px}.btti-news-card small{color:var(--green);font-weight:900;text-transform:uppercase}.btti-news-card h3{margin:10px 0 0;color:var(--dark-blue);font:800 23px/1.2 Georgia,serif}.btti-news-card p{color:var(--muted);font-size:13px;line-height:1.7}.btti-news-card a{display:inline-flex;align-items:center;gap:8px;color:var(--blue);font-size:11px;font-weight:900;text-transform:uppercase}
.btti-testimonial-section{padding:90px 0;background:linear-gradient(115deg,#14376d,#245297);color:#fff}.btti-testimonial-slider{position:relative;max-width:850px;margin:0 auto;text-align:center}.btti-testimonial{display:none}.btti-testimonial.active{display:block;animation:bttiFadeUp .55s ease}.btti-testimonial>i{color:rgba(208,184,115,.45);font-size:72px}.btti-testimonial p{margin:-12px auto 22px;color:#fff;font:700 clamp(20px,3vw,30px)/1.55 Georgia,serif}.btti-testimonial strong{display:block;color:var(--gold)}.btti-testimonial span{display:block;margin-top:5px;color:rgba(255,255,255,.65);font-size:11px}.btti-testimonial-dots{display:flex;justify-content:center;gap:8px;margin-top:25px}.btti-testimonial-dots button{width:9px;height:9px;padding:0;border:0;border-radius:999px;background:rgba(255,255,255,.4);cursor:pointer}.btti-testimonial-dots button.active{width:30px;background:var(--gold)}
.btti-partners-marquee{overflow:hidden;padding:20px 0;border-top:1px solid #dde4ed;border-bottom:1px solid #dde4ed}.btti-partners-track{display:flex;width:max-content;gap:18px;animation:bttiPartners 28s linear infinite}.btti-partners-track span{display:flex;min-width:190px;min-height:70px;align-items:center;justify-content:center;padding:0 22px;border:1px solid #dfe6ee;border-radius:11px;background:#fff;color:var(--dark-blue);font-weight:900;box-shadow:0 8px 20px rgba(20,55,109,.06)}
.btti-faq-list{max-width:900px;margin:0 auto}.btti-faq-item{border-bottom:1px solid #e0e6ee}.btti-faq-item>button{display:flex;width:100%;align-items:center;justify-content:space-between;gap:20px;padding:20px 0;border:0;background:transparent;color:var(--dark-blue);font-size:15px;font-weight:900;text-align:left;cursor:pointer}.btti-faq-item>button i{transition:.2s}.btti-faq-item.open>button i{transform:rotate(45deg)}.btti-faq-item>div{display:none;padding:0 0 20px}.btti-faq-item.open>div{display:block}.btti-faq-item p{margin:0;color:var(--muted);line-height:1.75}
.btti-gallery-lightbox{position:fixed;inset:0;z-index:7000;display:none;align-items:center;justify-content:center;padding:24px}.btti-gallery-lightbox.open{display:flex}.btti-gallery-lightbox__backdrop{position:absolute;inset:0;background:rgba(4,15,35,.9);backdrop-filter:blur(7px)}.btti-gallery-lightbox__panel{position:relative;z-index:2;width:min(1100px,100%);text-align:center}.btti-gallery-lightbox__panel img{max-width:100%;max-height:75vh;border-radius:12px;box-shadow:0 25px 70px rgba(0,0,0,.45)}.btti-gallery-lightbox__close,.btti-gallery-lightbox__arrow{position:absolute;z-index:3;display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.35);border-radius:50%;background:rgba(8,32,73,.65);color:#fff;cursor:pointer}.btti-gallery-lightbox__close{top:-18px;right:-18px;width:44px;height:44px}.btti-gallery-lightbox__arrow{top:50%;width:48px;height:48px;transform:translateY(-50%)}.btti-gallery-lightbox__prev{left:15px}.btti-gallery-lightbox__next{right:15px}.btti-gallery-lightbox__panel>div:last-child{margin-top:14px;color:#fff}.btti-gallery-lightbox__panel small{display:block;color:var(--gold);font-weight:900;text-transform:uppercase}.btti-gallery-lightbox__panel strong{display:block;margin-top:4px;font:800 23px Georgia,serif}
.btti-reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s ease}.btti-reveal.visible{opacity:1;transform:none}
@keyframes bttiFadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:none}}@keyframes bttiPartners{to{transform:translateX(-50%)}}
@media(max-width:1000px){.btti-why-grid,.btti-news-grid{grid-template-columns:repeat(2,1fr)}.btti-achievements-grid{grid-template-columns:repeat(2,1fr)}.btti-intake-inner{align-items:flex-start;flex-direction:column}.btti-intake-actions{grid-template-columns:repeat(3,1fr);width:100%}}
@media(max-width:700px){.btti-why-section,.btti-gallery-section,.btti-news-section,.btti-partners-section,.btti-faq-section{padding:68px 0}.btti-why-grid,.btti-news-grid,.btti-achievements-grid{grid-template-columns:1fr}.btti-intake-actions{grid-template-columns:1fr}.btti-gallery-item{min-width:82vw;flex-basis:82vw}.btti-gallery-arrow{display:none}.btti-news-card img{height:210px}.btti-gallery-lightbox__arrow{width:40px;height:40px}.btti-gallery-lightbox__prev{left:5px}.btti-gallery-lightbox__next{right:5px}}
/* BELGUT HOME ENHANCEMENTS CSS END */

/* BELGUT CONTACT SECTION CSS START */

.btti-contact-section {
    padding: 95px 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(0, 143, 76, 0.09),
            transparent 36%
        ),
        #f5f7fb;
}

.btti-contact-heading {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.btti-contact-heading h2 {
    margin: 0;
    color: var(--dark-blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(37px, 4.4vw, 57px);
    font-weight: 800;
    line-height: 1.08;
}

.btti-contact-heading p {
    margin: 17px auto 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.btti-contact-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
    gap: 30px;
}

.btti-contact-details {
    display: grid;
    gap: 14px;
}

.btti-contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 19px;
    background: #ffffff;
    border: 1px solid #e0e6ee;
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(20, 55, 109, 0.07);
    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btti-contact-card:hover {
    border-color: rgba(0, 143, 76, 0.48);
    box-shadow: 0 15px 34px rgba(20, 55, 109, 0.13);
    transform: translateX(6px);
}

.btti-contact-icon {
    display: flex;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--dark-blue)
        );
    border-radius: 10px;
    font-size: 19px;
}

.btti-contact-card:nth-child(even) .btti-contact-icon {
    background:
        linear-gradient(
            135deg,
            var(--green),
            var(--dark-green)
        );
}

.btti-contact-card > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.btti-contact-card small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.btti-contact-card strong,
.btti-contact-card a {
    margin-top: 5px;
    color: var(--dark-blue);
    font-size: 13px;
    font-weight: 800;
    word-break: break-word;
}

.btti-contact-portals {
    display: grid;
    gap: 10px;
    margin-top: 5px;
}

.btti-contact-portal {
    display: flex;
    min-height: 59px;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(20, 55, 109, 0.13);
    transition:
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.btti-contact-portal.staff {
    background:
        linear-gradient(
            135deg,
            #14376d,
            #245297
        );
}

.btti-contact-portal.student {
    background:
        linear-gradient(
            135deg,
            #245297,
            #3671bd
        );
}

.btti-contact-portal.application {
    background:
        linear-gradient(
            135deg,
            #008f4c,
            #006f3b
        );
}

.btti-contact-portal:hover {
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(20, 55, 109, 0.2);
    transform: translateY(-3px);
}

.btti-contact-portal > i {
    display: flex;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    font-size: 18px;
}

.btti-contact-portal span {
    display: flex;
    flex-direction: column;
}

.btti-contact-portal strong {
    font-size: 12px;
}

.btti-contact-portal small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
}

.btti-feedback-form {
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e0e6ee;
    border-top: 5px solid var(--green);
    border-radius: 15px;
    box-shadow: 0 18px 44px rgba(20, 55, 109, 0.12);
}

.btti-feedback-heading > span {
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btti-feedback-heading h3 {
    margin: 7px 0 0;
    color: var(--dark-blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
}

.btti-feedback-heading p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.btti-feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 23px;
}

.btti-feedback-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.btti-feedback-form label > span {
    color: var(--dark-blue);
    font-size: 11px;
    font-weight: 900;
}

.btti-feedback-form input,
.btti-feedback-form select,
.btti-feedback-form textarea {
    width: 100%;
    padding: 13px 14px;
    color: #344054;
    background: #f8fafc;
    border: 1px solid #dce3ec;
    border-radius: 8px;
    outline: none;
    font: inherit;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.btti-feedback-form input:focus,
.btti-feedback-form select:focus,
.btti-feedback-form textarea:focus {
    background: #ffffff;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(0, 143, 76, 0.09);
}

.btti-feedback-message {
    margin-top: 15px;
}

.btti-feedback-form > button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 19px;
    padding: 0 21px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--green),
            var(--dark-green)
        );
    border: 0;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 143, 76, 0.24);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.btti-feedback-form > button:hover {
    box-shadow: 0 15px 30px rgba(0, 143, 76, 0.32);
    transform: translateY(-3px);
}

.btti-feedback-trap {
    position: absolute !important;
    left: -9999px !important;
}

.btti-feedback-alert {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 17px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
}

.btti-feedback-alert.success {
    color: #08653d;
    background: #e8f7ef;
}

.btti-feedback-alert.error {
    color: #9b2c2c;
    background: #fff1f1;
}

.btti-contact-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.btti-contact-reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 950px) {
    .btti-contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .btti-contact-section {
        padding: 68px 0;
    }

    .btti-feedback-grid {
        grid-template-columns: 1fr;
    }

    .btti-feedback-form {
        padding: 22px;
    }
}

/* BELGUT CONTACT SECTION CSS END */

/* BELGUT PROFESSIONAL FOOTER CSS START */

.btti-main-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.76);
    background:
        radial-gradient(
            circle at top right,
            rgba(0, 143, 76, 0.28),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #081f46 0%,
            #14376d 58%,
            #075d3b 100%
        );
}

.btti-main-footer::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 430px;
    height: 430px;
    content: "";
    opacity: 0.08;
    background:
        repeating-linear-gradient(
            45deg,
            #ffffff 0,
            #ffffff 1px,
            transparent 1px,
            transparent 18px
        );
    border-radius: 50%;
    transform: translate(38%, -45%);
    pointer-events: none;
}

.btti-footer-accent {
    height: 6px;
    background:
        linear-gradient(
            90deg,
            var(--blue) 0%,
            var(--green) 45%,
            var(--gold) 75%,
            var(--orange) 100%
        );
}

.btti-footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.55fr 0.8fr 0.95fr 1.15fr;
    gap: 45px;
    padding-top: 68px;
    padding-bottom: 58px;
}

.btti-footer-logo {
    display: inline-flex;
}

.btti-footer-logo img {
    display: block;
    width: 95px;
    height: 95px;
    object-fit: contain;
    filter:
        drop-shadow(
            0 10px 18px rgba(0, 0, 0, 0.22)
        );
}

.btti-footer-about h3 {
    max-width: 340px;
    margin: 17px 0 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.18;
}

.btti-footer-about > p {
    max-width: 390px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.75;
}

.btti-footer-motto {
    display: inline-flex;
    margin-top: 17px;
    padding: 7px 12px;
    color: var(--dark-blue);
    background: var(--gold);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btti-footer-social {
    display: flex;
    gap: 9px;
    margin-top: 20px;
}

.btti-footer-social a {
    display: flex;
    width: 39px;
    height: 39px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    transition:
        color 0.22s ease,
        background 0.22s ease,
        transform 0.22s ease;
}

.btti-footer-social a:hover {
    color: var(--dark-blue);
    background: var(--gold);
    transform: translateY(-4px);
}

.btti-footer-column h4 {
    position: relative;
    margin: 10px 0 25px;
    padding-bottom: 12px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.btti-footer-column h4::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 38px;
    height: 3px;
    content: "";
    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--green)
        );
    border-radius: 999px;
}

.btti-footer-column > a {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 11px 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.btti-footer-column > a i {
    color: var(--gold);
    font-size: 10px;
}

.btti-footer-column > a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.btti-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 16px;
}

.btti-footer-contact-item > span {
    display: flex;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    background: var(--gold);
    border-radius: 8px;
    font-size: 14px;
}

.btti-footer-contact-item p {
    margin: 1px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    line-height: 1.6;
}

.btti-footer-contact-item a {
    color: rgba(255, 255, 255, 0.78);
}

.btti-footer-contact-item a:hover {
    color: var(--gold);
}

.btti-footer-portals {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btti-footer-portals-inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.btti-footer-portals-inner > p {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.btti-footer-portals-inner > div {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.btti-footer-portals-inner a {
    display: inline-flex;
    min-height: 39px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 13px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 7px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.btti-footer-portals-inner a:hover {
    color: var(--dark-blue);
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.btti-footer-bottom {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btti-footer-bottom-inner {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.btti-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
}

.btti-footer-bottom-inner > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btti-footer-bottom a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
}

.btti-footer-bottom a:hover {
    color: var(--gold);
}

.btti-footer-bottom span {
    color: rgba(255, 255, 255, 0.25);
}

.btti-back-to-top {
    position: fixed;
    right: 23px;
    bottom: 23px;
    z-index: 3500;
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--green),
            var(--dark-green)
        );
    border: 0;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(0, 143, 76, 0.35);
    cursor: pointer;
    transform: translateY(15px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.btti-back-to-top.visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.btti-back-to-top:hover {
    transform: translateY(-4px);
}

@media (max-width: 1050px) {
    .btti-footer-content {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .btti-footer-contact {
        grid-column: 1 / -1;
    }

    .btti-footer-contact {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 25px;
    }

    .btti-footer-contact h4 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .btti-footer-content {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 52px;
        padding-bottom: 45px;
    }

    .btti-footer-contact {
        display: block;
        grid-column: auto;
    }

    .btti-footer-portals-inner {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .btti-footer-portals-inner > div {
        width: 100%;
    }

    .btti-footer-portals-inner a {
        flex: 1;
    }

    .btti-footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .btti-footer-portals-inner > div {
        flex-direction: column;
    }

    .btti-footer-portals-inner a {
        width: 100%;
    }

    .btti-footer-bottom-inner > div {
        flex-wrap: wrap;
    }

    .btti-back-to-top {
        right: 15px;
        bottom: 15px;
        width: 42px;
        height: 42px;
    }
}

/* BELGUT PROFESSIONAL FOOTER CSS END */
