/********** EMIS WEBSITE — SHARED STYLE.CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&family=Cinzel:wght@700;800;900&display=swap');
:root {
    --primary: #06bbcc;
    --primary-dark: #0698a5;
    --primary-soft: #e7fbfd;

    --secondary: #0f2747;
    --secondary-deep: #081a33;
    --secondary-soft: #163a63;

    --accent: #f4b400;
    --accent-soft: #fff4cf;

    --danger: #ef4444;

    --white: #ffffff;
    --light: #f8fbff;
    --light-soft: #eef5fb;
    --muted: #6b7a90;
    --text: #24364a;
    --dark: #0d1b2a;

    --border: rgba(15, 39, 71, 0.10);
    --border-strong: rgba(15, 39, 71, 0.16);

    --shadow-xs: 0 6px 18px rgba(10, 31, 56, 0.06);
    --shadow-sm: 0 12px 28px rgba(10, 31, 56, 0.08);
    --shadow-md: 0 18px 45px rgba(10, 31, 56, 0.12);
    --shadow-lg: 0 28px 70px rgba(10, 31, 56, 0.16);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: all 0.35s ease;
}

/********** Base **********/
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(6, 187, 204, 0.05), transparent 24%),
        radial-gradient(circle at bottom right, rgba(15, 39, 71, 0.05), transparent 20%),
        var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.btn,
.navbar-brand,
.navbar .nav-link {
    font-family: 'Outfit', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: -0.03em;
}

p {
    color: var(--muted);
    line-height: 1.8;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-light {
    background-color: var(--light) !important;
}

.spinner-loader {
    width: 3rem;
    height: 3rem;
    color: var(--primary);
}

/********** Spinner **********/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease-out, visibility 0s linear .45s;
    z-index: 99999;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(10px);
}

#spinner.show {
    transition: opacity .45s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/********** Buttons **********/
.btn {
    font-weight: 700;
    border-radius: 14px;
    border: none;
    transition: var(--transition);
    box-shadow: none;
}

.btn:focus {
    box-shadow: 0 0 0 0.18rem rgba(6, 187, 204, 0.18);
}

.btn.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary-soft), var(--secondary));
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn.btn-light {
    background: rgba(255, 255, 255, 0.96);
    color: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn.btn-light:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn.btn-outline-primary {
    border: 1px solid var(--primary);
    color: var(--primary-dark);
    background: transparent;
}

.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:focus {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    transform: translateY(-2px);
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-square {
    width: 42px;
    height: 42px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-lg-square {
    width: 52px;
    height: 52px;
}

/********** Back To Top **********/
.back-to-top {
    position: fixed;
    display: none;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    border-radius: 18px !important;
    box-shadow: var(--shadow-md);
}

/********** Announcement Bar - Modern Animated **********/
.announcement-bar {
    position: relative;
    z-index: 1036;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 8% 50%, rgba(34, 197, 94, 0.35), transparent 24%),
        radial-gradient(circle at 88% 50%, rgba(6, 187, 204, 0.38), transparent 24%),
        linear-gradient(90deg, #061a33 0%, #073b4c 42%, #057184 72%, #06bbcc 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 28px rgba(6, 187, 204, 0.22);
}

.announcement-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.12) 18%, transparent 34%),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 240px 100%, 28px 28px;
    animation: announcementShine 7s linear infinite;
    pointer-events: none;
}

.announcement-bar::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: linear-gradient(90deg, #22c55e, #06bbcc, #ffffff, #22c55e);
    background-size: 240% 100%;
    animation: announcementGlowLine 5s linear infinite;
    opacity: 0.85;
}

.announcement-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 48px;
    padding: 0 18px;
    overflow: hidden;
}

.announcement-label {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 0.42rem 0.9rem 0.42rem 0.48rem;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(10px);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.announcement-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #073b4c;
    background: #ffffff;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
    animation: announcementPulse 1.9s ease-in-out infinite;
}

.announcement-icon i {
    font-size: 0.78rem;
}

.announcement-marquee-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
    height: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.announcement-marquee-track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    min-width: max-content;
    white-space: nowrap;
    animation: emisAnnouncementScroll 26s linear infinite;
    will-change: transform;
}

.announcement-marquee-wrap:hover .announcement-marquee-track {
    animation-play-state: paused;
}

.announcement-marquee-track span {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.announcement-marquee-track i {
    color: #f8d568;
    font-size: 0.82rem;
    animation: announcementStarSpin 4s linear infinite;
}

.announcement-marquee-track strong {
    color: #ffffff;
    font-weight: 900;
}

.announcement-dot {
    width: 7px;
    height: 7px;
    display: inline-flex;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.14);
}

.announcement-action {
    flex-shrink: 0;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.46rem 0.92rem;
    border-radius: 999px;
    color: #073b4c;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.35s ease;
}

.announcement-action:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #22c55e, #06bbcc);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(6, 187, 204, 0.28);
}

.announcement-action i {
    font-size: 0.72rem;
    transition: transform 0.35s ease;
}

.announcement-action:hover i {
    transform: translateX(3px);
}

@keyframes emisAnnouncementScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 35px));
    }
}

@keyframes announcementShine {
    0% {
        background-position: -240px 0, 0 0;
    }

    100% {
        background-position: 240px 0, 28px 0;
    }
}

@keyframes announcementGlowLine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 240% 50%;
    }
}

@keyframes announcementPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.18);
    }
}

@keyframes announcementStarSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.18);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/********** Navbar **********/
.main-navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(15, 39, 71, 0.06);
    box-shadow: 0 10px 35px rgba(8, 26, 51, 0.08);
    z-index: 1035;
}

.navbar-light.sticky-top {
    top: 0;
    transition: .45s;
}

.navbar > .container,
.navbar > .container-fluid {
    display: flex;
    align-items: center;
}

.navbar-light .navbar-brand {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 18px;
    flex-shrink: 0;
    padding: 8px 12px 8px 8px;
    max-width: fit-content;
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.navbar-light .navbar-brand::before,
.navbar-light .navbar-brand::after {
    content: none;
    display: none;
}

.navbar-logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.10));
}

.brand-text-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    line-height: 1;
    gap: 2px;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.brand-main-text {
    font-size: 2.18rem;
    font-weight: 900;
    margin: 0;
    line-height: 0.9;
    letter-spacing: -0.03em;
    white-space: nowrap;
    position: relative;
    display: block;
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    color: #d4a017;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    text-shadow: none;
}

.brand-main-text::before,
.brand-main-text::after {
    content: none;
    display: none;
}

.brand-subtitle {
    margin-top: 2px;
    font-size: 0.66rem;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
    color: #3d4f66;
    line-height: 1.14;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-shadow: none;
}

.brand-tagline {
    margin-top: 1px;
    font-size: 0.50rem;
    font-style: italic;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    color: #9f7d18;
    line-height: 1.08;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-shadow: none;
}

.navbar-collapse {
    justify-content: space-between;
}

.navbar-nav {
    align-items: center;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    padding: 36px 0;
    margin: 0 12px;
    color: var(--secondary);
    font-size: 0.98rem;
    font-weight: 700;
    white-space: nowrap;
}

.navbar-light .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 24px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transition: var(--transition);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-dark);
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
}

.nav-item-split {
    position: relative;
}

.nav-link-group {
    display: flex;
    align-items: center;
}

.nav-link-main {
    display: none;
}

.nav-link-desktop.dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    font-size: 0.76rem;
}

.nav-link-toggle {
    border: none;
    background: transparent;
    color: var(--secondary);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    cursor: pointer;
}

.nav-link-toggle:hover,
.nav-link-toggle:focus {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.nav-link-toggle i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.nav-item.dropdown.show .nav-link-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    border: 1px solid rgba(15, 39, 71, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    padding: 10px;
    min-width: 230px;
    background: rgba(255, 255, 255, 0.98);
}

.dropdown-item {
    border-radius: 12px;
    padding: 11px 14px;
    font-weight: 600;
    color: var(--secondary);
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.navbar-action-group {
    gap: 14px;
}

.header-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--light-soft);
    color: var(--secondary);
    border: 1px solid rgba(15, 39, 71, 0.08);
    box-shadow: var(--shadow-xs);
    font-size: 0.95rem;
}

.header-social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: translateY(-2px);
}

.header-call-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 14px 28px rgba(6, 187, 204, 0.26);
    font-size: 1rem;
}

.header-call-icon:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--secondary-soft), var(--secondary));
    transform: translateY(-2px) scale(1.02);
}

/********** Desktop **********/
@media (min-width: 1200px) {
    .nav-link-main,
    .nav-link-toggle {
        display: none !important;
    }

    .nav-link-desktop {
        display: inline-flex !important;
    }

    .navbar .nav-item.dropdown .dropdown-menu {
        display: block;
        margin-top: 16px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
        pointer-events: none;
        transition: var(--transition);
    }

    .navbar .nav-item.dropdown:hover .dropdown-menu,
    .navbar .nav-item.dropdown:focus-within .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/********** Mobile / Tablet Navbar **********/
@media (max-width: 1199.98px) {
    .nav-link-desktop {
        display: none !important;
    }

    .nav-link-main {
        display: inline-flex;
        align-items: center;
        flex: 1 1 auto;
        margin: 0 !important;
        padding: 13px 0 !important;
        width: auto !important;
    }

    .nav-link-group {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .navbar .nav-item.dropdown,
    .navbar .nav-item.nav-item-split {
        width: 100%;
    }

    .nav-link-toggle {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        background: transparent;
        border: none;
    }

    .nav-item.dropdown.mobile-open .nav-link-toggle,
    .nav-item.dropdown.show .nav-link-toggle {
        background: var(--primary-soft);
        color: var(--primary-dark);
    }

    .navbar .nav-item.dropdown .dropdown-menu {
        display: none;
        position: static !important;
        float: none;
        margin-top: 8px;
        margin-bottom: 8px;
        width: 100%;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        border-radius: 14px;
        border: 1px solid rgba(15, 39, 71, 0.08);
        background: #f8fbff;
        padding: 8px;
    }

    .navbar .nav-item.dropdown.mobile-open > .dropdown-menu,
    .navbar .nav-item.dropdown .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        white-space: normal;
        padding: 12px 14px;
    }

    .navbar-light .navbar-brand {
        min-height: 74px;
        gap: 9px;
        margin-right: 12px;
        padding: 7px 10px 7px 6px;
        border-radius: 14px;
    }

    .navbar-logo {
        width: 54px;
        height: 54px;
    }

    .brand-main-text {
        font-size: 1.72rem;
        line-height: 0.9;
    }

    .brand-subtitle {
        font-size: 0.54rem;
    }

    .brand-tagline {
        font-size: 0.42rem;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid rgba(15, 39, 71, 0.08);
        padding-bottom: 20px;
    }

    .navbar-light .navbar-nav {
        align-items: flex-start !important;
        width: 100%;
    }

    .navbar-light .navbar-nav > .nav-link,
    .navbar-light .navbar-nav > .nav-item > .nav-link {
        margin: 0;
        padding: 13px 0;
        width: 100%;
    }

    .navbar-light .navbar-nav .nav-link::before {
        bottom: 4px;
    }

    .navbar-action-group {
        padding-top: 10px;
        justify-content: flex-start;
    }
}
/********** Page Header **********/
.page-header {
    background:
        linear-gradient(rgba(15, 39, 71, 0.72), rgba(15, 39, 71, 0.72)),
        url("../images/carousel-1.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 39, 71, 0.38);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

/********** Section Title **********/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    font-weight: 800;
    color: var(--primary-dark) !important;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    background: rgba(6, 187, 204, 0.08);
}

.section-title::before {
    content: "";
    position: absolute;
    left: -34px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.section-title::after {
    content: "";
    position: absolute;
    right: -34px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.section-title.text-start::before {
    left: auto;
    right: -34px;
}

.section-title.text-start::after {
    display: none;
}

/********** Shared Card Styles **********/
.service-item,
.course-item,
.team-item,
.testimonial-text,
.category-card-label {
    border-radius: var(--radius-md);
}

.service-item {
    background: linear-gradient(180deg, #ffffff, #f8fcff);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item i {
    color: var(--primary-dark) !important;
    text-shadow: 0 10px 25px rgba(6, 187, 204, 0.14);
}

.service-item h5 {
    color: var(--secondary);
    font-size: 1.14rem;
}

.about-image-cover {
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.category a {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.category img,
.course-item img,
.team-item img {
    transition: transform 0.7s ease, filter 0.45s ease;
}

.category a:hover img,
.course-item:hover img,
.team-item:hover img {
    transform: scale(1.08);
    filter: saturate(1.05);
}

.category-card-label {
    margin: 12px;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 39, 71, 0.06);
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.96) !important;
}

.category-card-label h5 {
    color: var(--secondary);
}

.category-card-label small {
    font-weight: 700;
}

.course-item {
    background: linear-gradient(180deg, #ffffff, #f8fcff) !important;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
    border-radius: 22px;
    transition: var(--transition);
}

.course-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.course-item h5 {
    color: var(--secondary);
    font-size: 1.18rem;
}

.course-item .text-center.p-4 p {
    padding: 0 6px 10px;
}

.course-btn-left,
.course-btn-right {
    border-radius: 999px !important;
    margin: 0 4px;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    min-height: auto !important;
    box-shadow: var(--shadow-xs);
}

.course-item .border-top {
    border-color: rgba(15, 39, 71, 0.08) !important;
}

.course-item small {
    color: var(--muted);
    font-weight: 600;
}

.team-item {
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    overflow: hidden;
    border-radius: 22px;
    transition: var(--transition);
}

.team-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-social-wrap {
    margin-top: -22px;
}

.team-social-wrap .bg-light {
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.testimonial-item {
    padding: 10px;
}

.testimonial-avatar {
    width: 84px !important;
    height: 84px !important;
    object-fit: cover;
    border-color: rgba(6, 187, 204, 0.30) !important;
    box-shadow: var(--shadow-xs);
}

.testimonial-text {
    background: linear-gradient(180deg, #ffffff, #f8fbff) !important;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    border-radius: 20px;
}

.testimonial-carousel::before,
.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.testimonial-carousel::before {
    left: 0;
    width: 0;
    background: linear-gradient(to right, rgba(248, 251, 255, 1) 0%, rgba(248, 251, 255, 0) 100%);
}

.testimonial-carousel::after {
    right: 0;
    width: 0;
    background: linear-gradient(to left, rgba(248, 251, 255, 1) 0%, rgba(248, 251, 255, 0) 100%);
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: var(--transition);
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    box-shadow: var(--shadow-md);
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--white) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonial-carousel .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(15, 39, 71, 0.18);
    transition: var(--transition);
}

.testimonial-carousel .owl-dot.active {
    width: 34px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/********** Footer **********/
.footer {
    background:
        radial-gradient(circle at top left, rgba(6, 187, 204, 0.10), transparent 24%),
        linear-gradient(135deg, #102946, #09192f 65%, #071422) !important;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.14;
    pointer-events: none;
}

.footer .container,
.footer .row,
.footer .copyright {
    position: relative;
    z-index: 1;
}

.footer h4 {
    font-size: 1.18rem;
    color: var(--white);
}

.footer .btn.btn-social {
    margin-right: 8px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.92);
    font-weight: normal;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.footer .btn.btn-social:hover {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    transform: translateY(-2px);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
}

.footer .btn.btn-link::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary);
}

.footer .btn.btn-link:hover {
    color: var(--white);
    padding-left: 4px;
    box-shadow: none;
}

.footer .img-fluid.bg-light.p-1 {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.14);
    transition: var(--transition);
}

.footer .img-fluid.bg-light.p-1:hover {
    transform: scale(1.04);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .copyright,
.footer .copyright a,
.footer .footer-menu a {
    color: rgba(255, 255, 255, 0.84);
}

.footer .copyright a:hover,
.footer .footer-menu a:hover,
.footer-contact-link:hover {
    color: var(--primary);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.88);
}


/********** Forms **********/
.form-control {
    min-height: 56px;
    border-radius: 16px;
    border: 1px solid rgba(15, 39, 71, 0.10);
    box-shadow: none;
    padding-left: 1rem;
    padding-right: 1rem;
}

.form-control:focus {
    border-color: rgba(6, 187, 204, 0.45);
    box-shadow: 0 0 0 0.18rem rgba(6, 187, 204, 0.16);
}

/********** Minor Shared Polish **********/
.container-xxl.py-5 {
    position: relative;
}

.container-xxl.py-5:nth-of-type(even) {
    background:
        linear-gradient(180deg, rgba(248, 251, 255, 0.76), rgba(255,255,255,0.98));
}

/********** Responsive **********/
@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 120px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (max-width: 1399.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin: 0 9px;
        font-size: 0.94rem;
    }

    .brand-main-text {
        font-size: 2.22rem;
    }

    .brand-subtitle {
        font-size: 0.60rem;
    }

    .brand-tagline {
        font-size: 0.48rem;
    }
}

@media (max-width: 1199.98px) {
    .navbar-light .navbar-brand {
        min-height: 82px;
        gap: 10px;
        margin-right: 12px;
    }

    .navbar-logo {
        width: 64px;
        height: 64px;
    }

    .brand-main-text {
        font-size: 1.95rem;
        line-height: 0.9;
    }

    .brand-subtitle {
        font-size: 0.54rem;
    }

    .brand-tagline {
        font-size: 0.45rem;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid rgba(15, 39, 71, 0.08);
        padding-bottom: 20px;
    }

    .navbar-light .navbar-nav {
        align-items: flex-start !important;
        width: 100%;
    }

    .navbar-light .navbar-nav .nav-link {
        margin: 0;
        padding: 13px 0;
        width: 100%;
    }

    .navbar-light .navbar-nav .nav-link::before {
        bottom: 4px;
    }

    .nav-item.dropdown {
        width: 100%;
    }

    .dropdown-item {
        white-space: normal;
    }

    .navbar-action-group {
        padding-top: 10px;
        justify-content: flex-start;
    }
}

@media (max-width: 991.98px) {
    .announcement-inner {
        gap: 12px;
        min-height: 40px;
    }

    .announcement-label {
        font-size: 0.82rem;
    }

    .announcement-marquee-wrap {
        height: 24px;
    }

    .announcement-marquee-track {
        gap: 44px;
        animation-duration: 20s;
    }

    .announcement-marquee-track span {
        font-size: 0.88rem;
    }

    .navbar-light .navbar-brand {
        min-height: 74px;
        gap: 10px;
        max-width: calc(100% - 86px);
    }

    .navbar-logo {
        width: 54px;
        height: 54px;
    }

    .brand-text-wrap {
        gap: 1px;
    }

    .brand-main-text {
        font-size: 1.62rem;
        line-height: 0.9;
        letter-spacing: -0.035em;
    }

    .brand-subtitle {
        font-size: 0.50rem;
        line-height: 1.1;
    }

    .brand-tagline {
        font-size: 0.42rem;
        line-height: 1.05;
    }

    .header-call-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .category-tall-card {
        min-height: 300px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .announcement-inner {
        padding: 0 8px;
    }

    .navbar-light .navbar-brand {
        min-height: 68px;
        gap: 8px;
        max-width: calc(100% - 84px);
        margin-right: 8px;
    }

    .navbar-logo {
        width: 46px;
        height: 46px;
    }

    .brand-main-text {
        font-size: 1.34rem;
        line-height: 0.9;
        letter-spacing: -0.03em;
    }

    .brand-subtitle {
        font-size: 0.42rem;
        white-space: normal;
        max-width: 160px;
    }

    .brand-tagline {
        display: none;
    }

    .navbar-toggler {
        padding: 0.55rem 0.75rem;
        border: 1px solid rgba(15, 39, 71, 0.14);
        border-radius: 12px;
        box-shadow: none !important;
    }

    .section-title {
        font-size: 0.76rem;
    }

    .section-title::before,
    .section-title::after {
        display: none;
    }

    .category-tall-card {
        min-height: 260px;
    }

  

    .back-to-top {
        right: 18px;
        bottom: 18px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 575.98px) {
    .announcement-inner {
        min-height: 42px;
        padding: 0 10px;
        gap: 10px;
    }

    .announcement-label {
        display: none;
    }

    .announcement-marquee-wrap {
        height: 22px;
    }

    .announcement-marquee-track {
        gap: 36px;
        animation-duration: 18s;
    }

    .announcement-marquee-track span {
        font-size: 0.82rem;
    }

    .navbar-light .navbar-brand {
        min-height: 64px;
        gap: 7px;
        max-width: calc(100% - 78px);
    }

    .navbar-logo {
        width: 42px;
        height: 42px;
    }

    .brand-main-text {
        font-size: 1.16rem;
        line-height: 0.9;
    }

    .brand-subtitle {
        font-size: 0.39rem;
        max-width: 140px;
    }

    .brand-tagline {
        display: none;
    }

    .course-item small {
        font-size: 0.72rem;
    }

    .footer .footer-menu a {
        margin-right: 10px;
        padding-right: 10px;
    }
}

body.mobile-nav-open {
    overflow: hidden;
}

.touch-active {
    transform: scale(0.97);
    opacity: 0.92;
}












/********** Header Carousel **********/
.header-carousel .owl-carousel-item {
    position: relative;
}

.header-carousel .owl-carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(7, 20, 34, 0.72) 0%,
        rgba(7, 20, 34, 0.48) 38%,
        rgba(7, 20, 34, 0.22) 65%,
        rgba(7, 20, 34, 0.10) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.header-carousel-image,
.header-carousel .owl-carousel-item img {
    width: 100%;
    height: 78vh;
    min-height: 520px;
    max-height: 860px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.carousel-overlay {
    z-index: 2;
    background: linear-gradient(
        90deg,
        rgba(15, 39, 71, 0.20) 0%,
        rgba(15, 39, 71, 0.10) 45%,
        rgba(15, 39, 71, 0.00) 100%
    );
}

.hero-simple-card {
    max-width: 640px;
    padding: 34px 32px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    box-shadow: 0 22px 60px rgba(6, 18, 35, 0.24);
}

.hero-simple-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 0.48rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-simple-title {
    font-size: 3.1rem;
    line-height: 1.02;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.hero-simple-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 560px;
}

.hero-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.header-carousel .owl-nav {
    position: absolute;
    inset: 50% 24px auto 24px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 54px;
    height: 54px;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
    font-size: 1.1rem !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
    pointer-events: auto;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    border-color: transparent !important;
    transform: scale(1.04);
}

.header-carousel .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.header-carousel .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42) !important;
    transition: var(--transition);
}

.header-carousel .owl-dot.active {
    width: 34px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
}

@media (max-width: 991.98px) {
    .header-carousel-image,
    .header-carousel .owl-carousel-item img {
        height: 68vh;
        min-height: 460px;
    }

    .hero-simple-card {
        padding: 28px 24px;
        border-radius: 22px;
        max-width: 100%;
    }

    .hero-simple-title {
        font-size: 2.35rem;
    }

    .hero-simple-text {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 767.98px) {
    .header-carousel-image,
    .header-carousel .owl-carousel-item img {
        height: 60vh;
        min-height: 400px;
    }

    .carousel-overlay {
        align-items: flex-end !important;
        padding-bottom: 28px;
    }

    .hero-simple-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .hero-simple-kicker {
        font-size: 0.70rem;
        letter-spacing: 0.10em;
        margin-bottom: 10px;
    }

    .hero-simple-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .hero-simple-text {
        font-size: 0.90rem;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .hero-btn-group {
        gap: 10px;
    }

    .hero-btn-group .btn {
        padding: 10px 16px;
        font-size: 0.88rem;
    }

    .header-carousel .owl-nav {
        inset: auto 14px 78px 14px;
        transform: none;
    }

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        width: 42px;
        height: 42px;
        font-size: 0.95rem !important;
    }

    .header-carousel .owl-dots {
        bottom: 16px;
        gap: 8px;
    }

    .header-carousel .owl-dot {
        width: 10px;
        height: 10px;
    }

    .header-carousel .owl-dot.active {
        width: 26px;
    }
}

@media (max-width: 575.98px) {
    .header-carousel-image,
    .header-carousel .owl-carousel-item img {
        height: 56vh;
        min-height: 360px;
    }

    .hero-simple-title {
        font-size: 1.48rem;
    }

    .hero-simple-text {
        font-size: 0.86rem;
    }
}




/********** Learning Stages Grid **********/
.learning-stages-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.stage-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 28px;
    min-height: 280px;
    background: #eef5fb;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 39, 71, 0.08);
    isolation: isolate;
    transition: var(--transition);
}

.stage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stage-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.7s ease;
}

.stage-card:hover img {
    transform: scale(1.06);
}

.stage-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 39, 71, 0.04) 0%,
        rgba(15, 39, 71, 0.14) 45%,
        rgba(15, 39, 71, 0.52) 100%
    );
    z-index: 1;
}

.stage-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 18px;
}

.stage-card-badge {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    padding: 14px 18px;
    border-radius: 20px;
    min-width: 220px;
    max-width: 88%;
    box-shadow: 0 14px 34px rgba(8, 26, 51, 0.14);
    border: 1px solid rgba(15, 39, 71, 0.08);
}

.stage-card-badge h4 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    line-height: 1.2;
    color: var(--secondary);
}

.stage-card-badge p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.35;
}

/********** Desktop Layout **********/
.stage-card-wide {
    grid-column: span 7;
    min-height: 320px;
}

.stage-card-tall {
    grid-column: span 5;
    grid-row: span 2;
    min-height: 660px;
}

.learning-stages-grid > .stage-card:not(.stage-card-wide):not(.stage-card-tall) {
    grid-column: span 4;
    min-height: 320px;
}

/********** Large Tablet **********/
@media (max-width: 1199.98px) {
    .stage-card-wide {
        grid-column: span 7;
        min-height: 290px;
    }

    .stage-card-tall {
        grid-column: span 5;
        min-height: 600px;
    }

    .learning-stages-grid > .stage-card:not(.stage-card-wide):not(.stage-card-tall) {
        grid-column: span 6;
        min-height: 280px;
    }

    .stage-card-badge {
        min-width: 200px;
    }
}

/********** Tablet **********/
@media (max-width: 991.98px) {
    .learning-stages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stage-card,
    .stage-card-wide,
    .stage-card-tall,
    .learning-stages-grid > .stage-card:not(.stage-card-wide):not(.stage-card-tall) {
        grid-column: auto;
        grid-row: auto;
        min-height: 300px;
    }

    .stage-card-tall {
        min-height: 420px;
    }

    .stage-card-badge {
        min-width: 0;
        max-width: 100%;
        padding: 12px 15px;
        border-radius: 18px;
    }

    .stage-card-badge h4 {
        font-size: 1rem;
    }

    .stage-card-badge p {
        font-size: 0.88rem;
    }
}

/********** Mobile **********/
@media (max-width: 767.98px) {
    .learning-stages-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stage-card,
    .stage-card-wide,
    .stage-card-tall,
    .learning-stages-grid > .stage-card:not(.stage-card-wide):not(.stage-card-tall) {
        min-height: 260px;
    }

    .stage-card-tall {
        min-height: 340px;
    }

    .stage-card-overlay {
        padding: 14px;
    }

    .stage-card-badge {
        padding: 11px 14px;
        border-radius: 16px;
    }

    .stage-card-badge h4 {
        font-size: 0.96rem;
    }

    .stage-card-badge p {
        font-size: 0.82rem;
    }
}




/********** Active Dropdown / Current Page Polish **********/
.navbar .nav-item.dropdown .nav-link.active,
.navbar .nav-item.dropdown .nav-link-main.active,
.navbar .nav-item.dropdown .nav-link-desktop.active {
    color: var(--primary-dark) !important;
}

.navbar .nav-item.dropdown .nav-link.active::before,
.navbar .nav-item.dropdown .nav-link-main.active::before,
.navbar .nav-item.dropdown .nav-link-desktop.active::before {
    width: 100%;
}

.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:active {
    background: rgba(6, 187, 204, 0.10);
    color: var(--primary-dark);
    font-weight: 800;
}

.navbar .dropdown-menu .dropdown-item.active::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--primary);
    vertical-align: middle;
}

.navbar .nav-item.dropdown:has(.dropdown-item.active) .nav-link-desktop,
.navbar .nav-item.dropdown:has(.dropdown-item.active) .nav-link-main,
.navbar .nav-item.dropdown:has(.dropdown-item.active) > .nav-link {
    color: var(--primary-dark) !important;
}

.navbar .nav-item.dropdown:has(.dropdown-item.active) .nav-link-desktop::before,
.navbar .nav-item.dropdown:has(.dropdown-item.active) .nav-link-main::before,
.navbar .nav-item.dropdown:has(.dropdown-item.active) > .nav-link::before {
    width: 100%;
}

@media (max-width: 1199.98px) {
    .navbar .dropdown-menu .dropdown-item.active {
        border-radius: 12px;
        box-shadow: none;
    }

    .nav-item.dropdown:has(.dropdown-item.active) .nav-link-toggle {
        background: var(--primary-soft);
        color: var(--primary-dark);
    }
}





/********** Mobile Brand Fix — EMIS Logo, Text & Tagline **********/
@media (max-width: 767.98px) {
    .navbar-light .navbar-brand {
        min-height: 84px !important;
        gap: 5px !important;
        padding-left: 14px !important;
        padding-right: 6px !important;
        max-width: calc(100% - 92px) !important;
        margin-right: 4px !important;
    }

    .navbar-logo {
        width: 56px !important;
        height: 56px !important;
        margin-right: 2px !important;
        flex-shrink: 0 !important;
    }

    .brand-text-wrap {
        gap: 2px !important;
        margin-left: 0 !important;
        justify-content: center !important;
    }

    .brand-main-text {
        font-size: 1.78rem !important;
        line-height: 0.9 !important;
        letter-spacing: -0.04em !important;
    }

    .brand-subtitle {
        font-size: 0.62rem !important;
        line-height: 1.18 !important;
        max-width: 205px !important;
        white-space: nowrap !important;
        font-weight: 900 !important;
    }

    .brand-tagline {
        display: block !important;
        font-size: 0.50rem !important;
        line-height: 1.12 !important;
        max-width: 205px !important;
        white-space: nowrap !important;
        color: #9f7d18 !important;
        font-style: italic !important;
        font-weight: 900 !important;
        margin-top: 2px !important;
    }

    .navbar-toggler {
        margin-right: 14px !important;
    }
}

@media (max-width: 575.98px) {
    .navbar-light .navbar-brand {
        min-height: 82px !important;
        gap: 4px !important;
        padding-left: 12px !important;
        max-width: calc(100% - 88px) !important;
    }

    .navbar-logo {
        width: 52px !important;
        height: 52px !important;
        margin-right: 1px !important;
    }

    .brand-main-text {
        font-size: 1.62rem !important;
    }

    .brand-subtitle {
        font-size: 0.58rem !important;
        max-width: 190px !important;
        white-space: nowrap !important;
        font-weight: 900 !important;
    }

    .brand-tagline {
        display: block !important;
        font-size: 0.46rem !important;
        max-width: 190px !important;
        white-space: nowrap !important;
        font-weight: 900 !important;
    }
}

@media (max-width: 430px) {
    .navbar-light .navbar-brand {
        min-height: 80px !important;
        gap: 3px !important;
        padding-left: 10px !important;
        max-width: calc(100% - 84px) !important;
    }

    .navbar-logo {
        width: 50px !important;
        height: 50px !important;
    }

    .brand-main-text {
        font-size: 1.52rem !important;
    }

    .brand-subtitle {
        font-size: 0.54rem !important;
        max-width: 175px !important;
        white-space: nowrap !important;
        font-weight: 900 !important;
    }

    .brand-tagline {
        display: block !important;
        font-size: 0.43rem !important;
        max-width: 175px !important;
        white-space: nowrap !important;
        font-weight: 900 !important;
    }

    .navbar-toggler {
        margin-right: 10px !important;
    }
}