/* ==========================================================================
   EIMT 2026 SaaS Master Stylesheet - Centralized Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --eimt-primary: #02428e;
    --eimt-primary-dark: #012b5e;
    --eimt-primary-darker: #001a3b;
    --eimt-primary-light: #1d65c6;
    --eimt-primary-subtle: #edf4fc;
    
    --eimt-accent: #F03C02;
    --eimt-accent-hover: #d33200;
    --eimt-accent-dark: #b02a00;
    --eimt-accent-subtle: #fff1ed;

    --eimt-dark: #0f172a;
    --eimt-slate-900: #0f172a;
    --eimt-slate-800: #1e293b;
    --eimt-slate-700: #334155;
    --eimt-slate-600: #475569;
    --eimt-slate-500: #64748b;
    --eimt-slate-400: #94a3b8;
    --eimt-slate-300: #cbd5e1;
    --eimt-slate-200: #e2e8f0;
    --eimt-slate-100: #f1f5f9;
    --eimt-slate-50: #f8fafc;
    --eimt-white: #ffffff;

    --eimt-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --eimt-font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--eimt-font);
    color: var(--eimt-slate-700);
    background-color: var(--eimt-slate-50);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--eimt-font-heading);
    color: var(--eimt-slate-900);
    font-weight: 700;
}

a {
    color: var(--eimt-primary);
    transition: all 0.2s ease;
}

a:hover {
    color: var(--eimt-accent);
}

ul, ol {
    margin-top: 0;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Uniform Form Controls & Select2 Custom Styling
   ========================================================================== */
.form-control, select.form-control, textarea.form-control {
    width: 100% !important;
    height: 46px !important;
    padding: 10px 16px !important;
    font-size: 14.5px !important;
    font-family: var(--eimt-font) !important;
    color: var(--eimt-slate-800) !important;
    background-color: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.25s ease !important;
    box-sizing: border-box !important;
}

textarea.form-control {
    height: auto !important;
    min-height: 90px !important;
}

.form-control:focus, select.form-control:focus, textarea.form-control:focus {
    border-color: #02428e !important;
    box-shadow: 0 0 0 4px rgba(2, 66, 142, 0.12) !important;
    outline: none !important;
}

/* Select2 Uniform Styling Override */
.select2-container {
    width: 100% !important;
    display: block !important;
}

.select2-container--default .select2-selection--single {
    height: 46px !important;
    padding: 8px 16px !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 10px !important;
    background-color: #ffffff !important;
    transition: all 0.25s ease !important;
    display: flex !important;
    align-items: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--eimt-slate-800) !important;
    font-size: 14.5px !important;
    font-family: var(--eimt-font) !important;
    line-height: normal !important;
    padding-left: 0 !important;
    padding-right: 20px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px !important;
    right: 12px !important;
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #02428e !important;
    box-shadow: 0 0 0 4px rgba(2, 66, 142, 0.12) !important;
    outline: none !important;
}

.select2-dropdown {
    border: 1.5px solid #02428e !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 25px rgba(2, 66, 142, 0.15) !important;
    overflow: hidden !important;
    z-index: 1055 !important;
}

.select2-results__option {
    padding: 10px 16px !important;
    font-size: 14px !important;
    font-family: var(--eimt-font) !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #02428e !important;
    color: #ffffff !important;
}

/* Form Section Titles & Upload Cards */
.eimt-form-header {
    background: linear-gradient(135deg, #edf4fc 0%, #ffffff 100%);
    padding: 12px 18px;
    border-radius: 10px;
    border-left: 5px solid #02428e;
    margin-bottom: 20px;
    margin-top: 10px;
}

.eimt-form-title {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: #02428e !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.upload-card-box {
    background: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    border-radius: 12px;
    padding: 20px 14px;
    text-align: center;
    transition: all 0.25s ease;
}

.upload-card-box:hover {
    border-color: #02428e;
    background: #edf4fc;
}

/* Our Courses Page Styling */
.course-header-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #02428e 0%, #012b5e 100%);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(2, 66, 142, 0.25);
}

.course-search-field {
    padding: 12px 42px 12px 44px !important;
    font-size: 15px !important;
    border-radius: 30px !important;
    border: 2px solid #cbd5e1 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.25s ease !important;
}

.course-search-field:focus {
    border-color: #02428e !important;
    box-shadow: 0 0 16px rgba(2, 66, 142, 0.15) !important;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 16px;
}

.search-clear-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: #cbd5e1;
    border: none;
    color: #ffffff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-category-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(2, 66, 142, 0.06);
    overflow: hidden;
    transition: all 0.25s ease;
}

.course-category-card:hover {
    box-shadow: 0 10px 28px rgba(2, 66, 142, 0.12);
    border-color: #cbd5e1;
}

.category-icon-badge {
    width: 42px;
    height: 42px;
    background: #edf4fc;
    color: #02428e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.view-courses-btn {
    background: #f1f5f9;
    color: #02428e;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.course-category-toggle:hover .view-courses-btn {
    background: #02428e;
    color: #ffffff;
}

.course-table tbody tr:hover {
    background-color: #f8fafc !important;
}

.highlight {
    background-color: #fef08a !important;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 800;
}

/* Gallery Modal Navigation Arrow Buttons */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.gallery-nav-btn:hover {
    background: #F03C02;
    border-color: #F03C02;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 16px rgba(240, 60, 2, 0.6);
}

.gallery-nav-prev {
    left: 15px;
}

.gallery-nav-next {
    right: 15px;
}

@media (max-width: 576px) {
    .gallery-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    .gallery-nav-prev { left: 8px; }
    .gallery-nav-next { right: 8px; }
}

/* Gallery Keyframe Animations & Styles */
@keyframes galleryFadeInUp {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-animate-in {
    animation: galleryFadeInUp 0.35s ease-out forwards;
}

.btn-filter {
    background: #f1f5f9;
    color: #334155;
    font-weight: 600;
    font-size: 13.5px;
    padding: 8px 18px;
    border-radius: 24px;
    border: 1px solid #cbd5e1;
    transition: all 0.2s ease;
}

.btn-filter:hover, .btn-filter.active {
    background: linear-gradient(135deg, #F03C02 0%, #d03200 100%) !important;
    color: #ffffff !important;
    border-color: #F03C02 !important;
    box-shadow: 0 4px 12px rgba(240, 60, 2, 0.3);
}

.eimt-gallery-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(2, 66, 142, 0.06);
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.eimt-gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(2, 66, 142, 0.15);
}

.gallery-img-box {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #011b3c;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.eimt-gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 66, 142, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.eimt-gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon-btn {
    background: #ffffff;
    color: #02428e;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.gallery-card-body {
    padding: 14px 16px;
    background: #ffffff;
}

/* Dynamic Hero Banner Carousel */
#featured {
    background: #001a3b;
    position: relative;
    padding: 0;
    overflow: hidden;
    width: 100%;
}

#heroBannerCarousel {
    width: 100%;
    position: relative;
}

.hero-banner-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#heroBannerCarousel .hero-banner-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 6s ease-in-out;
}

.carousel-item.active .hero-banner-img {
    transform: scale(1.04);
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 27, 60, 0.45) 0%, rgba(2, 66, 142, 0.7) 100%);
    z-index: 1;
}

/* Floating Glassmorphic Content Overlay */
.hero-floating-card-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-floating-card {
    pointer-events: auto;
    max-width: 620px;
    background: rgba(2, 66, 142, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    color: #ffffff;
}

.hero-badge {
    background: rgba(240, 60, 2, 0.9);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 24px;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(240, 60, 2, 0.4);
}

.hero-title {
    font-family: var(--eimt-font-heading);
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title strong {
    color: #38bdf8;
}

.hero-desc {
    font-size: 16px;
    color: #f1f5f9;
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-light-outline {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    backdrop-filter: blur(4px);
    border-radius: 30px !important;
    font-weight: 700 !important;
}

.btn-light-outline:hover {
    background: #ffffff !important;
    color: #02428e !important;
    transform: translateY(-2px);
}

/* Indicators & Controls */
.carousel-indicators {
    z-index: 3;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.5;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.carousel-indicators .active {
    width: 32px;
    border-radius: 6px;
    background-color: #F03C02;
    opacity: 1;
    box-shadow: 0 0 12px rgba(240, 60, 2, 0.8);
}

.carousel-control-prev, .carousel-control-next {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    opacity: 0.85;
    z-index: 3;
    transition: all 0.25s ease;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    background: #F03C02;
    border-color: #F03C02;
    opacity: 1;
}

/* Sleek Glassmorphic Top Strip */
.eimt-top-strip {
    background: linear-gradient(90deg, #07162c 0%, #012b5e 50%, #07162c 100%) !important;
    color: #ffffff;
    padding: 8px 0 !important;
    font-size: 12.5px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.eimt-top-strip a {
    color: #bae6fd;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.eimt-top-strip a:hover {
    color: #ffffff !important;
}

.eimt-top-info-list {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.eimt-top-info-list li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.top-icon-pill {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #38bdf8;
}

.top-quick-btn {
    padding: 3px 12px;
    border-radius: 16px;
    font-size: 11.5px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.top-quick-btn-light {
    background: rgba(255, 255, 255, 0.1);
    color: #e0f2fe !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.top-quick-btn-light:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    transform: translateY(-1px);
}

.top-quick-btn-accent {
    background: #F03C02;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(240, 60, 2, 0.4);
}

.top-quick-btn-accent:hover {
    background: #d03200;
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* Clean Minimal Navbar Header */
.eimt-main-nav {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(2, 66, 142, 0.06);
    position: sticky;
    top: 0;
    z-index: 1040;
    border-bottom: 2px solid #e2e8f0;
}

.eimt-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 6px 0;
    position: relative;
}

/* Logo Box */
.eimt-brand-box {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}

.eimt-brand-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.eimt-brand-titles {
    display: flex;
    flex-direction: column;
}

.eimt-brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #02428e;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.eimt-brand-sub {
    font-size: 11px;
    font-weight: 700;
    color: #F03C02;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Clean Text-Only Menu */
.eimt-nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.eimt-nav-item {
    position: relative;
}

.eimt-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    color: #334155;
    padding: 8px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
    text-decoration: none !important;
    white-space: nowrap;
}

.eimt-nav-link:hover, .eimt-nav-item.active > .eimt-nav-link {
    color: #02428e;
    background: #edf4fc;
}

.eimt-nav-link i.arrow {
    font-size: 11px;
    margin-left: 2px;
    color: #64748b;
    transition: transform 0.2s ease;
}

.eimt-nav-item:hover > .eimt-nav-link i.arrow {
    transform: rotate(180deg);
    color: #02428e;
}

/* Dropdown Menu */
.eimt-nav-item.dropdown:hover > .eimt-dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.eimt-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 240px;
    border-radius: 12px;
    box-shadow: 0 16px 36px rgba(2, 66, 142, 0.12);
    border: 1px solid #e2e8f0;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    z-index: 1050;
}

.eimt-dropdown li a {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    display: block;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.eimt-dropdown li a:hover {
    background: #edf4fc;
    color: #02428e;
    padding-left: 22px;
}

/* Action Button & Toggle */
.eimt-nav-actions {
    display: flex;
    align-items: center;
}

.eimt-action-btn-signin {
    background: linear-gradient(135deg, #F03C02 0%, #d03200 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 9px 22px;
    border-radius: 24px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(240, 60, 2, 0.35);
    transition: all 0.25s ease;
}

.eimt-action-btn-signin:hover {
    background: linear-gradient(135deg, #d03200 0%, #b02a00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 60, 2, 0.45);
}

.eimt-mobile-toggle {
    display: none;
    background: #edf4fc;
    border: 1px solid #cbd5e1;
    color: #02428e;
    font-size: 20px;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.eimt-mobile-toggle:hover {
    background: #02428e;
    color: #ffffff;
    border-color: #02428e;
}

/* Animated Side Drawer */
.eimt-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
}

.eimt-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.eimt-side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 310px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 1070;
    box-shadow: -8px 0 36px rgba(2, 66, 142, 0.22);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.eimt-side-drawer.active {
    transform: translateX(0);
}

.eimt-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: linear-gradient(135deg, #edf4fc 0%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
}

.eimt-drawer-close {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 22px;
    line-height: 1;
    color: #02428e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.eimt-drawer-close:hover {
    background: #F03C02;
    color: #ffffff;
    border-color: #F03C02;
}

.eimt-drawer-body {
    padding: 12px 0;
    flex: 1;
}

.eimt-drawer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.eimt-drawer-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 14.5px;
    font-weight: 600;
    color: #334155;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.eimt-drawer-menu li a:hover, .eimt-drawer-menu li.active > a {
    background: #edf4fc;
    color: #02428e;
    border-left-color: #02428e;
    padding-left: 24px;
}

/* Drawer Accordion Submenu Toggles */
.drawer-has-submenu {
    border-bottom: 1px solid #f1f5f9;
}

.drawer-submenu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    background: none;
    border: none;
    font-family: var(--eimt-font);
    font-size: 14.5px;
    font-weight: 700;
    color: #02428e;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.drawer-submenu-toggle:hover {
    background: #edf4fc;
}

.drawer-submenu-toggle i.arrow {
    font-size: 12px;
    color: #64748b;
    transition: transform 0.3s ease;
}

.drawer-has-submenu.open .drawer-submenu-toggle i.arrow {
    transform: rotate(180deg);
    color: #F03C02;
}

.drawer-submenu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 4px 0 8px 16px;
    background: #f8fafc;
    border-left: 3px solid #02428e;
}

.drawer-has-submenu.open .drawer-submenu {
    display: block;
}

.drawer-submenu li a {
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 500;
    color: #475569;
}

.drawer-submenu li a:hover {
    color: #02428e;
    padding-left: 22px;
}

/* Announcement Ticker Bar */
.eimt-announcement-strip {
    background: #011b3c;
    color: #ffffff;
    padding: 8px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.eimt-announcement-badge {
    background: #F03C02;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin-right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(240, 60, 2, 0.4);
}

.eimt-announcement-marquee {
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

.eimt-announcement-marquee span {
    color: #e2e8f0 !important;
    font-weight: 500;
    font-size: 14px !important;
}

/* Cards & Containers */
.eimt-card, .card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(2, 66, 142, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
    padding: 24px;
}

.eimt-card:hover {
    box-shadow: 0 12px 32px rgba(2, 66, 142, 0.12);
    transform: translateY(-2px);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 24px rgba(2, 66, 142, 0.08);
    border-radius: 12px;
}

/* Page Header Banner */
.eimt-page-header {
    background: linear-gradient(135deg, #011b3c 0%, #02428e 100%);
    color: #ffffff;
    padding: 48px 0 38px 0;
    margin-bottom: 30px;
    position: relative;
    border-bottom: 4px solid #F03C02;
}

.eimt-page-header h1 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 8px;
}

.eimt-page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
}

.eimt-welcome-banner {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(2, 66, 142, 0.08);
    padding: 30px;
    margin-bottom: 30px;
    border-left: 6px solid #02428e;
}

.eimt-welcome-title {
    font-size: 28px;
    color: #0f172a;
    margin-bottom: 14px;
}

.eimt-welcome-title strong {
    color: #02428e;
}

.eimt-hero-lead {
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

/* Buttons */
.btn-theme, .btn-primary {
    background-color: #02428e !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(2, 66, 142, 0.2);
}

.btn-theme:hover, .btn-primary:hover {
    background-color: #012b5e !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, #F03C02 0%, #d03200 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(240, 60, 2, 0.35);
}

.btn-accent:hover {
    background: linear-gradient(135deg, #d03200 0%, #b02a00 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(240, 60, 2, 0.45);
}

.btn-large {
    padding: 12px 28px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 30px !important;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #0b192c 0%, #030811 100%);
    color: #94a3b8;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 4px solid #02428e;
}

footer h5.widgetheading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

footer h5.widgetheading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #F03C02;
}

footer ul.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul.link-list li {
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

footer ul.link-list li a {
    color: #cbd5e1;
    font-size: 14px;
    text-decoration: none !important;
}

footer ul.link-list li a:hover {
    color: #F03C02;
}

#sub-footer {
    background: #02050b;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748b;
    font-size: 13px;
}

.social-network {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 8px;
}

.social-network li a {
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.social-network li a:hover {
    background: #F03C02;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 60, 2, 0.4);
}

a.scrollup {
    background: #F03C02;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    bottom: 25px;
    right: 25px;
    box-shadow: 0 4px 14px rgba(240, 60, 2, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 999;
}

/* FontAwesome 6 Legacy Class Mapping Aliases */
[class^="icon-"], [class*=" icon-"] {
    font-family: 'Font Awesome 6 Free', 'FontAwesome', sans-serif;
    font-weight: 900;
    font-style: normal;
    display: inline-block;
}

.icon-map-marker::before { content: "\f3c5"; }
.icon-phone::before { content: "\f095"; }
.icon-envelope-alt::before, .icon-envelope::before { content: "\f0e0"; }
.icon-home::before { content: "\f015"; }
.icon-info-sign::before { content: "\f05a"; }
.icon-picture::before { content: "\f03e"; }
.icon-book::before { content: "\f02d"; }
.icon-user::before { content: "\f007"; }
.icon-group::before { content: "\f0c0"; }
.icon-signin::before, .icon-lock::before { content: "\f090"; }
.icon-external-link::before { content: "\f35d"; }
.icon-check::before { content: "\f00c"; }
.icon-trophy::before { content: "\f091"; }
.icon-cogs::before { content: "\f085"; }
.icon-briefcase::before { content: "\f0b1"; }
.icon-pencil::before, .icon-edit::before { content: "\f304"; }
.icon-bullhorn::before { content: "\f0a1"; }
.icon-list-ul::before { content: "\f0ca"; }
.icon-angle-down::before { content: "\f107"; }
.icon-chevron-right::before { content: "\f054"; }
.icon-chevron-left::before { content: "\f053"; }
.icon-chevron-up::before { content: "\f077"; }
.icon-refresh::before { content: "\f021"; }
.icon-bars::before, .icon-reorder::before { content: "\f0c9"; }
.icon-facebook::before { content: "\f09a"; font-family: 'Font Awesome 6 Brands'; }
.icon-twitter::before { content: "\f099"; font-family: 'Font Awesome 6 Brands'; }
.icon-linkedin::before { content: "\f0e1"; font-family: 'Font Awesome 6 Brands'; }

/* Grid Flexbox System Overrides */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.row, .row-fluid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
    box-sizing: border-box;
}

[class*="span"] {
    box-sizing: border-box;
    padding-left: 12px;
    padding-right: 12px;
    margin-left: 0 !important;
    float: none !important;
}

.span12 { width: 100%; flex: 0 0 100%; }
.span9  { width: 75%; flex: 0 0 75%; }
.span8  { width: 66.666667%; flex: 0 0 66.666667%; }
.span7  { width: 58.333333%; flex: 0 0 58.333333%; }
.span6  { width: 50%; flex: 0 0 50%; }
.span5  { width: 41.666667%; flex: 0 0 41.666667%; }
.span4  { width: 33.333333%; flex: 0 0 33.333333%; }
.span3  { width: 25%; flex: 0 0 25%; }
.span2  { width: 16.666667%; flex: 0 0 16.666667%; }

/* Mobile & Responsive Breakpoints (< 991px & < 768px) */
@media (max-width: 991px) {
    .eimt-top-strip {
        display: none !important;
    }

    .eimt-nav-actions {
        display: none !important;
    }

    .eimt-mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .eimt-brand-name {
        font-size: 18px;
    }

    .eimt-brand-sub {
        font-size: 9.5px;
    }

    .eimt-brand-logo {
        height: 42px;
    }

    .eimt-nav-menu {
        display: none !important;
    }

    #heroBannerCarousel .hero-banner-img {
        height: 380px !important;
    }

    .hero-floating-card {
        padding: 24px 28px !important;
        max-width: 90% !important;
    }

    .hero-title {
        font-size: 28px !important;
    }

    .hero-desc {
        font-size: 14px !important;
        margin-bottom: 16px !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 14px;
    }

    .span12, .span9, .span8, .span7, .span6, .span5, .span4, .span3, .span2 {
        width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 20px;
    }

    /* Hero Banner Mobile Styling */
    #heroBannerCarousel .hero-banner-img {
        height: 300px !important;
    }

    .hero-floating-card-container {
        position: relative !important;
        background: #011b3c;
        padding: 20px 0;
    }

    .hero-floating-card {
        max-width: 100% !important;
        border-radius: 12px !important;
        padding: 20px 16px !important;
        box-shadow: none !important;
    }

    .hero-title {
        font-size: 22px !important;
    }

    .eimt-welcome-banner {
        padding: 20px 16px !important;
        margin-bottom: 24px !important;
    }

    .eimt-welcome-title {
        font-size: 22px !important;
    }

    .eimt-hero-lead {
        font-size: 14px !important;
        line-height: 1.6;
    }

    .eimt-page-header {
        padding: 28px 0 20px 0 !important;
    }

    .eimt-page-header h1 {
        font-size: 24px !important;
    }

    .eimt-page-header p {
        font-size: 14px !important;
    }

    .btn-large {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 10px 20px !important;
        font-size: 14px !important;
    }

    .carousel-control-prev, .carousel-control-next {
        width: 36px;
        height: 36px;
        margin: 0 6px;
    }
}

.solidline {
    border-top: 1px solid #e2e8f0;
    margin: 30px 0;
    width: 100%;
}

.badge-eimt {
    background: #edf4fc;
    color: #02428e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}

.badge-accent {
    background: #fff1ed;
    color: #F03C02;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

/* ==========================================================================
   Ultra-Attractive Glassmorphic Page Header Banner (.eimt-page-header)
   ========================================================================== */
.eimt-page-header {
    position: relative;
    background: linear-gradient(135deg, #011b3c 0%, #02428e 55%, #0352b5 100%) !important;
    color: #ffffff !important;
    padding: 48px 0 38px 0 !important;
    border-bottom: 4px solid #F03C02 !important;
    box-shadow: 0 12px 35px rgba(2, 66, 142, 0.25) !important;
    overflow: hidden;
}

.eimt-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at 50% 0%, rgba(240, 60, 2, 0.25), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.eimt-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    pointer-events: none;
}

.eimt-page-header .container {
    position: relative;
    z-index: 1;
}

.eimt-page-header h1 {
    font-family: var(--eimt-font-heading) !important;
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 8px !important;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35) !important;
}

.eimt-page-header p {
    font-size: 15.5px !important;
    color: #bae6fd !important;
    font-weight: 500 !important;
    margin-bottom: 16px !important;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.eimt-page-header .breadcrumb {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 6px 20px !important;
    border-radius: 30px !important;
    margin-top: 12px !important;
    margin-bottom: 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.eimt-page-header .breadcrumb a {
    color: #e0f2fe !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.eimt-page-header .breadcrumb a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

.eimt-page-header .breadcrumb .active {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

