@charset "UTF-8";

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: #334155;
    background-color: #fff;
}

/* Breadcrumb Styles */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.breadcrumb-item a {
    color: var(--prof-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}

/* Tender Modern UI Styles */
.tender-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 25px;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.tender-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.tender-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.tender-badge.open {
    background: #dcfce7;
    color: #166534;
}

.tender-badge.closed {
    background: #fee2e2;
    color: #991b1b;
}

.doc-download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.doc-download-item:hover {
    background: #fff;
    border-color: #3498db;
    transform: translateX(5px);
}

.tender-meta {
    display: flex;
    gap: 20px;
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 15px;
}

.tender-meta i {
    color: var(--prof-gold);
    width: 16px;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Narrow container option for focused content */
.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Layout Utilities */
:root {
    --prof-maroon: #721c24;
    --prof-navy: #002147;
    --prof-blue: #5A8DBE;
    /* Logo subtext color */
    --prof-gold: #d4af37;
    --prof-gold-soft: rgba(212, 175, 55, 0.2);
    --prof-white-soft: #f8f9fa;
    --nav-height: 80px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --prof-maroon-dark: #4a0000;
    --font-academic: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', 'Playfair Display', serif;
}

.page-hero {
    background: linear-gradient(135deg, var(--prof-navy) 0%, #001a35 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero p.lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.page-hero.dark {
    background: linear-gradient(135deg, #2c3e50, #3498db);
}

.content-section {
    padding: 100px 0;
}

.card-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.card-box .section-title {
    color: #2c3e50;
    margin-bottom: 20px;
}

.sticky-widget {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 20px;
    height: fit-content;
}

.info-strip {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--prof-maroon);
}

.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--prof-maroon), var(--prof-maroon-dark));
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(114, 28, 36, 0.2);
    border: none;
    cursor: pointer;
}

.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(114, 28, 36, 0.3);
    background: linear-gradient(135deg, var(--prof-maroon-dark), var(--prof-maroon));
    color: #fff;
}

.btn-pill-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    color: #475569;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.btn-pill-secondary:hover {
    background: #e2e8f0;
    color: #1e293b;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.badge-soft-primary {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    display: inline-block;
}

.quick-nav a {
    color: #2c3e50;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.quick-nav a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--prof-gold);
}

.quick-nav a:last-child {
    border-bottom: none;
}

.doctor-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.doctor-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--prof-maroon);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Minimal Responsive Grid (Bootstrap-like) */
.row {
    display: flex;
    flex-wrap: wrap;
}

.text-center {
    text-align: center;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Base: stack columns */
[class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Common small column sizes */
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

/* md ≥ 768px */
@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-4 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* lg ≥ 992px */
@media (min-width: 992px) {
    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-lg-8 {
        flex: 0 0 66.6667%;
        max-width: 66.6667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-4 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* Spacing utilities (subset for templates) */
.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

/* Gap utilities for rows using flex gap */
.g-1 {
    gap: 0.25rem;
}

.g-2 {
    gap: 0.5rem;
}

.g-3 {
    gap: 1rem;
}

.g-4 {
    gap: 1.5rem;
}

.g-5 {
    gap: 3rem;
}

/* Top Header Bar */
.top-header {
    background: var(--prof-navy);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: #ffcc00;
}

.social-links a {
    color: #fff;
    margin-left: 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ffcc00;
}

/* Main Header */
.main-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    max-width: 350px;
}

.logo {
    max-width: 60px;
    margin-right: 15px;
}

.logo-text h1 {
    color: var(--prof-maroon);
    font-size: 22px;
    margin-bottom: 3px;
    line-height: 1.2;
    font-weight: 600;
}

.logo-text p {
    color: #666;
    font-size: 12px;
    margin: 0;
    line-height: 1.3;
}

/* Global Navigation - Clean Academic Redesign */
.main-nav>ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.main-nav li {
    position: relative;
    margin: 0 10px;
}

.main-nav a {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    padding: 12px 10px;
    font-size: 15px;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 0;
}

/* Thin expansion underline for hover/active */
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--prof-maroon);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-50%);
}

.main-nav a:hover {
    color: var(--prof-maroon);
    background: transparent;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--prof-maroon);
    background: transparent;
}

/* Dropdown Menu - Refined Institutional Style */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 33, 71, 0.08);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    margin-top: 5px;
    display: block;
    /* Ensure vertical display by default */
}

/* Ensure list items in vertical dropdowns don't flex */
.dropdown-menu li {
    display: block;
    width: 100%;
    margin: 0;
}

/* Subtle Triangular tip */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 10px 20px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    display: block;
    text-transform: none;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: var(--prof-maroon);
    padding-left: 25px;
}

.dropdown>a i.fa-chevron-down {
    font-size: 9px;
    margin-left: 8px;
    opacity: 0.5;
    transition: transform 0.3s;
}

.dropdown:hover>a i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Advanced Dropdown Layout Types */
.dropdown-menu.layout-horizontal {
    display: flex;
    flex-direction: row;
    min-width: auto;
    width: max-content;
}

.dropdown-menu.layout-horizontal li {
    border-bottom: none;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    min-width: 120px;
}

.dropdown-menu.layout-horizontal li:last-child {
    border-right: none;
}

.dropdown-menu.layout-grid {
    display: grid;
    grid-template-columns: repeat(var(--dropdown-cols, 2), 1fr);
    gap: 1px;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.06);
}

.dropdown-menu.layout-grid li {
    border: none;
    background: #fff;
}

.dropdown-menu.layout-mega .mega-content {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}

.dropdown-menu.layout-mega .mega-items {
    display: grid;
    grid-template-columns: repeat(var(--dropdown-cols, 4), 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
}

.dropdown-menu.layout-mega .mega-items>li {
    margin-bottom: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.dropdown-menu.layout-mega .mega-items>li>a {
    font-weight: 700;
    font-size: 15px;
    color: var(--prof-navy);
    padding: 10px 0;
    border-bottom: 2px solid var(--prof-gold-soft);
    margin-bottom: 10px;
    display: block;
    background: transparent;
}

.sub-menu {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.sub-menu li a {
    padding: 8px 0 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #64748b !important;
    background: transparent !important;
    box-shadow: none !important;
}

.sub-menu li a:hover {
    color: var(--prof-maroon) !important;
    padding-left: 5px !important;
}

/* Improved spacing for vertical dropdowns */
.dropdown-menu li {
    margin-bottom: 2px;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu a {
    padding: 14px 18px;
    margin: 0;
    line-height: 1.4;
}

/* Enhanced hover effects */
.dropdown-menu a:hover {
    background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 100%);
    padding-left: 26px;
    box-shadow: inset 3px 0 0 #003366;
}

/* Advanced Layout Options for Dropdown Menus */
/* Horizontal Layout */
.dropdown-menu.layout-horizontal {
    display: flex !important;
    flex-direction: row !important;
    min-width: auto;
    width: auto;
}

.dropdown-menu.layout-horizontal li {
    width: auto;
    min-width: 150px;
    border-bottom: none;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown-menu.layout-horizontal li:last-child {
    border-right: none;
}

/* Grid Layout */
.dropdown-menu.layout-grid {
    display: grid !important;
    grid-template-columns: repeat(var(--dropdown-cols, 2), 1fr);
    min-width: 300px;
    gap: 0;
}

.dropdown-menu.layout-grid.cols-1 {
    grid-template-columns: 1fr;
    min-width: 220px;
}

.dropdown-menu.layout-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
    min-width: 340px;
}

.dropdown-menu.layout-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
    min-width: 480px;
}

.dropdown-menu.layout-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
    min-width: 620px;
}

.dropdown-menu.layout-grid li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown-menu.layout-grid li:nth-child(n) {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown-menu.layout-grid li:nth-last-child(-n+var(--dropdown-cols, 2)) {
    border-bottom: none;
}

.dropdown-menu.layout-mega {
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 95vw;
    max-width: 1200px;
    padding: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.dropdown:hover .dropdown-menu.layout-mega {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.dropdown-menu.layout-mega .mega-content {
    padding: 30px;
}

/* Enhanced animations for different layouts */
.dropdown-menu.layout-horizontal {
    animation: slideInHorizontal 0.3s ease;
}

.dropdown-menu.layout-grid {
    animation: scaleIn 0.3s ease;
}

.dropdown-menu.layout-mega {
    animation: fadeInMega 0.4s ease;
}

@keyframes slideInHorizontal {
    from {
        transform: translateY(-8px) scaleX(0.8);
        opacity: 0;
    }

    to {
        transform: translateY(0) scaleX(1);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: translateY(-8px) scale(0.9);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes fadeInMega {
    from {
        transform: translateX(-50%) translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Responsive adjustments for advanced layouts */
@media (max-width: 768px) {

    .dropdown-menu.layout-horizontal,
    .dropdown-menu.layout-grid,
    .dropdown-menu.layout-mega {
        display: flex !important;
        flex-direction: column !important;
        min-width: 220px;
        width: auto;
        position: absolute;
        left: 0;
        transform: translateY(-8px);
        grid-template-columns: none;
        gap: 0;
        padding: 0;
        background: #fff;
    }

    .dropdown:hover .dropdown-menu.layout-mega {
        transform: translateY(0);
    }

    .dropdown-menu.layout-horizontal li,
    .dropdown-menu.layout-grid li,
    .dropdown-menu.layout-mega li {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: none;
        border-radius: 0;
        background: none;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: #003366;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .logo-section {
        max-width: 100%;
    }

    .main-nav {
        width: 100%;
    }

    .main-nav ul {
        flex-direction: column;
        background: #f8f9fa;
        border-radius: 5px;
        padding: 10px;
    }

    .main-nav li {
        margin: 0;
        margin-right: 0;
        /* Override desktop margin */
        width: 100%;
    }

    .main-nav a {
        padding: 12px 15px;
        margin: 2px 0;
        white-space: normal;
    }

    /* Mobile Dropdown - Fixed */
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: var(--prof-white-soft) !important;
        margin-top: 5px !important;
        border-radius: 5px !important;
        width: 100% !important;
        display: none !important;
        /* Hidden by default on mobile */
        padding: 0 !important;
    }

    /* Show dropdown when activated by JavaScript */
    .dropdown-menu.mobile-active {
        display: block !important;
    }

    .dropdown-menu li {
        width: 100% !important;
        margin: 0 !important;
        display: block !important;
        float: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    }

    .dropdown-menu li:last-child {
        border-bottom: none !important;
    }

    .dropdown-menu a {
        padding: 10px 15px !important;
        color: #333 !important;
        font-size: 14px !important;
        display: block !important;
        width: 100% !important;
        border-radius: 0 !important;
        background: none !important;
        margin: 0 !important;
    }

    .dropdown-menu a:hover {
        background: #eee !important;
        padding-left: 20px !important;
        transform: none !important;
        color: var(--prof-maroon) !important;
    }

    /* Mobile dropdown arrow */
    .dropdown>a {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
}

@media (max-width: 1024px) {
    .main-nav li {
        margin-right: 25px;
    }

    /* Reduce spacing for tablets */
    .main-nav li:last-child {
        margin-right: 0;
    }

    .main-nav a {
        padding: 8px 12px;
        font-size: 14px;
    }

    .dropdown-menu {
        min-width: 250px;
    }
}

/* Slider Styles */
.slider {
    position: relative;
    height: 700px;
    overflow: hidden;
    margin-top: 0;
    background: var(--prof-navy);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.5s;
    z-index: 1;
}

/* Executive Hero Slider Styles */
.executive-hero {
    height: 750px !important;
    background: var(--prof-navy-deep);
}

.ken-burns-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ken-burns-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease infinite alternate;
}

.slide-overlay-premium {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 33, 71, 0.9) 0%, rgba(0, 33, 71, 0.4) 50%, rgba(0, 33, 71, 0) 100%);
}

.slide-content-editorial {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 650px;
    color: #fff;
    z-index: 10;
}

.editorial-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--prof-gold);
    margin-bottom: 25px;
    animation: revealUp 0.8s ease forwards;
}

.slide-content-editorial h2 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: revealUp 1s ease 0.2s forwards;
    opacity: 0;
}

.slide-content-editorial .subtitle {
    font-family: var(--font-editorial);
    font-size: 20px;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 45px;
    animation: revealUp 1.2s ease 0.4s forwards;
    opacity: 0;
}

.btn-executive {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    color: var(--prof-navy);
    padding: 18px 35px;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: revealUp 1.4s ease 0.6s forwards;
    opacity: 0;
}

.btn-executive:hover {
    background: var(--prof-gold);
    color: #fff;
    transform: translateX(10px);
}

.slider-arrows-minimal {
    position: absolute;
    bottom: 50px;
    left: 10%;
    display: flex;
    gap: 20px;
    z-index: 20;
}

.slider-arrows-minimal button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrows-minimal button:hover {
    border-color: var(--prof-gold);
    color: var(--prof-gold);
}

.slider-nav-editorial {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 20;
}

.slider-nav-editorial button {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav-editorial button.active {
    background: var(--prof-gold);
    transform: scale(2);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active img {
    transform: scale(1.1);
    /* Ken Burns Effect */
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(75deg,
            rgba(0, 33, 71, 0.95) 0%,
            rgba(0, 33, 71, 0.7) 30%,
            rgba(114, 28, 36, 0.4) 100%);
    z-index: 3;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 4;
    max-width: 800px;
    padding: 40px;
    background: rgba(0, 33, 71, 0.3);
    backdrop-filter: blur(5px);
    border-left: 5px solid var(--prof-gold);
}

.slide-content h2 {
    font-size: 58px;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
}

.slide-content p {
    font-size: 22px;
    margin-bottom: 35px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.7s;
}

.slide-content .btn {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.9s;
}

.slide.active .slide-content h2,
.slide.active .slide-content p,
.slide.active .slide-content .btn {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    right: 130px;
    z-index: 5;
    display: flex;
    gap: 15px;
}

.slider-nav button {
    width: 45px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.slider-nav button.active {
    background: var(--prof-gold);
    width: 70px;
}

/* Slider Arrows */
.slider-arrows {
    position: absolute;
    bottom: 40px;
    left: 10%;
    z-index: 5;
    display: flex;
    gap: 10px;
}

.slider-arrows button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    backdrop-filter: blur(5px);
}

.slider-arrows button:hover {
    background: var(--prof-gold);
    color: var(--prof-navy);
    border-color: var(--prof-gold);
    transform: scale(1.1);
}

/* Redesigning current news strip integration with slider for cleaner look */
.news-strip-section {
    position: relative;
    z-index: 10;
    margin-top: -35px;
    /* Pull it up onto the slider slightly */
}

/* Responsive Slider */
@media (max-width: 1100px) {
    .slide-content {
        left: 5%;
        max-width: 700px;
    }

    .slide-content h2 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .slider {
        height: 500px;
    }

    .slide-content {
        left: 0;
        right: 0;
        top: 45%;
        margin: 0 20px;
        padding: 30px;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--prof-gold);
        background: rgba(0, 33, 71, 0.8);
    }

    .slide-content h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .slider-nav {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
    }

    .slider-arrows {
        display: none;
        /* Hide arrows on small mobile for cleaner look */
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #800000 0%, #a52a2a 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background: #ffcc00;
    color: #003366;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: #003366;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #666;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border: 2px solid #0066cc;
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.card h3 {
    color: #003366;
    margin-bottom: 15px;
}

/* Footer */
/* Institutional Footer Styles - Replaced Legacy */


/* News Strip Styles Removed - Conflict Fixed */

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #ffcc00;
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffcc00;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #004d99;
}

/* Responsive */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .logo-section {
        max-width: 100%;
    }

    .main-nav {
        width: 100%;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        background: #f8f9fa;
        border-radius: 5px;
        padding: 10px;
    }

    .main-nav li {
        margin: 0;
    }

    .main-nav a {
        padding: 12px 15px;
        margin: 2px 0;
    }

    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .logo-text h1 {
        font-size: 18px;
    }

    .logo-text p {
        font-size: 11px;
    }
}

/* Achievements Section */
.achievements-section {
    background-color: #fcfcfc;
}

.achievement-card {
    border-top: 4px solid #ca8a04;
    display: flex;
    gap: 20px;
    align-items: center;
    text-align: left;
    padding: 25px !important;
}

.achievement-img-container {
    flex: 0 0 100px;
    height: 100px;
}

.achievement-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.achievement-icon-fallback {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.achievement-icon-fallback i {
    font-size: 30px;
    color: #ca8a04;
}

.achievement-info {
    flex: 1;
}

.achievement-card h3 {
    color: #003366;
    margin: 0 0 5px 0;
    font-size: 1.25rem;
}

.achievement-card h4 {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
}

.achievement-brief {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .achievement-card {
        flex-direction: column;
        text-align: center;
    }

    .achievement-img-container {
        margin-bottom: 15px;
    }
}

/* --- Complaint Management System UI --- */
.cms-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 30px;
}

.cms-header {
    background: linear-gradient(135deg, #800000 0%, #a52a2a 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.cms-header h2 {
    font-size: 1.75rem;
    margin: 0 !important;
    color: #fff !important;
}

.cms-form-body {
    padding: 40px;
}

.cms-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .cms-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.cms-form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.cms-form-section h3 {
    font-size: 1.1rem;
    color: #800000;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cms-group {
    margin-bottom: 20px;
}

.cms-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 8px;
}

.cms-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.cms-input:focus {
    outline: none;
    border-color: #800000;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(128, 0, 0, 0.1);
}

.cms-radio-group {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

.cms-radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #475569;
}

.cms-radio-item input {
    width: 18px;
    height: 18px;
}

.cms-submit-btn {
    background: #800000;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(128, 0, 0, 0.3);
}

.cms-submit-btn:hover {
    background: #a52a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(128, 0, 0, 0.4);
}

/* Timeline Polish */
.cms-timeline-item {
    position: relative;
    padding-left: 45px;
    margin-bottom: 40px;
}

.cms-timeline-item::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: -40px;
    width: 2px;
    background: #e2e8f0;
}

.cms-timeline-item:last-child::before {
    display: none;
}

.cms-timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #64748b;
    font-size: 0.9rem;
}

.cms-timeline-item.latest .cms-timeline-dot {
    border-color: #800000;
    color: #800000;
    background: #fff5f5;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(128, 0, 0, 0.2);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(128, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(128, 0, 0, 0);
    }
}




/* Achievements Modern Redesign */
.achievements-section-modern {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.section-title-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(128, 0, 0, 0.1);
    color: #800000;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title-modern h2 {
    font-size: 42px;
    color: #800000;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-title-modern p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 25px;
}

.title-divider {
    width: 60px;
    height: 4px;
    background: #FFD700;
    margin: 0 auto;
    border-radius: 2px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
}

.achievement-card-premium {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    height: 100%;
}

.achievement-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.achievement-visual {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #800000 0%, #a52a2a 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #FFD700;
}

.achievement-visual .visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.achievement-card-premium:hover .visual-img {
    transform: scale(1.1);
}

.achievement-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(128, 0, 0, 0.4) 100%);
    z-index: 1;
}

.achievement-visual .icon-blob {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #FFD700;
    z-index: 2;
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.achievement-visual::after {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -50%;
    left: -50%;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.achievement-content-box {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.achievement-header {
    margin-bottom: 20px;
}

.achievement-header h3 {
    font-size: 22px;
    color: #800000;
    font-weight: 700;
    margin-bottom: 8px;
}

.sub-headline {
    color: #a52a2a;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.achievement-body p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.achievement-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.read-more {
    color: #800000;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.achievement-card-premium:hover .read-more i {
    transform: translateX(5px);
}

@media (max-width: 640px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .section-title-modern h2 {
        font-size: 32px;
    }
}

/* Executive Performance Hub Styles */
.performance-hub-hero {
    background: linear-gradient(135deg, #4a0000 0%, #800000 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.performance-hub-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hub-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: inline-block;
}

.performance-hub-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.performance-hub-hero p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.performance-content {
    padding: 60px 0;
    background: #f1f5f9;
}

.kpi-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.kpi-card-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.kpi-icon {
    width: 60px;
    height: 60px;
    background: #800000;
    color: #FFD700;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.kpi-value {
    font-size: 28px;
    font-weight: 800;
    color: #800000;
    line-height: 1;
}

.kpi-info h3 {
    font-size: 14px;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 5px;
}

.analytics-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.card-glass-premium {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.card-header-modern h3 {
    font-size: 20px;
    color: #800000;
    margin-bottom: 5px;
}

.card-header-modern p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 25px;
}

.chart-container-large {
    height: 350px;
}

.chart-container-small {
    height: 250px;
    margin-bottom: 20px;
}

.pulse-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pulse-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.blue {
    background: #a52a2a;
}

.dot.green {
    background: #800000;
}

.pulse-item .label {
    flex: 1;
    color: #475569;
    font-weight: 500;
}

.pulse-item .val {
    font-weight: 700;
    color: #1e293b;
}

.strategic-initiatives {
    margin-top: 60px;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 40px;
}

.section-header-modern h2 {
    font-size: 32px;
    color: #800000;
    margin-bottom: 15px;
}

.divider-gold {
    width: 50px;
    height: 3px;
    background: #FFD700;
    margin: 0 auto;
}

.initiative-row-glass {
    background: white;
    border-radius: 15px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.initiative-row-glass:hover {
    transform: translateX(10px);
    background: #f8fafc;
}

.init-meta {
    flex: 1;
}

.init-id {
    font-size: 12px;
    font-weight: 700;
    color: #800000;
    display: block;
    margin-bottom: 4px;
}

.init-meta h4 {
    font-size: 18px;
    color: #800000;
    margin: 0;
}

.init-progress {
    width: 300px;
}

.progress-label {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 6px;
    font-weight: 600;
}

.progress-bar-wrap {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #800000;
    border-radius: 4px;
}

.init-status {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.init-status.completed {
    background: #dcfce7;
    color: #166534;
}

.init-status.in-progress {
    background: #e0f2fe;
    color: #0369a1;
}

.init-status.assigned {
    background: #fef3c7;
    color: #92400e;
}

/* ==========================================================================
   Institutional Footer Redesign
   ========================================================================== */

.footer-institutional {
    background: linear-gradient(135deg, var(--prof-navy) 0%, #001529 100%) !important;
    color: #fff !important;
    padding-top: 80px !important;
    margin-top: 60px !important;
    border-top: 1px solid rgba(212, 175, 55, 0.1) !important;
    position: relative;
    overflow: hidden;
    text-align: left !important;
}

.footer-institutional .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand-section .footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-brand-section h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.footer-brand-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14.5px;
    margin-bottom: 25px;
    text-align: left !important;
}

.footer-title {
    margin: 0 0 25px 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--prof-gold) !important;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    padding-bottom: 12px;
    border-bottom: none !important;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--prof-gold);
    opacity: 0.6;
}

.footer-links-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links-list li {
    margin-bottom: 12px !important;
    list-style: none !important;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none !important;
    font-size: 14.5px !important;
    display: inline-flex !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    font-weight: 400 !important;
}

.footer-links-list a i {
    font-size: 10px !important;
    margin-right: 10px !important;
    color: var(--prof-gold) !important;
    opacity: 0.7 !important;
    transition: transform 0.3s ease !important;
}

.footer-links-list a:hover {
    color: #fff !important;
    padding-left: 5px !important;
}

/* Contact Block */
.footer-contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
    text-align: left !important;
}

.footer-contact-item i {
    color: var(--prof-gold) !important;
    font-size: 15px !important;
    margin-top: 4px !important;
}

.footer-contact-content strong {
    display: block !important;
    color: #fff !important;
    font-size: 14px !important;
    margin-bottom: 3px !important;
    font-weight: 600 !important;
}

/* Emergency Strip */
.emergency-strip-premium {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    padding: 30px !important;
    margin-bottom: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-bottom: none !important;
}

.emergency-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #e74c3c;
}

/* Executive News Chronicle */
.news-strip-section {
    background: var(--prof-navy);
    padding: 0;
    border-bottom: 3px solid var(--prof-gold);
    color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 100;
    height: 60px;
    display: flex;
    align-items: center;
}

.news-strip-container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.news-strip-header {
    background: var(--prof-maroon);
    height: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    box-shadow: 15px 0 25px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.news-strip-header i {
    margin-right: 12px;
    color: var(--prof-gold);
}

.news-strip-content {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.news-strip-slider {
    display: flex;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
    align-items: center;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.news-strip-item {
    padding: 0 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    height: 100%;
    transition: color 0.3s ease;
}

.news-strip-item:hover h4 {
    color: var(--prof-gold);
}

.news-strip-item h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.3px;
}

.news-strip-item .breaking-badge {
    background: var(--prof-gold);
    color: var(--prof-navy);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Strategic Vision Tier (Twin Pillars) */
.vision-mission-section {
    padding: 140px 0 100px;
    background: linear-gradient(to right, var(--prof-white-soft) 50%, #fff 50%);
    position: relative;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.pillar-glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--glass-shadow);
    transition: transform 0.4s ease;
}

.pillar-glass-card:hover {
    transform: translateY(-10px);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: var(--prof-gold);
    color: var(--prof-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 30px;
}

/* Magazine Editorial Leadership */
.editorial-spread {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: center;
}

.editorial-portrait {
    position: relative;
    padding-bottom: 40px;
}

.editorial-portrait img {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: 20px 20px 0 var(--prof-gold-soft);
}

.quote-accent {
    position: absolute;
    top: -50px;
    left: -40px;
    font-family: var(--font-editorial);
    font-size: 200px;
    color: var(--prof-gold-soft);
    line-height: 1;
    z-index: -1;
}

.principal-address {
    font-family: var(--font-editorial);
    font-size: 22px;
    line-height: 1.8;
    color: #444;
}

.footer-bottom-academic {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 30px 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* ==========================================================================
   AKDC Academic Portal Redesign Styles
   ========================================================================== */

.badge {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    font-size: 11px;
    padding: 8px 16px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.executive-hero h2 {
    font-size: 82px;
    /* Increased for impact */
    line-height: 1;
    margin: 25px 0;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -2px;
}

.btn-executive {
    background: var(--prof-blue);
    color: #fff;
    padding: 20px 40px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-executive:hover {
    background: var(--prof-navy);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 33, 71, 0.2);
}

.pillar-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 50px 40px;
    border-radius: 24px;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 33, 71, 0.03);
}

.pillar-glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 33, 71, 0.08);
}

.achievement-card-premium {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.achievement-card-premium:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--prof-blue);
    transform: translateY(-5px);
}

/* Institutional Pillars Section */
.pillars-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pillar-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 33, 71, 0.1);
    border-color: var(--prof-gold);
}

.pillar-icon-box {
    width: 80px;
    height: 80px;
    background: var(--prof-gold-soft);
    color: var(--prof-maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon-box {
    background: var(--prof-maroon);
    color: #fff;
}

.pillar-card h3 {
    color: var(--prof-navy);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pillar-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

/* Campus Pulse Section (Combined News & Events) */
.campus-pulse-section {
    padding: 100px 0;
    background: var(--prof-white-soft);
}

.pulse-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

@media (max-width: 992px) {
    .pulse-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.pulse-featured-event {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.featured-event-image {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.featured-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-event-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--prof-maroon);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-event-content {
    padding: 40px;
}

.featured-event-content h3 {
    font-size: 32px;
    color: var(--prof-navy);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* News List Feed */
.pulse-news-feed {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-feed-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.news-feed-item:hover {
    transform: translateX(5px);
    border-bottom-color: var(--prof-gold);
}

.news-feed-date {
    flex: 0 0 60px;
    text-align: center;
    border-right: 1px solid #f1f5f9;
    padding-right: 15px;
}

.news-feed-date .day {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--prof-navy);
}

.news-feed-date .month {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--prof-maroon);
    text-transform: uppercase;
}

.news-feed-content h4 {
    font-size: 17px;
    color: var(--prof-navy);
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-link-academic {
    color: var(--prof-maroon);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Academic Header Utility */
.academic-title-wrap {
    margin-bottom: 60px;
    position: relative;
}

.academic-title-wrap .badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--prof-gold-soft);
    color: var(--prof-maroon);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.academic-title-wrap h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--prof-navy);
    margin: 0;
    letter-spacing: -1px;
}

/* Leadership Quote Styling */
.leadership-text-elegant {
    font-family: 'Georgia', serif;
    font-size: 20px;
    line-height: 1.8;
    color: #334155;
    font-style: italic;
    border-left: 4px solid var(--prof-gold);
    padding-left: 30px;
    margin: 30px 0;
}

/* ==========================================================================
   Hero Redesign: Side-by-Side Split Layout
   ========================================================================== */

.hero-split-section {
    padding: 60px 0 120px;
    position: relative;
    background: #f8fafc;
    overflow: hidden;
}

.dot-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
    z-index: 1;
}

.hero-split-section .container {
    position: relative;
    z-index: 2;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 1200px) {
    .hero-split-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero-split-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.institutional-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--prof-blue);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: 82px;
    font-weight: 950;
    line-height: 1;
    color: var(--prof-navy);
    margin-bottom: 40px;
    letter-spacing: -4px;
}

.hero-main-title .text-blue {
    color: var(--prof-blue);
}

.hero-main-title .text-maroon {
    color: var(--prof-maroon);
}

.hero-description {
    font-family: var(--font-academic);
    font-size: 19px;
    line-height: 1.8;
    color: #64748b;
    max-width: 600px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-main-title {
        font-size: 60px;
    }
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .hero-cta-group {
        justify-content: center;
    }
}

.btn-executive-solid {
    background: var(--prof-navy);
    color: #fff;
    padding: 22px 45px;
    border-radius: 12px;
    font-weight: 8s00;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
    box-shadow: 0 15px 35px rgba(0, 33, 71, 0.2);
}

.btn-executive-solid:hover {
    background: var(--prof-blue);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(90, 141, 190, 0.3);
}

.btn-executive-outline {
    background: transparent;
    color: var(--prof-navy);
    padding: 22px 45px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
    border: 2px solid #e2e8f0;
}

.btn-executive-outline:hover {
    background: #fff;
    border-color: var(--prof-blue);
    color: var(--prof-blue);
    transform: translateY(-5px);
}

.hero-feature-strip {
    display: flex;
    gap: 40px;
    border-top: 1px solid #e2e8f0;
    padding-top: 40px;
}

@media (max-width: 992px) {
    .hero-feature-strip {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--prof-navy);
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.feature-text strong {
    display: block;
    color: var(--prof-navy);
    font-size: 16px;
}

.feature-text span {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
}

/* Premium Slider Card Styling */
.premium-slider-card {
    background: #fff;
    padding: 20px;
    border-radius: 40px;
    box-shadow: 0 70px 140px rgba(0, 20, 40, 0.15);
    position: relative;
    transition: var(--transition-smooth);
}

.premium-slider-card:hover {
    transform: scale(1.02);
    box-shadow: 0 80px 160px rgba(0, 20, 40, 0.2);
}

.executive-hero-new {
    border-radius: 30px;
    overflow: hidden;
    height: 800px !important;
    background: var(--prof-navy-deep);
}

.slide-overlay-soft {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 33, 71, 0.6) 0%, transparent 60%);
}

.slide-caption-minimal {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    z-index: 10;
}

.slide-caption-minimal h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
}

.slide-caption-minimal p {
    font-size: 14px;
    opacity: 0.8;
}

.slider-controls-minimal {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 20;
    pointer-events: none;
}

.slider-controls-minimal button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: auto;
}

.slider-controls-minimal button:hover {
    background: #fff;
    color: var(--prof-navy);
}

.slider-dots-minimal {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slider-dots-minimal button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dots-minimal button.active {
    background: var(--prof-blue);
    border-color: var(--prof-blue);
    transform: scale(1.2);
}