/* ============================================================
   🎨 COLOR VARIABLES
   ============================================================ */

:root {
    --color-primary: #1a3a6a;
    --color-primary-dark: #0f2a4a;
    --color-primary-light: #2a5a8a;
    --color-primary-gradient: linear-gradient(135deg, #1a3a6a 0%, #2a5a8a 100%);
    --color-white: #ffffff;
    --color-gray-light: #f5f6f8;
    --color-gray-muted: #8a8f9a;
    --color-text-dark: #1a1a2e;
    --shadow-sm: 0 4px 20px rgba(26, 58, 106, 0.08);
    --shadow-md: 0 8px 40px rgba(26, 58, 106, 0.12);
    --shadow-lg: 0 16px 60px rgba(26, 58, 106, 0.18);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="dark"] {
    --color-gray-light: #12121e;
    --color-white: #16213e;
    --color-text-dark: #e8e8e8;
    --color-gray-muted: #aaa;
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.2);
    --shadow-md: 0 8px 40px rgba(0,0,0,0.3);
    --shadow-lg: 0 16px 60px rgba(0,0,0,0.4);
}

/* ============================================================
   🏗️ BASE STYLES
   ============================================================ */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: var(--color-gray-light);
    color: var(--color-text-dark);
    transition: var(--transition);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

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

img {
    max-width: 100%;
    display: block;
}

/* ============================================================
   📐 MAIN CONTENT LAYOUT
   ============================================================ */

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    main {
        padding: 0 15px;
    }

    .section .container {
        padding: 0 10px;
    }
}

/* ============================================================
   🔝 TOP BAR
   ============================================================ */

.top-bar {
    background: #ffffff;
    color: var(--color-primary);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    border: 1px solid var(--color-primary);
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-logo .logo-img {
    height: 42px;
    width: auto;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

    .top-bar-contact .contact-item {
        color: var(--color-primary);
        font-size: 0.85rem;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
        border-radius: 30px;
        background: rgba(26, 58, 106, 0.05);
    }

        .top-bar-contact .contact-item:hover {
            background: rgba(26, 58, 106, 0.1);
            transform: translateY(-1px);
        }

.top-bar-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.lang-btn {
    background: rgba(26, 58, 106, 0.05);
    border: 1px solid rgba(26, 58, 106, 0.1);
    color: var(--color-primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

    .lang-btn:hover {
        background: rgba(26, 58, 106, 0.1);
    }

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    color: var(--color-text-dark);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    min-width: 80px;
    padding: 6px 0;
    display: none;
    margin-top: 8px;
    overflow: hidden;
    border: 1px solid rgba(26, 58, 106, 0.1);
    z-index: 1060;
}

    .lang-dropdown.open {
        display: block;
    }

.lang-option {
    display: block;
    width: 100%;
    padding: 8px 16px;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-text-dark);
}

    .lang-option:hover {
        background: rgba(26, 58, 106, 0.05);
    }

    .lang-option.active {
        background: var(--color-primary);
        color: #ffffff;
    }

/* Theme Toggle */
.theme-toggle {
    background: rgba(26, 58, 106, 0.05);
    border: 1px solid rgba(26, 58, 106, 0.1);
    color: var(--color-primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

    .theme-toggle:hover {
        background: rgba(26, 58, 106, 0.1);
        transform: rotate(20deg);
    }
/* 🔒 ADMIN LOGIN BUTTON - Almost invisible */
.admin-login-btn {
    background: transparent;
    border: none;
    /*color: rgba(26, 58, 106, 0.05); *//* Very faint - almost invisible */
    color: rgba(26, 58, 106, 1); /* Very faint - almost visible */
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

    .admin-login-btn:hover {
        /*color: rgba(26, 58, 106, 0.15);*/ /* Slightly visible on hover but still faint */
        color: rgba(26, 58, 106, 0.5); /* Slightly visible on hover but still faint */
        background: rgba(26, 58, 106, 0.03);
    }

[data-theme="dark"] .admin-login-btn {
    color: rgba(255, 255, 255, 1);
}

    [data-theme="dark"] .admin-login-btn:hover {
        color: rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.03);
    }
/* Dark Mode Support */
[data-theme="dark"] .top-bar {
    background: var(--color-white);
    border-color: var(--color-primary-light);
}

[data-theme="dark"] .top-bar-contact .contact-item {
    color: var(--color-text-dark);
}

[data-theme="dark"] .lang-btn {
    color: var(--color-text-dark);
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}

[data-theme="dark"] .lang-dropdown {
    background: var(--color-white);
    border-color: rgba(255,255,255,0.1);
}

[data-theme="dark"] .lang-option {
    color: var(--color-text-dark);
}

[data-theme="dark"] .theme-toggle {
    color: var(--color-text-dark);
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .top-bar-contact .contact-item span {
        display: none; /* Hide text on mobile */
    }
    
    .top-bar-contact .contact-item {
        padding: 0 4px;
    }
    
    .top-bar-contact .contact-item i {
        font-size: 16px; /* Make icons slightly bigger */
    }
    
    .top-bar {
        padding: 6px 0;
    }
    
    .top-bar-logo .logo-img {
        height: 30px;
    }
}
/* ============================================================
   🧭 RIGHT SIDE NAVIGATION
   ============================================================ */

.side-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1040;
}

.side-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.side-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    color: #adb5bd;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
    position: relative;
}

    .side-nav-link i {
        font-size: 1rem;
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1.5px solid rgba(26, 58, 106, 0.15);
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(4px);
        transition: all 0.3s ease;
        flex-shrink: 0;
        color: var(--color-gray-muted);
    }

[data-theme="dark"] .side-nav-link i {
    background: rgba(22, 33, 62, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

/*.side-nav-link .nav-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-text-dark);
    background-color:white;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    pointer-events: none;
}*/
.side-nav-link .nav-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-text-dark);
    background-color: white;
    padding: 5px 12px;
    border-radius: 999px; /* Elliptical / pill shape */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    pointer-events: none;
}

    [data-theme="dark"] .side-nav-link .nav-label {
    color: rgba(255, 255, 255, 0.85);
}

.side-nav-link:hover .nav-label {
    opacity: 1;
    transform: translateX(0);
}

.side-nav-link.active .nav-label {
    opacity: 0 !important;
    transform: translateX(10px) !important;
}

.side-nav-link.active i {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(26, 58, 106, 0.05);
    box-shadow: 0 0 20px rgba(26, 58, 106, 0.1);
}

.side-nav-link:hover i {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 20px rgba(26, 58, 106, 0.15);
}
/* Extra-large devices: desktops */

@media (max-width: 1400px) {
    .side-nav {
        right: 12px;
    }

    .side-nav-link i {
        width: 46px;
        height: 46px;
        font-size: 0.85rem;
    }

    .side-nav-link .nav-label {
        display: none;
    }

    .side-nav-links {
        gap: 8px;
    }
}
/* Extra-large devices: desktops */
@media (max-width: 1200px) {
    .side-nav {
        right: 12px;
    }

    .side-nav-link i {
        width: 46px;
        height: 46px;
        font-size: 0.85rem;
    }

    .side-nav-link .nav-label {
        display: none;
    }

    .side-nav-links {
        gap: 8px;
    }
}
/* Large devices: laptops */
@media (max-width: 992px) {
    .side-nav {
        right: 12px;
    }

    .side-nav-link i {
        width: 46px;
        height: 46px;
        font-size: 0.85rem;
    }

    .side-nav-link .nav-label {
        display: none;
    }

    .side-nav-links {
        gap: 8px;
    }
}
/* Medium devices: tablets */
@media (max-width: 768px) {
    .side-nav {
        right: 12px;
    }

    .side-nav-link i {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .side-nav-link .nav-label {
        display: none;
    }

    .side-nav-links {
        gap: 8px;
    }
}
/* Small devices: phones in landscape */
@media (max-width: 576px) {
    .side-nav {
        right: 8px;
    }

    .side-nav-link i {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
        border-width: 1px;
    }

    .side-nav-links {
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .side-nav {
        right: 8px;
    }

    .side-nav-link i {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
        border-width: 1px;
    }

    .side-nav-links {
        gap: 6px;
    }
}
/* RTL Support */
[dir="rtl"] .side-nav {
    right: auto;
    left: 20px;
}

[dir="rtl"] .side-nav-links {
    align-items: flex-start;
}

[dir="rtl"] .side-nav-link {
    flex-direction: row-reverse;
}

    [dir="rtl"] .side-nav-link .nav-label {
        transform: translateX(-10px);
    }

    [dir="rtl"] .side-nav-link:hover .nav-label {
        transform: translateX(0);
    }

    [dir="rtl"] .side-nav-link.active .nav-label {
        transform: translateX(-10px) !important;
    }

@media (max-width: 768px) {
    [dir="rtl"] .side-nav {
        left: 12px;
        right: auto;
    }
}

@media (max-width: 480px) {
    [dir="rtl"] .side-nav {
        left: 8px;
        right: auto;
    }
}

/* ============================================================
   📄 SECTIONS
   ============================================================ */

.section {
    padding: 90px 0;
    transition: var(--transition);
    position: relative;
}

    .section:nth-child(even) {
        background: var(--color-white);
    }

    .section:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 2px;
        background: var(--color-primary);
        opacity: 0.08;
        border-radius: 2px;
    }

    .section:last-child::after {
        display: none;
    }

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

    .section-title::after {
        content: '';
        display: block;
        width: 50px;
        height: 4px;
        background: var(--color-primary-gradient);
        margin: 14px auto 0;
        border-radius: 4px;
    }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.7;
}

/* ============================================================
   🎠 HERO SLIDER
   ============================================================ */

.hero-section {
    padding-top: 100px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    max-width: 100% !important;
    overflow: hidden;
    width: 100% !important;
    background: transparent !important;
}

    .hero-section .container-fluid {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

.hero-slider {
    border-radius: 0 !important;
    width:100% !important;
    max-width: 100% !important;
    margin-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

    .hero-slider .carousel-inner {
        padding-left: 50px !important;
        padding-right: 100px !important; /* Increased from 70px to 100px */
    }

.hero-slide {
    position: relative;
    height: 340px !important;
    width: 100% !important;
    min-height: 340px !important;
    max-height: 340px !important;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .hero-slide img {
        width: 100%;
        height: 100% !important;
        min-height: 340px !important;
        max-height: 340px !important;
        object-fit: cover;
    }

    .hero-slide .slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 5;
        text-align: center;
        width: 100%;
        padding: 0 20px;
        pointer-events: none;
    }

        .hero-slide .slide-content * {
            pointer-events: auto;
        }

    .hero-slide .slide-text {
        color: #ffffff;
        font-size: 3.5rem;
        font-weight: 700;
        text-shadow: 0 4px 30px rgba(0,0,0,0.6);
        line-height: 1.2;
        display: inline-flex;
        align-items: center;
        gap: 15px;
    }

    .hero-slide .slide-link-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 1.8rem;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        opacity: 0.8;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0;
        margin: 0;
        line-height: 1;
    }

        .hero-slide .slide-link-icon:hover {
            opacity: 1;
            transform: scale(1.1);
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
        }

/* Carousel Controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent !important;
    border: none !important;
    opacity: 0.6;
    transition: var(--transition);
    z-index: 10;
}

.hero-slider .carousel-control-prev {
    left: 10px !important;
}

.hero-slider .carousel-control-next {
    right: 60px !important; /* Increased from 50px to 60px */
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-size: 100% 100%;
    opacity: 0.7;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.hero-slider .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238a8f9a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E") !important;
}

.hero-slider .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238a8f9a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") !important;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 1;
}

.hero-slider .carousel-indicators {
    bottom: 10px;
    gap: 6px;
    z-index: 10;
    margin-bottom: 0;
}

    .hero-slider .carousel-indicators button {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 2px solid rgba(255,255,255,0.6);
        transition: var(--transition);
    }

    .hero-slider .carousel-indicators .active {
        background: var(--color-white);
        border-color: var(--color-white);
        transform: scale(1.2);
    }

.hero-section + .section {
    margin-top: 0 !important;
    padding-top: 40px !important;
}

@media (max-width: 992px) {
    .hero-slider {
        width: calc(100% - 50px) !important;
    }

    .hero-slide {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
    }

        .hero-slide img {
            min-height: 280px !important;
            max-height: 280px !important;
        }

        .hero-slide .slide-text {
            font-size: 2.8rem;
        }

    .hero-slider .carousel-inner {
        padding-left: 50px !important;
        padding-right: 90px !important; /* Already increased */
    }

    .hero-slider .carousel-control-next {
        right: 55px !important;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        width: calc(100% - 50px) !important;
    }

    .hero-slide {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }

        .hero-slide img {
            min-height: 220px !important;
            max-height: 220px !important;
        }

        .hero-slide .slide-text {
            font-size: 2rem;
        }

    .hero-slider .carousel-inner {
        padding-left: 40px !important;
        padding-right: 80px !important;
    }

    .hero-slider .carousel-control-next {
        right: 45px !important;
    }
}

@media (max-width: 480px) {
   /* .hero-slider {
        width: calc(100% - 50px) !important;
    }*/


    .hero-slide {
        height: 160px !important;
        min-height: 160px !important;
        max-height: 160px !important;
    }

        .hero-slide img {
            min-height: 160px !important;
            max-height: 160px !important;
        }

        .hero-slide .slide-text {
            font-size: 1.4rem;
        }

    .hero-slider .carousel-inner {
        padding-left: 30px !important;
        padding-right: 60px !important; /* Increased from 50px to 60px */
    }

    .hero-slider .carousel-control-next {
        right: 35px !important;
    }
}

/* ============================================================
   📖 ABOUT
   ============================================================ */

.about-text {
    width: 100%;
    overflow: visible;
}

    .about-text p {
        font-size: 1.05rem;
        line-height: 1.9;
        color: var(--color-gray-muted);
        margin-bottom: 16px;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    justify-items: center;
    align-items: center;
    margin-top: 30px;
    width: 100%;
    clear: both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.stat-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--color-primary-gradient);
    box-shadow: var(--shadow-sm);
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 10px;
    border: none !important;
}

    .stat-circle:hover {
        transform: scale(1.06) translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .stat-circle .stat-icon {
        font-size: 1.4rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 4px;
        display: block;
    }

    .stat-circle .stat-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--color-white);
        display: block;
        line-height: 1.2;
    }

    .stat-circle .stat-label {
        font-size: 0.55rem;
        color: rgba(255, 255, 255, 0.85);
        font-weight: 500;
        text-align: center;
        padding: 0 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

.about-image {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

    .about-image img {
        width: 100%;
        height: auto;
        max-height: 450px;
        object-fit: cover;
        border-radius: 16px;
        border: none !important;
        box-shadow: var(--shadow-sm);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

        .about-image img:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-lg);
        }

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stat-circle {
        width: 100px;
        height: 100px;
    }

        .stat-circle .stat-icon {
            font-size: 1.2rem;
        }

        .stat-circle .stat-number {
            font-size: 1.2rem;
        }

        .stat-circle .stat-label {
            font-size: 0.5rem;
        }

    .about-image {
        margin-bottom: 20px;
    }

        .about-image img {
            max-height: 300px;
            width: 100%;
            object-fit: cover;
        }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stat-circle {
        width: 90px;
        height: 90px;
        padding: 8px;
    }

        .stat-circle .stat-icon {
            font-size: 1.1rem;
            margin-bottom: 2px;
        }

        .stat-circle .stat-number {
            font-size: 1.1rem;
        }

        .stat-circle .stat-label {
            font-size: 0.45rem;
        }

    .about-image img {
        max-height: 250px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-circle {
        width: 80px;
        height: 80px;
        padding: 6px;
    }

        .stat-circle .stat-icon {
            font-size: 0.9rem;
            margin-bottom: 2px;
        }

        .stat-circle .stat-number {
            font-size: 0.9rem;
        }

        .stat-circle .stat-label {
            font-size: 0.4rem;
        }

    .about-image img {
        max-height: 200px;
    }
}

/* ============================================================
   🤝 SHAREHOLDERS SECTION
   ============================================================ */

.shareholders-subtitle-wrapper {
    margin: -10px 0 30px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

    .shareholders-subtitle-wrapper .subtitle-black {
        color: #1a1a1a;
        font-weight: 800;
    }

    .shareholders-subtitle-wrapper .subtitle-green {
        color: #00A651;
        font-weight: 800;
    }

[data-theme="dark"] .shareholders-subtitle-wrapper .subtitle-black {
    color: #e8e8e8;
}

[data-theme="dark"] .shareholders-subtitle-wrapper .subtitle-green {
    color: #00C853;
}

.shareholder-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    border: 1px solid rgba(26, 58, 106, 0.04);
    text-align: left;
}

    .shareholder-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(26, 58, 106, 0.08);
    }

.shareholder-logo {
    width: 180px;
    height: 70px;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px 0;
}

    .shareholder-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.shareholder-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.shareholder-sub {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary-light);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shareholder-desc {
    font-size: 0.9rem;
    color: var(--color-gray-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.shareholder-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .shareholder-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 5px 0;
        font-size: 0.9rem;
        color: var(--color-text-dark);
        border-bottom: 1px solid rgba(26, 58, 106, 0.04);
    }

        .shareholder-features li:last-child {
            border-bottom: none;
        }

        .shareholder-features li i {
            color: var(--color-primary);
            font-size: 0.9rem;
            width: 18px;
            text-align: center;
            flex-shrink: 0;
        }

[data-theme="dark"] .shareholder-card {
    background: var(--color-white);
    border-color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .shareholders-subtitle-wrapper {
        font-size: 1.5rem;
    }

    .shareholder-card {
        padding: 25px 20px;
    }

    .shareholder-logo {
        width: 140px;
        height: 55px;
    }

    .shareholder-name {
        font-size: 1.2rem;
    }

    .shareholder-features li {
        font-size: 0.85rem;
        padding: 4px 0;
    }
}

@media (max-width: 480px) {
    .shareholders-subtitle-wrapper {
        font-size: 1.2rem;
    }

    .shareholder-logo {
        width: 120px;
        height: 45px;
    }

    .shareholder-features li {
        font-size: 0.8rem;
        padding: 4px 0;
    }

        .shareholder-features li i {
            font-size: 0.8rem;
            width: 16px;
        }
}

/* ============================================================
   📦 SHAREHOLDERS FOOTER
   ============================================================ */

.shareholders-footer {
    margin-top: 50px;
    padding: 30px 40px;
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 58, 106, 0.06);
    text-align: center;
}

    .shareholders-footer .footer-line {
        width: 60px;
        height: 3px;
        background: var(--color-primary-gradient);
        margin: 0 auto 15px;
        border-radius: 3px;
    }

    .shareholders-footer .footer-text {
        margin: 0;
        color: var(--color-gray-muted);
        font-size: 1.05rem;
        line-height: 1.8;
    }

        .shareholders-footer .footer-text strong {
            color: var(--color-primary);
            font-weight: 700;
        }

[data-theme="dark"] .shareholders-footer {
    background: var(--color-white);
    border-color: rgba(255, 255, 255, 0.05);
}

    [data-theme="dark"] .shareholders-footer .footer-text {
        color: var(--color-text-dark);
    }

        [data-theme="dark"] .shareholders-footer .footer-text strong {
            color: var(--color-primary-light);
        }

@media (max-width: 768px) {
    .shareholders-footer {
        padding: 20px;
    }

        .shareholders-footer .footer-text {
            font-size: 0.95rem;
        }
}

@media (max-width: 480px) {
    .shareholders-footer {
        padding: 15px;
    }

        .shareholders-footer .footer-text {
            font-size: 0.85rem;
        }
}

/* ============================================================
   👔 MANAGING DIRECTOR'S MESSAGE - FULL WIDTH
   ============================================================ */

.md-section-full {
    background: #f5f6f8;
    padding: 0;
    position: relative;
}

    .md-section-full .container-fluid {
        max-width: 100%;
        padding: 0;
    }
/* ============================================================
   🎂 10TH ANNIVERSARY - LETTER STYLE
   ============================================================ */

.anniversary-full-section {
    background: #f5f6f8;
    padding: 40px 0 60px;
}

.anniversary-section {
    margin-top: 0;
    padding: 0;
    border-top: none;
}
/* Stacked Columns - Right side */
.anniversary-columns-stacked {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    justify-content: center;
}

.anniversary-square-stacked {
    background: #ffffff;
    border-radius: 6px;
    padding: 14px 18px 16px !important;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(26, 58, 106, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* ✅ Centers text vertically */
    text-align: center;
    width: 100%;
    flex: 1;
    min-height: 0;
}

    .anniversary-square-stacked:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }

.anniversary-icon-stacked {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3a6a, #2a5a8a);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    flex-shrink: 0;
}

.anniversary-col-title-stacked {
    font-size: 1rem;
    font-weight: 700;
    color: #1a3a6a;
    text-align: center;
    margin-bottom: 6px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.anniversary-list-stacked {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

    .anniversary-list-stacked li {
        font-size: 0.85rem;
        font-weight: 400;
        color: #4a4a4a;
        padding: 2px 0;
        line-height: 1.4;
        text-align: center;
        font-family: 'Inter', sans-serif;
    }

/* Responsive */
@media (max-width: 992px) {
    .anniversary-square-stacked {
        padding: 12px 14px 14px !important;
    }

    .anniversary-col-title-stacked {
        font-size: 0.9rem;
    }

    .anniversary-list-stacked li {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .anniversary-full-section {
        padding: 30px 0 40px;
    }

    .anniversary-square-stacked {
        padding: 10px 12px 12px !important;
    }

    .anniversary-icon-stacked {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .anniversary-col-title-stacked {
        font-size: 0.85rem;
    }

    .anniversary-list-stacked li {
        font-size: 0.75rem;
    }

    /* On mobile, columns should fill width properly */
    .anniversary-columns-stacked {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .anniversary-full-section {
        padding: 20px 0 30px;
    }

    .anniversary-square-stacked {
        padding: 8px 10px 10px !important;
    }

    .anniversary-icon-stacked {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }

    .anniversary-col-title-stacked {
        font-size: 0.8rem;
    }

    .anniversary-list-stacked li {
        font-size: 0.7rem;
    }
}
/* ============================================================
   💎 CORE VALUES - Modern Cards
   ============================================================ */

.value-card-modern {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 30px 25px 35px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 58, 106, 0.04);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

    .value-card-modern:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(26, 58, 106, 0.08);
    }

.value-icon-modern {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(26, 58, 106, 0.2);
    transition: all 0.3s ease;
}

.value-card-modern:hover .value-icon-modern {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(26, 58, 106, 0.3);
}

.value-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.value-desc {
    font-size: 0.9rem;
    color: var(--color-gray-muted);
    line-height: 1.7;
    margin: 0;
}

/* Dark mode */
[data-theme="dark"] .value-card-modern {
    background: var(--color-white);
    border-color: rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .value-card-modern {
        padding: 25px 20px 30px;
    }

    .value-icon-modern {
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
    }

    .value-title {
        font-size: 1rem;
    }

    .value-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .value-card-modern {
        padding: 20px 15px 25px;
    }

    .value-icon-modern {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .value-title {
        font-size: 0.9rem;
    }

    .value-desc {
        font-size: 0.8rem;
    }
}

/* ============================================================
   🤝 PARTNERS - Database Driven
   ============================================================ */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    justify-items: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partner-bubble {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

    .partner-bubble:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 20px rgba(26, 58, 106, 0.15);
        border-color: var(--color-primary-light);
    }

    .partner-bubble img {
        width: 80%;
        height: 80%;
        object-fit: contain;
    }

.partner-label {
    text-align: center;
    margin-top: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gray-muted);
}

[data-theme="dark"] .partner-bubble {
    background: var(--color-white);
    border-color: var(--color-primary-light);
}

@media (max-width: 992px) {
    .partners-grid {
        gap: 30px;
    }

    .partner-bubble {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .partner-bubble {
        width: 110px;
        height: 110px;
        border-width: 2px;
    }

        .partner-bubble img {
            width: 75%;
            height: 75%;
        }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partner-bubble {
        width: 100px;
        height: 100px;
        border-width: 2px;
    }

        .partner-bubble img {
            width: 70%;
            height: 70%;
        }

    .partner-label {
        font-size: 0.8rem;
    }
}

/* ============================================================
   💡 WHY US SECTION
   ============================================================ */

.why-us-section {
    background: var(--color-white);
    padding: 80px 0;
    position: relative;
}

.why-us-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.why-us-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.why-us-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--color-primary-gradient);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 20px rgba(26, 58, 106, 0.3);
}

    .why-us-image-badge i {
        font-size: 1.1rem;
    }

.why-us-content {
    padding: 10px 0;
}

.why-us-text {
    font-size: 1.05rem;
    color: var(--color-gray-muted);
    line-height: 1.9;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

    .why-us-text:last-child {
        margin-bottom: 0;
    }

/* Quote Section */
.why-us-quote-wrapper {
    margin-top: 50px;
    padding: 40px 50px;
    background: var(--color-gray-light);
    border-radius: var(--radius);
    border-left: 5px solid var(--color-primary);
    position: relative;
}

    .why-us-quote-wrapper .quote-icon {
        color: var(--color-primary);
        font-size: 2.5rem;
        opacity: 0.15;
        display: block;
    }

    .why-us-quote-wrapper .quote-right {
        text-align: right;
    }

.why-us-quote {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-text-dark);
    line-height: 1.9;
    margin: 10px 0;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    padding: 0 20px;
}

/* Vision Cards */
.vision-cards {
    margin-top: 50px;
}

.vision-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 58, 106, 0.04);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
}

    .vision-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(26, 58, 106, 0.08);
    }

.vision-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--color-primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(26, 58, 106, 0.2);
    transition: all 0.3s ease;
}

.vision-card:hover .vision-icon {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(26, 58, 106, 0.3);
}

.vision-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.vision-text {
    font-size: 0.95rem;
    color: var(--color-gray-muted);
    line-height: 1.7;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Dark mode */
[data-theme="dark"] .why-us-section {
    background: var(--color-white);
}

[data-theme="dark"] .why-us-quote-wrapper {
    background: var(--color-gray-light);
}

[data-theme="dark"] .vision-card {
    background: var(--color-white);
}

/* Responsive */
@media (max-width: 992px) {
    /*.hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .why-us-section {
        padding: 60px 0;
    }

    .why-us-image {
        height: 280px;
    }

    .why-us-quote-wrapper {
        padding: 30px 35px;
    }

    .why-us-quote {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    /*.hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .why-us-section {
        padding: 50px 0;
    }

    .why-us-image {
        height: 220px;
    }

    .why-us-image-badge {
        padding: 8px 16px;
        font-size: 0.75rem;
        bottom: 15px;
        left: 15px;
    }

    .why-us-text {
        font-size: 0.95rem;
    }

    .why-us-quote-wrapper {
        padding: 20px 25px;
        margin-top: 30px;
    }

    .why-us-quote {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .vision-card {
        padding: 25px 20px;
    }

    .vision-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .vision-title {
        font-size: 1rem;
    }

    .vision-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /*.hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .why-us-section {
        padding: 40px 0;
    }

    .why-us-image {
        height: 180px;
    }

    .why-us-image-badge {
        padding: 6px 12px;
        font-size: 0.7rem;
        gap: 6px;
        bottom: 10px;
        left: 10px;
    }

    .why-us-text {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .why-us-quote-wrapper {
        padding: 15px 18px;
    }

    .why-us-quote {
        font-size: 0.85rem;
    }

    .why-us-quote-wrapper .quote-icon {
        font-size: 1.8rem;
    }

    .vision-card {
        padding: 20px 15px;
    }

    .vision-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .vision-title {
        font-size: 0.9rem;
    }

    .vision-text {
        font-size: 0.8rem;
    }
}
/* ============================================================
   📍 LOCATIONS SECTION
   ============================================================ */

.locations-section {
    background: var(--color-white);
    padding: 80px 0;
}

.location-card {
    background: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 58, 106, 0.04);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
}

    .location-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(26, 58, 106, 0.08);
    }

.location-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #f5f6f8;
}

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

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

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 58, 106, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #ffffff;
    color: #1a3a6a;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

    .location-btn:hover {
        background: #1a3a6a;
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(26, 58, 106, 0.3);
    }

    .location-btn i {
        font-size: 1.1rem;
    }

.location-content {
    padding: 20px 25px 25px;
    text-align: center;
}

.location-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a3a6a;
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}

.location-desc {
    font-size: 0.9rem;
    color: var(--color-gray-muted);
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

/* Dark mode */
[data-theme="dark"] .location-card {
    background: var(--color-white);
    border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .location-overlay {
    background: rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    /*.hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .locations-section {
        padding: 50px 0;
    }

    .location-image-wrapper {
        height: 200px;
    }

    .location-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .location-content {
        padding: 15px 18px 18px;
    }

    .location-title {
        font-size: 1rem;
    }

    .location-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /*.hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .locations-section {
        padding: 40px 0;
    }

    .location-image-wrapper {
        height: 160px;
    }

    .location-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
        gap: 6px;
    }

    .location-content {
        padding: 12px 14px 14px;
    }

    .location-title {
        font-size: 0.9rem;
    }

    .location-desc {
        font-size: 0.8rem;
    }
}

/* ============================================================
   🌍 GLOBAL OFFICES - Inside Locations Section
   ============================================================ */

.global-offices-wrapper {
    margin-top: 50px;
    padding: 30px 40px;
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 58, 106, 0.06);
    text-align: center;
}

.global-offices-line {
    width: 60px;
    height: 3px;
    background: var(--color-primary-gradient);
    margin: 0 auto 15px;
    border-radius: 3px;
}

.global-offices-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.global-offices-text {
    margin: 0;
    color: var(--color-gray-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
}

.global-offices-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.office-tag {
    background: var(--color-primary-gradient);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    cursor: default;
    display: inline-block;
}

    .office-tag:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(26, 58, 106, 0.2);
    }

/* Dark mode */
[data-theme="dark"] .global-offices-wrapper {
    background: var(--color-white);
    border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .global-offices-text {
    color: var(--color-text-dark);
}

/* Responsive */
@media (max-width: 768px) {
    /*.hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .locations-section {
        padding: 50px 0;
    }

    .global-offices-wrapper {
        margin-top: 30px;
        padding: 20px;
    }

    .global-offices-text {
        font-size: 0.95rem;
    }

    .office-tag {
        font-size: 0.8rem;
        padding: 5px 14px;
    }

    .global-offices-list {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    /*.hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .locations-section {
        padding: 40px 0;
    }

    .global-offices-wrapper {
        margin-top: 20px;
        padding: 15px;
    }

    .global-offices-text {
        font-size: 0.85rem;
    }

    .office-tag {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
}
/* ============================================================
   👥 MANAGEMENT TEAM - Database Driven
   ============================================================ */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 30px 20px 24px;
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(26, 58, 106, 0.04);
}

    .team-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(26, 58, 106, 0.08);
    }

.team-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px;
    background: var(--color-gray-light);
    border: 4px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(26, 58, 106, 0.12);
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
    border-color: var(--color-primary-light);
    box-shadow: 0 8px 40px rgba(26, 58, 106, 0.2);
    transform: scale(1.02);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    background: var(--color-gray-light);
}

.team-card:hover .team-avatar img {
    transform: scale(1.04);
}

.team-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.9rem;
    color: var(--color-gray-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    /*.hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-avatar {
        width: 130px;
        height: 130px;
    }

    .team-name {
        font-size: 0.95rem;
    }

    .team-role {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
   /* .hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .team-card {
        padding: 18px 12px 16px;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }

    .team-name {
        font-size: 0.8rem;
    }

    .team-role {
        font-size: 0.65rem;
    }
}

/* ============================================================
   📰 NEWS CARDS
   ============================================================ */

.news-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-sm);
    height: 100%;
    border: 1px solid rgba(26, 58, 106, 0.04);
}

    .news-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(26, 58, 106, 0.08);
    }

    .news-card img {
        height: 200px;
        object-fit: cover;
        width: 100%;
    }

    .news-card .card-body {
        padding: 22px 24px 24px;
    }

    .news-card .card-title {
        color: var(--color-primary);
        font-weight: 700;
        font-size: 1.1rem;
    }

/* ============================================================
   🔘 BUTTONS
   ============================================================ */

.btn-primary {
    background: var(--color-primary-gradient);
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--color-white);
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(26, 58, 106, 0.2);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(26, 58, 106, 0.3);
        color: var(--color-white);
    }

.btn-outline-primary {
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    padding: 14px 40px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: transparent;
    font-size: 0.95rem;
}

    .btn-outline-primary:hover {
        background: var(--color-primary-gradient);
        color: var(--color-white);
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(26, 58, 106, 0.2);
    }

.btn-link {
    color: var(--color-primary) !important;
    font-weight: 600;
}

    .btn-link:hover {
        opacity: 0.7;
    }

/* ============================================================
   🛠️ ADMIN PAGES
   ============================================================ */

.admin-page {
    padding-top: 120px;
    min-height: calc(100vh - 200px);
}

    .admin-page .container {
        padding-top: 10px;
    }

@media (max-width: 768px) {
   /* .hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .admin-page {
        padding-top: 160px;
    }
}

/* ============================================================
   📌 FOOTER WITH CONTACT
   ============================================================ */

.site-footer {
    background: var(--color-primary-gradient);
    color: rgba(255, 255, 255, 0.85);
    padding: 40px 0 20px;
    margin-top: 0;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 30px;
    max-width: 1000px;
    margin: 0 auto 25px;
    padding: 0 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
}

    .footer-contact-item i {
        color: rgba(255, 255, 255, 0.6);
        font-size: 1rem;
        width: 20px;
        margin-top: 3px;
        flex-shrink: 0;
    }

    .footer-contact-item div {
        display: flex;
        flex-direction: column;
        line-height: 1.3;
    }

.footer-contact-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

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

    .footer-contact-value a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

        .footer-contact-value a:hover {
            opacity: 0.7;
        }

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    max-width: 1000px;
    margin: 0 auto 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

    .footer-bottom p {
        margin: 0;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.6);
    }

.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social .social-link {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.6);
        transition: all 0.3s ease;
    }

        .footer-social .social-link:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            transform: translateY(-2px);
        }

@media (max-width: 768px) {
    /*.hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .footer-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 20px;
    }

    .footer-contact-item {
        padding: 5px 0;
    }

    .footer-contact-value {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
   /* .hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0 15px;
    }

    .footer-contact-item {
        padding: 4px 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact-label {
        font-size: 0.55rem;
    }

    .footer-contact-value {
        font-size: 0.75rem;
    }
}

/* ============================================================
   📄 PAGINATION
   ============================================================ */

.pagination-container {
    margin-top: 30px;
}

.pagination {
    gap: 8px;
    flex-wrap: wrap;
}

    .pagination .page-item {
        margin: 0;
    }

    .pagination .page-link {
        border-radius: 8px !important;
        border: 1px solid rgba(26, 58, 106, 0.15);
        color: var(--color-primary);
        font-weight: 600;
        padding: 10px 16px;
        min-width: 44px;
        text-align: center;
        transition: all 0.3s ease;
        background: var(--color-white);
    }

        .pagination .page-link:hover {
            background: var(--color-primary);
            color: var(--color-white);
            border-color: var(--color-primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(26, 58, 106, 0.2);
        }

    .pagination .page-item.active .page-link {
        background: var(--color-primary-gradient);
        border-color: var(--color-primary);
        color: var(--color-white);
        box-shadow: 0 4px 16px rgba(26, 58, 106, 0.3);
    }

    .pagination .page-item.disabled .page-link {
        opacity: 0.4;
        cursor: not-allowed;
        pointer-events: none;
    }

    .pagination .page-link i {
        font-size: 0.8rem;
    }

[data-theme="dark"] .pagination .page-link {
    background: var(--color-white);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text-dark);
}

    [data-theme="dark"] .pagination .page-link:hover {
        background: var(--color-primary-light);
        color: var(--color-white);
    }

[data-theme="dark"] .pagination .page-item.active .page-link {
    background: var(--color-primary-gradient);
    color: var(--color-white);
}

@media (max-width: 576px) {
    .hero-slider {
        width: 100% !important;
    }

    .pagination .page-link {
        padding: 6px 12px;
        min-width: 36px;
        font-size: 0.85rem;
    }

    .pagination {
        gap: 4px;
    }
}

/* ============================================================
   🌐 RTL SUPPORT
   ============================================================ */

[dir="rtl"] {
    text-align: right;
}

    [dir="rtl"] .top-bar-inner {
        flex-direction: row-reverse;
    }

    [dir="rtl"] .values-grid-top,
    [dir="rtl"] .values-grid-bottom,
    [dir="rtl"] .partners-grid,
    [dir="rtl"] .stats-grid {
        direction: ltr;
    }

    [dir="rtl"] .stat-label {
        direction: ltr;
    }

    [dir="rtl"] .contact-info-item {
        flex-direction: row-reverse;
    }

/* ============================================================
   🌐 FULL WIDTH PAGE
   ============================================================ */

html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    width: 100%;
}

main {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

    .section .container {
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }

.top-bar {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

    .top-bar .container {
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }

.site-footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

    .site-footer .container {
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }

.stats-grid,
.partners-grid,
.values-grid-top,
.values-grid-bottom,
.team-grid,
.contact-grid {
    padding: 0 10px;
}

/* ============================================================
   ADMIN - News Cards
   ============================================================ */

.admin-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 15px;
}

.admin-news-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 58, 106, 0.04);
    display: flex;
    flex-direction: column;
    position: relative;
}

    .admin-news-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(26, 58, 106, 0.08);
    }

    .admin-news-card img {
        height: 200px;
        object-fit: cover;
        width: 100%;
    }

    .admin-news-card .card-body {
        padding: 18px 20px 16px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .admin-news-card .news-date {
        font-size: 0.75rem;
        color: var(--color-gray-muted);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
        display: block;
    }

    .admin-news-card .news-title {
        font-family: 'Georgia', serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--color-text-dark);
        margin-bottom: 8px;
        line-height: 1.4;
        flex: 1;
    }

    .admin-news-card .card-actions {
        display: flex;
        gap: 8px;
        margin-top: auto;
        padding-top: 12px;
        border-top: 1px solid rgba(26, 58, 106, 0.06);
    }

        .admin-news-card .card-actions .btn {
            flex: 1;
            padding: 5px 10px;
            font-size: 0.75rem;
            border-radius: 30px;
            text-align: center;
            font-weight: 600;
        }

        .admin-news-card .card-actions .btn-edit {
            background: var(--color-primary);
            color: white;
            border: none;
        }

            .admin-news-card .card-actions .btn-edit:hover {
                background: var(--color-primary-dark);
            }

        .admin-news-card .card-actions .btn-delete {
            background: #dc3545;
            color: white;
            border: none;
        }

            .admin-news-card .card-actions .btn-delete:hover {
                background: #c82333;
            }

.visibility-toggle {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 5;
}

    .visibility-toggle:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }

    .visibility-toggle .fa-eye {
        color: #28a745;
        font-size: 1rem;
    }

    .visibility-toggle .fa-eye-slash {
        color: #dc3545;
        font-size: 1rem;
    }

.status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 5;
}

    .status-badge.published {
        color: #28a745;
    }

    .status-badge.draft {
        color: #dc3545;
    }

.drag-handle {
    cursor: grab !important;
    z-index: 10;
}

    .drag-handle:hover {
        background: rgba(26, 58, 106, 0.15) !important;
    }

    .drag-handle:active {
        cursor: grabbing !important;
    }

@media (max-width: 768px) {
    /*.hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .admin-news-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }

    .admin-news-card img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    /*.hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .admin-news-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .admin-news-card img {
        height: 120px;
    }

    .admin-news-card .card-body {
        padding: 12px 14px 12px;
    }

    .admin-news-card .news-title {
        font-size: 0.85rem;
    }

    .admin-news-card .card-actions .btn {
        font-size: 0.65rem;
        padding: 4px 8px;
    }
}

/* ============================================================
   🏭 WAREHOUSE SECTION
   ============================================================ */

.warehouse-section {
    background: var(--color-white);
    padding: 80px 0;
}

.warehouse-video-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #1a1a2e;
}

.warehouse-video {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: none;
}

    .video-play-btn:hover {
        transform: translate(-50%, -50%) scale(1.1);
        background: rgba(255, 255, 255, 0.3);
    }

.warehouse-content {
    padding: 10px 0;
}

.warehouse-badge {
    display: inline-block;
    background: var(--color-primary-gradient);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 30px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.warehouse-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.warehouse-description {
    font-size: 1rem;
    color: var(--color-gray-muted);
    line-height: 1.9;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

.warehouse-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .warehouse-features .feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.95rem;
        color: var(--color-text-dark);
        font-weight: 500;
    }

        .warehouse-features .feature-item i {
            color: var(--color-primary);
            font-size: 1.1rem;
            width: 24px;
            text-align: center;
        }

/* Dark mode */
[data-theme="dark"] .warehouse-section {
    background: var(--color-white);
}

/* Responsive */
@media (max-width: 992px) {
  /*  .hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .warehouse-section {
        padding: 60px 0;
    }

    .warehouse-title {
        font-size: 1.8rem;
    }

    .warehouse-video {
        max-height: 350px;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
   /* .hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .warehouse-section {
        padding: 50px 0;
    }

    .warehouse-video-wrapper {
        margin-bottom: 20px;
    }

    .warehouse-video {
        max-height: 280px;
    }

    .warehouse-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .warehouse-description {
        font-size: 0.95rem;
        text-align: center;
    }

    .warehouse-badge {
        display: table;
        margin: 0 auto 15px;
    }

    .warehouse-features {
        align-items: center;
    }

    .video-play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    /*.hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .warehouse-section {
        padding: 40px 0;
    }

    .warehouse-video {
        max-height: 200px;
    }

    .warehouse-title {
        font-size: 1.3rem;
    }

    .warehouse-description {
        font-size: 0.85rem;
    }

    .warehouse-features .feature-item {
        font-size: 0.85rem;
    }

    .video-play-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ============================================================
   📱 RESPONSIVE FOR ANNIVERSARY
   ============================================================ */

@media (max-width: 992px) {
   /* .hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .anniversary-paragraph {
        padding-right: 0;
    }

        .anniversary-paragraph p {
            font-size: 0.9rem;
        }

    .anniversary-square-stacked {
        padding: 12px 14px 14px !important;
    }

    .anniversary-col-title-stacked {
        font-size: 0.9rem;
    }

    .anniversary-list-stacked li {
        font-size: 0.8rem;
    }

    [dir="rtl"] .anniversary-paragraph {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
   /* .hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .anniversary-full-section {
        padding: 30px 0 40px;
    }

    .anniversary-paragraph p {
        font-size: 0.85rem;
        line-height: 1.7;
        text-align: center;
    }

    .anniversary-square-stacked {
        padding: 10px 12px 12px !important;
    }

    .anniversary-icon-stacked {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .anniversary-col-title-stacked {
        font-size: 0.85rem;
    }

    .anniversary-list-stacked li {
        font-size: 0.75rem;
    }

    [dir="rtl"] .anniversary-square-stacked {
        align-items: center;
        text-align: center;
    }

    [dir="rtl"] .anniversary-col-title-stacked {
        text-align: center;
    }

    [dir="rtl"] .anniversary-list-stacked li {
        text-align: center;
        padding: 2px 0;
    }
}

@media (max-width: 480px) {
   .hero-slider {
        width:100% !important;
    }

    .anniversary-full-section {
        padding: 20px 0 30px;
    }

    .anniversary-square-stacked {
        padding: 8px 10px 10px !important;
    }

    .anniversary-icon-stacked {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }

    .anniversary-col-title-stacked {
        font-size: 0.8rem;
    }

    .anniversary-list-stacked li {
        font-size: 0.7rem;
    }
}
/* ============================================================
   🪪 CARD DROPDOWN
   ============================================================ */

.card-dropdown-container {
    position: relative;
    display: inline-block;
}

.card-dropdown-btn {
    cursor: pointer !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    padding: 0;
}

    .card-dropdown-btn:hover {
        background: rgba(255, 255, 255, 0.15) !important;
        color: #ffffff !important;
        transform: translateY(-2px);
    }

.card-dropdown-menu {
    display: none;
    position: absolute;
    bottom: 45px;
    right: 0;
    background: #ffffff;
    color: #1a1a2e;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    min-width: 180px;
    padding: 8px 0;
    z-index: 1000;
    border: 1px solid rgba(26,58,106,0.08);
}

    .card-dropdown-menu.show {
        display: block !important;
    }

.card-dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #1a1a2e;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    font-weight: 500;
    border-bottom: 1px solid rgba(26, 58, 106, 0.04);
}

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

    .card-dropdown-item:hover {
        background: rgba(26, 58, 106, 0.05);
        padding-left: 24px;
        color: #1a3a6a;
    }

    .card-dropdown-item i {
        width: 20px;
        text-align: center;
    }

/* Dark Mode Support */
[data-theme="dark"] .card-dropdown-menu {
    background: #1a1a2e;
    border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .card-dropdown-item {
    color: #e8e8e8;
    border-color: rgba(255, 255, 255, 0.05);
}

    [data-theme="dark"] .card-dropdown-item:hover {
        background: rgba(255, 255, 255, 0.05);
        color: #ffffff;
    }

[data-theme="dark"] .card-dropdown-btn {
    color: rgba(255, 255, 255, 0.6);
}

    [data-theme="dark"] .card-dropdown-btn:hover {
        color: #ffffff;
    }

/* Top Bar - ensure it's visible */
.top-bar {
    background: #ffffff;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    border-bottom: 1px solid #1a3a6a;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-logo .logo-img {
    height: 42px;
    width: auto;
}

/* ============================================================
   MODERN PUBLIC LAYOUT + RTL OVERRIDES (2026)
   ============================================================ */
:root {
    --surface: rgba(255, 255, 255, 0.92);
    --surface-soft: rgba(248, 250, 253, 0.88);
    --surface-glass: rgba(255, 255, 255, 0.78);
    --border-soft: rgba(26, 58, 106, 0.10);
    --border-strong: rgba(26, 58, 106, 0.18);
    --shadow-float: 0 18px 50px rgba(15, 42, 74, 0.14);
    --focus-ring: 0 0 0 4px rgba(42, 90, 138, 0.16);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 8% 5%, rgba(42, 90, 138, 0.08), transparent 27rem),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 36%, #f7f9fc 100%);
    color: var(--color-text-dark);
    overflow-x: clip;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

html[dir="ltr"] body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

html[dir="rtl"] body {
    font-family: "Cairo", "Inter", Tahoma, Arial, sans-serif;
    text-align: right;
}

html[dir="rtl"] :is(input, textarea, select, button) {
    font-family: inherit;
}

html[dir="rtl"] :is(.about-text, .footer-contact-item, .card-body, .team-card, .vision-card, .value-card-modern) {
    text-align: right;
}

html[dir="rtl"] :is(a[href^="tel:"], a[href^="mailto:"]) {
    unicode-bidi: plaintext;
}

/* Top bar */
.top-bar {
    padding: 9px 0;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 8px 30px rgba(15, 42, 74, 0.07);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    backdrop-filter: blur(18px) saturate(150%);
}

.top-bar-inner {
    max-width: 1320px;
    min-height: 54px;
    gap: clamp(12px, 2vw, 28px);
}

.top-bar-logo .logo-img {
    height: 44px;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.top-bar-logo a:hover .logo-img {
    transform: translateY(-1px) scale(1.015);
    filter: drop-shadow(0 6px 12px rgba(26, 58, 106, 0.12));
}

.top-bar-contact {
    gap: 10px;
}

.top-bar-contact .contact-item,
.lang-btn,
.admin-login-btn {
    min-height: 38px;
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 4px 16px rgba(26, 58, 106, 0.05);
}

.top-bar-contact .contact-item {
    padding: 7px 12px;
    color: var(--color-primary);
}

.top-bar-contact .contact-item:hover,
.lang-btn:hover,
.admin-login-btn:hover {
    color: var(--color-primary);
    border-color: var(--border-strong);
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(26, 58, 106, 0.10);
    transform: translateY(-2px);
}

.lang-btn {
    padding: 7px 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.lang-chevron {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}

.lang-btn.open .lang-chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: block;
    inset-block-start: calc(100% + 10px);
    inset-inline-end: 0;
    right: auto;
    min-width: 80px;
    padding: 7px;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-float);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-7px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    overflow: visible;
}

html[dir="rtl"] .lang-dropdown {
    transform-origin: top left;
}

.lang-dropdown.open {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 40px;
    padding: 8px 10px;
    border-radius: 10px;
    text-align: start;
    font-weight: 600;
}

.lang-option small {
    color: var(--color-gray-muted);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
}

.lang-option:hover {
    background: rgba(26, 58, 106, 0.07);
}

.lang-option.active {
    background: var(--color-primary-gradient);
    color: #ffffff;
}

.lang-option.active small {
    color: rgba(255, 255, 255, 0.72);
}

.admin-login-btn {
    color: var(--color-primary);
}

/* Stable side navigation dock: labels are absolutely positioned and never resize the hover target. */
.side-nav {
    right: 18px;
    z-index: 1040;
}

.side-nav-links {
    align-items: center;
    gap: 7px;
    padding: 9px 7px;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    background: var(--surface-glass);
    box-shadow: 0 14px 36px rgba(15, 42, 74, 0.13);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    backdrop-filter: blur(16px) saturate(140%);
}

.side-nav-link {
    position: relative;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    gap: 0;
    border-radius: 50%;
    text-transform: none;
    letter-spacing: 0;
    contain: layout style;
}

.side-nav-link i {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(26, 58, 106, 0.12);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 4px 12px rgba(15, 42, 74, 0.06);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.side-nav-link .nav-label {
    position: absolute;
    inset-inline-end: calc(100% + 11px);
    top: 50%;
    z-index: 2;
    display: inline-flex;
    min-height: 34px;
    padding: 7px 13px;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 28px rgba(15, 42, 74, 0.14);
    color: var(--color-primary-dark);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    text-transform: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(8px, -50%) scale(0.96);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    will-change: opacity, transform;
    pointer-events: none;
}

html[dir="rtl"] .side-nav {
    right: auto;
    left: 18px;
}

html[dir="rtl"] .side-nav-links {
    align-items: center;
}

html[dir="rtl"] .side-nav-link {
    flex-direction: initial;
}

html[dir="rtl"] .side-nav-link .nav-label {
    inset-inline-end: auto;
    inset-inline-start: calc(100% + 11px);
    transform: translate(-8px, -50%) scale(0.96);
}

.side-nav-link:hover .nav-label,
.side-nav-link:focus-visible .nav-label,
.side-nav-link.active:hover .nav-label,
.side-nav-link.active:focus-visible .nav-label {
    opacity: 1 !important;
    visibility: visible;
    transform: translate(0, -50%) scale(1) !important;
}

.side-nav-link.active .nav-label {
    opacity: 0 !important;
    visibility: hidden;
    transform: translate(8px, -50%) scale(0.96) !important;
}

html[dir="rtl"] .side-nav-link.active .nav-label {
    transform: translate(-8px, -50%) scale(0.96) !important;
}

.side-nav-link:hover i,
.side-nav-link:focus-visible i {
    color: var(--color-primary);
    border-color: rgba(26, 58, 106, 0.28);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(26, 58, 106, 0.16);
    transform: translateY(-1px) scale(1.05);
}

.side-nav-link.active i {
    color: #ffffff;
    border-color: transparent;
    background: var(--color-primary-gradient);
    box-shadow: 0 10px 26px rgba(26, 58, 106, 0.28);
}

.side-nav-link:focus-visible,
.lang-btn:focus-visible,
.lang-option:focus-visible,
.admin-login-btn:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

@media (min-width: 769px) {
    .hero-slider {
        width: calc(100% - 50px) !important;
    }

    .side-nav-link .nav-label {
        display: inline-flex;
    }
}

@media (max-width: 768px) {
  /*  .hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .side-nav,
    html[dir="rtl"] .side-nav {
        right: 8px;
        left: auto;
        top: auto;
        bottom: 12px;
        transform: none;
        max-width: calc(100vw - 16px);
        overflow-x: auto;
        scrollbar-width: none;
    }

    html[dir="rtl"] .side-nav {
        right: auto;
        left: 8px;
    }

    .side-nav::-webkit-scrollbar {
        display: none;
    }

    .side-nav-links {
        flex-direction: row;
        width: max-content;
        padding: 6px;
        gap: 4px;
    }

    .side-nav-link,
    .side-nav-link i {
        width: 36px;
        height: 36px;
    }

    .side-nav-link .nav-label {
        display: none;
    }
}

/* Modern hero */
.hero-section {
    padding-top: 82px !important;
    padding-inline: clamp(10px, 1.8vw, 28px) !important;
    background: transparent !important;
}

.hero-section .container-fluid {
    padding: 0 !important;
}

.hero-slider {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: clamp(18px, 2.3vw, 30px) !important;
    overflow: hidden;
    background: var(--color-primary-dark);
    box-shadow: 0 26px 70px rgba(15, 42, 74, 0.20);
    isolation: isolate;
}

.hero-slider .carousel-inner {
    padding: 0 !important;
}

.hero-slide {
    height: clamp(220px, 31vw, 430px) !important;
    min-height: 0 !important;
    max-height: none !important;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(8, 29, 52, 0.26), rgba(8, 29, 52, 0.05) 48%, rgba(8, 29, 52, 0.22));
    pointer-events: none;
}

.hero-slide img {
    min-height: 0 !important;
    max-height: none !important;
    transform: scale(1.002);
}

.hero-slide .slide-content {
    z-index: 2;
    padding-inline: clamp(32px, 7vw, 110px);
}

.hero-slide .slide-text {
    max-width: min(1050px, 88vw);
    font-size: clamp(1.45rem, 4.1vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    text-wrap: balance;
    text-shadow: 0 5px 26px rgba(0, 0, 0, 0.45);
}

html[dir="rtl"] .hero-slide .slide-text {
    letter-spacing: 0;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.36) !important;
    border-radius: 50%;
    background: rgba(10, 31, 55, 0.28) !important;
    opacity: 0.82;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero-slider .carousel-control-prev {
    left: 18px !important;
    right: auto !important;
}

.hero-slider .carousel-control-next {
    right: 18px !important;
    left: auto !important;
}

html[dir="rtl"] .hero-slider .carousel-control-prev {
    right: 18px !important;
    left: auto !important;
}

html[dir="rtl"] .hero-slider .carousel-control-next {
    left: 18px !important;
    right: auto !important;
}

html[dir="rtl"] .hero-slider :is(.carousel-control-prev-icon, .carousel-control-next-icon) {
    transform: scaleX(-1);
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: rgba(10, 31, 55, 0.52) !important;
    transform: translateY(-50%) scale(1.06);
}

.hero-slider .carousel-indicators {
    bottom: 15px;
    gap: 7px;
}

.hero-slider .carousel-indicators button {
    width: 8px;
    height: 8px;
    margin: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.62);
    opacity: 1;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-slider .carousel-indicators .active {
    width: 28px;
    background: #ffffff;
    transform: none;
}

/* Section rhythm and cards */
.section {
    padding: clamp(62px, 7vw, 96px) 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.04em;
    text-wrap: balance;
}

html[dir="rtl"] .section-title {
    letter-spacing: 0;
}

.section-title::after {
    width: 64px;
    height: 5px;
    margin-top: 16px;
    box-shadow: 0 5px 15px rgba(26, 58, 106, 0.20);
}

.section-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.14rem);
}

:is(.shareholder-card, .value-card-modern, .partner-item, .location-card, .team-card, .vision-card, .news-card) {
    border: 1px solid var(--border-soft);
    box-shadow: 0 12px 35px rgba(15, 42, 74, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

:is(.shareholder-card, .value-card-modern, .partner-item, .location-card, .team-card, .vision-card, .news-card):hover {
    border-color: rgba(26, 58, 106, 0.18);
    box-shadow: 0 22px 48px rgba(15, 42, 74, 0.14);
    transform: translateY(-6px);
}

.btn,
.location-btn {
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.location-btn:hover {
    transform: translateY(-2px);
}

/* Footer and dropdown direction */
.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.10), transparent 25rem),
        linear-gradient(135deg, #102f53 0%, #1a4a7b 100%);
}

.footer-contact-item,
.footer-bottom,
.card-dropdown-item {
    text-align: start;
}

.card-dropdown-menu {
    right: auto;
    inset-inline-end: 0;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    box-shadow: var(--shadow-float);
}

.card-dropdown-item:hover {
    padding-left: 20px;
    padding-inline-start: 24px;
}

@media (max-width: 992px) {
    /*.hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    .top-bar-inner {
        gap: 9px;
    }

    .top-bar-contact {
        margin-inline: auto;
    }

    .top-bar-contact .contact-item:nth-child(2) {
        display: none;
    }
}

@media (max-width: 576px) {
    /*.hero-slider {
        width: calc(100% - 50px) !important;
    }*/

    html {
        scroll-padding-top: 70px;
    }

    .top-bar {
        padding: 6px 0;
    }

    .top-bar-inner {
        padding-inline: 10px;
    }

    .top-bar-logo .logo-img {
        height: 32px;
    }

    .top-bar-contact {
        gap: 5px;
    }

    .top-bar-contact .contact-item {
        min-width: 34px;
        min-height: 34px;
        justify-content: center;
        padding: 6px;
    }

    .lang-btn {
        min-height: 34px;
        padding: 6px 9px;
    }

    .admin-login-btn {
        width: 34px;
        height: 34px;
        min-height: 34px;
    }

    .hero-section {
        padding-top: 66px !important;
        padding-inline: 7px !important;
    }

    .hero-slide {
        height: clamp(170px, 53vw, 230px) !important;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 34px;
        height: 34px;
    }

    .hero-slider .carousel-control-prev,
    html[dir="rtl"] .hero-slider .carousel-control-prev {
        inset-inline-start: 10px !important;
        inset-inline-end: auto !important;
    }

    .hero-slider .carousel-control-next,
    html[dir="rtl"] .hero-slider .carousel-control-next {
        inset-inline-end: 10px !important;
        inset-inline-start: auto !important;
    }

    .site-footer {
        padding-bottom: 78px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Language options are real links so language switching works without JavaScript. */
a.lang-option {
    text-decoration: none;
}

a.lang-option:hover,
a.lang-option:focus {
    color: var(--color-text-dark);
    text-decoration: none;
}

a.lang-option.active:hover,
a.lang-option.active:focus {
    color: #ffffff;
}
/* ============================================================
   RTL SIDE NAV HOVER POSITION FIX
   Keep the RTL navigation on the right edge and open labels
   toward the page content (to the left of the icon).
   ============================================================ */

/*html[dir="rtl"] .side-nav {
    right: 18px;
    left: auto;
}
*/
html[dir="rtl"] .side-nav-links {
    align-items: center;
}

html[dir="rtl"] .side-nav-link {
    direction: rtl;
}

    html[dir="rtl"] .side-nav-link .nav-label {
        right: calc(100% + 110px);
        left: auto;
        inset-inline-start: auto;
        inset-inline-end: auto;
        transform: translateX(-8px) translateY(-50%) scale(0.96);
        transform-origin: right center;
    }

   /* html[dir="rtl"] .side-nav-link:hover .nav-label,
    html[dir="rtl"] .side-nav-link:focus-visible .nav-label,
    html[dir="rtl"] .side-nav-link.active:hover .nav-label,
    html[dir="rtl"] .side-nav-link.active:focus-visible .nav-label {
        transform: translateX(0) translateY(-50%) scale(1) !important;
    }*/

   /* html[dir="rtl"] .side-nav-link.active .nav-label {
        transform: translateX(8px) translateY(-50%) scale(0.96) !important;
    }*/

/*@media (max-width: 768px) {
    html[dir="rtl"] .side-nav {
        right: 8px;
        left: auto;
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .side-nav {
        right: 8px;
        left: auto;
    }
}*/
