html, body{
    scroll-behavior: smooth;
    overflow-x: hidden;
}
 :root {
    --brand-primary: rgb(0, 85, 142);
    --brand-secondary: rgb(253, 173, 26);
    --whatsapp-green: #25D366;
     --white: #ffffff;
     --text-dark: #2d3748;
    --text-gray: #4a5568;
    --text-light-gray: #718096;
    --bg-light: #f5f7fa;
    --dark-text: #0a0e1a;
    --light-grey: #f8f9fa;
    --divider-grey: #e8eaed;
}
a{
    text-decoration: none;
}
::selection {
    color: white;
    background: black;
}
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--brand-primary);
    border-radius: 12px;
}
@font-face{
    font-family: "Effra";
    src: url('../fonts/alfont_com_Effra_Rg.ttf') format('opentype');
}
@font-face{
    font-family: "Palestine";
    src: url('../fonts/Palestine-Regular.ttf') format('opentype');
}
@font-face{
    font-family: "Rubik";
    src: url('../fonts/Rubik-Bold.ttf') format('opentype');
}
    
body {
    color: var(--text-white);
    overflow-x: hidden;
    font-family: 'Effra', sans-serif;
    overflow-x: hidden;
}

/* Language Switcher Styles */
.language-switcher {
    position: fixed;
    bottom: 30px;
    z-index: 9999;
    width: fit-content;
}

:dir(rtl) .language-switcher {
    left: 30px;
}

:dir(ltr) .language-switcher {
    right: 30px;
}

.language-switcher-toggle {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid rgba(102, 126, 234, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 
                0 2px 8px rgba(102, 126, 234, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 65px;
    height: 50px;
}

.language-switcher-toggle::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4), rgba(118, 75, 162, 0.4));
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.language-switcher-toggle:hover::before {
    opacity: 1;
}

.language-switcher-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 
                0 4px 16px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.25);
}

.language-switcher-toggle:active {
    transform: translateY(-1px) scale(0.98);
}

.language-switcher-toggle[aria-expanded="true"] {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 
                0 4px 16px rgba(102, 126, 234, 0.2);
}

.language-switcher-toggle .flag-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.chevron-icon {
    color: #667eea;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.65;
    flex-shrink: 0;
}

.language-switcher-toggle:hover .chevron-icon {
    opacity: 1;
    color: #5568d3;
}

.language-switcher-toggle[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
    opacity: 1;
    color: #5568d3;
}

.language-menu {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
                0 8px 24px rgba(102, 126, 234, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(102, 126, 234, 0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(12px) scale(0.95);
    transform-origin: bottom center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    min-width: 140px;
}

.language-menu::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-right: 1.5px solid rgba(102, 126, 234, 0.2);
    border-bottom: 1.5px solid rgba(102, 126, 234, 0.2);
    z-index: -1;
}

.language-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: all;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(102, 126, 234, 0.08);
    position: relative;
    overflow: hidden;
}

.language-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea, #764ba2);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.06), rgba(118, 75, 162, 0.04));
    padding-left: 22px;
}

.language-option:hover::before {
    transform: translateX(0);
}

.language-option:active {
    transform: scale(0.98);
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.08));
}

.language-option .flag-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.language-option:hover .flag-icon {
    border-color: rgba(102, 126, 234, 0.4);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.language-label {
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    letter-spacing: 0.01em;
    transition: color 0.25s ease;
}

.language-option:hover .language-label {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-switcher {
        bottom: 20px;
    }
    
    :dir(rtl) .language-switcher {
        left: 20px;
    }
    
    :dir(ltr) .language-switcher {
        right: 20px;
    }
    
    .language-switcher-toggle {
        height: 46px;
        min-width: 60px;
        padding: 10px 14px;
    }
    
    .language-switcher-toggle .flag-icon {
        width: 24px;
        height: 24px;
    }
    
    .language-option {
        padding: 12px 16px;
    }
    
    .language-option .flag-icon {
        width: 26px;
        height: 26px;
    }
    
    .language-label {
        font-size: 13px;
    }
}

/* Animation for menu items */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.language-menu.show .language-option {
    animation: slideInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.language-menu.show .language-option:nth-child(1) {
    animation-delay: 0.05s;
}

.language-menu.show .language-option:nth-child(2) {
    animation-delay: 0.1s;
}

/* ===============================
    Style 3: Minimal with Badge
    =============================== */
.section-heading-3 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-heading-3 .badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    color: var(--brand-primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 2px solid rgba(28, 18, 74, 0.1);
    animation: fadeInDown 0.6s ease-out;
}

.section-heading-3 .badge-tag i {
    color: var(--brand-secondary);
    font-size: 1rem;
}

.section-heading-3 h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1.3;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.section-heading-3 .highlight {
    color: var(--brand-secondary);
    position: relative;
}

.section-heading-3 .highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 35%;
    background: var(--brand-secondary);
    opacity: 0.15;
    z-index: -1;
    border-radius: 8px;
}

.section-heading-3 p {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Tablet - شاشات متوسطة */
@media (max-width: 992px) {
    .section-heading-3 {
        margin-bottom: 50px;
    }
    
    .section-heading-3 h2 {
        font-size: 2.2rem;
    }
    
    .section-heading-3 p {
        font-size: 1.05rem;
        max-width: 600px;
        padding: 0 20px;
    }
}

/* Mobile - شاشات صغيرة */
@media (max-width: 768px) {
    .section-heading-3 {
        margin-bottom: 40px;
    }
    
    .section-heading-3 .badge-tag {
        font-size: 0.85rem;
        padding: 8px 20px;
        gap: 6px;
    }
    
    .section-heading-3 .badge-tag i {
        font-size: 0.9rem;
    }
    
    .section-heading-3 h2 {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .section-heading-3 p {
        font-size: 1rem;
        line-height: 1.7;
        padding: 0 15px;
    }
}


 /* Primary Button - Gradient Option 2 (Blue to Teal) */
        .btn-primary-2 {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 32px;
            font-size: 16px;
            font-weight: 600;
            color: white;
            background: linear-gradient(135deg, rgb(0, 85, 142) 0%, rgb(0, 120, 180) 50%, rgb(0, 140, 200) 100%);
            border: none;
            border-radius: 12px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(0, 85, 142, 0.3),
                        inset 0 -2px 8px rgba(0, 0, 0, 0.15),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
        overflow: hidden;                        
        }

        .btn-primary-2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgb(0, 100, 167) 0%, rgb(0, 140, 210) 50%, rgb(0, 170, 240) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn-primary-2:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 8px 25px rgba(0, 85, 142, 0.45),
                        inset 0 -2px 8px rgba(0, 0, 0, 0.1);
                        
        }

        .btn-primary-2:hover::before {
            opacity: 1;
        }

        .btn-primary-2 span,
        .btn-primary-2 i {
            position: relative;
            z-index: 1;
        }

        /* Secondary Button - Soft Fill (Option 2) */
        .btn-secondary-2 {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            font-size: 16px;
            font-weight: 600;
            color: rgb(200, 130, 0);
            background: linear-gradient(135deg, rgba(253, 173, 26, 0.1) 0%, rgba(253, 173, 26, 0.15) 100%);
            border: 2px solid rgba(253, 173, 26, 0.3);
            border-radius: 12px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 8px rgba(253, 173, 26, 0.1);
            overflow: hidden;
        }

        .btn-secondary-2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgb(253, 173, 26) 0%, rgb(255, 190, 60) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }

        .btn-secondary-2:hover {
            color: white;
            border-color: rgb(253, 173, 26);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(253, 173, 26, 0.35);
        }

        .btn-secondary-2:hover::before {
            opacity: 1;
        }

        .btn-secondary-2 span,
        .btn-secondary-2 i {
            position: relative;
            z-index: 1;
        }

/* Mobile صغير جداً */
@media (max-width: 480px) {
    .section-heading-3 {
        margin-bottom: 30px;
    }
    
    .section-heading-3 .badge-tag {
        font-size: 0.8rem;
        padding: 7px 18px;
    }
    
    .section-heading-3 h2 {
        font-size: 1.5rem;
        padding: 0 10px;
    }
    
    .section-heading-3 .highlight::before {
        height: 30%;
    }
    
    .section-heading-3 p {
        font-size: 0.95rem;
        padding: 0 10px;
    }
}

.whatsapp-icon {
    position: fixed;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 111;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    animation: bounce 1.5s infinite;
    text-decoration: none;
}
:dir(rtl).whatsapp-icon{
    right: 20px;

}
:dir(ltr).whatsapp-icon{
    left: 20px;

}
.whatsapp-icon i{
    font-size: 30px;
}
/* تأثير التحريك */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* تأثير عند التحويم */
.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    background-color: #25D366;
    color: white;
}

.notification-badge {
    position: absolute;
    top: 0px;
    right: 5px;
    width: 12px;
    height: 12px;
    background-color: red;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.8);
    animation: pulse 1.5s infinite;
}


.main-header .container {
    display: flex;
    align-items: center;
    margin: 0 auto;
}


/* Navbar Styles */
.main-header {
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding-top: 20px;
    padding-bottom: 15px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 90px;
    padding-block: 10px;
    height: auto;
    transition: all .3s ease-in-out;
}

.main-nav ul {
    display: flex;
    list-style: none;
    justify-content: end;
    margin: 0;
    margin-top: -30px;
    padding: 0;
}

.main-nav li {
    margin-left: 30px;
    position: relative;
}

.main-nav a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    font-size: 18px;
    line-height: 117%; 
}

.main-nav .active {
    color: #a4a3a3;
}

.main-nav .active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;    
    background-color: var(--brand-secondary);
    border-radius: 3px;
    transition: all 0.3s ease;
    width: 100%;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo img {
        width: 80px;
    }
    
    .main-header .container {
        justify-content: space-between;
    }
    
    .main-nav {
        position: fixed;
        top: 0px;        
        padding-top: 60px;
        width: 60%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--brand-primary);
        transition: all 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    :dir(rtl) .main-nav {
        left: -100%;
    }
    
    :dir(ltr) .main-nav {
        right: -100%;
    }
    
    .main-nav a {
        color: white;
    }
    
    .main-nav a.active {
        color: #DEC463;
    }
    
    :dir(rtl) .main-nav.active {
        left: 0;        
    }
    
    :dir(ltr) .main-nav.active {
        right: 0;        
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }

    .main-nav li {
        margin: 15px 0;
    }

    .main-nav a {
        font-size: 18px;
    }

    /* Mobile Buttons - Show in Mobile Menu */
    .mobile-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-buttons .btn-primary {
        background: linear-gradient(90deg, #E9CF6B 0%, #C48929 100%);
        color: #000;
        font-size: 16px;
        font-weight: 600;
        padding: 14px 40px;
        border: none;
        border-radius: 2px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 6px 15px rgba(222, 196, 99, 0.3);
        text-decoration: none;
        display: block;
        text-align: center;
        position: relative;
    }

    .mobile-buttons .btn-primary::after {
        position: absolute;
        content: "";
        width: 98%;
        height: 90%;
        border-radius: 2px;
        border: 4px solid var(--bg-dark);
        top: 5.1%;
        left: 50%;
        transform: translate(-50%);
    }

    .mobile-buttons .btn-primary:active {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(222, 196, 99, 0.4);
    }

    .mobile-buttons .btn-secondary {
        background: #383838;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        padding: 14px 40px;
        border: none;
        border-radius: 2px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 6px 15px rgba(99, 92, 66, 0.3);
        text-decoration: none;
        display: block;
        text-align: center;
        position: relative;
    }

    .mobile-buttons .btn-secondary::after {
        position: absolute;
        content: "";
        width: 98%;
        height: 90%;
        border-radius: 2px;
        border: 4px solid var(--bg-dark);
        top: 5.1%;
        left: 50%;
        transform: translate(-50%);
    }

    .mobile-buttons .btn-secondary:active {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(80, 73, 48, 0.4);
    }

    /* Animate toggle icon when active */
    .mobile-menu-toggle.active span {
        width: 100%;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}
/* ⚠️ على الشاشات الكبيرة: نحطهم في السطر جنب اللينكات */
@media (min-width: 992px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .main-nav .nav-btns {
        margin-top: 0;
        display: flex;
        flex-wrap: wrap;
    }
}



/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('../assets/HeroBg.webp');
    background-size: cover;
    position: relative;
    padding: 80px 0;
    padding-top: 140px;
    overflow: hidden;
}

/* Abstract Background Shapes */
.hero-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, rgba(0, 85, 142, 0.08), rgba(253, 173, 26, 0.08));
    border-radius: 50%;
    top: -300px;
    left: -200px;
    z-index: 0;
    filter: blur(80px);
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, rgba(253, 173, 26, 0.06), rgba(0, 85, 142, 0.04));
    border-radius: 50%;
    bottom: -200px;
    right: -150px;
    z-index: 0;
    filter: blur(100px);
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-secondary), #ffb84d);
    color: white;
    padding: 8px 24px;
    border-radius: 8px 0 8px 0;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(253, 173, 26, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-highlight {
    color: var(--brand-primary);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 25px;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary-brand {
    background: var(--brand-primary);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 85, 142, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-primary-brand:hover {
    background: rgb(0, 70, 120);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 85, 142, 0.4);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}    
/* Left Side - Image Composition */
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Circular Frame with Double Ring */
.circular-frame {
    position: relative;
    width: 550px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-primary), rgba(0, 85, 142, 0.8));
    border-radius: 50%;
    z-index: 1;
}

.circle-ring {
    position: absolute;
    width: 108%;
    height: 108%;
    border: 4px solid var(--brand-primary);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.4;
}

.circle-ring-outer {
    position: absolute;
    width: 115%;
    height: 115%;
    border: 3px solid var(--brand-secondary);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.3;
    border-style: dashed;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Broken Pattern Effect */
.circle-segment {
    position: absolute;
    width: 120%;
    height: 120%;
    border: 4px solid transparent;
    border-radius: 50%;
    z-index: 0;
}

.circle-segment-1 {
    border-top-color: var(--brand-primary);
    border-right-color: var(--brand-primary);
    opacity: 0.6;
    transform: rotate(-45deg);
}

.circle-segment-2 {
    border-bottom-color: var(--brand-secondary);
    border-left-color: var(--brand-secondary);
    opacity: 0.5;
    transform: rotate(45deg);
}

.main-image {
    position: relative;
    z-index: 2;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Floating Stat Card */
.stat-card {
    position: absolute;
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
}

.stat-card-top {
    top: 80px;
    left: -50px;
}

.stat-card-bottom {
    bottom: 60px;
    left: 30px;
}

.stat-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--brand-primary), rgba(0, 85, 142, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
}

.stat-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin: 0;
    line-height: 1;
}

.stat-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 5px 0 0 0;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .circular-frame {
        width: 450px;
        height: 450px;
    }
    
    .main-image {
        width: 380px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .circular-frame {
        width: 350px;
        height: 350px;
    }
    
    .main-image {
        width: 300px;
        height: 300px;
    }
    
    .stat-card {
        padding: 15px 20px;
    }
    
    .stat-card-top {
        top: 40px;
        left: -20px;
    }
    
    .stat-card-bottom {
        bottom: 40px;
        left: 10px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn-primary-brand,
    .btn-whatsapp {
        padding: 14px 30px;
        font-size: 1rem;
        width: -webkit-fill-available;

    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .circular-frame {
        width: 280px;
        height: 280px;
    }
    
    .main-image {
        width: 240px;
        height: 240px;
    }
    
    .stat-card {
        padding: 12px 18px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .stat-content h3 {
        font-size: 1.4rem;
    }
    
    .stat-content p {
        font-size: 0.85rem;
    }
}




/* Trust Bar Container */
.trust-bar-section {
    background: var(--white);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle Background Pattern */
.trust-bar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--brand-primary), rgba(0, 85, 142, 0.8));
}

.trust-bar-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--divider-grey);
}

/* Trust Items Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Individual Trust Card */
.trust-item {
    padding: 32px 28px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 1px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        var(--divider-grey) 50%, 
        transparent 100%);
}

.trust-item:hover {
    background: linear-gradient(135deg, 
        rgba(0, 85, 142, 0.02) 0%, 
        rgba(253, 173, 26, 0.02) 100%);
    transform: translateY(-4px);
}

/* Icon Container */
.trust-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, 
        rgba(253, 173, 26, 0.1) 0%, 
        rgba(253, 173, 26, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid rgba(253, 173, 26, 0.2);
}

.trust-item:hover .trust-icon {
    background: linear-gradient(135deg, 
        rgba(253, 173, 26, 0.15) 0%, 
        rgba(0, 85, 142, 0.05) 100%);
    border-color: var(--brand-secondary);
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 8px 24px rgba(253, 173, 26, 0.2);
}

.trust-icon svg {
    width: 38px;
    height: 38px;
    stroke: var(--brand-secondary);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon svg {
    stroke: var(--brand-primary);
    transform: scale(1.1);
}

/* Trust Badge Accent */
.trust-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    background: var(--brand-secondary);
    border-radius: 50%;
    border: 3px solid var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-item:hover .trust-icon::before {
    opacity: 1;
}

/* Trust Content */
.trust-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 8px;
    line-height: 1.6;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.trust-item:hover .trust-content h3 {
    color: var(--brand-secondary);
}

.trust-content p {
    font-size: 0.875rem;
    color: #5f6368;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* Optional: Section Header */
.trust-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0 20px;
}

.trust-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.trust-header .highlight {
    color: var(--brand-primary);
    position: relative;
    display: inline-block;
}

.trust-header .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--brand-secondary);
    border-radius: 2px;
}

.trust-header p {
    font-size: 1.1rem;
    color: #5f6368;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: var(--divider-grey);
        border-radius: 12px;
        overflow: hidden;
    }
    
    .trust-item:nth-child(1),
    .trust-item:nth-child(2) {
        border-bottom: 1px solid var(--divider-grey);
    }
    
    .trust-item:nth-child(odd)::after {
        display: none;
    }
    
    .trust-item:nth-child(2)::after {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 60px;
        width: 1px;
        background: linear-gradient(180deg, 
            transparent 0%, 
            var(--divider-grey) 50%, 
            transparent 100%);
    }
}

@media (max-width: 768px) {
    .trust-bar-section {
        padding: 32px 0;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 0;
        background: transparent;
    }
    
    .trust-item {
        padding: 28px 24px;
        border-bottom: 1px solid var(--divider-grey);
    }
    
    .trust-item:last-child {
        border-bottom: none;
    }
    
    .trust-item::after {
        display: none !important;
    }
    
    .trust-header h2 {
        font-size: 1.75rem;
    }
    
    .trust-header p {
        font-size: 1rem;
    }
    
    .trust-icon {
        width: 64px;
        height: 64px;
    }
    
    .trust-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .trust-content h3 {
        font-size: 0.975rem;
    }
    
    .trust-content p {
        font-size: 0.825rem;
    }
}

/* Micro-interactions */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.trust-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 20px;
    border: 2px solid var(--brand-secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-item:hover .trust-icon::after {
    animation: pulse 2s ease-in-out infinite;
    opacity: 0.3;
}




/* ===== ABOUT SECTION ===== */
.about-hero-section {
    padding: 100px 0 80px;
    position: relative;
}

/* Right Side - Content */
.content-side {
    padding-right: 40px;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 85, 142, 0.1);
    margin-bottom: 25px;
    font-size: 15px;
    color: var(--brand-primary);
    font-weight: 700;
    transition: all 0.3s ease;
}

.badge-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 85, 142, 0.15);
}

.badge-icon {
    width: 22px;
    height: 22px;
}

.main-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 30px;
}

.main-title .highlight {
    color: var(--brand-primary);
    position: relative;
}

.main-description {
    font-size: 17px;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Why Trust Section */
.why-trust-wrapper {
    margin-bottom: 45px;
}

.why-trust-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.why-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 0;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: right;
}

.trust-point-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--brand-primary), #004d82);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 85, 142, 0.25);
    transition: all 0.3s ease;
}

.trust-point:hover .trust-point-icon {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 85, 142, 0.35);
}

.trust-point-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.trust-point-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    font-weight: 600;
    margin: 0;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-custom {
    padding: 16px 45px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom {
    background: var(--brand-secondary);
    color: #000;
    box-shadow: 0 6px 20px rgba(253, 173, 26, 0.3);
}

.btn-primary-custom:hover {
    background: #ffb733;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(253, 173, 26, 0.45);
    color: #000;
}

.btn-secondary-custom {
    background: var(--text-gray);
    color: white;
    box-shadow: 0 6px 20px rgba(74, 85, 104, 0.25);
}

.btn-secondary-custom:hover {
    background: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 85, 104, 0.35);
    color: white;
}

/* Left Side - Images */
.images-side {
    position: relative;
    padding-left: 40px;
}

.images-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.image-circle-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.circle-border {
    position: absolute;
    top: -18px;
    right: -18px;
    left: -18px;
    bottom: -18px;
    border: 4px dashed var(--brand-primary);
    border-radius: 50%;
    opacity: 0.5;
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.image-circle {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    background: var(--brand-primary);
    box-shadow: 0 20px 50px rgba(0, 85, 142, 0.3);
    position: relative;
}

.image-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 85, 142, 0.2), transparent);
    z-index: 1;
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rounded-image-card {
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    background: var(--brand-primary);
    box-shadow: 0 20px 50px rgba(0, 85, 142, 0.3);
    aspect-ratio: 1;
    position: relative;
    transition: all 0.3s ease;
}

.rounded-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 85, 142, 0.4);
}

.rounded-image-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 85, 142, 0.2), transparent);
    z-index: 1;
}

.rounded-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Side Cards */
.side-cards {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    z-index: 10;
}

.info-card-hero {
    background: var(--brand-primary);
    color: white;
    padding: 15px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 85, 142, 0.35);
    max-width: 240px;
    position: relative;
    transition: all 0.3s ease;
}

.info-card-hero:hover {
    transform: translateX(5px);
    box-shadow: 0 20px 50px rgba(0, 85, 142, 0.45);
}

.info-card-icon-hero {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.info-card-icon-hero svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.info-card-content-hero {
    padding-right: 60px;
    text-align: right;
}

.info-card-title-hero {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
}

.info-card-subtitle-hero {
    font-size: 12px;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 500;
}

.stats-card-hero {
    background: var(--brand-primary);
    color: white;
    padding: 15px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 85, 142, 0.35);
    max-width: 380px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stats-card-hero:hover {
    transform: translateX(5px);
    box-shadow: 0 20px 50px rgba(0, 85, 142, 0.45);
}

.stats-card-icon-hero {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.stats-card-icon-hero svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.stats-card-content-hero {
    flex: 1;
}
.side-cards :dir(rtl){
    text-align: right;
}
.side-cards :dir(ltr){
    text-align: left;
}
.stats-card-number-hero {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.2;
}

.stats-card-text-hero {
    font-size: 12px;
    opacity: 0.95;
    line-height: 1.5;
    font-weight: 500;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets - شاشات متوسطة (768px - 991px) */
@media (max-width: 991px) {
    .about-hero-section {
        padding: 60px 0 50px;
    }

    .content-side {
        padding-right: 20px;
    }

    .images-side {
        padding-left: 20px;
        margin-top: 40px;
    }

    .main-title {
        font-size: 36px;
    }

    .main-description {
        font-size: 16px;
        line-height: 1.8;
    }

    .why-trust-title {
        font-size: 24px;
    }

    .trust-point-icon {
        width: 50px;
        height: 50px;
    }

    .trust-point-icon svg {
        width: 24px;
        height: 24px;
    }

    .trust-point-text {
        font-size: 15px;
    }

    .btn-custom {
        padding: 14px 35px;
        font-size: 16px;
    }

    .images-wrapper {
        gap: 20px;
    }

    .circle-border {
        top: -12px;
        right: -12px;
        left: -12px;
        bottom: -12px;
        border-width: 3px;
    }

    .rounded-image-card {
        border-radius: 30px;
    }

    .side-cards {
        margin-top: 40px;
        gap: 20px;
    }

    .info-card-hero,
    .stats-card-hero {
        max-width: 100%;
        width: 100%;
    }
}

/* Mobile Large - موبايل كبير (576px - 767px) */
@media (max-width: 767px) {
    .about-hero-section {
        padding: 40px 0 30px;
    }

    .content-side {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .images-side {
        padding-left: 0;
    }

    .badge-tag {
        padding: 8px 20px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .badge-icon {
        width: 20px;
        height: 20px;
    }

    .main-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .main-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .why-trust-wrapper {
        margin-bottom: 35px;
    }

    .why-trust-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .why-trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-point {
        gap: 12px;
    }

    .trust-point-icon {
        width: 45px;
        height: 45px;
    }

    .trust-point-icon svg {
        width: 22px;
        height: 22px;
    }

    .trust-point-text {
        font-size: 14px;
    }

    .cta-buttons {
        gap: 15px;
        justify-content: center;
    }

    .btn-custom {
        padding: 12px 30px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }

    .images-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .circle-border {
        top: -10px;
        right: -10px;
        left: -10px;
        bottom: -10px;
        border-width: 2px;
    }

    .rounded-image-card {
        border-radius: 25px;
    }

    .side-cards {
        margin-top: 30px;
        gap: 15px;
    }

    .info-card-hero,
    .stats-card-hero {
        padding: 12px;
        border-radius: 20px;
    }

    .info-card-icon-hero,
    .stats-card-icon-hero {
        width: 35px;
        height: 35px;
    }

    .info-card-icon-hero svg,
    .stats-card-icon-hero svg {
        width: 18px;
        height: 18px;
    }

    .info-card-content-hero {
        padding-right: 50px;
    }

    .info-card-title-hero,
    .stats-card-number-hero {
        font-size: 14px;
    }

    .info-card-subtitle-hero,
    .stats-card-text-hero {
        font-size: 11px;
    }
}

/* Mobile Small - موبايل صغير (أقل من 576px) */
@media (max-width: 575px) {
    .about-hero-section {
        padding: 30px 0 20px;
    }

    .badge-tag {
        padding: 6px 16px;
        font-size: 13px;
        gap: 8px;
    }

    .badge-icon {
        width: 18px;
        height: 18px;
    }

    .main-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .main-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .why-trust-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .why-trust-grid {
        gap: 15px;
    }

    .trust-point {
        gap: 10px;
    }

    .trust-point-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .trust-point-icon svg {
        width: 20px;
        height: 20px;
    }

    .trust-point-text {
        font-size: 13px;
        line-height: 1.6;
    }

    .btn-custom {
        padding: 10px 25px;
        font-size: 14px;
        border-radius: 10px;
    }

    .images-wrapper {
        gap: 20px;
    }

    .circle-border {
        display: none; /* إخفاء الحدود المتحركة في الشاشات الصغيرة جداً */
    }

    .rounded-image-card {
        border-radius: 20px;
    }

    .side-cards {
        margin-top: 25px;
        gap: 12px;
    }

    .info-card-hero,
    .stats-card-hero {
        padding: 10px;
        border-radius: 18px;
    }

    .info-card-icon-hero {
        right: 15px;
        width: 32px;
        height: 32px;
    }

    .stats-card-icon-hero {
        width: 32px;
        height: 32px;
    }

    .info-card-icon-hero svg,
    .stats-card-icon-hero svg {
        width: 16px;
        height: 16px;
    }

    .info-card-content-hero {
        padding-right: 45px;
    }

    .info-card-title-hero,
    .stats-card-number-hero {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .info-card-subtitle-hero,
    .stats-card-text-hero {
        font-size: 10px;
    }

    .stats-card-hero {
        gap: 15px;
    }
}

/* Extra Small Devices - الأجهزة الصغيرة جداً (أقل من 400px) */
@media (max-width: 399px) {
    .main-title {
        font-size: 22px;
    }

    .why-trust-title {
        font-size: 18px;
    }

    .trust-point-text {
        font-size: 12px;
    }

    .btn-custom {
        padding: 9px 20px;
        font-size: 13px;
    }

    .info-card-title-hero,
    .stats-card-number-hero {
        font-size: 12px;
    }

    .info-card-subtitle-hero,
    .stats-card-text-hero {
        font-size: 9px;
    }
}
       /* Hero Pattern Background */
       .sectors-main-section {
            padding: 100px 0 120px;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
            overflow: hidden;
        }

        .sectors-main-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(0, 85, 142, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(253, 173, 26, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-header::before {
            content: '';
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--brand-secondary), transparent);
            border-radius: 10px;
        }

        .section-label {
            display: inline-block;
            padding: 8px 24px;
            background: linear-gradient(135deg, rgba(0, 85, 142, 0.08), rgba(0, 85, 142, 0.12));
            border: 1px solid rgba(0, 85, 142, 0.15);
            border-radius: 50px;
            color: var(--brand-primary);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .section-label i {
            margin-left: 8px;
        }

        .section-title {
            font-size: 48px;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 18px;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--text-dark) 0%, var(--brand-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            font-size: 19px;
            color: var(--text-gray);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.7;
            font-weight: 400;
        }

        /* Swiper Container */
        .sectors-swiper-container {
            position: relative;
            padding: 40px 0;
            margin: 0 -20px;
        }


        .swiper-wrapper {
            padding-bottom: 20px;
        }

        /* Sector Card */
        .sector-card {
            background: white;
            padding: 45px 35px;
            border-radius: 24px;
            text-align: center;
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.06),
                0 0 1px rgba(0, 0, 0, 0.04);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(0, 85, 142, 0.08);
            position: relative;
            overflow: hidden;
            cursor: grab;
            backdrop-filter: blur(10px);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .sector-card:active {
            cursor: grabbing;
        }

        .sector-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 300%;
            height: 300%;
            background: linear-gradient(
                135deg, 
                transparent 30%, 
                rgba(0, 85, 142, 0.03) 50%, 
                rgba(253, 173, 26, 0.03) 70%,
                transparent 90%
            );
            opacity: 1;
            transition: all 0.8s ease;
        }

        .sector-card:hover::before {
            opacity: 1;
            top: -30%;
            left: -30%;
            transform: rotate(10deg);
        }

        .sector-card::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--brand-secondary) 0%, transparent 60%);
            opacity: 0.08;
            transition: all 0.4s ease;
            border-radius: 0 24px 0 100%;
        }

        .sector-card:hover::after {
            opacity: 0.15;
            width: 120px;
            height: 120px;
        }

        .sector-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 
                0 25px 60px rgba(0, 85, 142, 0.25),
                0 0 0 1px rgba(0, 85, 142, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            border-color: rgba(0, 85, 142, 0.2);
        }

        .sector-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, rgba(253, 173, 26, 0.15) 0%, rgba(253, 173, 26, 0.1) 100%);
            border: 2px solid rgba(253, 173, 26, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 800;
            color: var(--brand-secondary);
            box-shadow: 0 4px 12px rgba(253, 173, 26, 0.15);
            z-index: 2;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .sector-card:hover .sector-badge {
            background: linear-gradient(135deg, var(--brand-secondary) 0%, rgb(255, 195, 75) 100%);
            color: white;
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 6px 20px rgba(253, 173, 26, 0.4);
        }

        .sector-icon-main {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, rgba(0, 85, 142, 0.1) 0%, rgba(0, 85, 142, 0.05) 100%);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 
                0 8px 25px rgba(0, 85, 142, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
        }

        .sector-icon-main::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60%;
            height: 60%;
            background: radial-gradient(circle, rgba(0, 85, 142, 0.3) 0%, transparent 70%);
            opacity: 0;
            transition: all 0.4s ease;
            border-radius: 50%;
            filter: blur(15px);
        }

        .sector-card:hover .sector-icon-main::before {
            opacity: 1;
            width: 120%;
            height: 120%;
        }

        .sector-card:hover .sector-icon-main {
            background: linear-gradient(135deg, var(--brand-primary) 0%, rgb(0, 115, 182) 100%);
            transform: scale(1.1) rotate(5deg);
            box-shadow: 
                0 15px 40px rgba(0, 85, 142, 0.4),
                inset 0 -2px 8px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            border-radius: 18px;
        }

        .sector-icon-main i {
            font-size: 42px;
            color: var(--brand-primary);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .sector-card:hover .sector-icon-main i {
            color: white;
            transform: scale(1.1);
            filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
        }

        .sector-title-main {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-dark);
            margin: 0 0 12px 0;
            line-height: 1.4;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .sector-card:hover .sector-title-main {
            color: var(--brand-primary);
        }

        .sector-description {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.7;
            margin-top: 12px;
            position: relative;
            z-index: 1;
            opacity: 0.85;
            transition: all 0.4s ease;
            min-height: 42px;
            flex-grow: 1;
        }

        .sector-card:hover .sector-description {
            opacity: 1;
            color: #5a6c7d;
        }

        .sector-features {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 15px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .feature-tag {
            padding: 5px 12px;
            background: linear-gradient(135deg, rgba(0, 85, 142, 0.08), rgba(0, 85, 142, 0.05));
            border: 1px solid rgba(0, 85, 142, 0.12);
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            color: var(--brand-primary);
            transition: all 0.3s ease;
        }

        .sector-card:hover .feature-tag {
            background: linear-gradient(135deg, var(--brand-primary), rgb(0, 115, 182));
            color: white;
            border-color: var(--brand-primary);
            transform: translateY(-2px);
        }

        .sector-stats {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 85, 142, 0.1);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-gray);
            font-weight: 600;
            position: relative;
            z-index: 1;
            opacity: 0.8;
            transition: all 0.4s ease;
        }

        .sector-card:hover .sector-stats {
            opacity: 1;
            color: var(--brand-primary);
        }

        .sector-stats i {
            color: var(--brand-secondary);
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .sector-card:hover .sector-stats i {
            transform: scale(1.2);
        }

        /* Swiper Navigation */
        .swiper-button-next,
        .swiper-button-prev {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 4px 20px rgba(0, 85, 142, 0.15);
            transition: all 0.3s ease;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
            color: var(--brand-primary);
            font-weight: 900;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: var(--brand-primary);
            box-shadow: 0 8px 30px rgba(0, 85, 142, 0.3);
        }

        .swiper-button-next:hover:after,
        .swiper-button-prev:hover:after {
            color: white;
        }

        .swiper-button-disabled {
            opacity: 0.3;
        }

        /* Swiper Pagination */
        .swiper-pagination {
            position: relative;
            margin-top: 40px;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: var(--brand-primary);
            opacity: 0.3;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
            width: 32px;
            border-radius: 6px;
            background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
        }

        /* CTA Section */
        .sectors-cta {
            text-align: center;
            padding-top: 60px;
            border-top: 2px solid rgba(0, 85, 142, 0.08);
        }

        .cta-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .cta-text {
            font-size: 17px;
            color: var(--text-gray);
            margin-bottom: 30px;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 40px;
            font-size: 17px;
            font-weight: 700;
            color: white;
            background: linear-gradient(135deg, var(--brand-primary) 0%, rgb(0, 115, 182) 100%);
            border: none;
            border-radius: 14px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 6px 20px rgba(0, 85, 142, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgb(0, 115, 182) 0%, rgb(0, 145, 222) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 85, 142, 0.45);
        }

        .cta-button:hover::before {
            opacity: 1;
        }

        .cta-button span,
        .cta-button i {
            position: relative;
            z-index: 1;
        }

        .cta-button i {
            margin-left: 8px;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .sectors-main-section {
                padding: 80px 0 100px;
            }

            .section-title {
                font-size: 38px;
            }

            .sector-card {
                padding: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            .sectors-main-section {
                padding: 60px 0 80px;
            }

            .section-title {
                font-size: 32px;
            }

            .section-subtitle {
                font-size: 16px;
            }

            .sector-card {
                padding: 35px 25px;
            }

            .sector-icon-main {
                width: 80px;
                height: 80px;
            }

            .sector-icon-main i {
                font-size: 36px;
            }

            .cta-title {
                font-size: 26px;
            }

            .cta-button {
                width: 100%;
                justify-content: center;
            }


            /* Fix mobile animation lag */
            .sector-card {
                will-change: transform;
                backface-visibility: hidden;
                -webkit-backface-visibility: hidden;
                transform: translateZ(0);
                -webkit-transform: translateZ(0);
            }

            .sector-card:hover {
                transform: translateY(-5px) translateZ(0);
            }
        }

        @media (max-width: 576px) {
            .section-header {
                margin-bottom: 40px;
            }

            .section-title {
                font-size: 28px;
            }

            .sector-title-main {
                font-size: 18px;
            }

            .sectors-swiper-container {
                margin: 0 -10px;
            }
        }


/* ============================================
           SECTION 5: آراء العملاء
        ============================================ */
      .testimonials-section {
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            padding: 80px 0;
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            display: inline-block;
            font-size: 18px;
            font-weight: 600;
            color: var(--brand-primary);
            margin-bottom: 15px;
            padding: 8px 20px;
            background: rgba(0, 85, 142, 0.1);
            border-radius: 25px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Swiper Container */
        .testimonials-swiper {
            padding: 20px 0 60px;
            position: relative;
        }

        .swiper-slide {
            height: auto;
        }

        /* Testimonial Card */
        .testimonial-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 2px solid rgba(0, 85, 142, 0.08);
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 85, 142, 0.2);
        }

        .testimonial-header {
            background: linear-gradient(135deg, var(--brand-primary) 0%, rgb(0, 115, 182) 100%);
            padding: 20px 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: 3px solid rgba(255, 255, 255, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            font-weight: 700;
            flex-shrink: 0;
        }

        .testimonial-info {
            flex: 1;
        }

        .testimonial-name {
            font-size: 18px;
            font-weight: 700;
            color: white;
            margin-bottom: 3px;
        }

        .testimonial-position {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.85);
        }

        .testimonial-body {
            padding: 30px 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .message-bubble {
            background: linear-gradient(135deg, #e8f4f8 0%, #f0f7fa 100%);
            padding: 20px 22px;
            border-radius: 18px 18px 18px 4px;
            position: relative;
            margin-bottom: 20px;
            flex: 1;
        }

        .message-bubble::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: -8px;
            border: 8px solid transparent;
            border-right-color: #e8f4f8;
            border-bottom: 0;
        }

        .message-text {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-dark);
            position: relative;
            z-index: 1;
        }

        .message-icon {
            font-size: 32px;
            color: var(--brand-primary);
            opacity: 0.1;
            position: absolute;
            top: 10px;
            right: 10px;
        }

        .testimonial-footer {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(0, 85, 142, 0.1);
        }

        .company-badge {
            padding: 6px 14px;
            background: linear-gradient(135deg, rgba(0, 85, 142, 0.08), rgba(0, 85, 142, 0.05));
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--brand-primary);
        }

        .rating-stars {
            display: flex;
            gap: 3px;
            margin-right: auto;
        }

        .rating-stars i {
            color: var(--brand-secondary);
            font-size: 14px;
        }

        /* Swiper Navigation */
        .swiper-button-next,
        .swiper-button-prev {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0, 85, 142, 0.2);
            transition: all 0.3s ease;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
            color: var(--brand-primary);
            font-weight: 900;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: var(--brand-primary);
            transform: scale(1.1);
        }

        .swiper-button-next:hover:after,
        .swiper-button-prev:hover:after {
            color: white;
        }

        .swiper-button-disabled {
            opacity: 0.5;
        }

        /* Swiper Pagination */
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: var(--brand-primary);
            opacity: 0.3;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            opacity: 1;
            width: 35px;
            border-radius: 6px;
            background: var(--brand-primary);
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .testimonials-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 36px;
            }

            .section-subtitle {
                font-size: 16px;
            }

            .section-header {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 767px) {
            .testimonials-section {
                padding: 40px 0;
            }

            .section-label {
                font-size: 16px;
                padding: 6px 16px;
            }

            .section-title {
                font-size: 28px;
            }

            .section-subtitle {
                font-size: 15px;
            }

            .testimonial-avatar {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .testimonial-name {
                font-size: 16px;
            }

            .testimonial-position {
                font-size: 12px;
            }

            .testimonial-body {
                padding: 20px;
            }

            .message-text {
                font-size: 14px;
            }

            .swiper-button-next,
            .swiper-button-prev {
                width: 40px;
                height: 40px;
            }

            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 16px;
            }
        }

        @media (max-width: 575px) {
            .section-title {
                font-size: 24px;
            }

            .testimonial-header {
                padding: 15px 20px;
            }

            .testimonial-body {
                padding: 20px 15px;
            }

            .message-bubble {
                padding: 15px 18px;
            }

            .company-badge {
                font-size: 11px;
                padding: 5px 12px;
            }

            .rating-stars i {
                font-size: 12px;
            }
        }
        /* ============================================
           SECTION 6: الأسئلة الشائعة
        ============================================ */
        /* ===== FAQ SECTION ===== */
.faq-section {
    background: white;
    padding-block: 60px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid rgba(0, 85, 142, 0.08);
    border-radius: 18px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 85, 142, 0.15);
    box-shadow: 0 8px 25px rgba(0, 85, 142, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(0, 85, 142, 0.02), rgba(0, 85, 142, 0.05));
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-secondary) 0%, rgb(255, 195, 75) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    box-shadow: 0 4px 15px rgba(253, 173, 26, 0.3);
    flex-shrink: 0;
}

.faq-question-text {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.faq-toggle {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, rgba(0, 85, 142, 0.1), rgba(0, 85, 142, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-toggle i {
    color: var(--brand-primary);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: linear-gradient(135deg, var(--brand-primary), rgb(0, 115, 182));
}

.faq-item.active .faq-toggle i {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 30px 25px 100px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-checkmark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--success-color);
    font-weight: 600;
    margin-left: 8px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding-block: 60px;
}

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 85, 142, 0.15);
    overflow: hidden;
    border: 2px solid rgba(0, 85, 142, 0.08);
}

.contact-header {
    background: linear-gradient(135deg, var(--brand-primary) 0%, rgb(0, 115, 182) 100%);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.contact-header h2 {
    color: white;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.contact-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    position: relative;
    z-index: 1;
}

.contact-form {
    padding: 50px 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-label .required {
    color: #e53e3e;
    margin-right: 3px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 85, 142, 0.12);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(0, 85, 142, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    pointer-events: none;
}

.form-input-with-icon {
    padding-left: 45px;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, rgb(0, 115, 182) 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 85, 142, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0, 115, 182) 0%, rgb(0, 145, 222) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 85, 142, 0.4);
}

.submit-button:hover:not(:disabled)::before {
    opacity: 1;
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-button span {
    position: relative;
    z-index: 1;
}

.button-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.submit-button.loading span {
    display: none;
}

.submit-button.loading .button-spinner {
    display: block;
}

/* Success Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.success-modal {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    position: relative;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-color), #38a169);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(72, 187, 120, 0.3);
}

.success-icon i {
    color: var(--brand-primary);
    font-size: 40px;
}

.success-modal h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.success-modal p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.modal-close-btn {
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--brand-primary), rgb(0, 115, 182));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 85, 142, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets - شاشات متوسطة (768px - 991px) */
@media (max-width: 991px) {
    .faq-section,
    .contact-section {
        padding-block: 50px;
    }

    .faq-container,
    .contact-wrapper {
        margin: 0 20px;
    }

    .faq-question {
        padding: 22px 25px;
        gap: 15px;
    }

    .faq-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .faq-question-text {
        font-size: 17px;
    }

    .faq-toggle {
        width: 32px;
        height: 32px;
    }

    .faq-answer-content {
        padding: 0 25px 20px 85px;
        font-size: 15px;
    }

    .contact-header {
        padding: 40px 30px;
    }

    .contact-header h2 {
        font-size: 32px;
    }

    .contact-header p {
        font-size: 16px;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .form-grid {
        gap: 20px;
        margin-bottom: 20px;
    }

    .submit-button {
        font-size: 17px;
        padding: 16px;
    }

    .success-modal {
        padding: 40px 30px;
    }

    .success-modal h3 {
        font-size: 26px;
    }
}

/* Mobile Large - موبايل كبير (576px - 767px) */
@media (max-width: 767px) {
    .faq-section,
    .contact-section {
        padding-block: 40px;
    }

    .faq-container,
    .contact-wrapper {
        margin: 0 15px;
    }

    .faq-item {
        border-radius: 15px;
        margin-bottom: 15px;
    }

    .faq-question {
        padding: 18px 20px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 12px;
    }

    .faq-question-text {
        font-size: 16px;
        flex: 1;
        min-width: calc(100% - 90px);
    }

    .faq-toggle {
        width: 30px;
        height: 30px;
        margin-right: auto;
    }

    .faq-toggle i {
        font-size: 14px;
    }

    .faq-answer-content {
        padding: 0 20px 18px 20px;
        font-size: 14px;
        line-height: 1.7;
    }

    .faq-item.active .faq-answer {
        max-height: 600px;
    }

    .contact-wrapper {
        border-radius: 20px;
    }

    .contact-header {
        padding: 35px 25px;
    }

    .contact-header h2 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .contact-header p {
        font-size: 15px;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 18px;
    }

    .form-label {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 10px;
    }

    .form-textarea {
        min-height: 100px;
    }

    .form-icon {
        left: 16px;
    }

    .form-input-with-icon {
        padding-left: 42px;
    }

    .submit-button {
        padding: 15px;
        font-size: 16px;
        border-radius: 12px;
    }

    .success-modal {
        width: 85%;
        padding: 35px 25px;
        border-radius: 20px;
    }

    .success-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .success-icon i {
        font-size: 35px;
    }

    .success-modal h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .success-modal p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .modal-close-btn {
        padding: 12px 35px;
        font-size: 15px;
        border-radius: 10px;
    }
}

/* Mobile Small - موبايل صغير (أقل من 576px) */
@media (max-width: 575px) {
    .faq-section,
    .contact-section {
        padding-block: 30px;
    }

    .section-title {
        font-size: 26px;
    }

    .faq-container,
    .contact-wrapper {
        margin: 0 12px;
    }

    .faq-item {
        border-radius: 12px;
        margin-bottom: 12px;
        border-width: 1px;
    }

    .faq-question {
        padding: 15px 16px;
        gap: 10px;
    }

    .faq-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        border-radius: 10px;
    }

    .faq-question-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
    }

    .faq-toggle i {
        font-size: 12px;
    }

    .faq-answer-content {
        padding: 0 16px 15px 16px;
        font-size: 13px;
        line-height: 1.6;
    }

    .contact-wrapper {
        border-radius: 18px;
    }

    .contact-header {
        padding: 30px 20px;
    }

    .contact-header h2 {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .contact-header p {
        font-size: 14px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-grid {
        gap: 15px;
        margin-bottom: 15px;
    }

    .form-label {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 11px 14px;
        font-size: 13px;
        border-radius: 9px;
    }

    .form-textarea {
        min-height: 90px;
    }

    .form-icon {
        left: 14px;
        font-size: 14px;
    }

    .form-input-with-icon {
        padding-left: 38px;
    }

    .submit-button {
        padding: 13px;
        font-size: 15px;
        border-radius: 10px;
    }

    .button-spinner {
        width: 18px;
        height: 18px;
        border-width: 2px;
    }

    .success-modal {
        width: 90%;
        padding: 30px 20px;
        border-radius: 18px;
    }

    .success-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }

    .success-icon i {
        font-size: 32px;
    }

    .success-modal h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .success-modal p {
        font-size: 14px;
        margin-bottom: 22px;
        line-height: 1.6;
    }

    .modal-close-btn {
        padding: 11px 30px;
        font-size: 14px;
        border-radius: 9px;
    }
}

/* Extra Small Devices - الأجهزة الصغيرة جداً (أقل من 400px) */
@media (max-width: 399px) {
    .faq-section,
    .contact-section {
        padding-block: 25px;
    }

    .section-title {
        font-size: 22px;
    }

    .faq-container,
    .contact-wrapper {
        margin: 0 10px;
    }

    .faq-question {
        padding: 12px 14px;
        gap: 8px;
    }

    .faq-icon {
        width: 35px;
        height: 35px;
        font-size: 15px;
        border-radius: 8px;
    }

    .faq-question-text {
        font-size: 13px;
    }

    .faq-toggle {
        width: 26px;
        height: 26px;
    }

    .faq-answer-content {
        padding: 0 14px 12px 14px;
        font-size: 12px;
    }

    .contact-header {
        padding: 25px 18px;
    }

    .contact-header h2 {
        font-size: 22px;
    }

    .contact-header p {
        font-size: 13px;
    }

    .contact-form {
        padding: 25px 18px;
    }

    .form-label {
        font-size: 11px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 10px 12px;
        font-size: 12px;
    }

    .form-textarea {
        min-height: 80px;
    }

    .submit-button {
        padding: 12px;
        font-size: 14px;
    }

    .success-modal {
        padding: 25px 18px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .success-icon i {
        font-size: 28px;
    }

    .success-modal h3 {
        font-size: 20px;
    }

    .success-modal p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .modal-close-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

/* Landscape Mobile - الموبايل الأفقي */
@media (max-height: 500px) and (orientation: landscape) {
    .success-modal {
        max-height: 90vh;
        overflow-y: auto;
        padding: 25px 30px;
    }

    .success-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .success-icon i {
        font-size: 25px;
    }

    .success-modal h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .success-modal p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .modal-close-btn {
        padding: 8px 25px;
        font-size: 13px;
    }
}


.products-section {
            background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 50%, var(--white) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .products-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 85, 142, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }

        .products-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(253, 173, 26, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Header Section */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(0, 85, 142, 0.1), rgba(0, 85, 142, 0.05));
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 700;
            color: var(--brand-primary);
            margin-bottom: 20px;
            border: 2px solid rgba(0, 85, 142, 0.1);
        }

        .section-badge i {
            font-size: 18px;
        }

        .section-title {
            font-size: 48px;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Swiper Container */
        .products-swiper-container {
            margin-bottom: 60px;
            padding: 20px 0;
        }

        .swiper {
            width: 100%;
            padding: 30px 10px 0px;
        }

        /* Product Card - Simplified */
        .product-card {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 4px 25px rgba(0, 85, 142, 0.08);
            border: 2px solid rgba(0, 85, 142, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 85, 142, 0.18);
            border-color: var(--brand-primary);
        }

        .product-image-wrapper {
            position: relative;
            height: 320px;
            background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            overflow: hidden;
        }

        .product-image-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(0, 85, 142, 0.03) 0%, transparent 70%);
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
            position: relative;
            z-index: 1;
        }

        .product-card:hover .product-image {
            transform: scale(1.1);
        }

        .product-info {
            padding: 35px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-name {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 15px;
            line-height: 1.4;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .product-name i {
            color: var(--brand-secondary);
            font-size: 20px;
            flex-shrink: 0;
            margin-top: 3px;
        }

        .product-description {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.8;
            flex-grow: 1;
            margin-bottom: 25px;
        }

        .product-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--brand-primary), rgb(0, 115, 182));
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(0, 85, 142, 0.3);
            width: 100%;
        }

        .product-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 85, 142, 0.4);
        }

        .product-btn i {
            font-size: 18px;
        }

        /* Swiper Navigation */
        .swiper-button-next,
        .swiper-button-prev {
            width: 50px;
            height: 50px;
            background: var(--white);
            border-radius: 50%;
            box-shadow: 0 4px 20px rgba(0, 85, 142, 0.15);
            transition: all 0.3s ease;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: var(--brand-primary);
            box-shadow: 0 6px 30px rgba(0, 85, 142, 0.25);
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 20px;
            color: var(--brand-primary);
            font-weight: bold;
        }

        .swiper-button-next:hover::after,
        .swiper-button-prev:hover::after {
            color: var(--white);
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: var(--text-gray);
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            width: 30px;
            border-radius: 6px;
            background: var(--brand-primary);
            opacity: 1;
        }

        /* CTA Section */
        .cta-container {
            background: linear-gradient(135deg, var(--brand-primary) 0%, rgb(0, 115, 182) 100%);
            border-radius: 28px;
            padding: 60px 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 85, 142, 0.25);
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .cta-container::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(253, 173, 26, 0.15) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            border: 3px solid rgba(255, 255, 255, 0.3);
        }

        .cta-icon i {
            font-size: 36px;
            color: var(--white);
        }

        .cta-title {
            font-size: 36px;
            font-weight: 900;
            color: var(--white);
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .cta-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 35px;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 18px 40px;
            border: none;
            border-radius: 14px;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .cta-btn-primary {
            background: linear-gradient(135deg, var(--brand-secondary), #ffb733);
            color: var(--text-dark);
            box-shadow: 0 6px 25px rgba(253, 173, 26, 0.4);
        }

        .cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(253, 173, 26, 0.5);
        }

        .cta-btn-secondary {
            background: var(--white);
            color: var(--brand-primary);
            box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
        }

        .cta-btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .products-section {
                padding: 70px 0;
            }

            .section-title {
                font-size: 38px;
            }

            .product-image-wrapper {
                height: 280px;
                padding: 30px;
            }

            .cta-container {
                padding: 50px 40px;
            }

            .cta-title {
                font-size: 32px;
            }
        }

        @media (max-width: 767px) {
            .products-section {
                padding: 50px 0;
            }

            .section-header {
                margin-bottom: 50px;
            }

            .section-title {
                font-size: 32px;
            }

            .section-subtitle {
                font-size: 16px;
            }

            .product-image-wrapper {
                height: 260px;
                padding: 25px;
            }

            .product-info {
                padding: 30px;
            }

            .product-name {
                font-size: 20px;
            }

            .product-description {
                font-size: 14px;
            }

            .cta-container {
                padding: 40px 30px;
                border-radius: 24px;
            }

            .cta-icon {
                width: 70px;
                height: 70px;
            }

            .cta-icon i {
                font-size: 32px;
            }

            .cta-title {
                font-size: 28px;
            }

            .cta-subtitle {
                font-size: 16px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-btn {
                width: 100%;
                justify-content: center;
            }

            .swiper-button-next,
            .swiper-button-prev{
                display: flex;
                background-color: transparent;
                color: var(--brand-primary) !important;
            }
            .swiper-button-next:hover,
            .swiper-button-prev:hover{
                background-color: var(--brand-primary);
            }
            /* Fix mobile performance */
            .product-card {
                will-change: transform;
                backface-visibility: hidden;
                transform: translateZ(0);
            }

            .product-card:hover {
                transform: translateY(-5px) translateZ(0);
            }
        }

        @media (max-width: 575px) {
            .section-title {
                font-size: 26px;
            }

            .product-image-wrapper {
                height: 240px;
                padding: 20px;
            }

            .product-info {
                padding: 25px;
            }

            .product-name {
                font-size: 18px;
            }

            .product-description {
                font-size: 13px;
                margin-bottom: 20px;
            }

            .product-btn {
                padding: 14px 28px;
                font-size: 15px;
            }

            .cta-title {
                font-size: 24px;
            }
        }

.footer {
            background: linear-gradient(135deg, var(--brand-primary) 0%, rgb(0, 115, 182) 100%);
            color: white;
            padding: 60px 0 0;
            margin-top: 80px;
            border-top-left-radius: 50px;
            border-top-right-radius: 50px;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .footer::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(253, 173, 26, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .footer .container {
            position: relative;
            z-index: 1;
        }

        .footer-brand {
            margin-bottom: 30px;
        }

        .footer-brand .icon {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: 20px;
            display: inline-block;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .footer-brand .icon:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .footer-brand .icon img {
            width: 180px;
            height: auto;
            filter: brightness(0) invert(1);
        }

        .footer-brand p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.8;
            margin-top: 20px;
        }

        .footer h4 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 25px;
            color: var(--white);
            position: relative;
            padding-bottom: 12px;
        }

        .footer h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            width: 60px;
            height: 3px;
            background: var(--brand-secondary);
            border-radius: 2px;
        }
        :dir(ltr) .footer h4::after{
            left: 0;

        }
        :dir(rtl) .footer h4::after{
            right: 0;

        }

        .footer-contact p,
        .contact-info p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .footer-contact p:hover,
        .contact-info p:hover {
            color: var(--brand-secondary);
            transform: translateX(-5px);
        }

        .footer-contact i,
        .contact-info i {
            font-size: 18px;
            color: var(--brand-secondary);
            flex-shrink: 0;
        }

        .footer-contact a,
        .contact-info a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact a:hover,
        .contact-info a:hover {
            color: var(--brand-secondary);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--brand-secondary);
            transform: translateX(-5px);
        }

        .footer-links a i {
            font-size: 8px;
            color: var(--brand-secondary);
        }

        .social-links h4 {
            margin-top: 0;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 20px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
        }

        .social-icon:hover {
            background: var(--brand-secondary);
            border-color: var(--brand-secondary);
            color: var(--brand-primary);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(253, 173, 26, 0.3);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 50px;
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            font-size: 15px;
            color: var(--text-lighter);
            background: rgba(0, 0, 0, 0.1);
        }

        .footer-bottom a {
            color: var(--brand-secondary);
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--white);
            text-decoration: underline;
        }

        .footer-section {
            margin-bottom: 30px;
        }

        /* Quick Links Styling */
        .quick-links-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .footer {
                padding: 50px 0 0;
                margin-top: 60px;
                border-top-left-radius: 40px;
                border-top-right-radius: 40px;
            }

            .footer h4 {
                font-size: 20px;
            }

            .footer-brand .icon img {
                width: 160px;
            }
        }

        @media (max-width: 767px) {
            .footer {
                padding: 40px 0 0;
                margin-top: 50px;
                border-top-left-radius: 30px;
                border-top-right-radius: 30px;
                text-align: center;
            }

            :dir(rtl) .footer h4::after{
                right: 50%;
                transform: translateX(50%);
            }
            :dir(ltr) .footer h4::after{
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-brand .icon {
                padding: 20px;
            }

            .footer-brand .icon img {
                width: 140px;
            }

            .footer-contact p,
            .contact-info p {
                justify-content: center;
            }

            .social-icons {
                justify-content: center;
            }

            .footer-section {
                margin-bottom: 40px;
            }

            .footer::before {
                right: -400px;
            }
        }

        @media (max-width: 575px) {
            .footer {
                border-top-left-radius: 25px;
                border-top-right-radius: 25px;
            }

            .footer h4 {
                font-size: 18px;
            }

            .footer-brand .icon img {
                width: 120px;
            }

            .footer-contact p,
            .contact-info p {
                font-size: 14px;
            }

            .social-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }












/* Partners Section Container */
        .partners-section {
            width: 100%;
            max-width: 100vw;
            overflow: hidden;
            background: #ffffff;
            padding: 80px 0;
            position: relative;
            direction: ltr; /* Force LTR for the animation container */
        }

        /* Section Header */
        .partners-header {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 20px;
            direction: inherit; /* Inherit parent page direction for text */
        }

        .partners-header h2 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .partners-header p {
            font-size: clamp(16px, 2vw, 20px);
            color: #666666;
            font-weight: 400;
            line-height: 1.6;
        }

        /* Marquee Container */
        .marquee-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            margin-bottom: 40px;
            direction: ltr; /* Force LTR */
        }

        .marquee-wrapper:last-child {
            margin-bottom: 0;
        }

        /* Fade Effect on Edges */
        .marquee-wrapper::before,
        .marquee-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 150px;
            z-index: 2;
            pointer-events: none;
        }

        .marquee-wrapper::before {
            left: 0;
            background: linear-gradient(to right, #ffffff, transparent);
        }

        .marquee-wrapper::after {
            right: 0;
            background: linear-gradient(to left, #ffffff, transparent);
        }

        /* Marquee Track */
        .marquee-track {
            display: flex;
            width: fit-content;
            gap: 0;
            direction: ltr; /* Force LTR */
        }

        /* Animation: Right to Left */
        .marquee-wrapper.rtl .marquee-track {
            animation: scroll-rtl 30s linear infinite;
        }

        /* Animation: Left to Right */
        .marquee-wrapper.ltr .marquee-track {
            animation: scroll-ltr 30s linear infinite;
        }

        @keyframes scroll-rtl {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-33.333%);
            }
        }

        @keyframes scroll-ltr {
            0% {
                transform: translateX(-33.333%);
            }
            100% {
                transform: translateX(0);
            }
        }

        /* Logo Item */
        .partner-item {
            flex-shrink: 0;
            width: 200px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            margin: 0 15px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            direction: ltr; /* Force LTR */
        }

        .partner-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
            border-color: #d1d5db;
        }

        .partner-item img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.6);
            transition: filter 0.3s ease;
        }

        .partner-item:hover img {
            filter: grayscale(0%) opacity(1);
        }

        /* Pause Animation on Hover */
        .marquee-wrapper:hover .marquee-track {
            animation-play-state: paused;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .partners-section {
                padding: 60px 0;
            }

            .partners-header {
                margin-bottom: 50px;
            }

            .partner-item {
                width: 180px;
                height: 110px;
                padding: 25px;
            }

            .partner-item img {
                height: 55px;
            }

            .marquee-wrapper.rtl .marquee-track,
            .marquee-wrapper.ltr .marquee-track {
                animation-duration: 25s;
            }
        }

        @media (max-width: 768px) {
            .partners-section {
                padding: 50px 0;
            }

            .partners-header {
                margin-bottom: 40px;
            }

            .marquee-wrapper {
                margin-bottom: 30px;
            }

            .partner-item {
                width: 160px;
                height: 100px;
                padding: 20px;
                margin: 0 12px;
            }

            .partner-item img {
                height: 50px;
            }

            .marquee-wrapper::before,
            .marquee-wrapper::after {
                width: 80px;
            }

            .marquee-wrapper.rtl .marquee-track,
            .marquee-wrapper.ltr .marquee-track {
                animation-duration: 20s;
            }
        }

        @media (max-width: 480px) {
            .partners-section {
                padding: 40px 0;
            }

            .partners-header {
                margin-bottom: 35px;
            }

            .marquee-wrapper {
                margin-bottom: 25px;
            }

            .partner-item {
                width: 140px;
                height: 90px;
                padding: 18px;
                margin: 0 10px;
            }

            .partner-item img {
                height: 45px;
            }

            .marquee-wrapper::before,
            .marquee-wrapper::after {
                width: 60px;
            }

            .marquee-wrapper.rtl .marquee-track,
            .marquee-wrapper.ltr .marquee-track {
                animation-duration: 18s;
            }
        }

        /* Ensure smooth rendering */
        .marquee-track {
            backface-visibility: hidden;
            perspective: 1000px;
            will-change: transform;
        }        


