
.premium-announcement-bar{
    background:#044a42

}
.announcement-content{
    color:#ffffff;

}
.fluid-width-video-wrapper iframe {
    max-height: 400px;
}
.video-wrapper iframe {
    width: 100%;
    height:40vh; /* 25% of viewport height */
}
.video-wrapper {
    height: 200px; /* adjust as needed */
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top:0%; /* controls height (25% ratio) */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.accordion-button {
    gap: 10px;
}

/* Remove Bootstrap default arrow */
.accordion-button::after {
    display: none !important;
}

/* ICON (Circle + Plus/Minus) */
.faq-icon {
    width: 20px;
    height: 20px;
    border: 2px solid #444;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

/* PLUS (default state) */
.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #444;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Horizontal line */
.faq-icon::before {
    width: 10px;
    height: 2px;
}

/* Vertical line */
.faq-icon::after {
    width: 2px;
    height: 10px;
}

/* MINUS (when accordion is open) */
.accordion-button:not(.collapsed) .faq-icon::after {
    display: none;
}

/* SECTION BACKGROUND */
.faq-section {
    background: linear-gradient(135deg, #03433C, #04695f, #022f2a);
    position: relative;
}

/* Soft overlay glow */
.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent);
    pointer-events: none;
}

/* CATEGORY CARD */
.category-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;

    /* Prominent border */
    border: 2px solid rgba(255, 255, 255, 0.15);

    /* Glow shadow */
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* CATEGORY ITEMS */
.category-item {
    background: transparent;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    transition: 0.3s;
}

.category-item:hover {
    background: rgba(248, 183, 57, 0.2);
}

/* ACTIVE CATEGORY */
.category-item.active {
    background: linear-gradient(135deg, #F8B739, #ffd36b);
    color: #000;
    font-weight: 600;
}

/* FAQ CARD */
.faq-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);

    border-radius: 15px;

    /* Strong border */
    border: 2px solid rgba(255, 255, 255, 0.15);

    /* Prominent shadow */
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* ACCORDION */
.accordion-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

/* QUESTION */
.accordion-button {
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-weight: 500;
    border: none;
}

/* ACTIVE QUESTION */
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #F8B739, #ffd36b);
    color: #000;
}

/* ANSWER */
.accordion-body {
    background: #fff;
    color: #333;
}

/* HOVER EFFECT */
.accordion-item:hover {
    transform: translateY(-3px);
    transition: 0.3s;
}
.team-card {
    position: relative;
    border-radius: 18px;
    background: #fff;
    padding: 2px;
    transition: all 0.35s ease;
}

/* Gradient Border with your color */
.team-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        #F8B739,
        #ffd36b,
        #e0a800,
        #F8B739
    );
    
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Inner card */
.team-card .card-body {
    background: #fff;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

/* Hover effect */
.team-card:hover {
    transform: translateY(-10px) scale(1.02);
}
.team-card:hover {
    box-shadow: 0 15px 40px rgba(248, 183, 57, 0.35);
}

/* Glow effect */
.team-card:hover::before {
    filter: blur(6px);
    opacity: 0.9;
}
.btn-success {
    color: #fff;
    background-color: #033932;
    border-color:#033932;
}
.fa-3x {
    margin: 15px 0;
    transition: 0.3s;
}
.resource-box:hover .fa {
    transform: scale(1.2);
}
.resource-box {
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
}

.resource-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.mt50 {
    margin-top: 50px;
}


.message-section {
    padding: 60px 0;
    background: #f7f9fb;
}

/* HEADING */
.section-title {
    font-weight: 700;
    color: #103933;
    margin-bottom: 5px;
}

.section-subtitle {
    color: #7f8c8d;
    margin-bottom: 40px;
}

/* LEFT SIDE */
.left-profile {
    position: relative;
    padding-right: 30px;
    text-align: center;
}

/* Vertical divider */
.left-profile:after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 3px;
    background: linear-gradient(to bottom, #103933, #01211C);
}

/* Profile image */
.profile-wrapper {
    display: inline-block;
    padding: 6px;
    border-radius: 50%;
    background: linear-gradient(45deg, #103933, #01211C);
}

.profile-img {
    width: 140px;
    height: 140px;
    border: 4px solid #fff;
    border-radius: 50%;
}

/* Text */
.name-title {
    margin-top: 15px;
    font-weight: 600;
    color: #103933;
}

.designation {
    color: #888;
    margin-bottom: 10px;
}

/* RIGHT SIDE */
.right-message {
    padding-left: 30px;
}

/* Message heading */
.message-heading {
    font-weight: 600;
    color: #103933;
    margin-bottom: 15px;
    position: relative;
}

.message-heading:after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #103933;
    margin-top: 5px;
}

/* Message content */
.message-content {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}

/* ------------------ RESPONSIVE ------------------ */

/* Tablet */
@media (max-width: 991px) {
    .left-profile {
        padding-right: 0;
        margin-bottom: 25px;
    }

    .left-profile:after {
        display: none;
    }

    .right-message {
        padding-left: 0;
    }

    .profile-img {
        width: 120px;
        height: 120px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .message-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .profile-img {
        width: 100px;
        height: 100px;
    }

    .message-content {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* ================== ROOT ================== */
:root {
    --primary: #044a42;
    --gradient: linear-gradient(135deg, #044a42, #0a7c6f);
}

/* ================== CARDS ================== */
.ux-card,
.card-prominent,
.card-hover,
.fancy-card {
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Base card */
.ux-card {
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

/* Hover (shared) */
.ux-card:hover,
.card-prominent:hover,
.card-hover:hover,
.fancy-card:hover {
    transform: translateY(-8px);
}

/* Prominent card */
.card-prominent {
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Hover shadows */
.ux-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card-prominent:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

.card-hover:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.fancy-card {
    padding: 10px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.fancy-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ================== IMAGES ================== */
.card-img img {
    width: 110px;
    height: 110px;
    margin-bottom: 15px;
    border: 4px solid #eee;
}

.fancy-img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

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

/* ================== TEXT ================== */
.ux-card h4 {
    margin: 10px 0 5px;
    font-weight: 600;
    color: #2c3e50;
}

.ux-card small {
    color: #95a5a6;
}

.stream-header,
.section-title {
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.collapse-text {
    margin-top: 15px;
    font-size: 13px;
    color: #555;
}

.icon-title i {
    margin-right: 10px;
    color: #ffd700;
}

/* ================== BUTTON ================== */
.btn-primary-custom {
    background: var(--primary);
    border: none;
    color: #fff;
}

.btn-primary-custom:hover {
    background: #03332f;
}

.filter-btn {
    border-radius: 30px;
    margin: 3px;
}

/* ================== SECTION ================== */
.section-gradient {
    background: var(--gradient);
    color: #fff;
}

/* ================== SLIDER ================== */
.slider-content {
    position: relative;
    z-index: 2;
    padding-left: 60px;
    max-width: 600px;
    left:5%;
}

.slider-content h2 {
    color: #033E36;
    font-weight: bold;
}

.slider-content p {
    color: #000;
    margin-top: 30px;
    font-size: 16px;
}

/* Slide background */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Swiper */
.swiper-container,
.main-swiper {
    height: 100vh;
}

.swiper-wrapper,
.swiper-slide {
    height: 100%;
}

.swiper-slide {
    display: flex;
}

/* ================== HERO ================== */
.hero-slide {
    width: 100%;
    height:500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blur-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(10px) brightness(0.8);
    z-index: 1;
}

.main-banner {
    position: relative;
    z-index: 2;
    width: 100% !important;
    height: 100%;
    object-fit: contain;
    object-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ================== SWIPER NAV ================== */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    margin-top: -25px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1);
    opacity: 1;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: '';
    width: 15px;
    height: 15px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}

.swiper-button-next::after {
    transform: rotate(45deg);
}

.swiper-button-prev::after {
    transform: rotate(-135deg);
}

/* ================== ANIMATION ================== */
.blink_text,
.blink_img {
    animation: blinker 3s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0; }
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
    .hero-slide {
        height: 450px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}


    /* Base Styles */
    :root {
        --primary-color: #022822;
        --secondary-color: #044a42;
        --accent-color: #f8b739;
        --accent-hover: #ffcc5e;
        --text-color: #333;
        --light-text: #fff;
        --border-color: #e1e1e1;
        --hover-color: #f5f5f5;
        --submenu-bg: #f9f9f9;
        --header-height: 120px;
        --menu-height: 50px;
        --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        --menu-bg: #03332d;
        --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        --danger-color: red;
    }

    .link-highlight {
        background: var(--accent-color);
        color: var(--light-text);
        display: none;
    }

    .link-highlight a {
        font-weight: 700 !important;
    }


    .link-highlight>a:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background-color: var(--light-text) !important;
        color: var(--light-text) !important;
        transition: var(--transition);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Roboto', 'Noto Sans', 'Arial', sans-serif !important;
        line-height: 1.6;
        color: var(--text-color);
        overflow-x: hidden !important;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
    }

    a:focus {
        text-decoration: none !important;
        font-weight: normal !important;
        outline: none !important;
        color: inherit !important;
    }

    .container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header Styles */
    .header-container {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: var(--light-text);
        box-shadow: var(--box-shadow);
    }

    /* Sticky Header */
    .header-container {
        position: sticky;
        top: 0;
        z-index: 10000;
        width: 100%;
    }

    /* Top Bar */
    .top-bar {
        background-color: var(--secondary-color);
        padding: 8px 0;
        font-size: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .top-bar-content {
        display: flex;
        justify-content: center;
    }

    .header-container {
        position: relative;
        /* Needed for absolute positioning of children */
    }

    .mega-menu {
        border-bottom: 2px solid #f8b739;
    }

    .mega-menu.desktop-only {
        position: static;
        /* Default position */
        transition: transform 0.3s ease;
    }

    .mega-menu.desktop-only.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        transform: translateY(0);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        animation: slideDown 0.3s ease-out;
    }

    /* This ensures content doesn't jump when menu becomes fixed */
    .main-header {
        transition: margin-bottom 0.3s ease;
    }

    .main-header.sticky-padding {
        margin-bottom: var(--menu-height);
        /* Same as menu height */
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }

        to {
            transform: translateY(0);
        }
    }

    .utility-links {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }

    .divider {
        margin: 0 8px;
        color: rgba(255, 255, 255, 0.3);
    }

    .utility-link {
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px !important;
        display: flex;
        align-items: center;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .utility-link i {
        margin-right: 6px;
        font-size: 12px;
    }

    .utility-link:hover {
        color: var(--accent-color) !important;
        transform: translateY(-2px);
    }

    .utility-link:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent-color);
        transition: var(--transition);
    }

    .utility-link:hover:after {
        width: 100%;
    }

    /* Main Header */
    .main-header {
        padding: 0px 0;
        position: relative;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        padding-top:0px !important;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-title-container {
        display: flex;
        align-items: baseline;
        flex-grow: 1;
        transition: var(--transition);
    }

    .logo-container {
        margin-right: 25px;
        transition: var(--transition);
        position: relative;
        z-index: 1;
    }

    .logo {
        height: 100px;
        width: auto;
        transition: var(--transition);
        filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    }

    .title-container h1 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 5px;
        letter-spacing: 0.5px;
        color: #fff !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .title-container h2 {
        font-size: 18px;
        font-weight: 400;
        opacity: 0.9;
        margin: 0;
        color: #fff !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

    /* Mega Menu */
    .mega-menu {
        background-color: var(--secondary-color);
        position: relative;
        height: var(--menu-height);
        display: flex;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .menu-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        width: 100%;
    }

    .menu-title {
        font-size: 16px;
        border-bottom: 1px solid var(--accent-hover);
        margin-bottom: 10px;
        color: var(--accent-color);
        padding: 10px 20px;
        font-weight: bold;

    }

    /* Main Menu Structure */
    .main-menu {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        height: 100%;
    }

    .menu-item {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .menu-item>a {
        display: flex;
        align-items: center;
        padding: 0 15px;
        color: white;
        height: 100%;
        font-weight: 500;
        font-size: 12px !important;
        letter-spacing: 0.5px;
        transition: var(--transition);
        position: relative;
        text-transform: uppercase !important;
    }

    .menu-item a {
        text-transform: uppercase !important;
        font-size: 12px !important;
    }

    .mobile-menu-title {
        font-weight: bold;
        padding: 10px 15px;
        color: var(--accent-color);
        border-bottom: 1px solid var(--accent-color);
    }




    .submenu {
        position: absolute;
        left: 0;
        top: 100%;
        min-width: 300px;
        background: var(--secondary-color);
        list-style: none;
        padding: 10px 0;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 1001;
        box-shadow: var(--box-shadow);
        border-radius: 0 0 4px 4px;
        transform: translateY(10px);
        border-left: 3px solid var(--accent-color);
    }

    .submenu i {
        margin-right: 8px;
    }

    .has-submenu>.submenu {
        left: 100%;
        top: 0;
        margin-top: -8px;
    }

    .submenu li {
        position: relative;
    }

    .submenu li a {
        padding: 10px 15px;
        display: block;
        color: var(--light-text);
        font-size: 12px;
        transition: var(--transition);
    }

    .submenu li a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--accent-color);
        padding-left: 20px;
    }

    .divider {
        margin: 5px 0;
    }

    /* Hover Effects */
    .menu-item:hover>.submenu,
    .has-submenu:hover>.submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Menu Item Animations */
    .menu-item>a {
        position: relative;
        overflow: hidden;
        text-transform: uppercase !important;
    }

    .menu-item>a:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background-color: var(--accent-color);
        transition: var(--transition);
    }

    .menu-item:hover>a:after {
        width: 100%;
    }

    .menu-item>a:hover {
        color: var(--accent-color);
        transform: translateY(-2px);
    }

    .menu-item.link-highlight>a:hover {
        color: var(--light-text) !important;
    }


    /* Logo animation */
    .logo-container:hover .logo {
        transform: scale(1.01);
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    }

    /* Animation Improvements */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

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

    .has-dropdown:hover>.submenu,
    .has-submenu:hover>.submenu {
        animation: fadeIn 0.2s ease forwards;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: none;
        position: relative;
        z-index: 1001;
    }

    .hamburger {
        display: none;
        cursor: pointer;
        padding: 15px;
        font-size: 20px;
        color: white;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    /* Close Button */
    .close-menu {
        position: sticky;
        top: 0;
        z-index: 1002;
        background: var(--menu-bg);
    }

    .sidebar-close-btn {
        width: 100%;
        padding: 15px 20px;
        background: var(--accent-color);
        color: var(--light-text);
        border: none;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: var(--transition);
    }

    .sidebar-close-btn:hover {
        background: var(--accent-hover);
    }

    /* Small mobile devices */
    @media (max-width: 576px) {
        .divider {
            display: none;
        }

        .utility-link {
            display: none;
        }

        .mob-only {
            display: block;
        }

        .logo-title-container {
            flex-direction: column;
            align-items: center;
        }

        .logo-container {
            margin-right: 0;
            margin-bottom: 10px;
        }

        .logo {
            height: 70px;
        }

        .title-container h1 {
            font-size: 18px;
            text-align: center;
        }

        .title-container h2 {
            font-size: 15px;
            text-align: center;
        }
    }

    @media (max-width: 992px) {
        .desktop-only {
            display: none !important;
        }

        .mobile-only {
            display: block;
        }

        /* Mobile Accordion Menu */
        .mobile-accordion-menu {
            background-color: var(--secondary-color);
            position: relative;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            height: auto;
        }

        .mobile-menu-toggle {
            position: fixed;
            right: 20px;
            top: 20px;
            z-index: 1002;
            display: block;
        }

        .hamburger {
            display: block;
            padding: 10px;
            cursor: pointer;
            font-size: 24px;
            color: white;
            border-radius: 4px;
        }

        .mobile-main-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100vh;
            background-color: var(--menu-bg);
            transition: left 0.3s ease;
            padding-top: 70px;
            overflow-y: auto;
            z-index: 1001;
            list-style: none;
            margin: 0;
            padding: 0;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
        }

        #mobile-menu-toggle:checked~.mobile-main-menu {
            left: 0;
        }

        #mobile-menu-toggle:checked~.overlay {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-item {
            display: block;
            width: 100%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }



        .mobile-menu-item>a {
            display: block;
            padding: 15px 20px;
            color: white;
            font-size: 16px;
            font-weight: 500;
            text-align: left;
            width: 100%;
        }

        .mobile-menu-item>a,
        .accordion-btn {
            padding: 12px 20px;
            /* Changed from 15px */
            color: white;
            font-size: 14px !important;
            /* Changed from 16px */
            font-weight: 500;
            text-transform: uppercase;
            /* Added */
            transition: var(--transition);
            /* Added */
        }

        .accordion-btn {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            color: white;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            width: 100%;
            text-align: left;
            background: none;
            border: none;
        }

        .accordion-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: rgba(0, 0, 0, 0.1);
        }

        .mobile-menu-item.active>.accordion-panel {
            max-height: 1000px;
            transition: max-height 0.5s ease-in;
        }

        .accordion-btn .toggle-icon {
            transition: transform 0.3s ease;
        }

        .mobile-menu-item.active>.accordion-btn .toggle-icon {
            transform: rotate(45deg);
        }

        /* Nested accordion styles */
        .accordion-panel ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .accordion-panel .mobile-menu-item>a {
            padding-left: 30px;
        }

        .accordion-panel .accordion-btn {
            padding-left: 30px;
        }

        .accordion-panel .accordion-panel .mobile-menu-item>a {
            padding-left: 45px;
        }

        .accordion-panel .accordion-panel .accordion-btn {
            padding-left: 45px;
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
        }

        /* Close button */
        .close-menu {
            position: sticky;
            top: 0;
            z-index: 1002;
            background: var(--accent-color);
        }

        .sidebar-close-btn {
            width: 100%;
            padding: 15px 20px;
            background: var(--accent-color);
            color: var(--light-text);
            border: none;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .sidebar- close-btn:hover {
            background: var(--accent-hover);
        }
    }

    @media (max-width: 576px) {
        .divider {
            display: none;
        }

        .utility-link {
            display: none;
        }

        .mob-only {
            display: block;
        }

        .logo-title-container {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .logo-container {
            margin-right: 0;
            margin-bottom: 10px;
        }

        .logo {
            height: 70px;
        }

        .title-container h1 {
            font-size: 18px;
        }

        .title-container h2 {
            font-size: 15px;
        }

        .mobile-menu-toggle {
            top: 15px;
            right: 15px;
        }
    }

    @media (min-width: 993px) {
        .mobile-accordion-menu {
            display: none !important;
        }
    }

    /* Mobile Sticky Header */
    @media (max-width: 992px) {
        .header-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        }

        /* Remove any fixed padding from body */
        body {
            padding-top: 0;
        }


        /* Ensure hamburger stays above header */
        .mobile-menu-toggle {
            z-index: 1001;
        }
    }

    /* Desktop Behavior (unchanged) */
    @media (min-width: 993px) {
        .header-container {
            position: relative;
        }

        body>*:not(.header-container):first-child {
            margin-top: 0;
        }

        .mega-menu.desktop-only.sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }
    }

    /* ==================== */
    /* MULTI-COLUMN SUBMENU */
    /* ==================== */
    .submenu.multi-column {
        position: absolute;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: flex-start;

        min-width:200px;
        max-width: 1000px;
        width: fit-content;
        padding: 15px 0px;
        background: var(--secondary-color);
        box-shadow: var(--box-shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: var(--transition);
        z-index: 1002;
        border-left: 3px solid var(--accent-color);
    }

    .mega-multi {

        width: 950px !important;
    }

    /* Show submenu on hover */
    .has-dropdown:hover>.submenu.multi-column {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Column styling */
    .menu-column {
        min-width: 220px;
        flex: 0 0 auto;
    }

    /* Column headers */
    .menu-column-header {
        display: block;
        padding: 10px 15px;
        margin: 0 0 8px 0;
        font-weight: bold;
        font-size: 12px;
        color: var(--accent-color);
        background: rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Menu items */
    .submenu.multi-column li:not(.menu-column-header) {
        margin: 4px 0;
    }

    .submenu.multi-column li a {
        display: block;
        padding: 8px 15px;
        color: var(--light-text);
        transition: var(--transition);
        border-radius: 3px;
    }

    .submenu.multi-column li a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--accent-color);
    }



    .submenu.multi-column .has-submenu:hover>.submenu {
        display: block;
        animation: fadeIn 0.2s ease-out;
    }

    /* Dividers */
    .submenu.multi-column>li.divider {
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
        margin: 8px 0;
    }


    /* Show submenu on hover */
    .has-dropdown:hover>.submenu.multi-column {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    /* Column styling */
    .menu-column {
        flex: 1;
        min-width: 200px;
        position: relative;
        /* For absolute positioning of children */
    }

    /* Column headers */
    .menu-column-header {
        display: block;
        padding: 15px 10px;
        margin: 0 -5px 10px -5px;
        font-weight: bold;
        font-size: 0.95em;
        color: var(--accent-color);
        background: rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Menu items */
    .submenu.multi-column li:not(.menu-column-header) a {
        display: block;
        padding: 10px 15px;
        color: var(--light-text);
        font-size: 13px;
        transition: var(--transition);
        border-radius: 3px;
        margin: 4px 0;
    }

    .submenu.multi-column li:not(.menu-column-header) a:hover {
        background: rgba(255, 255, 255, 0.15);
        color: var(--accent-color);
        transform: translateX(3px);
    }



    /* Nested submenus - now overlaps to the right */
    .submenu.multi-column .submenu {
        position: absolute;
        left: 50%;
        top: 0;
        display: none;
        padding: 15px 0px;
        min-width: 250px;
        background: #066158;
        box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
        border-left: 3px solid var(--accent-color);
        z-index: 1002;
    }

    .submenu.multi-column .has-submenu:hover>.submenu {
        display: block;
        animation: slideIn 0.2s ease-out forwards;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(10px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .menu-item>a:hover,
    .submenu li a:hover,
    .submenu.multi-column li a:hover,
    .mobile-menu-item>a:hover {
        color: var(--accent-color) !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }

    /* Consistent transitions */
    .menu-item>a,
    .submenu li a,
    .submenu.multi-column li a,
    .mobile-menu-item>a,
    .accordion-btn {
        transition: var(--transition) !important;
    }

    /* Consistent z-index hierarchy */
    .mega-menu {
        z-index: 1000;
    }

    .submenu {
        z-index: 1001;
    }

    .submenu.multi-column {
        z-index: 1002;
    }

    .submenu.multi-column .submenu {
        z-index: 1003;
    }

    .mobile-main-menu {
        z-index: 1004;
    }


    /* Complaint System Card Styles */
    .complaint-system-card {
        margin-left: auto;
        /* Push to the right */
        padding: 0 15px;
        min-width: 220px;
    }

    .complaint-link {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 6px;
        padding: 10px 15px;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        border-left: 5px solid var(--accent-color);
    }

    .complaint-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    }

    .complaint-icon {
        font-size: 22px;
        margin-right: 15px;
        color: var(--light-text);
        /* background: rgba(76, 175, 80, 0.1); */
        background: var(--accent-color);
        padding: 10px;
        border-radius: 50%;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .complaint-text {
        display: flex;
        flex-direction: column;
        color: white;
        line-height: 1.3;
        flex-grow: 1;
        color: var(--light-text);
    }

    .complaint-title {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .complaint-subtitle {
        font-size: 12px;
        opacity: 0.9;
        margin-top: 2px;
        text-transform: uppercase;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
        .complaint-system-card {
            display: none;
            /* Hide on mobile */
        }
    }

    @media (max-width: 1200px) {
        .complaint-system-card {
            min-width: auto;
        }

        .complaint-title {
            font-size: 12px;
        }

        .complaint-subtitle {
            font-size: 10px;
        }

        .complaint-icon {
            font-size: 18px;
            margin-right: 10px;
            padding: 8px;
            width: 36px;
            height: 36px;
        }
    }


     /* Play button styles - enhanced to match theme */
     .play-button-overlay {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         display: flex;
         justify-content: center;
         align-items: center;
         background: rgba(2, 40, 34, 0.5);
         z-index: 100;
         cursor: pointer;
         transition: var(--transition);
     }

     .play-button-overlay:hover {
         background: rgba(4, 74, 66, 0.7);
     }

     .play-button {
         width: 80px;
         height: 80px;
         background-color: var(--accent-color);
         border-radius: 50%;
         display: flex;
         justify-content: center;
         align-items: center;
         transition: var(--transition);
         transform: scale(1);
         box-shadow: 0 0 0 10px rgba(248, 183, 57, 0.3);
     }

     .play-button svg {
         width: 30px;
         height: 30px;
         margin-left: 5px;
         fill: var(--primary-color);
     }

     .play-button:hover {
         transform: scale(1.1);
         box-shadow: 0 0 0 15px rgba(248, 183, 57, 0.4);
     }

     .play-button:active {
         transform: scale(0.95);
     }

     /* Unified Modal Styles - Both modals now match exactly */
     .main-video-modal,
     .modal-overlay {
         position: fixed;
         top: 0;
         left: 0;
         right: 0;
         bottom: 0;
         background-color: rgba(0, 0, 0, 0.85);
         display: none;
         justify-content: center;
         align-items: center;
         z-index: 20000;
     }

     .video-modal-content,
     .modal-content,
     .main-video-modal-content {
         background: var(--primary-color);
         padding: 0;
         border-radius: 12px;

         position: relative;
         /* <-- Important for the close button */
         overflow: hidden;
         box-shadow: var(--box-shadow);
         border: 1px solid var(--accent-color);
         width: auto;
         /* important */
         max-width: none;
         /* allow video to define width */


     }

     .main-video-modal video,
     .video-container video {
         width: 100%;
         display: block;
         max-height: 80vh;
     }

     .close-main-modal,
     .close-btn {
         position: absolute;
         top: 15px;
         right: 15px;
         background: var(--accent-color);
         color: var(--primary-color);
         border: none;
         width: 40px;
         height: 40px;
         border-radius: 50%;
         font-weight: bold;
         font-size: 20px;
         cursor: pointer;
         box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
         z-index: 10;
         transition: var(--transition);
         display: flex;
         align-items: center;
         justify-content: center;
         line-height: 1;
     }

     .close-main-modal:hover,
     .close-btn:hover {
         background: var(--accent-hover);
         transform: scale(1.1);
     }

     /* Progress bar for consistency (hidden in main modal) */
     .video-modal-content::before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         height: 4px;
         background: var(--accent-color);
         width: 100%;
         transform: scaleX(1);
         z-index: 1;
         opacity: 0;
         /* Hidden but keeps layout consistent */
     }

     /* Responsive adjustments */
     @media (max-width: 768px) {

         .video-modal-content,
         .modal-content {
             width: 95%;
             max-width: 100%;
         }

         .play-button {
             width: 60px;
             height: 60px;
         }

         .play-button svg {
             width: 25px;
             height: 25px;
         }
     }
 


      
            .premium-announcement-bar {
                color: black;
                padding: 12px 0;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

            }

            .announcement-glide {
                display: flex;
                align-items: center;
                gap: 15px;
            }

            .announcement-badge {
                background-color: #f8b739;
                color: #022822;
                padding: 8px 12px;
                border-radius: 30px;
                font-weight: 700;
                font-size: 14px;
                text-transform: uppercase;
                display: flex;
                align-items: center;
                gap: 8px;
                flex-shrink: 0;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            }

            .announcement-badge svg {
                width: 18px;
                height: 18px;
                fill: currentColor;
            }

            .announcement-track {
                flex: 1;
                overflow: hidden;
                position: relative;
                height: 40px;
            }

            .announcement-slide {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                display: flex;
                align-items: center;
                opacity: 0;
                transition: all 0.5s ease;
                transform: translateX(20px);
            }

            .announcement-slide.active {
                opacity: 1;
                transform: translateX(0);
            }

            .announcement-content {
                font-size: 16px;
                font-weight: 500;
            }

            .highlight {
                color: #f8b739;
                font-weight: 600;
            }

            .announcement-content a {
                color: black;
                text-decoration: underline;
                font-weight: 600;
                transition: all 0.3s ease;
            }

            .announcement-content a:hover {
                color: #f8b739;
            }

            .announcement-controls {
                display: flex;
                gap: 5px;
            }


            /* Animation */
            .pulse {
                animation: pulse 2s infinite;
            }

            @keyframes pulse {
                0% {
                    transform: scale(1);
                }

                50% {
                    transform: scale(1.05);
                }

                100% {
                    transform: scale(1);
                }
            }

            @media (max-width: 768px) {
                .premium-announcement-bar {
                    padding: 8px 0;
                }

                .announcement-track {
                    height: auto;
                    min-height: 0;
                    /* Remove fixed height */
                }

                .announcement-slide {
                    position: absolute;
                    width: 100%;
                    opacity: 0;
                    transform: translateY(10px);
                    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
                    pointer-events: none;
                }

                .announcement-slide.active {
                    position: relative;
                    opacity: 1;
                    transform: translateY(0);
                    pointer-events: auto;
                    height: auto;
                }

                .announcement-content {
                    white-space: normal;
                    font-size: 14px;
                    line-height: 1.35;
                    padding: 6px 0;
                }

                .announcement-badge span {
                    display: none;
                }

                .announcement-badge {
                    padding: 8px;
                    align-self: flex-start;
                    margin-top: 2px;
                }
            }
        

            
            .resource-card {
                transition: all 0.3s ease;
                border-radius: 8px;
                background: #fff;
                box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            }


            .card-image-container {
                position: relative;
                border-radius: 8px 8px 0 0;
            }

            .image-overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(2, 40, 34, 0.7);
                opacity: 0;
                transition: opacity 0.3s ease;
            }



            .bg-accent {
                background-color: #f8b739;
                color: #022822;
                font-weight: 500;
                padding: 5px 12px;
                border-radius: 4px;
                font-size: 0.8rem;
            }

            @media (max-width: 768px) {

                .resource-title {
                    font-size: 0.85rem;
                }
            }
        


             
    /* Latest News Component Styles */
    :root {
        --holo-blue: rgba(0, 255, 255, 0.7);
        --holo-pink: rgba(255, 0, 255, 0.7);
    }

    .immersive-dashboard {
        position: relative;
        min-height: 100vh;
        background: radial-gradient(ellipse at bottom, #03332d 0%, #011a16 100%);
        color: var(--light-text);
        overflow: hidden;
        font-family: 'Segoe UI', system-ui, sans-serif;
        padding: 40px;
    }

    .content-display {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
    }

    .section-container {
        margin-bottom:0px;
        animation: fadeIn 0.8s ease forwards;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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

    /* Holographic Card Styles */
    .holographic-card {
        position: relative;
        width: 100%;
        margin: 0 auto 0px;
        border-radius: 15px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
        transform-style: preserve-3d;
        perspective: 1000px;
       
    }

    .holo-glare {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg,
                rgba(0, 255, 255, 0.1) 0%,
                rgba(255, 0, 255, 0.1) 50%,
                rgba(0, 255, 255, 0.1) 100%);
        opacity: 0.5;
        z-index: 1;
    }

    .holo-content {
        position: relative;
        z-index: 2;
        display: flex;
        height: 100%;
    }

    .holo-image {
        flex: 1;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        min-height: 500px;
    }

    .holo-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .holo-text {
        flex: 1;
        padding: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .holo-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
        background: linear-gradient(90deg, var(--accent-color), var(--light-text));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .holo-excerpt {
        line-height: 1.8;
        margin-bottom: 40px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
    }

    .holo-button {
        display: inline-block;
        padding: 15px 35px;
        background: transparent;
        color: var(--accent-color);
        border: 2px solid var(--accent-color);
        border-radius: 30px;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        align-self: flex-start;
        font-size: 1rem;
    }

    .holo-button:hover {
        background: var(--accent-color);
        color: var(--primary-color);
        text-decoration: none;
        box-shadow: 0 0 20px rgba(248, 183, 57, 0.5);
    }

    .holo-grid {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: 20px 20px;
        z-index: 1;
    }

    /* Particle Stream Styles */
    .particle-stream {
        width: 100%;
        margin: 0 auto;
    }

    .stream-header {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 15px;
    }

    .stream-center {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stream-header h3 {
        font-size: 22px;
        font-weight: 600;
        background: linear-gradient(90deg, var(--accent-color), var(--light-text));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin: 0 0 15px 0;
    }

    .title-divider-bg {
        width: 80px;
        height: 3px;
        background: #f8b739;
    }

    .stream-controls {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        gap: 10px;
    }

    .stream-controls button {
        background: transparent;
        border: none;
        color: var(--accent-color);
        font-size: 1.2rem;
        cursor: pointer;
        margin-left: 15px;
        transition: all 0.3s ease;
    }

    .stream-controls button:hover {
        transform: scale(1.2);
    }

    .particle-container {
        display: flex;
        overflow-x: auto;
        padding: 20px 0;
        gap: 30px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .particle-container::-webkit-scrollbar {
        display: none;
    }

    .news-particle {
        min-width: 280px;
        height: 380px;
        padding: 0;
        cursor: pointer;
        transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .particle-core {
        height: 200px;
        overflow: hidden;
    }

    .particle-core img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        object-position: top;
    }

    .news-particle:hover .particle-core img {
        transform: scale(1.05);
    }

    .news-particle:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        z-index: 10;
    }

    .particle-info {
        padding: 30px;
        background: rgba(4, 74, 66, 0.8);
        
    }

    .particle-date {
        display: block;
        color: var(--accent-color);
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .news-particle h4 {
        margin-bottom: 20px;
        color: white;
        font-size: 12px;
    }

    .view-all-button {
        display: inline-block;
        padding: 12px 30px;
        background: transparent;
        color: var(--accent-color);
        border: 2px solid var(--accent-color);
        border-radius: 30px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

    .view-all-button:hover {
        background: var(--accent-color);
        color: var(--primary-color);
        text-decoration: none;
        box-shadow: 0 0 20px rgba(248, 183, 57, 0.5);
        transform: translateY(-2px);
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .immersive-dashboard {
            padding: 20px;
        }

        .holo-content {
            flex-direction: column;
        }

        .holo-image {
            min-height: 300px;
        }

        .holo-text {
            padding: 30px;
        }
    }

    @media (max-width: 768px) {
        .holo-title {
            font-size: 2rem;
        }

        .holo-excerpt {
            font-size: 1rem;
        }

        .stream-controls {
            position: static;
            transform: none;
            justify-content: center;
            margin-top: 15px;
        }

        .news-particle {
            min-width: 240px;
            height: 340px;
        }

        .particle-info {
            padding: 20px;
            height: 140px;
        }
    }

    .top-story-play-button-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(2, 40, 34, 0.5);
        z-index: 100;
        cursor: pointer;
        transition: var(--transition);
    }

    .top-story-play-button-overlay:hover {
        background: rgba(4, 74, 66, 0.7);
    }

    .top-story-play-button {
        width: 80px;
        height: 80px;
        background-color: var(--accent-color);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(248, 183, 57, 0.3);
    }

    .top-story-play-button svg {
        width: 30px;
        height: 30px;
        margin-left: 5px;
        fill: var(--primary-color);
    }

    .top-story-play-button:hover {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(248, 183, 57, 0.4);
    }

    .top-story-play-button:active {
        transform: scale(0.95);
    }

    /* Image Play Button Styles */
    .image-play-button-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(2, 40, 34, 0.5);
        z-index: 100;
        cursor: pointer;
        transition: var(--transition);
    }

    .image-play-button-overlay:hover {
        background: rgba(4, 74, 66, 0.7);
    }

    .image-play-button {
        width: 80px;
        height: 80px;
        background-color: var(--accent-color);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(248, 183, 57, 0.3);
    }

    .image-play-button svg {
        width: 30px;
        height: 30px;
        margin-left: 5px;
        fill: var(--light-text);
    }

    .image-play-button:hover {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(248, 183, 57, 0.4);
    }

    .image-play-button:active {
        transform: scale(0.95);
    }

    /* Image Video Modal Styles */
    .image-video-modal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.85);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 20000;
    }

    .image-video-modal-content {
        background: var(--primary-color);
        padding: 0;
        border-radius: 12px;
        position: relative;
        overflow: hidden;
        box-shadow: var(--box-shadow);
        border: 1px solid var(--accent-color);
        width: auto;
        max-width: none;
    }

    .image-video-modal video {
        width: 100%;
        display: block;
        max-height: 80vh;
    }

    .close-image-modal {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--accent-color);
        color: var(--primary-color);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-weight: bold;
        font-size: 20px;
        cursor: pointer;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        z-index: 10;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .close-image-modal:hover {
        background: var(--accent-hover);
        transform: scale(1.1);
    }

    @media (max-width: 768px) {
        .image-play-button {
            width: 60px;
            height: 60px;
        }

        .image-play-button svg {
            width: 25px;
            height: 25px;
        }
    }



    
    /* Blog Section Styles */
    .blogs-section {
        background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .title-divider {
        width: 80px;
        height: 3px;
        background: var(--accent-color);
        margin: 0 auto;
    }
    
    /* Slider Container */
    .blog-slider-container {
        position: relative;
        padding: 0 30px;
    }
    
    .blog-slide {
        padding: 10px;
        min-width: 350px; /* Minimum card width */
    }
    
    .blog-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    /* Rest of your existing card styles remain the same */
    .blog-img-container {
        position: relative;
        height: 200px;
        overflow: hidden;
        background: #f0f0f0;
        border-radius: 8px 8px 0 0;
    }
    
    .blog-img-blur {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        filter: blur(10px);
        transform: scale(1.05);
        z-index: 1;
    }
    
    .blog-img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        z-index: 2;
        transition: all 0.5s ease;
    }
    
    .gradient-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            to bottom, 
            rgba(2, 40, 34, 0.3) 0%, 
            rgba(2, 40, 34, 0.1) 30%,
            rgba(2, 40, 34, 0.6) 100%
        );
        z-index: 3;
    }
    
    .blog-date {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--accent-color);
        color: var(--primary-color);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        line-height: 1;
        z-index: 4;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    
    .date-day {
        font-size: 1.2rem;
    }
    
    .date-month {
        font-size: 0.7rem;
        text-transform: uppercase;
    }
    
    .date-year {
        font-size: 0.8rem;
    }
    
    .author-badge {
        position: absolute;
        bottom: 15px;
        left: 15px;
        background: rgba(248, 183, 57, 0.9);
        color: var(--primary-color);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        z-index: 4;
        display: flex;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    
    .author-badge i {
        margin-right: 5px;
        font-size: 0.7rem;
    }
    
    .blog-content {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .blog-title {
        color: var(--accent-color);
        font-size: 14px !important;
        margin-bottom: 12px;
        line-height: 1.2;
        height: 30px !important;
    }
    
    .blog-excerpt {
        color: var(--color-text);
        font-size: 12px;
        margin-bottom: 15px;
        flex: 1;
    }
    
    .blog-link {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
    }
    
    .blog-link i {
        margin-left: 5px;
        transition: transform 0.3s ease;
    }
    
    .blog-link:hover {
        color: var(--accent-color);
        text-decoration: none;
    }
    
    .blog-link:hover i {
        transform: translateX(3px);
    }
    
    .view-all-btn {
        display: inline-block;
        padding: 10px 25px;
        background: var(--primary-color);
        color: white;
        border-radius: 30px;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        border: 2px solid var(--primary-color);
        margin-top: 20px;
    }
    
    .view-all-btn:hover {
        background: transparent;
        color: var(--primary-color);
        text-decoration: none;
        transform: translateY(-2px);
    }
    
    /* Hover effects */
    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .blog-card:hover .blog-img {
        transform: scale(1.03);
    }
    
    .blog-card:hover .gradient-overlay {
        background: linear-gradient(
            to bottom, 
            rgba(2, 40, 34, 0.4) 0%, 
            rgba(2, 40, 34, 0.2) 30%,
            rgba(2, 40, 34, 0.7) 100%
        );
    }
    
       /* Owl Carousel Navigation */
    .blog-slider-container .owl-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        pointer-events: none;
    }
    
    .blog-slider-container .owl-prev,
    .blog-slider-container .owl-next {
        pointer-events: all;
        width: 40px;
        height: 40px;
        background: var(--primary-color) !important;
        color: white !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 20px !important;
        transition: all 0.3s ease;
    }
    
    .blog-slider-container .owl-prev:hover,
    .blog-slider-container .owl-next:hover {
        background: var(--accent-color) !important;
    }
    .blog-slider-container .{
          min-width: 350px !important;
    }
    
    .blog-slider-container .owl-prev {
        left: -20px;
    }
    
    .blog-slider-container .owl-next {
        right: -20px;
    }
    
    .blog-slider-container .owl-dots {
        text-align: center;
        margin-top: 20px;
    }
    
    .blog-slider-container .owl-dot {
        width: 12px;
        height: 12px;
        background: #ddd !important;
        border-radius: 50%;
        margin: 0 5px;
        transition: all 0.3s ease;
    }
    
    .blog-slider-container .owl-dot.active {
        background: var(--primary-color) !important;
        transform: scale(1.2);
    }
    
    @media (max-width: 768px) {
        .blog-slide {
            min-width: 85%; /* Show 1.1 cards by making each card take 85% width */
            padding: 10px 5px;
        }
        
        .blog-slider-container {
            padding: 0 15px;
            overflow: visible; /* Allows next card to peek */
        }
        
        .blog-img-container {
            height: 180px;
        }
        
        .blog-slider-container .owl-prev {
            left: -10px;
        }
        
        .blog-slider-container .owl-next {
            right: -10px;
        }
        
        /* Make the next card slightly visible */
        .blog-slider .owl-stage-outer {
            overflow: visible;
        }
        
        .blog-slider .owl-item {
            opacity: 0.7;
            transition: all 0.3s ease;
          
        }
        
        .blog-slider .owl-item.active {
            opacity: 1;
        }
    }
      /* Add only the necessary slider styles */
    .blog-particle-container {
        display: flex;
           justify-content: center;
        gap: 30px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
        scrollbar-width: none;
    }
    
    .blog-particle-container::-webkit-scrollbar {
        display: none;
    }
    
    .blog-particle {
        scroll-snap-align: start;
        flex: 0 0 auto;
        width: 350px;
        cursor: pointer;
    }
    
    .stream-controls {
        display: flex;
        gap: 10px;
    }
    
    .blog-stream-prev,
    .blog-stream-next {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--primary-color);
        color: white;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .blog-stream-prev:hover,
    .blog-stream-next:hover {
        background: var(--accent-color);
    }
    
    @media (max-width: 768px) {
        .blog-particle {
            width: 85%;
        }
        
        .blog-particle-container {
            gap: 15px;
        }
    }



    
                /* Base Styles */
                .digital-resources-section,
                .video-spotlight-section {
                    padding: 30px 0;
                    background-color: white;
                }

                .section-header {
                    text-align: center;
                    margin-bottom: 40px;
                }

                .section-header h2 {
                    color: #022822;
                    font-weight: 600;
                    margin-bottom: 15px;
                }

                .section-header i.fa {
                    color: #f8b739;
                    margin-right: 10px;
                }

                .title-divider {
                    width: 80px;
                    height: 3px;
                    background: #f8b739;
                    margin: 0 auto;
                }



                /* Resource Cards */
                .resource-card {
                    border-radius: 8px;
                    overflow: hidden;
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                    transition: all 0.3s ease;
                    margin-bottom: 30px;
                    background: white;
                }

                .resource-card:hover {
                    transform: translateY(-10px);
                    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
                }

                .resource-image {
                    position: relative;
                    overflow: hidden;
                    height: 220px;
                }

                .resource-image img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.5s ease;
                }

                .resource-overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: rgba(2, 40, 34, 0.7);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    opacity: 0;
                    transition: opacity 0.3s ease;
                }

                .resource-overlay span {
                    color: white;
                    font-weight: 600;
                    text-align: center;
                    padding: 0 20px;
                }

                .resource-overlay i {
                    margin-left: 8px;
                }

                .resource-card:hover .resource-overlay {
                    opacity: 1;
                }

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

                .resource-footer {
                    padding: 15px;
                    background: #f9f9f9;
                    text-align: center;
                    font-weight: 600;
                    color: #044a42;
                    transition: background 0.3s ease;
                }

                .resource-footer i {
                    margin-right: 8px;
                    color: #f8b739;
                }

                .resource-card:hover .resource-footer {
                    background: #044a42;
                    color: white;
                }

                .resource-card:hover .resource-footer i {
                    color: white;
                }

                /* Video Section */
                .video-container {
                    max-width: 900px;
                    margin: 0 auto;
                }

                .video-wrapper {
                    position: relative;
                    padding-bottom:40.25%;
                    /* 16:9 Aspect Ratio */
                    height: 0;
                    overflow: hidden;
                    border-radius: 8px;
                    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
                }

                .video-wrapper iframe {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    border: none;
                }

                .video-caption {
                    text-align: center;
                    margin-top: 20px;
                    color: #666;
                    font-style: italic;
                }

                /* Responsive Adjustments */
                @media (max-width: 992px) {
                    .resource-image {
                        height: 180px;
                    }
                }

                @media (max-width: 768px) {

                    .digital-resources-section,
                    .video-spotlight-section {
                        padding: 40px 0;
                    }

                    .section-header h2 {
                        font-size: 1.5rem;
                    }

                    .resource-footer {
                        padding: 12px;
                        font-size: 0.9rem;
                    }
                }
            


    
    /* Modern Footer Styles */
    .site-footer {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: var(--light-text);
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .footer-main {
        padding: 50px 0 30px;
    }

  
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr; /* First column takes more space */
        gap: 30px;
    }

    .footer-column {
        margin-bottom: 20px;
    }

    .footer-heading {
        color: var(--accent-color);
        font-size: 18px;
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 8px;
    }

    .footer-heading:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background: var(--accent-color);
    }

    .footer-heading small {
        display: block;
        font-size: 12px;
        color: var(--light-text);
        opacity: 0.8;
        margin-top: 5px;
        font-weight: normal;
    }

    .footer-logo-img {
        height: 70px;
        margin-bottom: 15px;
    }

    .footer-description {
        margin-bottom: 15px;
        line-height: 1.6;
        opacity: 0.9;
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .footer-description p {
        margin: 0;
    }

    .footer-contact p {
        margin: 8px 0;
        display: flex;
        align-items: center;
        opacity: 0.9;
    }

    .footer-contact i {
        margin-right: 10px;
        color: var(--accent-color);
        width: 20px;
        text-align: center;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: var(--light-text);
        text-decoration: none;
        transition: var(--transition);
        display: flex;
        align-items: center;
        opacity: 0.9;
    }

    .footer-links a:hover {
        color: var(--accent-color);
        padding-left: 5px;
    }

    .footer-links i {
        margin-right: 8px;
        font-size: 12px;
        color: var(--accent-color);
    }

    /* Social Media Styles */
    .social-links {
        display: flex;
        gap: 10px;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        color: white;
        font-size: 16px;
        transition: var(--transition);
    }

    .social-link:hover {
        transform: translateY(-3px);
        background-color: var(--accent-hover) !important;
        color: var(--primary-color);
    }

    .facebook { background-color: #3b5998; }
    .twitter { background-color: #1da1f2; }
    .instagram { background-color: #e4405f; }
    .linkedin { background-color: #0077b5; }
    .youtube { background-color: #cd201f; }

    /* Footer Bottom */
    .footer-bottom {
        background-color: rgba(0, 0, 0, 0.2);
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-bottom-content {
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .copyright {
        font-size: 14px;
        opacity: 0.8;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
        
        .about-column {
            grid-column: span 2;
        }
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
        }
        
        .about-column {
            grid-column: span 1;
        }
        
        .footer-column {
            text-align: center;
        }
        
        .footer-heading:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .footer-description {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .footer-links a {
            justify-content: center;
        }
        
        .social-links {
            justify-content: center;
        }
    }
    @media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-column {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left; /* Keep content left-aligned */
    }
    
    .about-column {
        grid-column: span 1;
    }
    
    .footer-column {
        text-align: left; /* Keep columns left-aligned */
    }
    
    .footer-heading:after {
        left: 0; /* Keep underline left-aligned */
        transform: none;
    }
    
    .footer-description {
        flex-direction: row; /* Keep logo and text side by side if space allows */
        align-items: flex-start;
        text-align: left;
        gap: 15px;
    }
    
    .footer-links a {
        justify-content: flex-start; /* Keep links left-aligned */
    }
    
    /* Center only the social icons */
    .social-section {
        text-align: left; /* Keep heading left-aligned */
    }
    
    .social-links {
        justify-content: flex-start; /* Keep social icons left-aligned */
        /* OR use this to center just the social icons: */
        /* justify-content: center; */
    }
}
.career-page {
		font-family: inherit;
		margin-bottom: 2rem;
	}

	.page-header {
		border-bottom: 2px solid var(--primary-color);
		margin-bottom: 1.5rem;
		padding-bottom: 0.75rem;
	}

	.section-title {
		color: var(--primary-color);
		font-weight: 600;
	}

	.section-subtitle {
		color: var(--text-color);
	}

	.no-jobs {
		padding: 1rem;
		border-radius: 4px;
		background-color: var(--submenu-bg);
		border-left: 4px solid var(--accent-color);
	}

	.job-listings {
		margin-top: 1rem;
	}

	.job-card {
		border: 1px solid var(--border-color);
		border-radius: 4px;
		padding: 1.25rem;
		margin-bottom: 1.5rem;
		background: var(--light-text);
		box-shadow: var(--box-shadow);
		transition: var(--transition);
	}

	.job-card:hover {
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	.job-header {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin-bottom: 0.5rem;
		flex-wrap: wrap;
	}

	.job-title {
		font-weight: 600;
		color: var(--primary-color);
		margin: 0;
		flex: 1;
	}

	.title-link {
		color: inherit;
		text-decoration: none;
		display: inline-block;
	}

	.title-link:hover {
		color: var(--secondary-color);
		text-decoration: underline;
	}

	.view-ad-hint {
		font-size: 0.8em;
		font-weight: normal;
		color: var(--text-color);
		margin-left: 0.5rem;
		transition: var(--transition);
	}

	.title-link:hover .view-ad-hint {
		color: var(--secondary-color);
	}

	.job-meta {
		margin-bottom: 1rem;
	}

	.deadline {
		color: var(--accent-color);
	}

	.badge {
		padding: 0.25rem 0.5rem;
		font-weight: 600;
		border-radius: 3px;
		text-transform: uppercase;
		margin-left: 1rem;
	}

	.badge-open {
		background-color: var(--secondary-color);
		color: var(--light-text);
	}

	.badge-closed {
		background-color: var(--border-color);
		color: var(--text-color);
	}

	.job-actions {
		display: flex;
		flex-wrap: wrap;
		gap: 0.75rem;
		margin-top: 1rem;
		padding-top: 1rem;
		border-top: 1px solid var(--border-color);
	}

	.btn {
		padding: 0.5rem 1rem;
		border-radius: 4px;
		text-decoration: none;
		transition: var(--transition);
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
		font-weight: 500;
	}

	.btn-view-desc {
		background-color: var(--secondary-color);
		color: var(--light-text);
		border: 1px solid var(--secondary-color);
	}

	.btn-view-desc:hover {
		background-color: var(--primary-color);
		border-color: var(--primary-color);
		color: var(--light-text);
	}

	.btn-apply {
		background-color: var(--accent-color);
		color: var(--primary-color);
		font-weight: 600;
		border: 1px solid var(--accent-color);
	}

	.btn-apply:hover {
		background-color: var(--accent-hover);
		border-color: var(--accent-hover);
		color: var(--primary-color);


	}

	.btn-view-desc:hover,
	.btn-view-desc:focus,
	.btn-view-desc:active {
		background-color: var(--primary-color);
		border-color: var(--primary-color);
		color: var(--light-text);
	}

	@media (max-width: 768px) {
		.job-header {
			flex-direction: column;
			align-items: flex-start;
			gap: 0.5rem;
		}

		.badge {
			margin-left: 0;
			margin-top: 0.5rem;
		}

		.job-actions {
			flex-direction: column;
			gap: 0.5rem;
		}

		.btn {
			width: 100%;
			justify-content: center;
		}
	}

	/* Update the button styles section in your CSS */

	.job-actions {
		display: flex;
		flex-wrap: wrap;
		gap: 0.75rem;
		margin-top: 1rem;
		padding-top: 1rem;
		border-top: 1px solid var(--border-color);
	}

	.btn {
		padding: 0.5rem 1rem;
		border-radius: 4px;
		text-decoration: none;
		transition: var(--transition);
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
		font-weight: 500;
		cursor: pointer;
		border: 1px solid transparent;
	}

	/* View Description Button */
	.btn-view-desc {
		background-color: var(--secondary-color);
		color: var(--light-text);
		border: 1px solid var(--secondary-color);
	}

	.btn-view-desc:hover,
	.btn-view-desc:focus,
	.btn-view-desc:active {
		background-color: var(--primary-color) !important;
		border-color: var(--primary-color) !important;
		color: var(--light-text) !important;
		outline: none !important;
		/* Remove default focus outline */
	}

	/* Apply Button */
	.btn-apply {
		background-color: var(--accent-color) !important;
		color: var(--primary-color) !important;
		font-weight: 600;
		border: 1px solid var(--accent-color);
	}

	.btn-apply:hover,
	.btn-apply:focus,
	.btn-apply:active {
		background-color: var(--accent-hover) !important;
		border-color: var(--accent-hover) !important;
		color: var(--primary-color) !important;
		outline: none !important;
		/* Remove default focus outline */
	}

	/* Optional: Add a subtle focus indicator for accessibility */
	.btn:focus-visible {
		box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb, 0, 123, 255), 0.25);
	}

	/* If you want to differentiate between hover and active states slightly */
	.btn-apply:active {
		transform: translateY(1px);
		/* Subtle press effect */
	}

	.btn-view-desc:active {
		transform: translateY(1px);
		/* Subtle press effect */
	}

.btn-apply {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    border: 1px solid var(--accent-color);
}
.resource-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    color: #F8B739;
}

.resource-card:hover {
    border-color:#044A42; /* Bootstrap primary */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}
.resource-card a {
    color: #F8B739;
    text-align: center !important;
    padding-right: 0px;
    display: block;
}
.resource-card a:hover{
 background-color: var(--accent-color);
}
.modal-video {
    max-width: 90%;
}

.video-frame {
    height: 80vh;   /* BIG video height */
    border-radius: 8px;
}
.news-description p{
    line-height: 1.9;
    font-size: 16px;
    color: #444;
}

.latest-news-item h6{
    font-size: 15px;
    line-height: 1.5;
}

.latest-news-item a:hover{
    color: #0d6efd !important;
}

.card{
    overflow: hidden;
}


.news-description img{
    max-width: 100%;
    border-radius: 10px;
}
.simple-readmore{
    color: #F8B739;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.simple-readmore:hover{
    color: #d99a12;
    letter-spacing: 0.5px;
}
.title-divider{
    width: 80px;
    height: 4px;
    background: #F8B739;
    border-radius: 10px;
    margin-top: 10px;
}

.resource-card{
    transition: all 0.3s ease;
}

.resource-card:hover{
    transform: translateY(-5px);
}

.resource-image{
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.resource-card:hover .resource-image{
    transform: scale(1.05);
}

.fb-header{
    background: #1877F2;
}

.facebook-card{
    border: 1px solid #f1f1f1;
}
/*slider home */
/* ======================================================
   HERO SLIDER FINAL CSS
====================================================== */

.hero-section{
    position: relative;
    overflow: hidden;
}

/* Slide */
.hero-slide{
    position: relative;
    height: 85vh;
    min-height:500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Image */
.slide-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

/* Light Overlay */
.overlay{
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.55);
}

/* Content Area */
.slider-content{
    position: relative;
    z-index: 10;
    max-width: 630px;
    /* IMPORTANT FIX FOR LEFT CUT ISSUE */
    padding: 40px;
    margin-left:15px;

    
}

/* Badge */
.hero-badge{
    display: inline-block;
    background: #F8B739;
    color: #000;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Title */
.slider-content h1{
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    color: #111;
    margin-bottom: 18px;

    /* IMPORTANT */
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Description */
.slider-content p{
    font-size: 1rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 30px;

    word-break: break-word;
    overflow-wrap: break-word;
}

/* Button */
.hero-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: #F8B739;
    color: #000;

    text-decoration: none;

    padding: 14px 30px;

    border-radius: 50px;

    font-weight: 600;

    transition: all 0.3s ease;
}

/* Button Hover */
.hero-btn:hover{
    background: #F8B739;
    color: #fff;
    transform: translateY(-2px);
}

/* ======================================================
   ARROWS
====================================================== */

.custom-arrow{
    width: auto;
    opacity: 1;
}

/* Arrow Circle */
.carousel-arrow{
    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: rgba(255,255,255,0.85);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 5px 20px rgba(0,0,0,0.12);

    transition: all 0.3s ease;
}

/* Arrow Icon */
.carousel-arrow i{
    color: #000;
    font-size: 20px;
    transition: 0.3s ease;
}

/* Hover Effect */
.custom-arrow:hover .carousel-arrow{
    background: #F8B739;
    transform: scale(1.08);
}

/* Hover Icon Color */
.custom-arrow:hover .carousel-arrow i{
    color: #fff;
}

/* Arrow Position */
.carousel-control-prev{
    left: 25px;
}

.carousel-control-next{
    right: 25px;
}

/* ======================================================
   INDICATORS
====================================================== */

.carousel-indicators{
    bottom: 25px;
}

.carousel-indicators [data-bs-target]{
    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: rgba(0,0,0,0.35);

    border: none;

    margin: 0 5px;
}

/* Active Indicator */
.carousel-indicators .active{
    background: #F8B739;
    transform: scale(1.2);
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:992px){

    .hero-slide{
        min-height: 600px;
    }

    .slider-content{
        max-width: 100%;
        margin: 20px;
        padding: 30px;
    }

    .slider-content h1{
        font-size: 2rem;
    }

}

@media(max-width:768px){

    .hero-slide{
        min-height: 550px;
    }

    .slider-content{
        margin: 15px;
        padding: 25px;
    }

    .slider-content h1{
        font-size: 1.3rem;
        line-height: 1.4;
    }

    .slider-content p{
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .carousel-arrow{
        width: 48px;
        height: 48px;
    }

}

@media(max-width:576px){

    .hero-slide{
        min-height: 500px;
    }

    .slider-content{
        margin: 12px;
        padding: 20px;
        border-radius: 15px;
    }

    .slider-content h1{
        font-size: 1.3rem;
    }

    .slider-content p{
        font-size: 0.9rem;
    }

}
/* ================================
   SUBMENU ARROW ON HOVER ONLY
================================ */

/* ================================
   MENU LINK + RIGHT ARROW
================================ */

.has-dropdown > a,
.menu-item.has-dropdown > a {
    position: relative;
    padding-right: 25px;
}

/* Arrow always visible on right */
.has-dropdown > a::after,
.menu-item.has-dropdown > a::after {
    content: "\f107";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--accent-color);
    transition: transform 0.2s ease, color 0.2s ease;
    left: 62px;
    top: 15px;
}
/* Zoom effect on hover (NO rotation) */
.has-dropdown:hover > a::after,
.menu-item.has-dropdown:hover > a::after {
     background: transparent !important;
    
    color: #fff;
}