:root {
    --diu-primary: #0066b3;
    /* Brand Blue */
    --diu-secondary: #00a651;
    /* Brand Green */
    --diu-dark: #0b1c3c;
    /* Footer Dark Blue */
    --diu-light: #f3f4f6;
    /* Light Gray Background */
    --diu-accent: #002147;
    /* Deep Navy */
}

.text-dark {
    color: var(--diu-dark) !important;
}

body {
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    padding-top: 82px;
    /* Account for fixed navbar */
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: none;
    /* Hidden by default */
    z-index: 1000;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition:
        opacity 0.3s,
        transform 0.3s;
}

#backToTop:hover {
    transform: translateY(-2px);
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-serif {
    font-family: "Manrope", sans-serif;
}

/* ========================== Navbar Styles ============================= */
/* Global Responsiveness Fixes */
.row {
    --bs-gutter-x: 1.5rem !important;
}

@media (min-width: 992px) {
    .row.gx-5 {
        --bs-gutter-x: 3rem !important;
    }
}

body {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

/* Fix Hero & Carousel Overflow */
.hero-section,
.student-voices-section,
.Impact-section,
.PartnerSection {
    overflow-x: hidden !important;
}

.owl-carousel,
.owl-stage-outer {
    max-width: 100vw !important;
    overflow: hidden !important;
}

/* Fix Navbar Brand for Small Screens */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 38px !important;
    }

    .navbar-brand .ms-3 {
        display: none !important;
    }
}

/* Hero Section Responsiveness */
@media (max-width: 767.98px) {
    .hero-text h1 {
        font-size: 2.2rem !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-text .d-flex.gap-3 {
        flex-direction: column !important;
        width: 100% !important;
        gap: 1rem !important;
    }

    .hero-text .btn {
        width: 100% !important;
        margin: 0 !important;
    }

    .hero-subtext {
        font-size: 0.9rem !important;
    }
}

/* Reset height for Navbar and account for padding */
.navbar {
    height: auto !important;
    min-height: 82px;
}

.navbar-brand img {
    height: 48px;
    width: auto;
}

.navbar-brand .border-start {
    border-color: #dee2e6 !important;
}

.navbar-brand .text-primary {
    color: var(--diu-primary) !important;
}

.navbar-brand .text-success {
    color: var(--diu-secondary) !important;
}

.nav-link-custom {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    color: #6b7280;
    transition: all 0.3s ease-in-out;
    padding: 0.5rem 1.5rem;
    margin: 0 0.25rem;
    position: relative;
}

.nav-link-custom::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--diu-primary);
    transition: width 0.3s ease-in-out;
    border-radius: 2px;
}

.nav-link-custom:hover {
    color: var(--diu-primary);
}

.nav-link-custom:hover::after {
    width: 60%;
}

.nav-link-custom.active {
    color: var(--diu-primary) !important;
    font-weight: 700;
}

.nav-link-custom.active::after {
    width: 70%;
}

/* ========================== Enhanced Premium Dropdown Styles ============================= */

/* Main Dropdown Menu Styling */
.navbar .dropdown-menu {
    min-width: 280px;
    padding: 0.75rem 0;
    border: none !important;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 25px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.03);
    transform: translateY(15px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    margin-top: 0.5rem !important;
}

/* Dropdown Triangle Arrow */
.navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: white;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 3px 0 0 0;
    z-index: -1;
}

/* Visibility for active dropdowns (important for mobile) */
.navbar .dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Hide Bootstrap Default Caret */
.navbar .dropdown-toggle::after {
    display: none !important;
}

/* Custom Arrow for Main Dropdown Toggle */
.nav-link-custom .dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    margin-left: 6px;
    color: inherit;
    opacity: 0.7;
}

.nav-link-custom:hover .dropdown-arrow {
    opacity: 1;
}

.dropdown:hover .nav-link-custom .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Item Base Styling */
.navbar .dropdown-menu .dropdown-item {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* To push submenu arrow to right */
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 8px;
    margin: 0.15rem 0.75rem;
    position: relative;
    overflow: hidden;
}

/* Add a wrapper for item content to keep icon and text together */
.navbar .dropdown-menu .dropdown-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Dropdown Item Icon */
.navbar .dropdown-menu .dropdown-item i:not(.submenu-arrow) {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--diu-primary);
    transition: all 0.3s ease;
}

/* Dropdown Item Hover Effect */
.navbar .dropdown-menu .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, var(--diu-primary), var(--diu-secondary));
    transition: width 0.35s ease;
    z-index: 1;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item:focus {
    background: linear-gradient(90deg, rgba(0, 102, 179, 0.08), rgba(0, 166, 81, 0.05));
    color: var(--diu-primary);
    padding-left: 1.75rem;
}

.navbar .dropdown-menu .dropdown-item:hover::before {
    width: 4px;
}

.navbar .dropdown-menu .dropdown-item:hover i:not(.submenu-arrow) {
    color: var(--diu-secondary);
    transform: scale(1.15);
}

/* Nested Dropdown (Submenu) Styles */
.navbar .dropdown-menu .dropdown-submenu {
    position: relative;
}

.navbar .dropdown-menu .dropdown-submenu .submenu-arrow {
    font-size: 0.75rem;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.navbar .dropdown-menu .dropdown-submenu:hover>.dropdown-item .submenu-arrow {
    color: var(--diu-primary);
    transform: translateX(3px);
}

/* Submenu Position and Animation (Desktop Only) */
@media (min-width: 992px) {
    .navbar .dropdown-menu .dropdown-submenu .dropdown-menu {
        left: 100%;
        top: -8px;
        margin-left: 10px !important;
        transform: translateX(10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Submenu Arrow - Pointing to Parent */
    .navbar .dropdown-menu .dropdown-submenu .dropdown-menu::before {
        content: '';
        position: absolute;
        top: 20px;
        left: -8px;
        width: 16px;
        height: 16px;
        background: white;
        transform: rotate(45deg);
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        z-index: -1;
        border-top: none;
        border-right: none;
        border-radius: 2px 0 0 0;
    }

    /* Show Submenu on Hover */
    .navbar .dropdown-menu .dropdown-submenu:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
    }

    /* Keep parent item highlighted when submenu is hovered */
    .navbar .dropdown-menu .dropdown-submenu:hover>.dropdown-item {
        background: linear-gradient(90deg, rgba(0, 102, 179, 0.08), rgba(0, 166, 81, 0.05));
        color: var(--diu-primary);
        padding-left: 1.75rem;
    }

    .navbar .dropdown-menu .dropdown-submenu:hover>.dropdown-item::before {
        width: 4px;
    }
}

/* Mobile Stacking behavior for menus */
@media (max-width: 991.98px) {

    /* Main Dropdown Menu Mobile Style */
    .navbar .dropdown-menu {
        position: static !important;
        float: none !important;
        border: none !important;
        box-shadow: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        /* Controlled by Bootstrap's .show class */
        width: 100% !important;
        margin: 0 !important;
        padding-left: 1.5rem !important;
        background: transparent !important;
        min-width: 100% !important;
    }

    .navbar .dropdown-menu.show {
        display: block !important;
        position: static !important;
        float: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(0, 0, 0, 0.03) !important;
    }

    /* Nested Submenu Mobile Style */
    .navbar .dropdown-menu .dropdown-submenu .dropdown-menu {
        position: static !important;
        display: none !important;
        /* Hidden by default on mobile */
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        margin: 0 !important;
        border: none !important;
        padding-left: 1rem !important;
        background: rgba(0, 0, 0, 0.02) !important;
        width: 100% !important;
    }

    .navbar .dropdown-menu .dropdown-submenu .dropdown-menu.show {
        display: block !important;
    }

    .navbar .dropdown-menu .dropdown-submenu .dropdown-menu::before {
        display: none;
    }

    .navbar .dropdown-menu .dropdown-submenu .submenu-arrow {
        transition: transform 0.3s ease;
    }

    .navbar .dropdown-menu .dropdown-submenu .dropdown-item.open .submenu-arrow {
        transform: rotate(90deg);
        /* Points down on mobile when open */
    }
}


/* Active Dropdown Item */
.navbar .dropdown-menu .dropdown-item:active {
    background: linear-gradient(90deg, rgba(0, 102, 179, 0.15), rgba(0, 166, 81, 0.1));
}

/* Dropdown Divider */
.navbar .dropdown-menu .dropdown-divider {
    margin: 0.5rem 1rem !important;
    border-color: rgba(0, 0, 0, 0.06) !important;
    opacity: 1 !important;
}

/* Section Header in Dropdown */
.navbar .dropdown-menu .dropdown-header {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    padding: 0.75rem 1.5rem 0.5rem;
    margin-top: 0.25rem;
}

/* Desktop Dropdown Hover Trigger */
@media (min-width: 992px) {
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* External Link Badge */
.navbar .dropdown-menu .dropdown-item .external-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
    background: linear-gradient(135deg, var(--diu-primary), var(--diu-secondary));
    color: white;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}


/* External Link Badge */
.navbar .dropdown-menu .dropdown-item .external-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
    background: linear-gradient(135deg, var(--diu-primary), var(--diu-secondary));
    color: white;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-left: auto;
}

/* Portal Items Styling */
.navbar .dropdown-menu .dropdown-item.portal-item {
    background: linear-gradient(90deg, rgba(0, 102, 179, 0.03), transparent);
}

.navbar .dropdown-menu .dropdown-item.portal-item:hover {
    background: linear-gradient(90deg, rgba(0, 102, 179, 0.1), rgba(0, 166, 81, 0.05));
}

/* Mobile Offcanvas Menu Styles */
.offcanvas {
    width: 300px !important;
}

.offcanvas-header {
    border-bottom: 1px solid #f3f4f6;
    padding: 1.5rem;
}

.offcanvas-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

/* ========================== Mobile Nav Links ============================= */
.nav-link-mobile {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding-left: 1rem;
}


.nav-link-mobile:hover {
    color: var(--diu-primary);
    padding-left: 1rem;
    /* Reduced padding since border is gone */
}

.nav-link-mobile.active {
    color: var(--diu-primary) !important;
    font-weight: 700;
    padding-left: 1rem;
}

/* Remove bottom bar for mobile links unless it's a dropdown toggle */
.nav-link-mobile:not(.dropdown-toggle)::after {
    display: none;
}

.nav-link-mobile.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 1rem;
}

.nav-link-mobile.dropdown-toggle::after {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Rotate arrow when dropdown is open */
.nav-link-mobile.dropdown-toggle.show i {
    transform: rotate(180deg);
}

.nav-link-mobile.dropdown-toggle i {
    transition: transform 0.3s ease;
}

/* ========================== Mobile Dropdown Styles ============================= */

/* Mobile Dropdown Container */
.mobile-dropdown {
    position: relative;
}

/* Mobile Dropdown Menu - Accordion Style */
.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    margin: 0.5rem 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s ease,
    opacity 0.3s ease;
    opacity: 0;
}

.mobile-dropdown-menu.show {
    max-height: 600px;
    padding: 0.75rem 0;
    opacity: 1;
}

/* Mobile Dropdown Item */
.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.9rem 1.25rem;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
    margin: 0.15rem 0.5rem;
    border-radius: 8px;
}

.mobile-dropdown-item:hover,
.mobile-dropdown-item:active {
    background: rgba(0, 102, 179, 0.08);
    color: var(--diu-primary);
    padding-left: 1.5rem;
}

/* Mobile Dropdown Item Icon */
.mobile-dropdown-item i:first-child {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--diu-primary);
    transition: all 0.25s ease;
}

.mobile-dropdown-item:hover i:first-child,
.mobile-dropdown-item:active i:first-child {
    color: var(--diu-secondary);
    transform: scale(1.15);
}

/* Mobile Dropdown Divider */
.mobile-dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
    margin: 0.5rem 1rem;
}

/* Mobile Nested Dropdown */
.mobile-nested-dropdown {
    position: relative;
}

.mobile-dropdown-item.nested-toggle {
    justify-content: flex-start;
}

.mobile-dropdown-item.nested-toggle .nested-arrow {
    margin-left: auto;
    font-size: 0.7rem;
    color: #9ca3af;
    transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-dropdown-item.nested-toggle.active .nested-arrow {
    transform: rotate(180deg);
    color: var(--diu-primary);
}

/* Mobile Nested Menu */
.mobile-nested-menu {
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    margin: 0.25rem 0.5rem 0.25rem 1.5rem;
    border-left: 2px solid rgba(0, 102, 179, 0.2);
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s ease,
    opacity 0.3s ease;
    opacity: 0;
}

.mobile-nested-menu.show {
    max-height: 400px;
    padding: 0.5rem 0;
    opacity: 1;
}

/* Portal Links in Mobile */
.mobile-dropdown-item.portal-link {
    padding-left: 1rem;
    font-size: 0.8rem;
    background: rgba(0, 102, 179, 0.02);
}

.mobile-dropdown-item.portal-link:hover,
.mobile-dropdown-item.portal-link:active {
    background: rgba(0, 102, 179, 0.1);
}

/* Mobile External Badge */
.mobile-external-badge {
    font-size: 0.55rem;
    padding: 2px 6px;
    background: linear-gradient(135deg, var(--diu-primary), var(--diu-secondary));
    color: white;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-left: auto;
}

/* Navbar Toggler */
.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler {
    color: #6b7280;
}

.navbar-toggler:hover {
    color: var(--diu-primary);
}

/* ============================ Footer Section ============================= */
/* Footer Background */
.footer-section {
    background: var(--diu-dark);
}

/* Social Icons */
.social-links .social-icon {
    text-decoration: none;
    width: 34px;
    height: 34px;
    border: 1px solid #6c757d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.social-links .social-icon:hover {
    background: var(--diu-primary);
}

.list-unstyled li {
    color: #adb5bd;
}

/* Footer Links */
.footer-link {
    color: #adb5bd;
    text-decoration: none;
    display: block;
    margin-bottom: 14px;
    transition: 0.3s ease;
}

.footer-link:hover {
    color: #00aaff;
    padding-left: 4px;
}

/* Subscribe Button */
.Subscribe-btn {
    color: #fff;
    text-decoration: none;
    margin-left: -1rem;
    transition: 0.3s ease;
    display: inline-block;
}

.Subscribe-btn:hover {
    color: var(--diu-secondary);
}

/* ========================== Hero Section ============================= */

/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    padding: 5rem 0;
}

.hero-bg img {
    object-fit: cover;
    object-position: center;
}

/* Gradient Overlay - Left to Right */
.gradient-overlay {
    background: linear-gradient(90deg,
    rgba(0, 33, 71, 0.95) 0%,
    rgba(0, 102, 179, 0.85) 40%,
    rgba(0, 166, 80, 0) 70%,
    rgba(0, 212, 255, 0.3) 100%);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #00a651 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Content Animation */
.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section */
.stat-card {
    min-width: 280px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.stat-icon {
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

/* Stats Scroll */
.stats-scroll {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.stats-scroll::-webkit-scrollbar {
    display: none;
}

.stat-card-green {
    background-color: var(--diu-secondary);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 60px 0;
        margin-top: -20px;
    }

    .stat-card {
        min-width: 260px;
    }
}

/* Hide brand text on mobile (screens smaller than 768px) */
@media (max-width: 767.98px) {
    .navbar-brand .ms-3 {
        display: none !important;
    }

    .navbar-brand img {
        height: 40px;
    }

    .navbar {
        height: auto;
        padding: 0.5rem 0;
    }

    .container-fluid {
        padding: 0 1rem;
    }
}

/* Background */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Left-to-right overlay with DIU brand colors */
.hero-overlay-left {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
    rgba(0, 33, 71, 0.95) 0%,
    rgba(0, 102, 179, 0.8) 35%,
    rgba(0, 166, 81, 0.5) 65%,
    rgba(0, 0, 0, 0.2) 100%);
}

/* ========================== Hero text ============================= */
.hero-text {
    max-width: 900px;
}

.hero-subtext {
    max-width: 650px;
    color: #dadada;
}

/* ========================== Stats Cards ============================= */
#statsScroll {
    scroll-behavior: smooth;
}

.stat-card {
    min-height: 240px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    font-size: 24px;
}

@media (max-width: 767px) {
    #statsScroll .col-10 {
        min-width: 260px;
    }
}

.blur-btn {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    transition: background 0.3s;
}

.blur-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ========================== Impact section============================= */
.Impact-section {
    padding: 5rem 0;
}

.impact-content h2 {
    color: var(--diu-dark);
}

.impact-content p {
    color: var(--diu-dark);
    max-width: 500px;
    line-height: 1.8;
}

.impact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--diu-dark);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    font-size: 1.25rem;
}

.impact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.impact-item h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.chart-card {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
    .impact-icon {
        width: 50px;
        height: 50px;
    }

    .chart-card {
        padding: 1rem;
    }
}

/* ====================== Partner Card ===================== */
.PartnerSection {
    padding: 5rem 0;
}

.partner-card {
    padding: 1rem;
    border-radius: 0.75rem;
    background: #ffffff;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    width: 360px;
    height: 230px;
    margin: auto;
}

.partner-card:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.partner-logo img {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
}

.partner-card h4 {
    font-size: 1.3rem !important;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.partner-badge {
    background: rgba(0, 76, 255, 0.08);
    color: #0d6efd;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================== Student & Graduate Testimonials ===============================  */
.testimonials-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.testimonial-subtitle {
    max-width: 600px;
    font-size: 0.95rem;
}

/* Section title icons */

.video-stories-icon,
.student-voices-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00a651;
}

/* Navigation buttons */
.btn-nav-round {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-nav-round:hover {
    border-color: #0066b3;
    color: #0066b3;
    background: #f0f7ff;
}

/* Max Width Utilities */
.max-w-900 {
    max-width: 900px;
}

.max-w-1100 {
    max-width: 1100px;
}

/* 3D Video Slider */
.video-3d-wrapper {
    height: 380px;
    perspective: 1200px;
    position: relative;
    overflow: hidden;
}

/* Video Swiper */
.video-swiper {
    max-width: 1000px;
    height: 350px;
    overflow: visible !important;
}

.video-swiper .swiper-wrapper {
    align-items: center;
}

.video-swiper .swiper-slide {
    width: 320px !important;
    transition: all 0.5s ease;
    opacity: 0.6;
    transform: scale(0.85);
}

.video-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

/* Video Card New Styles */
.video-card-new {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.5s ease;
}

.video-card-center {
    height: 320px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.video-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Green Watch Video Badge */
.video-badge-green {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #00a651;
    color: #fff;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-badge-green:hover {
    background: #008c45;
    transform: translateY(-2px);
}

/* Video Quote Card */
.video-quote-card {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #0066b3;
}

.video-quote-text {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.6;
    margin: 0 0 12px 0;
    font-style: italic;
}

.video-quote-author {
    display: flex;
    flex-direction: column;
}

.video-quote-author .author-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0066b3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-quote-author .author-role {
    font-size: 0.75rem;
    color: #666;
}

/* Student Voices / Text Slider */
.text-swiper {
    padding: 1rem 0;
    overflow: visible !important;
}

.text-swiper .swiper-wrapper {
    padding: 0.5rem 0;
}

.text-swiper .swiper-slide {
    width: 360px;
    padding: 0 8px;
}

/* Voice Card Styles */
.voice-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.voice-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Large Quote Icon */
.voice-quote-icon {
    width: 48px;
    height: 48px;
    color: #c8d6e5;
    margin-bottom: 16px;
}

.voice-quote-icon svg {
    width: 100%;
    height: 100%;
}

/* Voice Text */
.voice-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
    font-style: italic;
}

/* Voice Author */
.voice-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.voice-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.voice-author-info {
    display: flex;
    flex-direction: column;
}

.voice-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.voice-role {
    font-size: 0.8rem;
    color: #00a651;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-3d-wrapper {
        height: 320px;
    }

    .video-swiper {
        height: 300px;
    }

    .video-swiper .swiper-slide {
        width: 280px !important;
    }

    .video-card-new {
        height: 240px;
    }

    .video-card-center {
        height: 280px;
    }

    .video-quote-card {
        padding: 14px;
    }

    .video-quote-text {
        font-size: 0.75rem;
    }

    .text-swiper .swiper-slide {
        width: 300px;
    }

    .voice-card {
        padding: 20px;
        min-height: 240px;
    }
}

/* CTA Section */
.cta-section {
    background-color: #1880c5;
    padding: 4rem 0;
}

/* Background image overlay */
.cta-section .bg-img {
    opacity: 0.2;
    mix-blend-mode: multiply;
    object-fit: cover;
}

/* Fix object-fit for Bootstrap */
.object-fit-cover {
    object-fit: cover;
}

/* ========================== Student Voices Owl Carousel ============================= */
.student-voices-section {
    padding: 5rem 0;
}

.student-voices-carousel .testimonial-card {
    background: #fff;
    border-radius: 10px;
}

.owl-carousel {
    padding: 0 !important;
    margin: 0 !important;
}

/* Custom Navigation Buttons */
.owl-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.owl-nav-btn:hover {
    border-color: var(--diu-primary);
    color: var(--diu-primary);
    background: #f0f7ff;
}

/* Testimonial Card */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #dfdfdf;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    margin: 10px;
}

.testimonial-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

/* Quote Icon */
.quote-icon {
    width: 48px;
    height: 48px;
    color: #c8d6e5;
    margin-bottom: 20px;
    font-size: 32px;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 24px;
    font-style: italic;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.author-role {
    font-size: 0.85rem;
    color: var(--diu-secondary);
    font-weight: 500;
    margin: 0;
}

/* Owl Carousel Overrides */
.student-voices-carousel .owl-stage-outer {
    overflow: hidden;
}

.student-voices-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.student-voices-carousel .owl-item {
    display: flex;
}

/* Hide default Owl nav */
.student-voices-carousel .owl-nav {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 24px;
        min-height: 260px;
        margin: 5px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .author-avatar {
        width: 44px;
        height: 44px;
    }

    .student-voices-section {
        padding: 3rem 0;
    }
}

/* Vision Section Styles */
.vision-section {
    margin-top: 4rem;
    background-color: #f4f9ff;
    border: 1px solid #dbeafe;
    border-radius: 1rem;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    padding: 4rem 2rem;
}

.vision-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #0d6efd;
}

@media (min-width: 768px) {
    .vision-title {
        font-size: 2.5rem;
    }
}

.vision-divider {
    width: 6rem;
    height: 0.25rem;
    background-color: var(--diu-secondary);
    border-radius: 9999px;
}

.vision-text {
    color: #919090;
    max-width: 90ch;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

/* ========================== About Page Styles ============================= */

/* Hero Section */
.about-hero-section {
    background: var(--diu-accent);
    padding: 8rem 0 5rem;
    margin-top: -82px;
    padding-top: calc(8rem + 82px);
}

/* Collaboration Section */
.collaboration-section {
    padding: 3rem 0;
}

.collaboration-card {
    background: #f0f7ff;
    border-left: 4px solid var(--diu-primary);
    padding: 2rem;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.collaboration-title {
    color: var(--diu-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.collaboration-text {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Milestones Timeline */
.milestones-section {
    padding: 5rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--diu-secondary);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--diu-secondary);
    border: 4px solid #fff;
}

.timeline-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
}

.timeline-date {
    display: inline-block;
    background: var(--diu-secondary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--diu-dark);
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Student Advantages */
.advantages-section {
    padding: 5rem 0 !important;
}

.advantage-mainCard {
    padding: 0 5rem;
}

.advantage-card {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.goedu-info {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.advantage-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--diu-dark);
    margin-bottom: 0.75rem;
}

.advantage-description {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* GoEdu Section */
.goedu-section {
    padding: 5rem 0;
}

.goedu-logo-container {
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.goedu-logo {
    max-width: 200px;
    height: auto;
}

.goedu-image-container img {
    border-radius: 16px;
}

.utilize-section {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

/* Hover effect */
.category-card:hover {
    border-color: var(--diu-primary);
    box-shadow: 0 4px 15px rgba(0, 102, 179, 0.1);
}

/* Background colors based on position */
.category-card:nth-child(1) {
    background-color: #d1fae5;
    /* green-100 */
}

.category-card:nth-child(2) {
    background-color: #dbeafe;
    /* blue-100 */
}

.category-card:nth-child(3) {
    background-color: #f3e8ff;
    /* purple-100 */
}

.category-badge {
    display: inline-block;
    background: var(--diu-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--diu-dark);
    margin-bottom: 0.75rem;
}

.category-description {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 0.9rem;
}

.note-section {
    background: #f8f9fa;
    border-left: 4px solid var(--diu-secondary);
    padding: 1.5rem;
    border-radius: 8px;
}

.note-text {
    color: #555;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 6rem 0 3rem;
        padding-top: calc(6rem + 82px);
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-marker {
        left: -25px;
        width: 16px;
        height: 16px;
    }

    .utilize-section {
        padding: 2rem 1.5rem;
    }

    .goedu-logo-container {
        padding: 1rem;
    }

    .advantage-mainCard {
        padding: 0 1rem;
    }
}

/* ========================== Eligibility Page Styles ============================= */

/* Hero Section */
.eligibility-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 8rem 0 5rem;
    margin-top: -82px;
    padding-top: calc(8rem + 82px);
    position: relative;
    overflow: hidden;
}

.eligibility-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%,
        rgba(0, 166, 81, 0.05) 0%,
        transparent 50%),
        radial-gradient(circle at 80% 20%,
        rgba(0, 102, 179, 0.05) 0%,
        transparent 50%);
}

.eligibility-hero-section h1 {
    color: var(--diu-dark);
}

.eligibility-hero-section p {
    color: #6b7280;
}

/* Requirements Section */
.requirements-section {
    background: #fff;
    padding: 4rem 0;
}

.requirements-card {
    background: #fff;
    border: 2px solid var(--diu-primary);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 102, 179, 0.08);
}

.requirements-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.requirements-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--diu-primary);
    font-size: 1.5rem;
}

.requirements-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--diu-dark);
    margin: 0;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.check-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--diu-secondary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.65rem;
    margin-top: 2px;
}

/* Note Alert */
.note-alert {
    background: #fff8e6;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
    color: #92400e;
    font-size: 0.9rem;
    line-height: 1.7;
}

.note-alert strong {
    color: #b45309;
}

/* Faculties Section */
.faculties-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.faculty-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.faculty-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.faculty-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--diu-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.department-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.department-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #555;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.department-list li:hover {
    color: var(--diu-dark);
}

/* Colored Bullets */
.bullet {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--diu-primary);
}

.bullet-orange {
    background: #f59e0b;
}

.bullet-red {
    background: #ef4444;
}

.bullet-purple {
    background: #8b5cf6;
}

.bullet-teal {
    background: #14b8a6;
}

/* Responsive */
@media (max-width: 768px) {
    .eligibility-hero-section {
        padding: 6rem 0 3rem;
        padding-top: calc(6rem + 82px);
    }

    .requirements-card {
        padding: 1.5rem;
    }

    .requirements-title {
        font-size: 1.25rem;
    }

    .faculty-card {
        padding: 1.5rem;
    }

    .faculty-title {
        font-size: 1rem;
    }
}

/* ========================== Process Page Styles ============================= */

/* Hero Section */
.process-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 8rem 0 4rem;
    margin-top: -82px;
    padding-top: calc(8rem + 82px);
}

.process-hero-section h1 {
    color: var(--diu-dark);
}

/* Timeline Zigzag */
.timeline-zigzag {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-step {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.step-spacer {
    min-height: 1px;
}

.step-number-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--diu-primary);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 102, 179, 0.3);
}

.step-number-success {
    background: var(--diu-secondary);
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.step-line {
    width: 3px;
    flex-grow: 1;
    background: linear-gradient(to bottom,
    var(--diu-primary),
    var(--diu-secondary));
    min-height: 40px;
}

.step-line-top {
    min-height: 40px;
}

.step-content {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
}

.step-right .step-content {
    justify-content: flex-end;
}

.step-left .step-content {
    justify-content: flex-start;
}

.step-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.step-card-success {
    border-color: var(--diu-secondary);
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.step-card-success .success-icon {
    width: 50px;
    height: 50px;
    background: var(--diu-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--diu-dark);
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Video Resume Section */
.video-resume-section {
    background: #fff;
}

.video-resume-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #e9ecef;
}

.video-preview-wrapper {
    position: relative;
}

.video-preview {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--diu-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
    transform: scale(1.1);
    background: #fff;
}

.play-button i {
    margin-left: 4px;
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.video-info-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.video-info-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

/* Video iframe wrapper (hidden by default, shown when play is clicked) */
.video-iframe-wrapper {
    display: none;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
}

.video-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* Video thumbnail wrapper */
.video-thumbnail-wrapper {
    position: relative;
}

.process-hero-text {
    max-width: 600px;
}

/* Guidelines */
.badge-prerequisite {
    display: inline-flex;
    align-items: center;
    background: #dbeafe;
    color: var(--diu-primary);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.guidelines-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--diu-dark);
    margin-bottom: 1rem;
}

.guidelines-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.guidelines-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.guideline-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.guideline-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--diu-primary);
    font-size: 1rem;
}

.guideline-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--diu-dark);
    margin-bottom: 0.25rem;
}

.guideline-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.submit-video-btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
}

/* Portfolio Section */
.portfolio-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.portfolio-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: #16a34a;
}

.portfolio-icon-blue {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: var(--diu-primary);
}

.portfolio-icon-purple {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    color: #9333ea;
}

.portfolio-icon-orange {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

.portfolio-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--diu-dark);
    margin-bottom: 0.75rem;
}

.portfolio-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Notes Section */
.notes-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.notes-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--diu-dark);
    margin-bottom: 1.25rem;
}

.notes-list {
    padding-left: 1.25rem;
    margin: 0;
}

.notes-list li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.notes-list li:last-child {
    margin-bottom: 0;
}

.help-box {
    background: #f0f7ff;
    padding: 2rem;
    border-radius: 16px;
    border: 2px dashed var(--diu-primary);
}

.help-icon {
    font-size: 2.5rem;
    color: var(--diu-primary);
    margin-bottom: 1rem;
}

.help-title {
    font-weight: 700;
    color: var(--diu-dark);
    margin-bottom: 0.5rem;
}

.help-text {
    border-radius: 16px;
}

/* Video thumbnail wrapper */
.video-thumbnail-wrapper {
    position: relative;
}

.process-hero-text {
    max-width: 600px;
}

/* Guidelines */
.badge-prerequisite {
    display: inline-flex;
    align-items: center;
    background: #dbeafe;
    color: var(--diu-primary);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.guidelines-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--diu-dark);
    margin-bottom: 1rem;
}

.guidelines-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.guidelines-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.guideline-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.guideline-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: #f0f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--diu-primary);
    font-size: 1rem;
}

.guideline-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--diu-dark);
    margin-bottom: 0.25rem;
}

.guideline-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.submit-video-btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
}

/* Portfolio Section */
.portfolio-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.portfolio-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: #16a34a;
}

.portfolio-icon-blue {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: var(--diu-primary);
}

.portfolio-icon-purple {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    color: #9333ea;
}

.portfolio-icon-orange {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

.portfolio-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--diu-dark);
    margin-bottom: 0.75rem;
}

.portfolio-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Notes Section */
.notes-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.notes-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--diu-dark);
    margin-bottom: 1.25rem;
}

.notes-list {
    padding-left: 1.25rem;
    margin: 0;
}

.notes-list li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.notes-list li:last-child {
    margin-bottom: 0;
}

.help-box {
    background: #f0f7ff;
    padding: 2rem;
    border-radius: 16px;
    border: 2px dashed var(--diu-primary);
}

.help-icon {
    font-size: 2.5rem;
    color: var(--diu-primary);
    margin-bottom: 1rem;
}

.help-title {
    font-weight: 700;
    color: var(--diu-dark);
    margin-bottom: 0.5rem;
}

.help-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .process-hero-section {
        padding: 6rem 0 3rem;
        padding-top: calc(6rem + 82px);
    }

    .timeline-step {
        grid-template-columns: 40px 1fr;
        gap: 15px;
    }

    .step-spacer {
        display: none;
    }

    .step-right,
    .step-left {
        grid-template-columns: 40px 1fr;
    }

    .step-right .step-content,
    .step-left .step-content {
        order: 2;
        justify-content: flex-start;
    }

    .step-right .step-number-wrapper,
    .step-left .step-number-wrapper {
        order: 1;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-card {
        max-width: 100%;
    }

    .video-resume-card {
        padding: 1.5rem;
    }

    .video-thumbnail {
        height: 200px;
    }

    .guidelines-title {
        font-size: 1.35rem;
    }

    .notes-card {
        padding: 1.5rem;
    }

    .help-box {
        margin-top: 2rem;
    }
}

/* ========================== Media Page Styles ============================= */

/* Hero Section */
.media-hero-section {
    background: var(--diu-accent);
    padding: 8rem 0 5rem;
    margin-top: -82px;
    padding-top: calc(8rem + 82px);
    position: relative;
}

/* Filter Buttons */
.btn-filter {
    background: #f3f4f6;
    color: #6b7280;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-filter:hover {
    background: #e5e7eb;
    color: var(--diu-dark);
    transform: translateY(-2px);
}

.btn-filter.active {
    background: var(--diu-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 102, 179, 0.3);
}

/* Custom Alert */
.alert-custom-blue {
    background: #eef2ff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--diu-dark);
}

.alert-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--diu-primary);
    font-size: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Video Cards */
.media-video-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.media-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.media-thumbnail-wrapper {
    position: relative;
    height: 260px;
}

.media-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.media-video-card:hover .media-thumbnail {
    transform: scale(1.05);
}

.duration-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.media-video-card:hover .media-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.media-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.media-video-card:hover .media-play-btn {
    transform: scale(1.1);
    background: #fff;
    color: var(--diu-primary);
    border-color: #fff;
}

.media-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    z-index: 2;
}

.student-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.student-dept {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin: 0;
    font-weight: 600;
}

/* Print Media Card */
.print-media-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.print-media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.print-media-card .media-thumbnail-wrapper {
    height: 200px;
}

/* Contact Page Specific Styles */
.contact-hero-section {
    background: #fff;
    padding: 6rem 0 3rem;
    margin-top: -82px;
    padding-top: calc(6rem + 82px);
    position: relative;
    overflow: hidden;
}

.contact-card-premium {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.contact-card-premium:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: transparent;
}

.contact-card-premium .badge {
    font-weight: 600;
    padding: 0.5em 1em;
}

.office-hours-section {
    background: var(--diu-dark);
    color: #fff;
    padding: 4rem 2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 33, 71, 0.2);
}

.office-hours-icon {
    font-size: 3rem;
    color: var(--diu-secondary);
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 70%;
    height: auto;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* ========================== Photo Albums Styles ============================= */

/* Photo Gallery Section */
.photo-gallery-section {
    position: relative;
}

.photo-gallery-subtitle {
    max-width: 650px;
}

/* Gallery Filter Buttons */
.btn-gallery-filter {
    background: #fff;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-gallery-filter:hover {
    background: #f3f4f6;
    color: var(--diu-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--diu-primary);
}

.btn-gallery-filter.active {
    background: linear-gradient(135deg, var(--diu-primary) 0%, #0052a3 100%);
    color: #fff;
    border-color: var(--diu-primary);
    box-shadow: 0 6px 20px rgba(0, 102, 179, 0.3);
}

/* Album Card */
.album-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    cursor: pointer;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Album Cover */
.album-cover {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.album-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.album-card:hover .album-img {
    transform: scale(1.1);
}

/* Album Overlay */
.album-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

/* Album Icon */
.album-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.album-card:hover .album-icon {
    transform: scale(1.15) rotate(15deg);
    background: rgba(255, 255, 255, 0.3);
}

/* Album Badge */
.album-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 102, 179, 0.95);
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 102, 179, 0.3);
    z-index: 2;
}

.album-badge-green {
    background: rgba(0, 166, 81, 0.95);
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.album-badge-gold {
    background: rgba(245, 158, 11, 0.95);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* Album Count */
.album-count {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Album Info */
.album-info {
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.album-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--diu-dark);
    margin-bottom: 0.5rem;
}

.album-date {
    font-size: 0.85rem;
    color: #6b7280;
    display: flex;
    align-items: center;
}

/* Album Item Animation */
.album-item {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================== Slideshow Modal Styles ============================= */

/* Slideshow Container */
.slideshow-container {
    max-width: 85%;
    max-height: 85vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Slideshow Image */
.slideshow-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Slideshow Caption */
.slideshow-caption {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    margin-top: 20px;
    max-width: 100%;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.slideshow-caption p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Slideshow Navigation Buttons */
.slideshow-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 1000;
}

.slideshow-prev {
    left: 30px;
}

.slideshow-next {
    right: 30px;
}

.slideshow-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

/* Slideshow Thumbnails */
.slideshow-thumbnails {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    max-width: 90%;
    overflow-x: auto;
    z-index: 1000;
    scrollbar-width: none;
}

.slideshow-thumbnails::-webkit-scrollbar {
    display: none;
}

/* Thumbnail Item */
.slideshow-thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    opacity: 0.5;
}

.slideshow-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slideshow-thumb:hover {
    border-color: rgba(255, 255, 255, 0.5);
    opacity: 0.8;
}

.slideshow-thumb:hover img {
    transform: scale(1.1);
}

.slideshow-thumb.active {
    border-color: var(--diu-primary);
    opacity: 1;
    box-shadow: 0 0 20px rgba(0, 102, 179, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .album-cover {
        height: 250px;
    }

    .btn-gallery-filter {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .album-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .album-card:hover {
        transform: translateY(-5px);
    }

    .slideshow-container {
        max-width: 95%;
    }

    .slideshow-nav-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .slideshow-prev {
        left: 15px;
    }

    .slideshow-next {
        right: 15px;
    }

    .slideshow-thumb {
        width: 60px;
        height: 45px;
    }

    .slideshow-thumbnails {
        gap: 8px;
        padding: 10px 15px;
    }

    .slideshow-caption {
        padding: 15px 20px;
    }

    .slideshow-caption p {
        font-size: 0.9rem;
    }
}

/* ========================== Events & News Styles ============================= */

/* Events Hero Section */
.events-hero-section {
    background: linear-gradient(135deg, #0066b3 0%, #003d6b 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.events-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,117.3C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.events-hero-subtitle {
    max-width: 650px;
}

/* Events Tabs */
.btn-events-tab {
    background: #fff;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-events-tab:hover {
    background: #f3f4f6;
    color: var(--diu-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--diu-primary);
}

.btn-events-tab.active {
    background: linear-gradient(135deg, var(--diu-primary) 0%, #0052a3 100%);
    color: #fff;
    border-color: var(--diu-primary);
    box-shadow: 0 6px 20px rgba(0, 102, 179, 0.3);
}

/* Search Box */
.search-box {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.1rem;
}

.search-input {
    padding: 14px 20px 14px 50px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--diu-primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 179, 0.1);
}

/* Filter Select */
.filter-select {
    padding: 14px 20px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    border-color: var(--diu-primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 179, 0.1);
}

/* Section Title */
.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--diu-dark);
}

/* Featured Card */
.featured-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 102, 179, 0.95);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 102, 179, 0.3);
}

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--diu-dark);
    line-height: 1.3;
}

.featured-description {
    color: #6b7280;
    line-height: 1.8;
}

/* Event Category Badges */
.event-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.event-category-badge.distribution {
    background: rgba(0, 102, 179, 0.1);
    color: var(--diu-primary);
}

.event-category-badge.workshop {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.event-category-badge.announcement {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.event-category-badge.achievement {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

/* Event Date Badge */
.event-date-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.event-date-text {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Event Meta */
.event-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6b7280;
}

/* Event Card */
.event-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .event-image {
    transform: scale(1.1);
}

/* Event Type Badge */
.event-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.event-type-badge.event {
    background: rgba(0, 102, 179, 0.9);
    color: #fff;
}

.event-type-badge.news {
    background: rgba(16, 185, 129, 0.9);
    color: #fff;
}

.event-card-body {
    background: #fff;
}

.event-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--diu-dark);
    line-height: 1.4;
}

.event-card-excerpt {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

.event-time,
.news-author {
    font-size: 0.85rem;
    color: #6b7280;
}

.btn-link-arrow {
    color: var(--diu-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-link-arrow:hover {
    color: #0052a3;
    transform: translateX(3px);
}

/* ========================== Event Detail Page Styles ============================= */

/* Breadcrumb */
.event-detail-breadcrumb {
    margin-top: 76px;
}

.breadcrumb-item a {
    color: var(--diu-primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6b7280;
}

/* Event Detail Header */
.event-detail-title,
.news-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--diu-dark);
    line-height: 1.3;
}

.event-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-status-badge.upcoming {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 2px solid rgba(245, 158, 11, 0.3);
}

/* Event Meta Item */
.event-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid var(--diu-primary);
}

.event-meta-item i {
    font-size: 1.5rem;
    margin-top: 2px;
}

.event-meta-label {
    font-size: 0.85rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.event-meta-value {
    font-size: 1rem;
    color: var(--diu-dark);
    font-weight: 600;
    margin-top: 4px;
}

/* Event Detail Image */
.event-detail-image img,
.news-detail-image img {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Event Highlights List */
.event-highlights-list,
.news-highlights-list {
    list-style: none;
    padding: 0;
}

.event-highlights-list li,
.news-highlights-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Event Schedule */
.event-schedule {
    background: #f9fafb;
    border-radius: 16px;
    padding: 30px;
}

.schedule-item {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-time {
    flex-shrink: 0;
    width: 100px;
    font-weight: 700;
    color: var(--diu-primary);
    font-size: 1.05rem;
}

.schedule-details h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--diu-dark);
    margin-bottom: 5px;
}

.schedule-details p {
    color: #6b7280;
    margin: 0;
}

/* Event Sidebar Card */
.event-sidebar-card,
.news-sidebar-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.event-sidebar-card .card-header,
.news-sidebar-card .card-header {
    background: linear-gradient(135deg, var(--diu-primary) 0%, #0052a3 100%);
    color: #fff;
    padding: 15px 20px;
    border: none;
}

.event-sidebar-card .card-body,
.news-sidebar-card .card-body {
    padding: 20px;
}

/* Registration Card */
.event-price {
    text-align: center;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
}

.price-label {
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--diu-primary);
}

.registration-info .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* Organizer */
.organizer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--diu-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* ========================== News Detail Page Styles ============================= */

/* Article Meta */
.article-meta {
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #6b7280;
}

.image-caption {
    font-style: italic;
}

/* Article Content */
.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
}

.article-content h3,
.article-content h4 {
    color: var(--diu-dark);
    font-weight: 700;
}

.article-content p {
    margin-bottom: 1.5rem;
}

/* Quote Block */
.quote-block {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-left: 6px solid var(--diu-primary);
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

.quote-icon {
    color: var(--diu-primary);
    opacity: 0.2;
    font-size: 3rem;
    position: absolute;
    top: 20px;
    left: 20px;
}

.quote-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--diu-dark);
    margin: 0 0 15px 0;
    position: relative;
    z-index: 1;
}

.quote-author {
    color: #6b7280;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Stats Cards */
.stats-card {
    background: linear-gradient(135deg, var(--diu-primary) 0%, #0052a3 100%);
    color: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 102, 179, 0.2);
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.stats-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Article Tags */
.article-tags .badge {
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.85rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.article-tags .badge:hover {
    background: var(--diu-primary) !important;
    border-color: var(--diu-primary);
    color: #fff !important;
}

/* Author Bio Card */
.author-bio-card {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
}

.author-bio-avatar {
    border-radius: 50%;
    border: 3px solid var(--diu-primary);
}

/* Latest News Sidebar */
.latest-news-item {
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.3s ease;
}

.latest-news-item:hover {
    background: #f9fafb;
}

.latest-news-item a {
    text-decoration: none;
}

.latest-news-thumb {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.latest-news-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--diu-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--diu-primary);
}

/* News Date Badge */
.news-date-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .events-hero-section {
        padding: 100px 0 60px;
    }

    .event-detail-title,
    .news-detail-title {
        font-size: 1.75rem;
    }

    .featured-image {
        height: 250px;
    }

    .featured-title {
        font-size: 1.35rem;
    }

    .event-image-wrapper {
        height: 200px;
    }

    .schedule-item {
        flex-direction: column;
        gap: 8px;
    }

    .schedule-time {
        width: auto;
    }

    .stats-number {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.1rem;
    }
}

/* ========================== FAQ Page Styles ============================= */

/* FAQ Hero Section */
.faq-hero-section {
    background: linear-gradient(135deg, #0066b3 0%, #003d6b 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.faq-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,117.3C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.faq-hero-subtitle {
    max-width: 650px;
}

/* FAQ Search */
.faq-search-wrapper {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.faq-search-box {
    position: relative;
}

.faq-search-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 1.2rem;
    z-index: 1;
}

.faq-search-input {
    width: 100%;
    padding: 18px 25px 18px 65px;
    border-radius: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    font-size: 1.05rem;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.faq-search-input:focus {
    outline: none;
    border-color: #fff;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.faq-search-input::placeholder {
    color: #9ca3af;
}

/* Quick Stats */
.quick-stat {
    padding: 20px;
    text-align: center;
}

.quick-stat .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--diu-primary) 0%, #0052a3 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 102, 179, 0.2);
}

.quick-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--diu-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.quick-stat .stat-label {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.9rem;
}

/* FAQ Categories */
.faq-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.faq-category-btn {
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid #e5e7eb;
    background: #fff;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-category-btn:hover {
    background: #f9fafb;
    color: var(--diu-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--diu-primary);
}

.faq-category-btn.active {
    background: linear-gradient(135deg, var(--diu-primary) 0%, #0052a3 100%);
    color: #fff;
    border-color: var(--diu-primary);
    box-shadow: 0 6px 20px rgba(0, 102, 179, 0.3);
}

/* FAQ Section */
.faq-section {
    scroll-margin-top: 100px;
}

.faq-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--diu-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--diu-primary);
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-accordion .accordion-button {
    background: #fff;
    color: var(--diu-dark);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--diu-primary) 0%, #0052a3 100%);
    color: #fff;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-button::after {
    display: none;
}

.accordion-icon {
    color: var(--diu-primary);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) .accordion-icon {
    color: #fff;
}

.faq-accordion .accordion-body {
    padding: 25px;
    background: #f9fafb;
    color: #4b5563;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-accordion .accordion-body ul,
.faq-accordion .accordion-body ol {
    margin-bottom: 0;
}

.faq-accordion .accordion-body li {
    margin-bottom: 8px;
}

.faq-accordion .accordion-collapse {
    border: none;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    border-color: var(--diu-primary);
    box-shadow: 0 8px 20px rgba(0, 102, 179, 0.1);
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--diu-primary) 0%, #0052a3 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--diu-dark);
    margin-bottom: 5px;
}

.contact-info-item p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-hero-section {
        padding: 100px 0 80px;
    }

    .faq-search-input {
        padding: 16px 20px 16px 55px;
        font-size: 0.95rem;
    }

    .faq-search-icon {
        left: 20px;
        font-size: 1rem;
    }

    .faq-categories {
        gap: 8px;
    }

    .faq-category-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .faq-section-title {
        font-size: 1.5rem;
    }

    .faq-accordion .accordion-button {
        font-size: 0.95rem;
        padding: 16px 20px;
    }

    .faq-accordion .accordion-body {
        padding: 20px;
        font-size: 0.95rem;
    }

    .quick-stat .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .quick-stat .stat-number {
        font-size: 1.5rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-info-item {
        padding: 15px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* ========================== FAQ Categories Sidebar ============================= */

/* Desktop Sidebar */
.faq-sidebar {
    position: sticky;
    top: 100px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 0;
    overflow: hidden;
}

.faq-sidebar-header {
    background: linear-gradient(135deg, var(--diu-primary), var(--diu-secondary));
    color: white;
    padding: 20px 24px;
}

.faq-sidebar-header h5 {
    color: white;
}

.faq-sidebar-header i {
    color: rgba(255, 255, 255, 0.8);
}

/* Category Navigation */
.faq-category-nav {
    padding: 12px;
}

.faq-category-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: none;
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    margin-bottom: 6px;
    position: relative;
    overflow: hidden;
}

.faq-category-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--diu-primary), var(--diu-secondary));
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 4px 4px 0;
}

.faq-category-btn:hover {
    background: linear-gradient(90deg, rgba(0, 102, 179, 0.05), rgba(0, 166, 81, 0.03));
    transform: translateX(4px);
}

.faq-category-btn:hover::before {
    transform: scaleY(0.6);
}

.faq-category-btn.active {
    background: linear-gradient(90deg, rgba(0, 102, 179, 0.1), rgba(0, 166, 81, 0.05));
}

.faq-category-btn.active::before {
    transform: scaleY(1);
}

.faq-category-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 102, 179, 0.1), rgba(0, 166, 81, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-category-icon i {
    font-size: 1rem;
    color: var(--diu-primary);
    transition: all 0.3s ease;
}

.faq-category-btn:hover .faq-category-icon {
    background: linear-gradient(135deg, var(--diu-primary), var(--diu-secondary));
}

.faq-category-btn:hover .faq-category-icon i {
    color: white;
    transform: scale(1.1);
}

.faq-category-btn.active .faq-category-icon {
    background: linear-gradient(135deg, var(--diu-primary), var(--diu-secondary));
}

.faq-category-btn.active .faq-category-icon i {
    color: white;
}

.faq-category-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-category-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    transition: color 0.3s ease;
}

.faq-category-btn:hover .faq-category-name,
.faq-category-btn.active .faq-category-name {
    color: var(--diu-primary);
}

.faq-category-count {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
}

/* Quick Help Card */
.faq-quick-help {
    margin: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 102, 179, 0.1);
}

.faq-quick-help-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--diu-primary), var(--diu-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-quick-help-icon i {
    font-size: 1.4rem;
    color: white;
}

/* Unused pill styles removed */

/* Check Icon Animation */
.faq-category-btn .check-icon {
    transition: all 0.3s ease;
    transform: scale(0.5);
}

.faq-category-btn.active .check-icon {
    opacity: 1 !important;
    transform: scale(1);
}

/* ========================== Active Category Title ============================= */

.faq-active-category {
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(0, 102, 179, 0.1);
}

.faq-active-category h4 {
    color: #1f2937;
}

.faq-active-category h4 i {
    color: var(--diu-primary);
}

/* ========================== FAQ Item Visibility ============================= */

.faq-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.hidden {
    display: none !important;
}

.faq-item.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* No Results State */
.faq-no-results {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    border: 2px dashed rgba(0, 102, 179, 0.2);
}

.faq-no-results.hidden {
    display: none !important;
}

.faq-no-results-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 102, 179, 0.1), rgba(0, 166, 81, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-soft 2s ease-in-out infinite;
}

.faq-no-results-icon i {
    font-size: 2rem;
    color: var(--diu-primary);
}

@keyframes pulse-soft {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* No Results Categories Grid */
.faq-no-results-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.faq-browse-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 2px solid rgba(0, 102, 179, 0.15);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
}

.faq-browse-btn i {
    font-size: 0.9rem;
    color: var(--diu-primary);
    transition: all 0.3s ease;
}

.faq-browse-btn:hover {
    background: linear-gradient(135deg, var(--diu-primary), var(--diu-secondary));
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 179, 0.25);
}

.faq-browse-btn:hover i {
    color: white;
    transform: scale(1.1);
}

.faq-browse-btn:active {
    transform: translateY(0);
}

/* ========================== FAQ Mobile Responsive ============================= */

@media (max-width: 991.98px) {
    .faq-content-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .faq-active-category {
        text-align: center;
        padding-bottom: 12px;
        margin-bottom: 0 !important;
    }

    .faq-active-category h4 {
        font-size: 1.25rem;
    }

    .faq-active-category p {
        font-size: 0.875rem;
    }
}

@media (max-width: 767.98px) {
    .faq-mobile-categories {
        margin: 0 -12px;
        border-radius: 0;
        padding: 10px 12px;
    }

    .faq-category-pill {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .faq-category-pill i {
        font-size: 0.85rem;
    }

    .faq-active-category h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .faq-categories-scroll {
        gap: 8px;
    }

    .faq-category-pill {
        padding: 8px 12px;
        font-size: 0.75rem;
        gap: 6px;
    }

    .faq-category-pill span {
        display: none;
    }

    .faq-category-pill i {
        font-size: 1rem;
    }
}
.program-hero {
    background: #fff;
    display: flex;
    align-items: center;
    color: #1a1a1a;
    padding: 80px 0;
    overflow: hidden;
}

.hero-collage-text {
    max-width: 600px;
}

.hero-collage-text h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #131b23;
    margin-bottom: 2rem;
}

.hero-collage-text p {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Re-using collage styles for hero */
.collage-container {
    position: relative;
    padding: 20px;
}

.collage-img {
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.collage-img:hover {
    transform: translateY(-5px);
}

.img-top-left {
    width: 58%;
    height: 220px;
    margin-bottom: 15px;
}

.img-top-right {
    width: 38%;
    height: 220px;
    margin-left: 15px;
    margin-bottom: 15px;
}

.img-bottom-circle-container {
    width: 180px;
    height: 180px;
    display: inline-block;
    margin-right: 20px;
    position: relative;
}

.img-bottom-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.circle-accent {
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid #ff6b35;
    border-radius: 50%;
    clip-path: polygon(0 40%, 100% 40%, 100% 100%, 0 100%);
    transform: rotate(-20deg);
}

.img-bottom-right-container {
    width: 55%;
    height: 260px;
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.img-bottom-right {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.accent-corner {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 100px;
    height: 100px;
    border-right: 4px solid #ff6b35;
    border-bottom: 4px solid #ff6b35;
    z-index: -1;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.feature-list li {
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-list li:hover {
    transform: translateX(10px);
    border-left-color: var(--diu-secondary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-list li i {
    color: var(--diu-secondary);
    margin-right: 15px;
    font-size: 1.25rem;
}

.program-card {
    border: none;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.button-bg {
    background-color: #0b5ab4;
}

.program-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.program-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-img-wrapper img {
    transform: scale(1.1);
}

.program-icon-badge {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--diu-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.impact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border-bottom: 6px solid var(--diu-secondary);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.impact-card:hover {
    background: var(--diu-primary);
    color: white;
    border-bottom-color: var(--diu-primary);
}

.impact-card:hover .stat-number,
.impact-card:hover .text-secondary {
    color: white !important;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--diu-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.highlight-img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 166, 81, 0.1);
    color: var(--diu-secondary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, var(--diu-primary), var(--diu-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Floating Animation */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Community Style Section */
.community-section {
    padding: 100px 0;
    background: #fff;
}

.community-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.community-text {
    font-size: 1.15rem;
    color: #666;
    max-width: 500px;
    margin-bottom: 0;
}

.collage-container {
    position: relative;
    padding: 20px;
}

.collage-img {
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.img-top-left {
    width: 60%;
    height: 180px;
    margin-bottom: 15px;
}

.img-top-right {
    width: 35%;
    height: 180px;
    margin-left: 15px;
    margin-bottom: 15px;
}

.img-bottom-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid transparent;
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.img-bottom-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid #2596be;
    border-radius: 50%;
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
    transform: rotate(-15deg);
}

.img-bottom-right {
    width: 55%;
    height: 220px;
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.accent-corner {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    border-right: 3px solid #2596be;
    border-bottom: 3px solid #2596be;
    z-index: -1;
}
#photos {
  line-height: 0;
  -webkit-column-count: 4;
  -webkit-column-gap:   5px;
  -moz-column-count:    4;
  -moz-column-gap:      5px;
  column-count:         4;
  column-gap:           5px;
}
#photos img {
  width: 100% !important;
  height: auto !important;
}
@media (min-width: 1201px) {
  #photos {
    -moz-column-count:    4;
    -webkit-column-count: 4;
    column-count:         4;
  }
}
@media (max-width: 1200px) {
  #photos {
    -moz-column-count:    4;
    -webkit-column-count: 4;
    column-count:         4;
  }
}
@media (max-width: 1000px) {
  #photos {
    -moz-column-count:    3;
    -webkit-column-count: 3;
    column-count:         3;
  }
}
@media (max-width: 800px) {
  #photos {
    -moz-column-count:    2;
    -webkit-column-count: 2;
    column-count:         2;
  }
}
@media (max-width: 400px) {
  #photos {
    -moz-column-count:    1;
    -webkit-column-count: 1;
    column-count:         1;
  }
}
