/* Social Welfare Research Foundation - Custom CSS */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Custom Properties - Bootstrap 5 Compatible */
:root {
    /* Bootstrap 5 Color System Override - Figma Theme */
    --bs-primary: #1818A5;
    --bs-primary-rgb: 24, 24, 165;
    --bs-secondary: #40BDF2;
    --bs-secondary-rgb: 64, 189, 242;
    --bs-success: #28a745;
    --bs-success-rgb: 40, 167, 69;
    --bs-info: #003A63;
    --bs-info-rgb: 0, 58, 99;
    --bs-warning: #ffc107;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger: #dc3545;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light: #f8f9fa;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark: #000B22;
    --bs-dark-rgb: 0, 11, 34;

    /* Card Colors - Used in quick access cards */
    --future-students-bg: #023145;
    --academic-programs-bg: #B4A82D;
    --calendar-bg: #2E99BD;
    --virtual-campus-bg: #3C010B;

    /* Search Modal Colors - Used in search functionality */
    --search-primary: #667eea;
    --search-secondary: #764ba2;
    --search-accent: #4facfe;
    --search-text: #2d3748;
    --search-text-light: #718096;
    --search-bg: rgba(255, 255, 255, 0.95);
    --search-border: rgba(255, 255, 255, 0.2);
    --search-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Typography - Bootstrap 5 Font System */
    --bs-font-sans-serif: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;

    /* Bootstrap 5 Spacing System */
    --bs-gutter-x: 1.5rem;
    --section-padding: 5rem 0;

    /* Bootstrap 5 Shadow System */
    --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);

    /* Bootstrap 5 Transition System */
    --bs-transition: all 0.15s ease-in-out;
    --transition: all 0.3s ease;

    /* Bootstrap 5 Border Radius System */
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-pill: 50rem;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--bs-font-sans-serif);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--bs-dark);
    background-color: #f1f1f1;
    overflow-x: hidden;
    /* Account for shorter fixed header height */
}

img {
    max-width: 100%;
}

/* Container padding */
.container,
.container-fluid {
    padding-left: var(--bs-gutter-x);
    padding-right: var(--bs-gutter-x);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
}

h1,
.h1 {
    font-size: 3rem;
}

h2,
.h2 {
    font-size: 2.5rem;
}

h3,
.h3 {
    font-size: 1.875rem;
}

h4,
.h4 {
    font-size: 1.5rem;
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1rem;
}

.fw-black {
    font-weight: 800 !important;
}

.hero-title {
    font-size: 2.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.text-primary {
    color: var(--bs-primary) !important;
}

/* ===== NEW HEADER STYLES - MATCHING DESIGN ===== */

/* Main Header Container */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.header-height{
    height: 70px;
}
@media (min-width: 992px) {
    .main-header .container {
        max-width: 100%;
        padding-left: 50px;
        padding-right: 50px;
    }
    .header-height{
        height: 149px;
    }
}
@media (min-width: 1600px) {
    .main-header .container {
        padding-left: 80px;
        padding-right: 80px;
    }
}

/* Top Navigation Bar */
.top-navbar {
    position: relative;
    z-index: 3;
}

.top-navbar>* {
    position: relative;
    z-index: 2;
}

/* Circular Logo */
.circular-logo {
    flex-shrink: 0;
}

.logo {
    max-width: 135px;
    margin-top: -38px;
    position: absolute;
}

.logo-mob {
    width: 80px;
}

/* Top Navigation Menu */
.top-nav-menu {
    flex: 1;
}

.top-nav-rhs {
    background: var(--bs-primary);
    padding: 0;
    position: relative;
}

@media (min-width: 992px) {
    .top-nav-rhs,
    .main-navbar-rhs {
        margin-left: 170px;
    }
}

.top-nav-rhs::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    background: var(--bs-primary);
    width: 500%;
    left: 0;
    z-index: -1;
}

.nav-menu-list {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 1rem;
}

.nav-menu-item {
    position: relative;
}

.nav-menu-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.nav-menu-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Special styling for NEWS dropdown */
.news-link {
    background-color: var(--bs-secondary);
    border-radius: 0;
}

.news-link:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

/* Header Actions */
.header-actions {
    flex-shrink: 0;
}

/* Header Action Buttons Override */
.notification-bell,
.search-btn {
    width: 30px !important;
    height: 30px !important;
    font-size: 16px !important;
    padding: 0 !important;
    backdrop-filter: blur(10px);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-weight: 400 !important;
    box-shadow: none !important;
}

.mobile-menu-toggle {
    width: 40px !important;
    height: 40px !important;
    color: #ffffff !important;
    font-size: 16px !important;
    padding: 0 !important;
    backdrop-filter: blur(10px);
    align-items: center !important;
    justify-content: center !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-weight: 400 !important;
    box-shadow: none !important;
}

.notification-bell:hover,
.search-btn:hover,
.mobile-menu-toggle:hover {
    transform: translateY(-1px) scale(1.05) !important;
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.1) !important;
}

.hide-caret::after {
    display: none !important;
}

.dropdown-menu {
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.dropdown-item {
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8fafc;
    color: var(--bs-primary);
    padding-left: 1.25rem;
}

.notification-bell {
    position: relative;
}

.notification-bell::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background-color: #ff4757;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    cursor: pointer;
    padding: 10px;
    gap: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle span {
    width: 18px;
    height: 2.5px;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    display: block;
    transform-origin: center center;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.mobile-menu-toggle:hover span {
    background-color: #ffffff;
}

/* Mobile Menu Toggle Active State */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
    transform-origin: center;
}

/* Main Navigation Bar */
.header-main-text {
    position: relative;
    background-color: #EBEBEB;
    width: 100%;
    z-index: 2;
    padding: 8px 15px;
    border-radius: 0 0 0 10px;
    font-weight: 600;
    color: var(--bs-primary);
    line-height: 1.3;
    text-align: center;
}

.header-main-text::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    background: #EBEBEB;
    width: 500%;
    left: 0;
    z-index: -1;
    border-radius: 0 0 0 10px;
}

.header-main-text .mtxt-1 {
    font-size: 20px;
}

.header-main-text .mtxt-2 {
    font-size: 12px;
}

.main-navbar {
    background-color: #ffffff;
    padding: 0;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}

.main-navbar .container {
    position: relative;
}

.main-navbar .navbar-nav {
    gap: 0.5rem;
    padding: 0.3rem 0;
}

.main-navbar .nav-link {
    color: #333333;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 0;
    transition: color 0.2s ease;
    position: relative;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link:focus,
.main-navbar .nav-link.active {
    color: var(--bs-primary);
}

.main-navbar .nav-link i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.main-navbar .nav-link:hover i {
    transform: rotate(180deg);
}

/* Global Button Styling */
.btn {
    font-weight: 800;
    border-radius: var(--bs-border-radius);
    padding: 0.675rem 1.5rem;
    transition: var(--bs-transition);
    text-transform: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--bs-box-shadow);
}

.btn-lg {
    padding: 13px 35px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: #ffffff;
    box-shadow: var(--bs-box-shadow);
}

.btn-outline-primary {
    border-color: var(--bs-secondary);
    color: var(--bs-secondary);
}

.btn-outline-primary:hover {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: #ffffff;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    background: transparent;
}

.btn-outline-light:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--bs-primary);
}

.btn-outline-secondary {
    border-color: var(--bs-secondary);
    color: var(--bs-secondary);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: #ffffff;
}

.btn-white {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--bs-primary);
}

.btn-white:hover {
    background: var(--bs-light);
    border-color: var(--bs-light);
    color: var(--bs-primary);
}

.btn-secondary {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: #ffffff;
}

.btn-secondary:hover {
    background: var(--bs-dark);
    border-color: var(--bs-dark);
    color: #ffffff;
}

/* Contact Button Container */
.navbar-contact {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Specific button adjustments */
.btn-contact {
    padding: 0.3rem 1rem;
}

/* Dropdown Menus */
.dropdown {
    position: relative;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--bs-box-shadow-lg);
    border-radius: var(--bs-border-radius-lg);
    padding: 0.5rem 0;
    margin-top: 0;
    background-color: var(--bs-white, #ffffff);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--bs-transition);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    overflow: hidden;
}

@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu,
    .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }
}

/* Ensure proper dropdown positioning */
@media (min-width: 992px) {
    .dropdown-menu {
        min-width: 200px;
    }
}

/* Mobile dropdown styles */
@media (max-width: 991.98px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0.5rem;
        padding: 0;
        background-color: rgba(0, 0, 0, 0.05);
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        padding: 8px 20px;
        font-size: 14px;
    }

    .dropdown-item:hover {
        background-color: rgba(0, 0, 0, 0.1);
        transform: none;
    }
}

.dropdown-item {
    padding: 12px 20px;
    font-weight: 500;
    color: #333333;
    transition: all 0.15s ease;
    border-radius: 0;
    display: block;
    width: 100%;
    white-space: nowrap;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--bs-light);
    color: var(--bs-primary);
}

/* Mobile Navigation Offcanvas */
#mobileMenuOffcanvas {
    width: 320px;
    background: #ffffff;
    z-index: 1056 !important;
    /* Higher than MORE menu offcanvas (1055) */
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    height: 100vh !important;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.08);
}

#mobileMenuOffcanvas .offcanvas-header {
    background: #ffffff;
    color: #333;
    padding: 1.25rem 1.5rem;
    border-bottom: 2px solid #f8f9fa;
    min-height: auto;
}

#mobileMenuOffcanvas .offcanvas-title {
    color: #333;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

#mobileMenuOffcanvas .btn-close {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    opacity: 0.8;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.2s ease;
    padding: 0;
    margin-right: 0.5rem;
}

#mobileMenuOffcanvas .btn-close:hover {
    background: rgba(0, 0, 0, 0.1);
    opacity: 1;
}

#mobileMenuOffcanvas .btn-close:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

#mobileMenuOffcanvas .offcanvas-body {
    padding: 0;
    overflow-y: auto;
    height: calc(100vh - 65px);
    background: #ffffff;
    /* Account for header height */
}

.mobile-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mobile-nav-menu {
    padding: 1rem 0;
}

.mobile-menu-section {
    margin-bottom: 2rem;
}

.mobile-section-title {
    color: var(--bs-primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    padding: 1.5rem 1.5rem 0.5rem;
    background: transparent;
    opacity: 0.8;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}


.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-bottom: 1px solid #f8f9fa;
}

.mobile-nav-link:hover {
    background: rgba(24, 24, 165, 0.05);
    color: var(--bs-primary);
    padding-left: 1.75rem;
}

.mobile-nav-link i {
    transition: transform 0.3s ease;
}

.mobile-nav-link[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Mobile Submenu Styles */
.mobile-submenu {
    background: #f8f9fa;
    margin: 0;
    padding: 0;
}

.mobile-submenu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-submenu-link {
    display: block;
    padding: 0.75rem 2.5rem;
    color: #666;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    transition: all 0.2s ease;
    position: relative;
    border-bottom: 1px solid #e9ecef;
}

.mobile-submenu-link:hover {
    background: #e9ecef;
    color: var(--bs-primary);
    padding-left: 3rem;
}

.mobile-submenu-link::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    width: 6px;
    height: 6px;
    background-color: var(--bs-secondary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}


/* Mobile Contact Button */
.mobile-contact-btn {
    margin: 2rem 1.5rem 1.5rem !important;
    text-align: center !important;
    padding: 1rem 2rem !important;
    background: var(--bs-secondary) !important;
    border: none !important;
    border-radius: var(--bs-border-radius) !important;
    box-shadow: none !important;
    transition: var(--bs-transition) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    font-size: 0.85rem !important;
}

.mobile-contact-btn:hover {
    background: var(--bs-primary) !important;
    transform: none !important;
}


/* MORE Menu Section */
.more-menu-section {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.more-menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    height: 35px !important;
    min-height: 35px !important;
    border: none !important;
    color: var(--bs-primary) !important;
    background: transparent !important;
    font-size: 12px !important;
    padding: 8px 0 !important;
    margin-left: 20px;
}

.more-menu-toggle:hover {
    color: var(--bs-secondary) !important;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hamburger-icon span {
    width: 18px;
    height: 2px;
    background-color: currentColor;
    transition: var(--bs-transition);
    transform-origin: center;
    display: block;
    border-bottom: 3px solid currentColor;
}

.more-menu-toggle:hover .hamburger-icon span {
    background-color: var(--bs-primary);
}

/* Active state animation for hamburger */
.more-menu-toggle.active .hamburger-icon span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
    transform-origin: center;
}

.more-menu-toggle.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.more-menu-toggle.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
    transform-origin: center;
}

/* More Menu Offcanvas Styling */
#moreMenuOffcanvas {
    width: 350px;
    z-index: 1055 !important;
    /* Higher than header z-index (1050) */
}

/* Ensure offcanvas backdrop is also above header */
.offcanvas-backdrop {
    z-index: 1054 !important;
    /* Just below offcanvas but above header */
}

/* Mobile menu backdrop specifically */
#mobileMenuOffcanvas~.offcanvas-backdrop {
    z-index: 1055 !important;
    /* Just below mobile menu offcanvas */
}

#moreMenuOffcanvas .offcanvas-header {
    background: linear-gradient(135deg, #2E3AA1 0%, #1E2A7A 100%);
    color: white;
    border-bottom: none;
}

#moreMenuOffcanvas .offcanvas-title {
    color: white !important;
}

#moreMenuOffcanvas .btn-close {
    filter: invert(1);
}

#moreMenuOffcanvas .offcanvas-body {
    padding: 1.5rem;
}

.more-menu-section-title {
    color: #2E3AA1;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #56C1F7;
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.more-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.more-menu-list li {
    margin-bottom: 0.25rem;
    padding: 0;
}

.more-menu-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 0.5rem;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

.more-menu-link:hover {
    background: linear-gradient(135deg, #56C1F7 0%, #4A47E4 100%);
    color: white;
    text-decoration: none;
    transform: translateX(3px);
    padding-left: 0.75rem;
}

.more-menu-link i {
    width: 20px;
    text-align: center;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.contact-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border: 1px solid #dee2e6;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #666;
}

.contact-item i {
    font-size: 0.9rem;
}

/* Responsive More Menu Offcanvas */
@media (max-width: 575.98px) {
    #moreMenuOffcanvas {
        width: 100%;
    }

    .more-menu-link {
        padding: 1rem;
        font-size: 1rem;
    }

    .more-menu-section-title {
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .top-navbar {
        padding: 10px 0;
        background: var(--bs-primary);
    }
    
    .top-nav-rhs {
        margin-left: 0;
        background: transparent;
    }
    
    .logo-mob {
        width: 50px;
        margin-right: 15px;
    }
    
    .logo-mob img {
        height: 40px;
        width: auto;
    }

    .nav-menu-list {
        gap: 1rem;
    }

    .nav-menu-link {
        font-size: 12px;
        padding: 6px 8px;
    }

    .logo-circular {
        width: 40px;
        height: 40px;
    }

    .main-navbar .navbar-nav {
        gap: 1rem;
    }

    .main-navbar .nav-link {
        font-size: 12px;
        padding: 8px 0;
    }
}

@media (max-width: 767.98px) {
    .top-nav-menu {
        display: none !important;
    }

    .more-menu-section {
        display: none !important;
    }

    .main-navbar {
        display: none;
    }

    /* Header action buttons on mobile */
    .notification-bell,
    .search-btn,
    .mobile-menu-toggle {
        width: 36px !important;
        height: 36px !important;
        font-size: 14px !important;
    }

    .btn-contact {
        font-size: 11px !important;
        padding: 8px 16px !important;
        height: auto !important;
        min-height: 36px !important;
    }

}

/* Sticky Header Animation */
/* Scrolled Header State */
.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

/* ===== END NEW HEADER STYLES ===== */


.dropdown-menu {
    border: none;
    box-shadow: var(--bs-box-shadow);
    border-radius: 0.5rem;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-weight: 400;
    transition: var(--bs-transition);
}

.dropdown-item:hover {
    background-color: var(--bs-light);
    color: var(--bs-primary);
}

/* ===== HERO SLIDER STYLES ===== */

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    /* height: 650px; */
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 650px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
    color: #ffffff;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-description {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    line-height: 1.5;
}

.hero-buttons .btn {
    margin: 0.5rem 0.5rem 0.5rem 0;
    min-width: 150px;
}


/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
    transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: 600;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.swiper-button-next {
    right: 60px;
}

.swiper-button-prev {
    left: 60px;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 30px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 5px;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: #ffffff;
    transform: scale(1.2);
}

/* Announcements Sidebar */
.announcements-sidebar-container {
    position: fixed;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    z-index: 9999;
    width: 350px;
    max-height: calc(100vh - 200px);
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block;
}

@media (min-width: 1200px) {
    .announcements-sidebar-container {
        max-height: calc(100vh - 180px);
    }
}

.announcements-sidebar-container.hidden {
    transform: translateY(-50%) translateX(100%);
    opacity: 0;
}

.announcements-sidebar {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    max-height: 500px;
}

.announcements-header {
    background: linear-gradient(135deg, var(--bs-secondary), var(--bs-primary));
    color: #ffffff;
    border-radius: 8px 8px 0 0;
    flex-shrink: 0;
}

.announcements-header h3 {
    color: #ffffff !important;
}

.announcements-header .btn-outline-primary {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.announcements-header .btn-outline-primary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.announcements-list {
    padding: 0;
    max-height: 400px;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: var(--bs-secondary) transparent;
}

.announcements-list::-webkit-scrollbar {
    width: 6px;
}

.announcements-list::-webkit-scrollbar-track {
    background: transparent;
}

.announcements-list::-webkit-scrollbar-thumb {
    background: var(--bs-secondary);
    border-radius: 3px;
}

.announcements-list::-webkit-scrollbar-thumb:hover {
    background: var(--bs-primary);
}

.announcement-item {
    padding: 12px 16px;
    transition: var(--transition);
}

.announcement-item:hover {
    background-color: var(--bs-light);
}

.announcement-item:last-child {
    border-radius: 0 0 8px 8px;
}

.announcement-date {
    font-size: 11px;
    color: var(--bs-secondary) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.announcement-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--bs-dark);
    line-height: 1.3;
    margin: 2px 0 0 0 !important;
}

.announcement-link {
    font-size: 12px;
    color: var(--bs-primary) !important;
    text-decoration: none;
    font-weight: 600;
    transition: var(--bs-transition);
}

.announcement-link:hover {
    color: var(--bs-dark) !important;
    text-decoration: underline;
}

/* Side Navigation Tabs */
.side-navigation {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

.side-nav-tab {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    background: var(--bs-primary);
    color: #ffffff;
    padding: 20px 10px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 0;
    margin-bottom: 2px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.side-nav-tab::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.side-nav-tab:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Announcement and notification tabs specific shine animation */
.side-nav-announcements::after,
.side-nav-notifications::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    animation: shineEffect 3s ease-in-out infinite;
}

/* Add slight delay to notification tab for staggered effect */
.side-nav-notifications::after {
    animation-delay: 1.5s;
}

@keyframes shineEffect {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }

    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
}

.side-nav-tab.active {
    background: var(--bs-secondary);
    /* transform: translateX(-5px); */
    box-shadow: -5px 0 15px rgba(86, 193, 247, 0.3);
}

.side-nav-tab:hover {
    background: var(--bs-dark);
    /* transform: translateX(-5px); */
}

.side-nav-tab.active:hover {
    background: var(--bs-secondary);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .announcements-sidebar-container {
        width: 320px;
        right: 70px;
    }
}

@media (max-width: 991.98px) {
    .announcements-sidebar-container {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 400px;
        margin: 20px auto 0;
        max-height: 400px;
    }

    .announcements-sidebar-container.hidden {
        transform: translateY(-100%);
    }

    .hero-slide {
        height: 70vh;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .side-navigation {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .hero-slider-section {
        height: auto;
        min-height: 70vh;
    }

    .hero-slide {
        height: 70vh;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    .announcements-sidebar-container {
        margin-top: 30px;
        position: relative;
        z-index: 10;
    }

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

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }

    .swiper-button-next {
        right: 10px;
    }

    .swiper-button-prev {
        left: 10px;
    }
}

@media (max-width: 575.98px) {
    .announcements-sidebar-container {
        width: 100%;
        margin: 20px 0 0;
        padding: 0 10px;
    }

    .hero-slide {
        height: 70vh;
    }

    .hero-content {
        text-align: center;
    }
}

/* ===== END HERO SLIDER STYLES ===== */

/* ===== MODERN SEARCH MODAL STYLES ===== */
.search-modal {
    --search-primary: #667eea;
    --search-secondary: #764ba2;
    --search-accent: #4facfe;
    --search-text: #2d3748;
    --search-text-light: #718096;
    --search-bg: rgba(255, 255, 255, 0.95);
    --search-border: rgba(255, 255, 255, 0.2);
    --search-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.search-modal .modal-dialog {
    max-width: 500px;
    margin: 2rem auto;
}

.modern-search-card {
    background: var(--search-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--search-border);
    border-radius: 20px;
    box-shadow: var(--search-shadow);
    overflow: hidden;
    position: relative;
}

.modern-search-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.search-modal .modal-body {
    padding: 2rem;
    background: transparent;
}

/* Search Header */
.search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.search-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--search-primary), var(--search-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.search-icon {
    color: white;
    font-size: 1.2rem;
}

.modern-close-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.modern-close-btn:hover {
    transform: scale(1.05);
}

/* Modern Search Input */
.modern-search-input-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.modern-search-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--search-text);
    padding: 1rem 0;
    outline: none;
    transition: all 0.3s ease;
}

.modern-search-input::placeholder {
    color: var(--search-text-light);
    font-weight: 400;
}

.search-input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 1px;
}

.search-input-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--search-primary), var(--search-secondary));
    border-radius: 1px;
    transition: width 0.3s ease;
}

.modern-search-input-wrapper.focused .search-input-underline::after,
.modern-search-input-wrapper.has-content .search-input-underline::after {
    width: 100%;
}

/* Search Results */
.modern-results-dropdown {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-top: 1rem;
    overflow: hidden;
}

.results-header {
    padding: 1rem 1.5rem 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.results-count {
    font-size: 0.875rem;
    color: var(--search-text-light);
    font-weight: 500;
}

.modern-result-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.modern-result-item:last-child {
    border-bottom: none;
}

.modern-result-item:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: translateX(4px);
}

.result-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: inherit;
    gap: 1rem;
}

.result-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--search-accent), var(--search-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.result-content {
    flex: 1;
}

.result-title {
    font-weight: 600;
    color: var(--search-text);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.result-description {
    font-size: 0.825rem;
    color: var(--search-text-light);
    line-height: 1.4;
}

.result-arrow {
    color: var(--search-text-light);
    font-size: 0.875rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.2s ease;
}

.modern-result-item:hover .result-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* No Results */
.no-results {
    padding: 2rem 1.5rem;
    text-align: center;
}

.no-results-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--search-text-light);
    font-size: 1.25rem;
}

.no-results-text {
    font-weight: 600;
    color: var(--search-text);
    margin-bottom: 0.5rem;
}

.no-results-suggestion {
    font-size: 0.875rem;
    color: var(--search-text-light);
}

/* Search Suggestions */
.search-suggestions {
    margin-top: 1rem;
}

.suggestions-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--search-text);
    margin-bottom: 0.75rem;
}

.suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggestion-chip {
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--search-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.suggestion-chip:hover {
    background: var(--search-primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Animations */
.search-modal.fade .modal-dialog {
    transform: translate(0, -50px) scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.search-modal.show .modal-dialog {
    transform: translate(0, 0) scale(1);
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-modal .modal-dialog {
        margin: 1rem;
        max-width: calc(100vw - 2rem);
    }

    .search-modal .modal-body {
        padding: 1.5rem;
    }

    .modern-search-input {
        font-size: 1.125rem;
    }

    .suggestion-chips {
        gap: 0.375rem;
    }

    .suggestion-chip {
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
    }
}

/* ===== END SEARCH MODAL STYLES =====*/


/* Announcements Sidebar */
.announcements-sidebar {
    background: #ffffff !important;
    display: flex;
    flex-direction: column;
    max-height: 500px;
}

.announcements-sidebar h3 i {
    font-size: 1.2rem;
}



.announcement-item .badge {
    font-size: 0.75rem;
    font-weight: 500;
}

.announcement-item p {
    color: var(--bs-dark);
    margin-bottom: 0.5rem;
}

.announcement-item small {
    color: var(--bs-secondary);
    font-size: 0.8rem;
}

/* Quick Access Cards */
.quick-access-section {
    position: relative;
    z-index: 10;
}

.quick-access-cards .card {
    height: 320px;
    transition: var(--bs-transition);
    cursor: pointer;
}

.quick-access-cards .card:hover {
    transform: translateY(-10px);
    box-shadow: var(--bs-box-shadow-lg);
}

.future-students-card {
    background: linear-gradient(135deg, var(--future-students-bg), #143B46) !important;
}

.academic-programs-card {
    background: linear-gradient(135deg, var(--academic-programs-bg), #A08528) !important;
}

.calendar-card {
    background: linear-gradient(135deg, var(--calendar-bg), #3B8A96) !important;
}

.virtual-campus-card {
    background: linear-gradient(135deg, var(--virtual-campus-bg), #6B1D2A) !important;
}

.quick-access-cards .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.quick-access-cards p {
    opacity: 0.9;
}

/* Welcome Section */
.welcome-section {
    padding: var(--section-padding);
}

.welcome-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.welcome-content p {
    font-size: 1rem;
    line-height: 1.7;
}

.welcome-image img {
    border-radius: var(--bs-border-radius-xl);
    box-shadow: var(--bs-box-shadow);
}

/* Awards Section */
/* Awards Section - New Design */
.awards-section {
    background: linear-gradient(135deg, #2E3AA1 0%, #1E2A7A 100%);
    position: relative;
    color: #ffffff;
}

.awards-section .container {
    position: relative;
    z-index: 2;
}

/* Welcome Content in Awards Section */
.welcome-awards-content h2 {
    margin-bottom: 1rem;
}

.welcome-awards-content h2 span {
    color: #56C1F7;
}

.welcome-awards-image img {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* New Award Items */
.award-item-new {
    margin-bottom: 2rem;
}

.award-list {
    list-style: none;
    padding-left: 0;
}

.award-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.award-list li::before {
    content: '•';
    color: #56C1F7;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -3px;
}

/* Accreditation Logos */
.accreditation-logos-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.accreditation-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.accreditation-logo:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.accreditation-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2);
    opacity: 0.9;
}

.accreditation-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Awards Section Responsive */
@media (max-width: 991.98px) {
    .accreditation-logos-container {
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .accreditation-logos-container {
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
    }

    .accreditation-logo {
        margin-bottom: 1rem;
    }
}

/* News Section */
.news-section {
    background: #DCDCDC;
}

/* Main News Card */
.main-news-card {
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.main-news-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.main-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.main-news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.read-more-btn {
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    text-decoration: none;
}

/* News Sidebar */
.news-sidebar {
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-header {
    display: flex;
}

.news-tab-dark {
    background: var(--bs-dark);
    color: #ffffff;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    flex: 1;
    text-align: center;
}

.news-tab-blue {
    background: var(--bs-primary);
    color: #ffffff;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    flex: 1;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-tab-blue:hover {
    background: var(--bs-secondary);
}

/* News List */
.news-lists {
    padding: 0;
}

.news-item {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #E5E5E5;
    transition: all 0.3s ease;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: #F8F9FA;
    padding-left: 2.5rem;
}

.news-date {
    color: var(--bs-dark);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-title {
    color: var(--bs-dark);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
}

/* News Section Responsive */
@media (max-width: 991.98px) {

    .news-tab-dark,
    .news-tab-blue {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .main-news-overlay {
        padding: 1.5rem;
        height: 120px;
    }

    .read-more-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .news-item {
        padding: 1.2rem 1.5rem;
    }

    .news-item:hover {
        padding-left: 2rem;
    }

    .news-title {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .news-date {
        font-size: 0.8rem;
    }

    .news-tab-dark,
    .news-tab-blue {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

/* Testimonials Section - New Design */
.testimonials-section {
    background: var(--bs-primary);
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #323DAA 0%, #262F85 100%);
    opacity: 0.9;
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonialSwiper {
    padding: 0 0 2rem 0;
}

.testimonial-item {
    padding: 2.5rem 3rem 4rem 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.testimonial-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.testimonial-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.testimonial-quote-icon {
    position: absolute;
    font-size: 3rem;
    color: rgba(86, 193, 247, 0.6);
    z-index: 2;
}

.testimonial-quote-icon.top {
    top: -80px;
    left: -80px;
}

.testimonial-quote-icon.bottom {
    bottom: -50px;
    right: -50px;
}

/* Testimonial Navigation */
.testimonial-next,
.testimonial-prev {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-next::after,
.testimonial-prev::after {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.testimonial-next:hover,
.testimonial-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.testimonial-next {
    right: 10px;
}

.testimonial-prev {
    left: 10px;
}

/* Testimonial Pagination */
.testimonial-pagination {
    bottom: 20px;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    margin: 0 6px;
    transition: var(--transition);
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    transform: scale(1.3);
}

/* Testimonial Responsive Design */
@media (max-width: 991.98px) {
    .testimonial-image {
        width: 130px;
        height: 130px;
    }

    .testimonial-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .testimonial-item {
        padding: 3rem 2rem;
    }

    .testimonial-content {
        max-width: 500px;
        padding: 0 1rem;
    }

    .testimonial-quote-icon.top {
        top: -60px;
        left: -60px;
    }

    .testimonial-quote-icon.bottom {
        bottom: -30px;
        right: -30px;
    }
}

@media (max-width: 767.98px) {
    .testimonial-image {
        width: 120px;
        height: 120px;
    }

    .testimonial-item {
        padding: 2.5rem 1.5rem;
    }

    .testimonial-content {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .testimonial-image-container {
        margin-bottom: 1.5rem;
    }

    .testimonial-author {
        text-align: center;
        font-size: 0.9rem;
    }

    .testimonial-quote-icon svg {
        width: 40px;
        height: 32px;
    }

    .testimonial-quote-icon.top {
        top: -50px;
        left: -20px;
    }

    .testimonial-quote-icon.bottom {
        bottom: -30px;
        right: -20px;
    }

    .testimonial-next,
    .testimonial-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }

    .testimonial-next {
        right: 0;
    }

    .testimonial-prev {
        left: 0;
    }

    .testimonial-next::after,
    .testimonial-prev::after {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    .testimonial-item {
        padding: 2rem 1rem;
    }

    .testimonial-content {
        padding: 0 2rem;
    }

    .testimonial-quote-icon svg {
        width: 35px;
        height: 28px;
    }

    .testimonial-quote-icon.top {
        top: -40px;
        left: -10px;
    }

    .testimonial-quote-icon.bottom {
        bottom: -20px;
        right: -10px;
    }

    .testimonial-next {
        right: 2px;
    }

    .testimonial-prev {
        left: 2px;
    }
}

/* Events Section */
.events-section {
    padding: var(--section-padding);
}

.event-card {
    background-color: #E5E5E5;
}

.event-image {
    height: 200px;
    object-fit: cover;
}

.card-date {
    color: var(--bs-info) !important;
}

/* Partners Section */
.partners-section {
    background-color: #EAEAEA;
}

.partnersSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.partner-logo {
    /* opacity: 0.6; */
    /* filter: grayscale(100%); */
    transition: var(--transition);
    object-fit: contain;
}

.partner-logo:hover {
    opacity: 1;
    /* filter: grayscale(0%); */
}

/* Campus Life Section */
.campus-life-section {
    position: relative;
    padding-bottom: 36%;
}

.campus-life-section .btn {
    border: 1px solid #1a3d73;
}

.campus-life-section .btn:hover {
    border-color: #2b77eb;
    background-color: #ffffff;
}

.campus-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.campus-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campus-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: start;
    z-index: 2;
}

.campus-overlay .cta-buttons {
    margin-top: 11%;
}


/* Footer */

.footer-btm {
    background-color: var(--bs-dark);
}

.footer-logo {
    max-width: 120px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-contact i {
    color: #ffffff;
}

.social-links a {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--bs-primary);
    text-decoration: none;
    transform: translateY(-3px) scale(1.1);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: var(--bs-border-radius-pill);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: var(--bs-box-shadow);
    transition: var(--bs-transition);
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--bs-box-shadow-lg);
}

/* Animations */
.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.animate-slide-up-delay {
    animation: slideUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.animate-slide-up-delay-2 {
    animation: slideUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

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

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

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0 2rem;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }

    .announcements-sidebar {
        max-height: 400px;
    }

    .announcements-list {
        max-height: 300px;
    }

    .quick-access-section {
        margin-top: 2rem;
    }

    .navbar-nav {
        padding: 1rem 0;
        text-align: center;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-content h2 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .hero-content .lead {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    .quick-access-cards .card {
        height: auto;
        margin-bottom: 1rem;
    }

    .welcome-content h2 {
        font-size: 1.75rem;
    }

    .news-card {
        height: 300px;
        margin-bottom: 2rem;
    }

    .campus-actions .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    /* Campus Life Section */
    .campus-life-section {
        padding: 0;
    }

    .campus-overlay {
        position: relative;
    }

    .campus-overlay .cta-buttons {
        margin: 0 0 1rem 0;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media (max-width: 575.98px) {
    .hero-content h2 {
        font-size: 1.3rem;
        line-height: 1.25;
        margin-bottom: 0.6rem;
    }

    .announcements-sidebar {
        margin-top: 2rem;
    }

    .quick-access-section {
        margin-top: 1rem;
    }

    .welcome-section,
    .news-section,
    .events-section {
        padding: 3rem 0;
    }

    .footer-section {
        text-align: center;
        margin-bottom: 2rem;
    }
}

/* Utility Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-dark) 100%);
}


/* Print Styles */
/* CTA Buttons Responsive Design */
@media (max-width: 991.98px) {
    .cta-buttons-container {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .cta-buttons-container .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .cta-buttons-container .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}


@media (max-width: 575.98px) {
    .cta-buttons-container {
        gap: 0.5rem;
        padding: 0 10px;
    }

    .cta-buttons-container .btn {
        max-width: 100%;
        padding: 12px 16px;
        font-size: 0.85rem;
        min-height: 44px;
        /* Better touch target */
    }

    /* Additional mobile button improvements */
    .btn {
        min-height: 40px;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .btn-sm {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media print {

    .main-header,
    .scroll-to-top,
    .hero-section,
    .main-footer {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
        background: white;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.form-control {
    padding: 12px 15px;
    height: 52px;
    border-radius: 12px;
    border: 2px solid #edf2f7;
    background: #f8fafc;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

textarea.form-control {
    height: auto;
}

.btn:focus,
.form-control:focus {
    outline: none;
    border-color: var(--bs-primary);
    background: #fff;
    color: var(--bs-primary);
    box-shadow: 0 0 0 4px rgba(var(--bs-primary-rgb), 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bs-light);
}

::-webkit-scrollbar-thumb {
    background: var(--bs-primary);
    border-radius: var(--bs-border-radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bs-dark);
}

/* Auth Pages Styles */
.auth-section {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    position: relative;
    overflow: hidden;
}

.auth-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--bs-primary);
    filter: blur(150px);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    opacity: 0.1;
    z-index: 0;
}

.auth-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--bs-secondary);
    filter: blur(150px);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    opacity: 0.1;
    z-index: 0;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 35px 40px;
    width: 100%;
    max-width: 650px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

/* Minimal Header for Auth Pages */
.main-header.minimal {
    box-shadow: none;
    border-bottom: 1px solid #edf2f7;
}

.main-header.minimal .logo-link img {
    height: 45px;
}

.main-header.minimal .top-navbar {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #edf2f7;
}

/* Success Components */
.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.auth-header {
    text-align: center;
    margin-bottom: 25px;
}

.auth-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
    padding: 10px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.auth-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bs-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.auth-subtitle {
    color: #666;
    font-size: 0.95rem;
    font-weight: 400;
}

.auth-form .form-label {
    font-weight: 700;
    color: #444;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: block;
}

.input-group-auth {
    position: relative;
}

.input-group-auth > i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.2rem;
    z-index: 4;
    pointer-events: none;
}

.input-group-auth .form-control {
    padding-left: 45px;
}

.input-group-auth.password-group .form-control {
    padding-right: 45px;
}

.input-group-auth .password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: color 0.3s ease;
}

.input-group-auth .password-toggle i {
    position: static;
    transform: none;
    pointer-events: auto;
    font-size: 1.2rem;
}

.input-group-auth .password-toggle:hover {
    color: var(--bs-primary);
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #edf2f7;
    font-size: 0.95rem;
    color: #666;
}

.social-login .btn {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 12px;
    border: 2px solid #edf2f7;
    background: #fff;
    transition: all 0.3s ease;
}

.social-login .btn:hover {
    background: #f8fafc;
    border-color: #cbd5e0;
    transform: translateY(-2px);
}

/* Inner Page Styles */
.inner-page-header {
    background: linear-gradient(rgba(24, 24, 165, 0.7), rgba(24, 24, 165, 0.8)), url('../images/hero-slide-1.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    color: #ffffff;
    margin-top: -1px;
}

.inner-page-header .breadcrumb-item+.breadcrumb-item::before{
    color: #ffffff;
}

.inner-page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ffffff;
}

.inner-content {
    padding: 60px 0;
}

.sidebar-widget {
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.25rem;
    color: var(--bs-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bs-secondary);
}

/* =========================================
   Inner Page Header Styles
   ========================================= */
/* Icon Box */
.icon-box {
    width: 60px; 
    height: 60px; 
    background: rgba(var(--bs-primary-rgb), 0.1); 
    border-radius: 15px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.icon-box i {
    font-size: 1.5rem;
}

.inner-page-header {
    background-color: var(--bs-primary);
    padding: 4rem 0;
    color: #ffffff;
}

.inner-page-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.inner-page-header .breadcrumb {
    margin-bottom: 0;
}

.inner-page-header .breadcrumb-item,
.inner-page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
}

.inner-page-header .breadcrumb-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.inner-page-header .breadcrumb-item.active {
    color: #ffffff;
}


/* =========================================
   News Page Custom Styles
   ========================================= */

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

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.news-icon-box {
    background: #e2e8f0; 
    height: 100%; 
    min-height: 200px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

/* =========================================
   FAQ Page Styles
   ========================================= */

.faq-nav-pills {
    margin-bottom: 3rem;
    justify-content: center;
}

.faq-nav-pills .nav-link {
    color: #334155;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    margin: 0 5px 10px;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-nav-pills .nav-link:hover {
    background-color: #f1f5f9;
    color: var(--bs-primary);
}

.faq-nav-pills .nav-link.active {
    background-color: var(--bs-primary);
    color: #fff;
    border-color: var(--bs-primary);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.faq-section {
    scroll-margin-top: 100px; /* Offset for sticky header */
    margin-bottom: 4rem;
}

.faq-section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    color: var(--bs-primary);
    font-weight: 700;
    text-align: center;
}

.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 5px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    font-weight: 600;
    color: var(--bs-primary);
    background-color: #fff;
    padding: 1.25rem 1.5rem;
    box-shadow: none !important;
    font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-primary);
    background-color: rgba(37, 99, 235, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: transform 0.3s ease;
}

.accordion-body {
    line-height: 1.7;
    color: #475569;
    padding: 1.5rem;
    background-color: #fff;
}
/* Gallery Styles - Added for New Gallery Page */
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
    background-color: #f8f9fa;
    cursor: pointer;
}

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

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 24, 165, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* =========================================
   Social Share Buttons
   ========================================= */
.share-btn {
    width: 40px;
    height: 40px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.share-btn-facebook {
    background-color: #3b5998;
}
.share-btn-facebook:hover {
    background-color: #2d4373;
}

.share-btn-twitter {
    background-color: #1da1f2;
}
.share-btn-twitter:hover {
    background-color: #0c85d0;
}

.share-btn-whatsapp {
    background-color: #25d366;
}
.share-btn-whatsapp:hover {
    background-color: #128c7e;
}

.share-btn-linkedin {
    background-color: #0077b5;
}
.share-btn-linkedin:hover {
    background-color: #004483;
}

