:root {
    /* Exact Colors from Inspection */
    --primary-color: #003366;
    /* Your Logo Navy */
    --primary-dark: #212121;
    /* Dark Grey specifically for Top Bar */
    --accent-color: #C5A059;
    /* Your Logo Gold */
    --secondary-green: #3C763E;
    /* The specific "Why Us" Green */

    /* Text Colors */
    --text-dark: #333333;
    --text-light: #777777;
    --white: #ffffff;

    /* Layout */
    --container-width: 1200px;
    --header-height: 90px;
    /* 30px top + 60px main */

    /* Styling Details */
    --radius-lg: 20px;
    --radius-md: 8px;
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-header: 0px 1px 3px rgba(0, 0, 0, 0.1);

    --font-main: 'IBM Plex Sans Arabic', sans-serif;
}

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

body {
    direction: rtl;
    font-family: var(--font-main);
    background-color: #f9f9f9;
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

/* ================= Top Bar ================= */
.top-bar {
    background-color: var(--primary-dark);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
    font-weight: 400;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 20px;
}

.top-links a:hover {
    color: #fff;
}

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

.top-contact i {
    color: var(--accent-color);
}

/* ================= Header ================= */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 1));
    box-shadow: var(--shadow-header);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

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

.logo-container img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 0;
    position: relative;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.header-action .btn {
    padding: 10px 25px;
    border-radius: 5px;
    /* Sharp corners like reference */
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

/* ================= Hero Section ================= */
.hero-section {
    position: relative;
    /* Height calculation: ~500px to match reference feel */
    min-height: 500px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(135deg, var(--primary-color), #0a1e33);
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    padding-top: 0;
    /* Header is sticky but we want content centered */
}

/* Specific decorative circle (if needed to match darsaudia generic shapes) */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding-right: 20px;
}

.hero-title {
    font-size: 42px;
    /* Large, bold */
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    padding: 12px 30px;
    border-radius: var(--radius-lg);
    /* Rounded pills */
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Musaned Badge - The distinct feature */
.musaned-badge {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #333;
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.musaned-badge span {
    font-size: 0.8rem;
    color: #666;
}

.gold-level {
    color: #D4AF37;
    font-weight: 800;
    font-size: 1.1rem;
}

/* ================= Services Grid (The floating cards) ================= */
.services-section {
    margin-top: -60px;
    /* The logical overlap */
    position: relative;
    /* Ensure z-index works */
    z-index: 10;
    padding-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 40px 20px;
    /* Generous padding */
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    position: relative;
    overflow: hidden;
}

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

.service-card .icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
}

.service-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: 0.3s;
}

.service-card:hover .service-link {
    background-color: var(--primary-color);
    color: #fff;
}

/* Current/Active Card Highlight */
.service-card.highlight {
    background-color: var(--primary-color);
}

.service-card.highlight * {
    color: #fff !important;
}

.service-card.highlight .service-link {
    background-color: rgba(255, 255, 255, 0.2);
}

/* ================= Why Choose Us (Dark Green Section) ================= */
.why-us-section {
    background-color: var(--secondary-green);
    /* Exact color overlap */
    padding: 80px 0;
    color: #fff;
    margin-top: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: linear-gradient(142deg, #ffffff 0%, #f0f9eb 100%);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: #333;
}

.feature-icon {
    background-color: transparent;
    color: var(--secondary-green);
    font-size: 3rem;
    margin-bottom: 15px;
    height: auto;
    width: auto;
    /* Reset flex styling */
}

/* ================= About ================= */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
}

/* ================= Footer ================= */
.main-footer {
    background-color: #111;
    color: #bbb;
    padding-top: 60px;
    font-size: 14px;
}

.footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-bottom {
    background-color: #000;
    padding: 20px 0;
    margin-top: 40px;
    border: none;
}

/* ================= Floating WhatsApp ================= */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-section {
        margin-top: 0;
    }
}

/* Partners Marquee Animation */
.partners-marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    direction: ltr;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: marqueeMove 40s linear infinite;
    /* Slowed down for smoothness */
    padding: 10px 0;
}

@keyframes marqueeMove {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.partner-logo {
    height: 80px;
    /* Uniform height request */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.partners-marquee-container:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.partners-marquee-container:hover .partners-track {
    animation-play-state: paused;
}
/* Styles moved from index.html */
        body {
            font-family: 'Almarai', sans-serif;
            overflow-x: hidden;
        }

        :root {
            --primary: #0F172A;
            --accent: #C5A059;
            --accent-hover: #A68546;
            --success: #10B981;
        }

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

        .bg-accent {
            background-color: var(--accent);
        }

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

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

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 10px;
        }

        /* Slider Animations */
        .swiper-slide-active .hero-text {
            animation: fadeInUp 1s ease forwards;
        }

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

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

        /* Scrolled Header Styling */
        .nav-scrolled {
            background-color: white !important;
            padding-top: 0.25rem !important;
            padding-bottom: 0.25rem !important;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .nav-scrolled .nav-link {
            color: var(--primary) !important;
        }

        .nav-scrolled .logo-text {
            color: var(--primary) !important;
        }

        .nav-scrolled .menu-icon {
            color: var(--primary) !important;
        }

        /* Logo Styling */
        .logo-box img {
            filter: brightness(0) invert(1);
            /* Default to White for Dark Hero */
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-scrolled .logo-box {
            background: transparent !important;
            /* Clean look */
            padding: 0;
            border-radius: 0;
        }

        .nav-scrolled .logo-box img {
            filter: none;
            /* Return to original (Dark) when scrolled */
        }

        /* Accordion */
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .accordion-item.active .accordion-content {
            max-height: 500px;
        }

        .accordion-item.active i {
            transform: rotate(180deg);
        }

        /* Header Size */
        #header {
            min-height: auto !important;
            height: auto !important;
            max-height: 80px;
            padding-top: 0.25rem !important;
            padding-bottom: 0.25rem !important;
        }

        /* Smooth Transition */
        #header,
        .nav-link,
        .logo-text,
        .logo-box,
        .menu-icon {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Floating WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background-color: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
            z-index: 100;
            transition: all 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        /* Fixed Icon Hover Issue */
        .card-with-icon .icon-wrapper {
            background: #f8fafc;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .card-with-icon:hover .icon-wrapper {
            background: var(--accent) !important;
            color: white !important;
        }

        /* Section Patterns */
        .pattern-dots {
            background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
            background-size: 24px 24px;
        }

        .pattern-grid {
            background-image: linear-gradient(#f1f5f9 1px, transparent 1px), linear-gradient(90deg, #f1f5f9 1px, transparent 1px);
            background-size: 40px 40px;
        }

        /* Professional Services Section Pattern */
        #services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(197, 160, 89, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(15, 23, 42, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        #services .card-with-icon {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.9);
            position: relative;
            overflow: hidden;
        }

        #services .card-with-icon::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(197, 160, 89, 0.05) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        #services .card-with-icon:hover::before {
            opacity: 1;
        }

        /* Hero Overlay */
        .hero-overlay {
            background: linear-gradient(to left, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.5) 100%);
            position: relative;
        }

        .hero-overlay>* {
            position: relative;
            z-index: 10;
        }

        /* Professional Hero Background Pattern */
        .hero-overlay::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                /* Large abstract circular shapes - light blue */
                radial-gradient(circle at 15% 25%, rgba(147, 197, 253, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 75% 55%, rgba(96, 165, 250, 0.18) 0%, transparent 45%),
                radial-gradient(circle at 45% 75%, rgba(147, 197, 253, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 85% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 35%),
                radial-gradient(circle at 25% 65%, rgba(147, 197, 253, 0.1) 0%, transparent 30%),
                /* Scattered small dots pattern */
                radial-gradient(circle at 3px 3px, rgba(147, 197, 253, 0.4) 1.5px, transparent 0),
                radial-gradient(circle at 18px 28px, rgba(96, 165, 250, 0.35) 1px, transparent 0),
                radial-gradient(circle at 42px 12px, rgba(147, 197, 253, 0.3) 1.5px, transparent 0),
                radial-gradient(circle at 65px 48px, rgba(59, 130, 246, 0.25) 1px, transparent 0),
                radial-gradient(circle at 88px 22px, rgba(147, 197, 253, 0.2) 1.5px, transparent 0),
                radial-gradient(circle at 32px 55px, rgba(96, 165, 250, 0.3) 1px, transparent 0);
            background-size:
                500px 500px,
                450px 450px,
                380px 380px,
                320px 320px,
                280px 280px,
                70px 70px,
                85px 85px,
                95px 95px,
                110px 110px,
                125px 125px,
                90px 90px;
            background-position:
                0 0,
                100% 50%,
                50% 100%,
                90% 10%,
                20% 60%,
                0 0,
                25% 35%,
                55% 15%,
                75% 50%,
                90% 25%,
                40% 60%;
            opacity: 0.7;
            pointer-events: none;
            z-index: 0;
        }

        /* Step Card Number Fix */
        .step-number-tag {
            background: var(--accent);
            color: var(--primary);
            font-weight: 900;
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: -20px;
            right: 30px;
            box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
        }

        /* Country Section Styling */
        .countries-section {
            background: url('../img/bg.png') repeat;
            position: relative;
            padding: 80px 0;
            overflow: visible !important;
            display: block !important;
        }

        .countries-section .section-title .subtitle {
            display: inline-block;
            font-size: 16px;
            font-weight: 600;
            color: #ff6b38;
            margin-bottom: 10px;
            position: relative;
            padding-bottom: 8px;
        }

        .countries-section .section-title .subtitle:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background-color: #ff6b38;
        }

        .filter-tabs {
            display: inline-flex !important;
            list-style: none;
            background: #fff;
            padding: 8px;
            border-radius: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 0;
        }

        .filter-tabs li {
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border-radius: 25px;
            transition: all 0.3s ease;
            margin: 0 5px;
            display: inline-block !important;
        }

        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
            overflow: hidden;
        }

        .filter-tabs li.active,
        .filter-tabs li:hover {
            background: #ff6b38;
            color: #fff;
        }

        .countries-grid {
            display: flex !important;
            flex-wrap: wrap !important;
            margin-top: 30px !important;
        }

        .grid-item {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            padding-bottom: 20px;
        }

        .country-card {
            border-radius: 15px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
            transform: none !important;
            visibility: visible !important;
            opacity: 1 !important;
        }

        .country-card:hover {
            transform: translateY(-8px) !important;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .card-header {
            position: relative;
            padding: 20px;
            background: linear-gradient(135deg, #2980b9, #1a5276);
            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 15px 15px 0 0 !important;
            border: none !important;
        }

        .country-flag {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            margin-right: 15px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .country-flag img {
            width: 100%;
            height: auto;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .country-name-badge {
            background: #ff6b38;
            color: #fff;
            padding: 6px 15px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            position: absolute;
            bottom: -15px;
            right: 20px;
            z-index: 10;
        }

        .card-body {
            padding: 30px 20px 20px;
            flex: 1;
            border: none !important;
            background: #fff !important;
        }

        .key-features {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .feature {
            display: flex;
            align-items: center;
            background: #f3f7fb;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 13px;
        }

        .feature i {
            margin-left: 5px;
            color: #ff6b38;
        }

        .country-info {
            margin-bottom: 15px;
        }

        .info-row {
            display: flex;
            justify-content: space-between;
            border-top: 1px dashed #e0e0e0;
            border-bottom: 1px dashed #e0e0e0;
            padding: 15px 0;
            flex-wrap: wrap;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin: 5px 0;
        }

        .info-item i {
            font-size: 20px;
            color: #1a5276;
            margin-left: 8px;
            width: 24px;
            text-align: center;
        }

        .info-content {
            display: flex;
            flex-direction: column;
        }

        .label {
            font-size: 12px;
            color: #888;
            padding: 0;
            margin: 0;
            line-height: 1.2;
            white-space: nowrap;
            display: block;
            text-align: right;
        }

        .value {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            padding: 0;
            margin: 0;
            display: block;
            line-height: 1.4;
            text-align: right;
        }

        .country-description {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-top: 15px;
        }

        .card-footer {
            padding: 15px 20px;
            border-top: 1px solid #eee;
            background: transparent !important;
            border-radius: 0 0 15px 15px !important;
        }

        .btn-block {
            display: block;
            width: 100%;
            text-align: center;
        }

        .btn-lg {
            padding: 12px 35px;
            font-size: 16px;
        }

        .theme-btn {
            background: #ff6b38;
            color: #fff !important;
            border: none;
            border-radius: 30px;
            padding: 10px 25px;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .theme-btn:hover {
            background: #e55a2a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 56, 0.4);
            color: #fff;
            text-decoration: none;
        }

        .countries-nav {
            margin-top: 30px;
        }

        @media (max-width: 991px) {
            .country-card {
                margin-bottom: 25px;
            }

            .info-row {
                flex-direction: column;
            }

            .info-item {
                margin-bottom: 10px;
            }
        }

        @media (max-width: 767px) {
            .filter-tabs {
                flex-wrap: wrap;
                justify-content: center;
            }

            .filter-tabs li {
                margin: 5px;
            }
        }

        /* تصميم بطاقات الدول الجديدة */
        .country-card-new {
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
            position: relative;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .country-card-new:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .card-top-area {
            position: relative;
            height: 120px;
            background: linear-gradient(45deg, #2962ff, #0039cb);
            display: flex;
            justify-content: center;
            padding-bottom: 30px;
        }

        .flag-container {
            position: absolute;
            bottom: -40px;
            width: 80px;
            height: 80px;
            background: #fff;
            border-radius: 50%;
            padding: 3px;
        }

        .flag-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .card-content {
            padding: 50px 20px 20px;
            text-align: center;
        }

        .country-name {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #333;
        }

        .country-features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .country-features span {
            background: #f5f8ff;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 13px;
            color: #333;
            display: inline-flex;
            align-items: center;
        }

        .country-features span i {
            color: #2962ff;
            margin-left: 5px;
            font-size: 14px;
        }

        .country-details {
            display: flex;
            justify-content: space-between;
            background: #f9fafc;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .detail-box {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .detail-box i {
            font-size: 24px;
            color: #2962ff;
            opacity: 0.8;
        }

        .detail-box div {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .detail-label {
            font-size: 12px;
            color: #777;
        }

        .detail-value {
            font-size: 16px;
            font-weight: 700;
            color: #333;
        }

        .country-summary {
            margin-bottom: 20px;
            color: #555;
            font-size: 14px;
            line-height: 1.6;
        }

        .recruit-btn {
            display: inline-block;
            background: #2962ff;
            color: #fff;
            padding: 10px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .recruit-btn:hover {
            background: #0039cb;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(41, 98, 255, 0.3);
        }

        .recruit-btn i {
            margin-right: 5px;
        }

        /* تخصيص الألوان لكل منطقة */
        .grid-item[data-category="asia"] .card-top-area {
            background: linear-gradient(45deg, #0097a7, #006064);
        }

        .grid-item[data-category="asia"] .country-features span i,
        .grid-item[data-category="asia"] .detail-box i {
            color: #0097a7;
        }

        .grid-item[data-category="asia"] .recruit-btn {
            background: #0097a7;
        }

        .grid-item[data-category="asia"] .recruit-btn:hover {
            background: #006064;
            box-shadow: 0 5px 15px rgba(0, 151, 167, 0.3);
        }

        .grid-item[data-category="africa"] .card-top-area {
            background: linear-gradient(45deg, #ef6c00, #e65100);
        }

        .grid-item[data-category="africa"] .country-features span i,
        .grid-item[data-category="africa"] .detail-box i {
            color: #ef6c00;
        }

        .grid-item[data-category="africa"] .recruit-btn {
            background: #ef6c00;
        }

        .grid-item[data-category="africa"] .recruit-btn:hover {
            background: #e65100;
            box-shadow: 0 5px 15px rgba(239, 108, 0, 0.3);
        }

        /* تخصيص أزرار الفلتر */
        .filter-tabs {
            display: inline-flex;
            background: #fff;
            padding: 8px;
            border-radius: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .filter-tabs li {
            padding: 8px 25px;
            border-radius: 30px;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            color: #555;
            position: relative;
            overflow: hidden;
        }

        .filter-tabs li:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.05);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
            border-radius: 30px;
        }

        .filter-tabs li:hover:before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .filter-tabs li.active {
            background: #3f51b5;
            color: #fff;
        }

        @media (max-width: 767px) {
            .country-details {
                flex-direction: column;
                gap: 15px;
            }

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

            .card-top-area {
                height: 100px;
            }

            .flag-container {
                width: 70px;
                height: 70px;
            }

            .card-content {
                padding-top: 40px;
            }
        }

        /* تصميم بطاقات الدول الهادئ والأبيض */
        .country-card-minimal {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .country-card-minimal:hover {
            transform: translateY(-5px);
            box-shadow: var(--hover-shadow);
        }

        .minimal-flag {
            position: relative;
            padding: 20px;
            background: var(--light-color);
            text-align: center;
        }

        .flag-wrapper {
            width: 100px;
            height: 100px;
            margin: 0 auto;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--white);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .flag-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .minimal-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .minimal-country-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
            text-align: center;
        }

        .minimal-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
            justify-content: center;
        }

        .minimal-tags span {
            background: var(--light-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--gray-color);
        }

        .minimal-tags span i {
            margin-left: 5px;
            color: var(--primary-color);
        }

        .minimal-details {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .minimal-detail {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .minimal-detail i {
            font-size: 1.2rem;
            color: var(--primary-color);
        }

        .minimal-detail div {
            display: flex;
            flex-direction: column;
        }

        .detail-name {
            font-size: 0.9rem;
            color: var(--gray-color);
        }

        .detail-info {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark-color);
        }

        .minimal-desc {
            color: var(--gray-color);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .minimal-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--primary-color);
            color: var(--white);
            padding: 10px 20px;
            border-radius: var(--border-radius);
            font-weight: 600;
            transition: var(--transition);
            margin-top: auto;
        }

        .minimal-btn:hover {
            background: var(--accent-color);
            color: var(--white);
            transform: translateX(-5px);
        }

        .minimal-btn i {
            transition: var(--transition);
        }

        .minimal-btn:hover i {
            transform: translateX(-5px);
        }

        /*---------------------------------
    RESPONSIVE STYLES
-----------------------------------*/
        @media (max-width: 991px) {
            .minimal-details {
                flex-direction: column;
                gap: 15px;
            }

            .minimal-detail {
                justify-content: center;
            }
        }

        @media (max-width: 767px) {
            .minimal-flag {
                padding: 15px;
            }

            .flag-wrapper {
                width: 80px;
                height: 80px;
            }

            .minimal-country-name {
                font-size: 1.3rem;
            }

            .minimal-tags {
                gap: 5px;
            }

            .minimal-tags span {
                padding: 3px 10px;
                font-size: 0.8rem;
            }

            .minimal-detail i {
                font-size: 1rem;
            }

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

            .detail-info {
                font-size: 1rem;
            }

            .minimal-desc {
                font-size: 0.9rem;
            }

            .minimal-btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
        }

        /* Footer Logo White */
        .footer-logo {
            filter: brightness(0) invert(1);
        }

/* Styles moved from workers.html */
        body {
            font-family: 'Almarai', sans-serif;
            overflow-x: hidden;
        }

        :root {
            --primary: #0F172A;
            --accent: #C5A059;
            --accent-hover: #A68546;
            --success: #10B981;
        }

        .max-w-7xl {
            max-width: 90rem !important;
        }

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

        .bg-accent {
            background-color: var(--accent);
        }

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

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

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 10px;
        }

       
    

        /* Page Hero Section */
        .workers-hero {
            background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
            position: relative;
            overflow: hidden;
        }

        .workers-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 15% 25%, rgba(197, 160, 89, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 75% 55%, rgba(197, 160, 89, 0.1) 0%, transparent 45%),
                radial-gradient(circle at 45% 75%, rgba(197, 160, 89, 0.08) 0%, transparent 40%);
            opacity: 0.7;
            pointer-events: none;
        }

        /* Animated Pattern Background */
        .workers-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle, rgba(197, 160, 89, 0.08) 2px, transparent 2px),
                radial-gradient(circle, rgba(197, 160, 89, 0.05) 1px, transparent 1px);
            background-size: 80px 80px, 40px 40px;
            background-position: 0 0, 20px 20px;
            animation: patternMove 20s linear infinite;
            pointer-events: none;
        }

        @keyframes patternMove {
            0% {
                background-position: 0 0, 20px 20px;
            }

            100% {
                background-position: 80px 80px, 100px 100px;
            }
        }

        /* Floating Shapes */
        .floating-shapes {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(197, 160, 89, 0.15), rgba(197, 160, 89, 0.05));
            animation: float 20s ease-in-out infinite;
        }

        .floating-shape:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -150px;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 25s;
        }

        .floating-shape:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 50%;
            right: 15%;
            animation-delay: 3s;
            animation-duration: 20s;
        }

        .floating-shape:nth-child(3) {
            width: 150px;
            height: 150px;
            bottom: -75px;
            left: 30%;
            animation-delay: 1.5s;
            animation-duration: 22s;
        }

        .floating-shape:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 20%;
            right: 25%;
            animation-delay: 4s;
            animation-duration: 18s;
        }

        .floating-shape:nth-child(5) {
            width: 250px;
            height: 250px;
            bottom: 10%;
            right: 5%;
            animation-delay: 2s;
            animation-duration: 24s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 0.4;
            }

            25% {
                transform: translate(30px, -30px) rotate(90deg);
                opacity: 0.6;
            }

            50% {
                transform: translate(-20px, -60px) rotate(180deg);
                opacity: 0.8;
            }

            75% {
                transform: translate(-40px, -30px) rotate(270deg);
                opacity: 0.5;
            }
        }

        /* Filter Section */
        .filter-section {
            background: white;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .filter-select {
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            padding: 12px 16px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 14px;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .filter-select:focus {
            outline: none;
            border-color: var(--accent);
            background: white;
        }

        /* Worker Card Design */
        .worker-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .worker-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        }

        .cv-image-wrapper {
            position: relative;
            overflow: hidden;
            background: #f8fafc;
            height: 400px;
        }

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

        .worker-card:hover .cv-image-wrapper img {
            transform: scale(1.05);
        }

        .view-cv-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 100%);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            padding: 30px;
        }

        .worker-card:hover .view-cv-overlay {
            opacity: 1;
        }

        .view-cv-btn {
            background: var(--accent);
            color: var(--primary);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .worker-card:hover .view-cv-btn {
            transform: translateY(0);
        }

        .worker-info {
            background: #f9fafb;
            padding: 24px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .info-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .info-label {
            font-size: 11px;
            color: #64748b;
            font-weight: 600;
        }

        .info-value {
            font-size: 13px;
            color: var(--primary);
            font-weight: 700;
        }

        .worker-actions {
            padding: 20px 24px;
            display: flex;
            gap: 12px;
        }

        /* Pagination Styles */
        .pagination-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 60px;
            padding: 30px 20px;
        }

        .pagination-container.hidden {
            display: none;
        }

        .pagination-btn {
            min-width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid #e2e8f0;
            background: white;
            color: var(--primary);
        }

        .pagination-btn:hover:not(.disabled) {
            border-color: var(--accent);
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
        }

        .pagination-btn.active {
            background: var(--accent);
            border-color: var(--accent);
            color: var(--primary);
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
        }

        .pagination-btn.disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .pagination-dots {
            color: #94a3b8;
            font-weight: 700;
            padding: 0 5px;
        }

        .pagination-info {
            font-size: 14px;
            color: #64748b;
            font-weight: 600;
            margin-left: 20px;
        }

        .btn-reserve {
            flex: 1;
            background: #214175;
            color: white;
            padding: 12px 20px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 14px;
        }

        .btn-reserve:hover {
            background: #059669;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
        }

        .btn-whatsapp {
            flex: 1;
            background: white;
            border: 2px solid #25d366;
            color: #25d366;
            padding: 12px 20px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 14px;
        }

        .btn-whatsapp:hover {
            background: #25d366;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        }

        /* Floating WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background-color: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
            z-index: 100;
            transition: all 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        /* Footer Logo White */
        footer img {
            filter: brightness(0) invert(1);
        }

        /* Lightbox Customization */
        .lb-data .lb-caption {
            font-family: 'Almarai', sans-serif !important;
            font-size: 14px !important;
            font-weight: 600 !important;
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 80px 20px;
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.9);
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: var(--accent);
        }

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

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

        .fade-in-up {
            animation: fadeInUp 0.6s ease forwards;
        }
