/*
Theme Name: My Theme Child
Template: hello-biz
*/

@font-face {
    font-family: 'GE SS';
    src: url('fonts/GE-SS-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Bold.woff2') format('woff2');
}

html, body, p, h1, h2, h3, h4, h5, h6, span, div {
    font-family: 'GE SS' !important;
}

@font-face {
    font-family: 'Kufi';
    src: url('fonts/NotoKufiArabic-ExtraBold.ttf') format('truetype');
}



html, body, p, h1, h2, h3, h4, h5, h6, span, div {
    font-family: 'Kufi' !important;

}

html[lang=en] {
    direction: ltr;
	font-family: 'Poppins' !important;
}

html[lang="en"] html,
html[lang="en"] body,
html[lang="en"] p,
html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] h4,
html[lang="en"] h5,
html[lang="en"] h6,
html[lang="en"] span,
html[lang="en"] div {
    font-family: 'Poppins' !important;
}

div#wpadminbar
 {
    display: none;
}

.number {
	font-family: sans-serif !important;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: auto !important;
    position: relative;
    transition-property: transform;
    display: block
}
.qlwapp__container.qlwapp__container--bottom-left, .qlwapp__container.qlwapp__container--bottom-right {
    z-index: 10 !important;
}


html[lang="ar"] .qlwapp__container.qlwapp__container--middle-left,
html[lang="ar"] .qlwapp__container.qlwapp__container--bottom-left {
    right: auto !important;
    left: 0 !important;
}


html[lang="en"] .qlwapp__container.qlwapp__container--middle-left,
html[lang="en"] .qlwapp__container.qlwapp__container--bottom-left {
    right: 0 !important;
    left: auto !important;
}


html[lang="en"] .qlwapp__container.qlwapp__container--middle-left .qlwapp__button,
html[lang="en"] .qlwapp__container.qlwapp__container--bottom-left .qlwapp__button {
    margin-right: 20px !important;
    margin-left: auto !important;
}

html[lang="ar"] .qlwapp__container.qlwapp__container--middle-left .qlwapp__button,
html[lang="ar"] .qlwapp__container.qlwapp__container--bottom-left .qlwapp__button {
    margin-right: auto !important;
    margin-left: 20px !important;
}


.elementor-76 .elementor-element.elementor-element-7213669
 {
    --display: auto !important;
} 
/* ========== 1. المتغيرات العامة ========== */
.fa, .fas {
    font-family: 'Font Awesome 5 Free' !important;
}

.fab {
    font-family: 'Font Awesome 5 Brands' !important;
}
        :root {
            --primary-color: #ec3e27 !important;
            --secondary-color: #2c3e50 !important;
  --accent-color: #f4a261 !important;
  --light-color: #f9fafb !important;
  --dark-color: #0b132b !important;
            --gradient: linear-gradient(135deg, #ec3e27 0%, #f4a261 100%) !important;
					
            --transition: all 0.3s ease-in-out;
            --shadow: 0 4px 20px rgb(0 0 0 / 25%) !important;
            --radius: 12px;
            --header-height: 80px;
            --header-height-scrolled: 70px;
        }

        /* ========== 2. إعدادات عامة ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Tajawal', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--header-height);
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            padding-top: var(--header-height);
            overflow-x: hidden;
        }

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

        section {
            padding: 100px 0;
            overflow: hidden;
        }

        section:nth-of-type(even) {
            background-color: var(--light-color);
        }

        .section-title {
					text-align: center !important;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 900;
            color: var(--secondary-color);
            text-align: center;
            margin-bottom: 20px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 5px;
            background: var(--primary-color);
            border-radius: 5px;
            margin: 15px auto 0;
        }

        .section-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: #555;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 50px auto;
            line-height: 1.7;
        }

        /* ========== 3. الشريط العلوي المحدث ========== */
/* أنماط زر اللغة */
.language-switcher {
    position: relative;
    display: inline-block;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    min-width: 150px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    background: none;
    width: 100%;
    text-align: right;
    cursor: pointer;
}

.language-option:hover {
    background: rgba(230, 57, 70, 0.08);
    color: var(--primary-color);
}

.language-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    overflow: hidden;
}

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

/* تعديلات للعرض على الشاشات الصغيرة */
@media (max-width: 768px) {
    .language-dropdown {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        width: 90%;
        max-width: 300px;
    }
    
    .language-dropdown.active {
        transform: translate(-50%, -50%) scale(1);
    }
}



/* أنماط إضافية لزر اللغة */
.current-language {
    opacity: 0.6;
    cursor: not-allowed !important;
    background: rgba(0, 0, 0, 0.05) !important;
}

.current-language:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    color: inherit !important;
}

.current-indicator {
    font-size: 0.8em;
    opacity: 0.7;
    margin-right: 5px;
}

.sidebar-language-dropdown {
    min-width: 200px;
    z-index: 10000;
}

/* تحسينات للعرض على الشاشات الصغيرة */
@media (max-width: 768px) {
    .sidebar-language-dropdown {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(0.9) !important;
        width: 90% !important;
        max-width: 300px !important;
    }
    
    .sidebar-language-dropdown.active {
        transform: translate(-50%, -50%) scale(1) !important;
    }
}

/* تحسينات للزر في القائمة الجانبية */
.sidebar-actions .btn {
    position: relative;
}

/* منع تحديد النص في أزرار اللغة */
.language-option {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

button#sidebarLanguageBtn:focus {
    background-color: var(--accent-color);
    color: #fff;
    text-decoration: none;
}

button#languageBtn:focus {
    background-color: var(--accent-color);
}
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: height 0.3s ease, box-shadow 0.3s ease;
            height: var(--header-height);
            border-bottom: 1px solid rgba(0,0,0,0.03);
        }

        .header.scrolled {
            box-shadow: var(--shadow);
            height: var(--header-height-scrolled);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .logo:hover { transform: translateY(-2px); }

        .logo-icon {
            width: 50px;
            height: 50px;
            transition: var(--transition);
					transform: rotate(0deg) scale(2.05);
        }
        
        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .logo:hover .logo-icon { transform: rotate(90deg) scale(1.70); }

        .logo-text { display: flex; flex-direction: column; }

        .logo-main {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            font-weight: 900;
            color: var(--secondary-color);
            line-height: 1;
        }

        .logo-sub {
            font-size: clamp(0.6rem, 1.5vw, 0.75rem);
            font-weight: 600;
            color: var(--primary-color);
            margin-top: 2px;
            letter-spacing: 0.5px;
        }

        /* ========== الأدوات السريعة ========== */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-shrink: 0;
        }

        .btn {
            padding: 12px 28px;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: clamp(0.8rem, 1.5vw, 0.9rem);
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            z-index: 1;
        }

        .btn:hover::before { right: 0; }

        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
        }

        .btn-secondary:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
        }

        .btn-icon {
            padding: 12px;
            width: 48px;
            height: 48px;
            justify-content: center;
            border-radius: 50%;
            background: rgba(29, 53, 87, 0.05);
            color: var(--secondary-color);
            transition: var(--transition);
        }

        .btn-icon:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-3px) scale(1.1);
        }

        /* ========== القائمة المدمجة ========== */
        .nav-compact {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quick-tools {
            display: flex;
            align-items: center;
            gap: 10px;
        }
.quick-tools2 {
            display: flex;
            align-items: center;
            gap: 10px;
	justify-content: space-evenly;
        }

        .tool-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(29, 53, 87, 0.05);
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            border: none;
            cursor: pointer;
        }

        .tool-btn:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-3px) scale(1.1);
        }

        .tool-btn .tooltip {
            position: absolute;
            bottom: -40px;
            right: 50%;
            transform: translateX(50%);
            background: var(--secondary-color);
            color: white;
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 10;
        }

        .tool-btn .tooltip::after {
            content: '';
            position: absolute;
            top: -5px;
            right: 50%;
            transform: translateX(50%);
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-bottom: 5px solid var(--secondary-color);
        }

        .tool-btn:hover .tooltip {
            opacity: 1;
            visibility: visible;
            bottom: -35px;
        }

        /* ========== زر القائمة المميز ========== */
        .hamburger-menu {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            width: 50px;
            height: 50px;
            justify-content: center;
            align-items: center;
            background: var(--gradient);
            border-radius: 50%;
            padding: 5px;
            transition: var(--transition);
            position: relative;
            z-index: 1001;
            border: none;
            box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
        }

        .hamburger-menu:hover { 
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
        }

        .hamburger-menu span {
            width: 22px;
            height: 2px;
            background: white;
            margin: 2.5px 0;
            transition: var(--transition);
            border-radius: 2px;
            transform-origin: center;
        }

        .hamburger-menu.active span:nth-child(1) { 
            transform: rotate(45deg) translate(5px, 5px); 
        }
        .hamburger-menu.active span:nth-child(2) { 
            opacity: 0; 
            transform: translateX(-10px); 
        }
        .hamburger-menu.active span:nth-child(3) { 
            transform: rotate(-45deg) translate(5px, -5px); 
        }

        /* ========== القائمة الجانبية الاحترافية ========== */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            cursor: pointer;
        }

        .sidebar-overlay.active { 
            opacity: 1; 
            visibility: visible; 
        }

        .sidebar-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 420px;
            height: 100vh;
            background: white;
            z-index: 1000;
            transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .sidebar-menu.active { right: 0; }

        .sidebar-header {
            background: var(--gradient);
            color: white;
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .sidebar-header h3 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 800;
        }

        .close-sidebar {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .close-sidebar:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .sidebar-content {
            overflow-y: auto;
            padding: 20px 0;
        }

        .sidebar-nav {
            list-style: none;
            margin-bottom: 30px;
        }

        .sidebar-item { 
            margin-bottom: 5px; 
        }

        .sidebar-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            padding: 16px 30px;
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            font-size: 16px;
            border-right: 4px solid transparent;
        }

        .sidebar-link-inner { 
            display: flex; 
            align-items: center; 
            gap: 15px; 
        }

        .sidebar-link .fas.fa-chevron-down { 
            font-size: 12px; 
            transition: transform 0.3s ease; 
        }

        .sidebar-link.active .fas.fa-chevron-down { 
            transform: rotate(180deg); 
        }

        .sidebar-link:hover,
        .sidebar-link.active {
            background: rgba(230, 57, 70, 0.05);
            color: var(--primary-color);
            border-right-color: var(--primary-color);
        }

        .sidebar-link i {
            width: 24px;
            text-align: center;
            font-size: 18px;
        }

        .sidebar-dropdown {
            margin-right: 30px;
            border-radius: 10px;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.03);
            max-height: 0;
            transition: max-height 0.4s ease-out;
        }
        
        .sidebar-dropdown.active { 
            max-height: 500px; 
        }

        .sidebar-dropdown-item {
            display: block;
            padding: 14px 25px;
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            font-size: 15px;
        }

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

        .sidebar-dropdown-item:hover {
            background: rgba(230, 57, 70, 0.08);
            color: var(--primary-color);
            padding-right: 30px;
        }

        .sidebar-dropdown-item i {
            margin-left: 10px;
            font-size: 14px;
        }

        .sidebar-footer {
            padding: 25px 30px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            background: #f8f9fa;
        }

        .sidebar-actions {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

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

        /* ========== 4. قسم البطل ========== */
        .hero {
            background-image: linear-gradient(rgba(29, 53, 87, 0.7), rgba(230, 57, 71, 0)), url(https://images.unsplash.com/photo-1553413077-190dd305871c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80) !important;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 50vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 20px;
            position: relative;
            margin-top: calc(var(--header-height) * -1);
        }

        .hero-content {
            max-width: 900px;
            animation: fadeInDown 1s ease-out;
            width: 100%;
        }
        
        .hero-content h1 {
            font-size: clamp(2.5rem, 7vw, 4rem);
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-content p {
            font-size: clamp(1rem, 3vw, 1.3rem);
            margin-bottom: 30px;
            font-weight: 400;
            line-height: 1.6;
        }
        
        .hero-content .btn {
            padding: clamp(12px, 3vw, 18px) clamp(25px, 5vw, 40px);
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            background: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .hero-content .btn:hover {
            background: transparent;
            border-color: white;
            color: white;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        
        /* ========== 6. قسم الرسالة ========== */
        .mission-content {
            text-align: center;
        }
        
        .mission-text {
            font-size: clamp(1.1rem, 3vw, 1.3rem);
            font-weight: 500;
            color: #333;
            max-width: 900px;
            margin: 0 auto 50px auto;
            line-height: 1.8;
            border-right: 5px solid var(--primary-color);
            padding-right: 20px;
        }

        /* Carousel خاص بقسم الرسالة */
        .mission-carousel {
            padding: 30px 10px 60px;
            position: relative;
        }

        .mission-carousel .swiper-slide {
            justify-content: center;
            align-items: center;
            padding: 10px;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--secondary-color);
        }

        .mission-carousel-pagination {
            position: relative;
            margin-top: 20px;
        }

        .mission-carousel-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

        .mission-carousel-button:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .mission-carousel-button-prev {
            right: 0;
        }

        .mission-carousel-button-next {
            left: 0;
        }

        .mission-carousel-button.swiper-button-disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: translateY(-50%);
        }

        /* ========== 7. قسم الخدمات مع Swiper Carousel ========== */
.service-card-link {
    text-decoration: none;
    color: #33333300;
    display: block;
    height: 100%;
    transition: transform 0.3s ease;
}
p.jddd {
    color: #ec3e27 !important;
}
.service-card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end; 
  height: 100%;
}


.service-card-link:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}
        .services-swiper {
            padding: 30px 10px 60px;
        }

        .service-card {
            background: #ffffff;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 30px;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
            height: 100%;
            margin: 10px;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(230, 57, 70, 0.1);
        }
        
        .service-card-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .service-card-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            width: 60px;
            height: 60px;
            display: grid;
            place-items: center;
            background: rgba(230, 57, 70, 0.08);
            border-radius: 50%;
        }
        
        .service-card-title {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--secondary-color);
            line-height: 1.4;
        }
        
        .service-card-body p {
            font-size: 1rem;
            color: #555;
            line-height: 1.7;
        }

        .services-swiper-pagination {
            position: relative;
            margin-top: 20px;
        }

        .services-swiper-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            top: 50%;
            z-index: 10;
        }

        .services-swiper-button:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .services-swiper-button-prev {
            right: 40%;
        }

        .services-swiper-button-next {
            left: -56%;
            bottom: 50px;
        }

        .services-swiper-button.swiper-button-disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: translateY(-50%);
        }

        /* ========== 8. قسم كيف نعمل ========== */
        .how-we-work-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            position: relative;
        }

        .step-card {
            background: #ffffff;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            position: relative;
            z-index: 2;
            border-top: 5px solid transparent;
            transition: var(--transition);
        }
        
        .step-card:hover {
            transform: translateY(-10px);
            border-top-color: var(--primary-color);
        }
        
        .step-number {
            font-size: 1.8rem;
            font-weight: 900;
            color: white;
            background: var(--primary-color);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            margin: -60px auto 20px auto;
            border: 5px solid #f8f9fa;
        }
        
        .step-card h3 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .step-card p {
            font-size: 1rem;
            color: #555;
            line-height: 1.6;
        }

        /* ========== 9. قسم الشركاء مع Swiper Carousel ========== */
        .partners-swiper {
            padding: 30px 10px 60px;
        }

        .partner-logo {
            background: #ffffff;
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            display: grid;
            place-items: center;
            height: 120px;
            transition: var(--transition);
            filter: grayscale(100%);
            opacity: 0.8;
            margin: 10px;
        }
        
        .partner-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .partner-logo img {
            max-width: 100%;
            max-height: 60px;
            object-fit: contain;
        }

        .partners-swiper-pagination {
            position: relative;
            margin-top: 20px;
        }

        .partners-swiper-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient);
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            top: 50%;
            z-index: 10;
        }

        .partners-swiper-button:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .partners-swiper-button-prev {
            right: 40%;
        }

        .partners-swiper-button-next {
            left: -56%;
            bottom: 50px;
        }

        .partners-swiper-button.swiper-button-disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: translateY(-50%);
        }

        /* ========== 10. قسم الاعتمادات ========== */
        .accreditations-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .accreditations-text {
            font-size: 1.1rem;
            text-align: center;
            max-width: 800px;
            margin-bottom: 40px;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            background: #ffffff;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            width: 100%;
            max-width: 900px;
        }

        .info-item {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
        }
        
        .info-item span {
            display: block;
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 8px;
        }
        
        .info-item p {
					font-family: sans-serif !important;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--secondary-color);
            word-break: break-all;
        }

        /* ========== 11. قسم التواصل ========== */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
            background: #ffffff;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        
        .contact-info h3 {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--dark-color);
            margin-bottom: 20px;
        }
        
        .contact-info p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 30px;
        }
        
        .contact-details-list {
            list-style: none;
        }
        
        .contact-details-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--secondary-color);
        }
        
        .contact-details-list li i {
            font-size: 1.4rem;
            color: var(--primary-color);
            width: 25px;
            text-align: center;
        }
        
        .social-media {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        

        .social-link {
            width: 45px !important;
            height: 45px!important;
            display: grid!important;
            place-items: center!important;
            background: #f0f0f0!important;
            color: var(--secondary-color)!important;
            border-radius: 50%!important;
            text-decoration: none!important;
            font-size: 1.2rem!important;
            transition: var(--transition)!important;
        }
        
        .social-link:hover {
            background: var(--primary-color) !important;
            color: white;
            transform: translateY(-3px);
        }

        .contact-form .form-group {
            margin-bottom: 20px;
        }
        
        .contact-form label {
            display: block;
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 8px;
        }
        
        .contact-form .form-control {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            font-family: 'Tajawal';
            transition: var(--transition);
        }
        
        .contact-form .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
        }
        
        .contact-form textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        .contact-form .btn {
            width: 100%;
            font-size: 1.1rem;
        }

        /* ========== 13. قسم الأدوات السريعة ========== */
        .tools-section {
    padding: 80px 0;
    margin-top: -20vh;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
    margin-left: 5vw;
    margin-right: 5vw;
}

.tool-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.tool-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.15);
}

.tool-card-header {
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tracking-header {
    background: linear-gradient(rgba(29, 53, 87, 0.85), rgba(29, 53, 87, 0.7)), 
                url("https://visionsolutions.pro/wp-content/images/tracking.jpg") center/cover no-repeat;
}

.calculator-header {
    background: linear-gradient(rgba(230, 57, 70, 0.85), rgba(230, 57, 70, 0.7)), 
                url("https://visionsolutions.pro/wp-content/images/calculat.webp") center/cover no-repeat;
}

.shipment-header {
    background: linear-gradient(rgba(69, 123, 157, 0.85), rgba(69, 123, 157, 0.7)), 
                url("https://visionsolutions.pro/wp-content/images/shipment.webp") center/cover no-repeat;
}

.tool-card-header i {
    font-size: 2.2rem;
    margin-bottom: 10px;
    display: block;
}

.tool-card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.tool-card-body {
    padding: 25px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tool-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.tool-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.tool-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 10px 15px;
    font-size: 0.9rem;
}

/* محتوى الأدوات */
.tools-content {
    margin-top: 40px;
    padding: 0 5vw;
}

.tool-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tool-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* تصميم محتوى الشحن */
.shipment-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.shipment-card {
    background: 
        linear-gradient(rgba(69, 123, 157, 0.85), rgba(69, 123, 157, 0.7)),
        url(https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3wzOTAwOTB8MHwxfGFsbHx8fHx8fHx8fDE3MzI0NjUxOTV8&ixlib=rb-4.0.3&q=80&w=1920) center/cover no-repeat fixed;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    margin-top: 50px;
}

.shipment-icon-header {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #457b9d 0%, #1d3557 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.3);
}

/* التجاوب مع الشاشات */
@media (max-width: 992px) {
    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tool-card-body {
        padding: 20px 15px 15px;
    }

    .tool-card-header {
        padding: 15px;
        min-height: 100px;
    }

    .tool-card-header i {
        font-size: 1.8rem;
    }

    .tool-card-header h3 {
        font-size: 1.2rem;
    }

    .tool-description {
        font-size: 0.9rem;
    }
}

/* ========== 14. قسم التتبع ========== */

        .tracking-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .tracking-card {
            background:
  linear-gradient(
    rgba(236, 62, 39, 0.8),  /* برتقالي رئيسي */
    rgba(244, 162, 97, 0.6)  /* برتقالي ذهبي ناعم */
  ),
  url(https://visionsolutions.pro/wp-content/images/tracking.jpg) center / cover no-repeat fixed !important;

            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow);
            position: relative;
            margin-top: 50px;
        }

        .tracking-icon-header {
            position: absolute;
            top: -60px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 120px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 5px solid rgba(255, 255, 255, 0.3);
        }

        .sectionx-title {
            font-size: 3rem;
            font-weight: 900;
            color: #ffffff;
            margin-bottom: 15px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
        }
        
        .sectionx-subtitle {
            font-size: 1.3rem;
            color: #f0f0f0;
            margin-bottom: 30px;
            line-height: 1.8;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        .tracking-form {
            display: flex;
            gap: 20px;
            
            border-radius: var(--radius);
            padding: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .tracking-input {
            flex: 1;
            padding: 18px 30px;
            border: 2px solid transparent;
            border-radius: var(--radius);
            font-size: 1.2rem;
            font-family: 'Tajawal';
            transition: var(--transition);
            background-color: #ffffff;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            color: var(--dark-color);
        }
        
        .tracking-input::placeholder {
            color: #999;
        }

        .tracking-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.2);
        }
        
        /* ========== 15. قسم الحاسبة ========== */
        .calculator-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .calculator-tabs {
            display: flex;
            background: var(--gradient);
        }

        .calculator-tab {
            flex: 1;
            padding: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            border-bottom: 3px solid transparent;
        }
        
        .calculator-tab.active {
            background: rgba(255, 255, 255, 0.15);
            border-bottom-color: var(--e-global-color-secondary);
        }
        
        .calculator-tab:hover:not(.active) {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .calculator-content {
            display: none;
            padding: 30px;
        }
        
        .calculator-content.active {
            display: block;
        }
        
        .packages-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .packages-title {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--secondary-color);
        }
        
        .add-package-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .add-package-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        .packages-list {
            margin-bottom: 30px;
        }
        
        .package-item {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 15px;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .package-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .package-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .remove-package {
            background: rgba(230, 57, 70, 0.1);
            color: var(--primary-color);
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .remove-package:hover {
            background: var(--primary-color);
            color: white;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .form-group {
            margin-bottom: 0;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-color);
        }
        
        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            font-family: 'Tajawal';
            transition: var(--transition);
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
        }
        
        .calculator-actions {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .calculator-actions .btn {
            flex: 1;
            justify-content: center;
        }
        
        .btn-outline {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }
        
        .btn-outline:hover {
            background: var(--primary-color);
            color: white;
        }
        
        .calculator-result {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 25px;
            display: none;
        }
        
        .calculator-result.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .calculator-result h3 {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .result-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .result-label {
            font-weight: 600;
            color: var(--dark-color);
        }
        
        .result-value {
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .summary-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .summary-table th,
        .summary-table td {
            padding: 12px 15px;
            text-align: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .summary-table th {
            background: rgba(230, 57, 70, 0.05);
            color: var(--secondary-color);
            font-weight: 700;
        }
        
        .note {
            background: rgba(29, 53, 87, 0.05);
            padding: 15px;
            border-radius: 10px;
            font-size: 0.9rem;
            color: var(--secondary-color);
            text-align: center;
            margin-top: 20px;
        }

        /* ========== 4. قسم البطل مع Carousel متطور ========== */

        .stat-card {
            background: #d4070e;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .stat-card:hover::before {
            height: 8px;
        }

        .stat-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--secondary-color); /* الذهبي */
            color: #FFFFFF;          /* أحمر غامق */
            border-radius: 50%;
            font-size: 36px;
            position: relative;
            transition: var(--transition);
        }

        .stat-card:hover .stat-icon {
            transform: rotate(10deg) scale(1.1);
            color: var(--secondary-color);
          background-color: #FFFFFF;
        }

        .stat-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid var(--secondary-color); /* ذهبي */
            opacity: 0.3;
            animation: pulse 2s infinite;
        }

        .carousel {
          width: 100%;
          margin-top: -20vw;
          text-align: center;
          position: relative;
          padding: 30px 10px;
        }

        .carousel h2 {
          font-size: 2.2rem;
          color: var(--dark-red);
          margin-bottom: 100px;
          font-weight: 800;
        }

        .carousel h2::after {
            content: '';
            position: absolute;
            margin-top: 50px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-secondary);
            border-radius: 2px;
        }

        .carousel-track {
          position: relative;
          width: 100%;
          height: 420px;
          display: flex;
          justify-content: center;
          align-items: center;
          perspective: 1000px;
        }

        .stat-card {
          position: absolute;
          width: 280px;
          height: 320px;
          background: white;
          border-radius: 25px;
          box-shadow: 0 10px 25px rgba(0,0,0,0.15);
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          transition: transform 0.8s ease, opacity 0.6s ease;
          cursor: pointer;
          user-select: none;
        }

        .stat-card .stat-icon {
          color: white;
          width: 80px;
          height: 80px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 20px;
        }

        .stat-card .stat-icon i {
          font-size: 2rem;
        }

        .stat-number {
          font-size: 2rem;
          color: var(--dark-red);
          font-weight: bold;
          margin-bottom: 10px;
        }

        .stat-desc {
          font-size: 1.1rem;
          color: #555;
          line-height: 1.5;
          padding: 0 10px;
        }

        .carousel-controls {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 25px;
          margin-top: 30px;
        }

        .arrow {
          width: 50px;
          height: 50px;
          border-radius: 50%;
          border: 2px solid var(--primary-red);
          display: none;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          color: var(--primary-red);
          transition: all 0.3s ease;
        }
        .arrow:hover {
          background: var(--primary-red);
          color: white;
          transform: scale(1.1);
        }

        /* تحسين العرض على الأجهزة اللوحية */
        @media (max-width: 768px) {
          .carousel h2 {
            font-size: 1.8rem;
          }
          .carousel-track {
            height: 380px;
          }
          .stat-card {
            width: 240px;
            height: 290px;
          }
          .stat-number {
            font-size: 1.8rem;
          }
        }

        /* تحسين العرض على الهواتف */
        @media (max-width: 480px) {
          .carousel h2 {
            font-size: 1.6rem;
          }
          .carousel-track {
            height: 340px;
          }
          .stat-card {
            width: 220px;
            height: 270px;
          }
          .stat-icon {
            width: 70px;
            height: 70px;
          }
          .stat-card .stat-icon i {
            font-size: 1.6rem;
          }
          .stat-number {
            font-size: 1.6rem;
          }
          .stat-desc {
            font-size: 0.95rem;
          }
          .arrow {
            width: 42px;
            height: 42px;
          }
        }

        

        .hero-content {
            max-width: 900px;
            animation: fadeInDown 1s ease-out;
            width: 100%;
        }
        
        .hero-content h1 {
            font-size: clamp(2.5rem, 7vw, 4rem);
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-content p {
            font-size: clamp(1rem, 3vw, 1.3rem);
            margin-bottom: 30px;
            font-weight: 400;
            line-height: 1.6;
        }
        
        .hero-content .btn {
            padding: clamp(12px, 3vw, 18px) clamp(25px, 5vw, 40px);
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            background: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .hero-content .btn:hover {
            background: transparent;
            border-color: white;
            color: white;
        }

        /* Hero Carousel Modern */
        .hero-carousel {
            margin-top: 50px;
            width: 100%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        .hero-swiper {
            width: 100%;
            height: 400px;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .hero-slide {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .hero-slide.swiper-slide-active::before {
            opacity: 0.05;
        }

        .hero-slide-content {
            position: relative;
            z-index: 2;
            max-width: 500px;
        }

        .hero-slide-icon {
            font-size: 4rem;
            margin-bottom: 25px;
            color: var(--primary-color);
            transition: transform 0.3s ease;
        }

        .hero-slide.swiper-slide-active .hero-slide-icon {
            transform: scale(1.2) rotate(5deg);
        }

        .hero-slide h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--secondary-color);
            transition: transform 0.3s ease;
        }

        .hero-slide.swiper-slide-active h3 {
            transform: translateY(-5px);
        }

        .hero-slide p {
            font-size: 1.2rem;
            margin-bottom: 25px;
            color: #555;
            line-height: 1.6;
        }

        .hero-slide .btn {
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .hero-slide.swiper-slide-active .btn {
            transform: translateY(0);
            opacity: 1;
        }

        .hero-swiper-pagination {
            position: relative;
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 12px;
        }

        .hero-swiper-pagination .swiper-pagination-bullet {
            width: 14px;
            height: 14px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 1;
            transition: all 0.3s ease;
            border-radius: 10px;
        }

        .hero-swiper-pagination .swiper-pagination-bullet-active {
            background: white;
            width: 40px;
        }

        .hero-swiper-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 10;
        }

        .hero-swiper-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            color: var(--secondary-color);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            font-size: 1.2rem;
        }

        .hero-swiper-button:hover {
            background: white;
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .hero-swiper-button.swiper-button-disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        



/* ========== 14. التجاوب مع الشاشات ========== */
        
        /* اللابتوبات والشاشات الصغيرة */
        @media (max-width: 1200px) {
            :root {
                --header-height: 70px;
                --header-height-scrolled: 65px;
            }
            html { scroll-padding-top: var(--header-height); }
            .header-container { padding: 0 15px; }
            .logo-main { font-size: 20px; }
            .logo-sub { font-size: 10px; }
            .logo-icon { width: 40px; height: 40px; }
            
            .hero-swiper {
                height: 350px;
            }
        }
        
        /* الأجهزة اللوحية */
        @media (max-width: 992px) {
            
            .btn-icon {
                width: 45px;
                height: 45px;
            }
					
            .tool-btn {
                width: 45px;
                height: 45px;
            }
            
            .hamburger-menu {
                width: 45px;
                height: 45px;
            }

            .section-title { font-size: 2.2rem; }
            .section-subtitle { font-size: 1.1rem; }
            
            .hero-content h1 { font-size: 2.8rem; }
            .hero-content p { font-size: 1.1rem; }

            .hero-swiper {
                height: 320px;
            }
            
            .hero-slide {
                padding: 40px 30px;
            }
            
            .hero-slide h3 {
                font-size: 1.7rem;
            }
            
            .hero-slide p {
                font-size: 1.1rem;
            }

            .about-content { grid-template-columns: 1fr; }
            .about-image { max-width: 100%; }
            
            .features-grid { grid-template-columns: 1fr; }
            
            .how-we-work-steps { grid-template-columns: 1fr 1fr; }
            .step-card { margin-top: 30px; }
            .step-number { margin: -60px auto 20px auto; }
            
            .contact-wrapper { grid-template-columns: 1fr; }
            .info-grid { grid-template-columns: 1fr; }
            
            .services-swiper-button,
            .partners-swiper-button {
                display: none;
            }
            
            .calculator-tabs {
                flex-direction: column;
            }
            
            .tracking-form {
                flex-direction: column;
            }
            
            .tracking-status {
                flex-wrap: wrap;
                gap: 20px;
            }
            
            .status-step {
                flex: 1;
                min-width: 120px;
            }
        }
        
        /* الهواتف */
        @media (max-width: 768px) {
            section { padding: 60px 0; }
            .section-title { font-size: 2rem; }
            .section-subtitle { margin-bottom: 30px; }

            .hero { 
                height: 80vh; 
                min-height: 500px;
                background-attachment: scroll;
            }
            .hero-content h1 { font-size: 2.2rem; }
            .hero-content p { font-size: 1rem; }
            
            .hero-swiper {
                height: 280px;
            }
            
            .hero-slide {
                padding: 30px 20px;
            }
            
            .hero-slide h3 {
                font-size: 1.5rem;
            }
            
            .hero-slide p {
                font-size: 1rem;
            }
            
            .hero-slide-icon {
                font-size: 3rem;
            }
            
            .hero-swiper-button {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }
            
            .about-features { grid-template-columns: 1fr; }
            
            .how-we-work-steps { grid-template-columns: 1fr; }
            .step-card { margin-top: 40px; }
            .step-card:first-child { margin-top: 30px; }
            
            .contact-wrapper { padding: 25px; }
            .contact-info h3 { font-size: 1.4rem; }
            .contact-info p { font-size: 1rem; }
            .contact-details-list li { font-size: 1rem; }
            
            .calculator-container {
                border-radius: 15px;
            }
            
            .calculator-content {
                padding: 20px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .calculator-actions {
                flex-direction: column;
            }
            
            .summary-table {
                font-size: 0.8rem;
            }
            
            .tracking-card {
                padding: 25px;
            }
            
            .status-step {
                min-width: 100px;
            }
            
            .sidebar-menu {
                max-width: 350px;
            }
        }

@media (min-width: 481px) {
	.sidebar-footer {
		display: none;
	}
}
        
        /* الهواتف الصغيرة */
        @media (max-width: 480px) {
            button#calculatorBtn {
                display: none;
            }
            
            button#trackingBtn {
                display: none;
            }
            
            .language-switcher {
                display: none;
            }
            
            button#sidebarLoginBtn {
                display: none;
            }
					
            .hamburger-menu.active {
              display: none;
            }
            section { padding: 40px 0; }
            .section-title { font-size: 1.8rem; }
            
            .hero { 
                height: 70vh; 
                min-height: 400px;
            }
            .hero-content h1 { font-size: 1.8rem; }
            
            .hero-swiper {
                height: 250px;
            }
            
            .hero-slide {
                padding: 20px 15px;
            }
            
            .hero-slide h3 {
                font-size: 1.3rem;
            }
            
            .hero-slide p {
                font-size: 0.9rem;
            }
            
            .hero-slide-icon {
                font-size: 2.5rem;
                margin-bottom: 15px;
            }
            
            .hero-swiper-button {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }
            
            .contact-wrapper { padding: 15px; }
            .contact-form .form-control { padding: 12px; }
            
            .calculator-content {
                padding: 15px;
            }
            
            .packages-header {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .summary-table {
                font-size: 0.7rem;
            }
            
					
            .summary-table th,
            .summary-table td {
                padding: 8px 5px;
            }
            
            .tracking-card {
                padding: 20px;
            }
            
            .status-step {
                min-width: 80px;
            }
            
            .status-label {
                font-size: 0.8rem;
            }
            
            .quick-tools {
                gap: 5px;
            }
					.quick-tools2 {
                gap: 5px;
            }
            
            .btn-icon, .tool-btn {
                width: 40px;
                height: 40px;
            }
            
            .hamburger-menu {
                width: 40px;
                height: 40px;
            }
            
            .sidebar-menu {
                max-width: 100%;
            }
            
            .sidebar-header {
                padding: 20px;
            }
            
            .sidebar-link {
                padding: 14px 20px;
            }
            
            .sidebar-footer {
                padding: 20px;
            }
        }