/* Import Google Fonts - Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&family=Noto+Kufi+Arabic:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Root Variables */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-2: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    --gradient-3: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.9) 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Prevent text overflow globally */
h1, h2, h3, h4, h5, h6, p, span, a, li, div {
    word-wrap: normal;
    overflow-wrap: normal;
    writing-mode: horizontal-tb !important;
}

/* Mobile touch optimization */
@media (hover: none) and (pointer: coarse) {
    button, 
    a, 
    .btn, 
    .nav-menu a,
    .mobile-menu-btn {
        -webkit-tap-highlight-color: rgba(59, 130, 246, 0.2);
        touch-action: manipulation;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', 'Poppins', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(59, 130, 246, 0.03) 35px, rgba(59, 130, 246, 0.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(96, 165, 250, 0.03) 35px, rgba(96, 165, 250, 0.03) 70px),
        linear-gradient(180deg, #f0f7ff 0%, #e0f2fe 50%, #f0f7ff 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-rendering: optimizeLegibility;
    font-weight: 600;
}

[dir="rtl"] {
    font-family: 'Tajawal', 'Noto Kufi Arabic', sans-serif;
    letter-spacing: 0.01em;
}

[dir="ltr"] {
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    letter-spacing: -0.01em;
}

/* Phone Numbers - Always LTR */
.phone-number,
[dir="rtl"] a[href^="tel:"],
[dir="rtl"] .contact-list span:has(+ i.fa-phone),
.ltr-text {
    direction: ltr;
    unicode-bidi: embed;
    display: inline-block;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Mobile Container Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

.hidden {
    display: none !important;
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 20px;
    z-index: 1001;
}

/* في العربي: زر اللغة على اليسار */
[dir="rtl"] .language-toggle {
    left: 20px;
    right: auto;
}

/* في الإنجليزي: زر اللغة على اليمين */
[dir="ltr"] .language-toggle {
    right: 20px;
    left: auto;
}

/* Mobile: Hide floating language toggle - it's inside the menu */
@media (max-width: 1280px) {
    .language-toggle {
        display: none !important;
    }
    
    /* Language selector inside mobile menu */
    .mobile-language-selector {
        display: flex !important;
        flex-direction: column;
        padding: 15px 20px;
        border-top: 2px solid rgba(59, 130, 246, 0.15);
        margin-top: 15px;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(96, 165, 250, 0.05));
    }
    
    .mobile-language-selector .lang-title {
        font-size: 14px;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-language-selector .lang-title i {
        font-size: 16px;
    }
    
    .mobile-language-selector .lang-options {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .mobile-language-selector .lang-option-btn {
        flex: 1;
        min-width: 80px;
        padding: 10px 15px;
        border: 2px solid rgba(59, 130, 246, 0.2);
        border-radius: 10px;
        background: var(--white);
        color: var(--text-dark);
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
    }
    
    .mobile-language-selector .lang-option-btn:hover,
    .mobile-language-selector .lang-option-btn.active {
        background: var(--gradient-1);
        color: var(--white);
        border-color: var(--primary-color);
    }
    
    /* Remove border from language selector li */
    .nav-menu li.mobile-language-selector {
        border-bottom: none;
        padding: 0;
    }
}

/* Desktop: Hide mobile language selector */
@media (min-width: 1281px) {
    .mobile-language-selector {
        display: none !important;
    }
}

.language-toggle .lang-btn {
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    padding: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.language-toggle .lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.language-toggle .lang-btn i {
    font-size: 20px;
}

/* Language Dropdown */
.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

[dir="rtl"] .language-dropdown {
    left: 0;
    right: auto;
}

[dir="ltr"] .language-dropdown {
    right: 0;
    left: auto;
}

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

.language-dropdown .lang-option {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.language-dropdown .lang-option:last-child {
    border-bottom: none;
}

.language-dropdown .lang-option:hover {
    background: var(--primary-color);
    color: var(--white);
}

.language-dropdown .lang-option span {
    font-weight: 600;
    font-size: 14px;
}

/* Navigation */
.navbar {
    background: 
        repeating-linear-gradient(45deg, rgba(59, 130, 246, 0.02) 0px, rgba(59, 130, 246, 0.02) 2px, transparent 2px, transparent 12px),
        repeating-linear-gradient(-45deg, rgba(96, 165, 250, 0.02) 0px, rgba(96, 165, 250, 0.02) 2px, transparent 2px, transparent 12px),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #3b82f6 0%, #60a5fa 50%, #3b82f6 100%) 1;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: 
        repeating-linear-gradient(45deg, rgba(59, 130, 246, 0.03) 0px, rgba(59, 130, 246, 0.03) 2px, transparent 2px, transparent 10px),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 12px 0;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* الترتيب الطبيعي يعمل بشكل صحيح مع RTL و LTR */

.logo {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    padding: 15px;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.15);
    border: 3px solid #3b82f6;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25);
}

.logo-text h2 {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.3;
}

.logo-text p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    font-weight: 600;
}

/* Logo responsive adjustments */
@media (max-width: 1400px) and (min-width: 1281px) {
    .logo-text h2 {
        font-size: 20px;
    }
    
    .logo-text p {
        font-size: 12px;
    }
    
    .logo-img {
        width: 90px;
        height: 90px;
    }
    
    .nav-menu a {
        padding: 10px 15px;
        font-size: 15px;
    }
}

.mobile-menu-btn {
    display: none;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.2);
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.15));
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

/* القائمة تتبع الاتجاه الطبيعي للغة */

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 20px;
    border-radius: 10px;
    white-space: nowrap;
    writing-mode: horizontal-tb !important;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(96, 165, 250, 0.08));
    transform: translateY(-2px);
}

.nav-menu a.active {
    color: var(--white);
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    background: 
        repeating-linear-gradient(45deg, rgba(59, 130, 246, 0.02) 0px, rgba(59, 130, 246, 0.02) 2px, transparent 2px, transparent 10px),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.2);
    border-radius: 15px;
    border: 3px solid #3b82f6;
    padding: 15px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.9);
    transition: all 0.4s ease;
    list-style: none;
    z-index: 100;
}

/* في العربي: القائمة المنسدلة تظهر من اليسار */
[dir="rtl"] .dropdown-menu {
    left: 0;
    right: auto;
}

/* في الإنجليزي: القائمة المنسدلة تظهر من اليمين */
[dir="ltr"] .dropdown-menu {
    right: 0;
    left: auto;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px) scale(1);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    margin: 4px 10px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.08));
    color: var(--primary-color);
    transform: translateX(5px);
}

[dir="rtl"] .dropdown-menu a:hover {
    transform: translateX(-5px);
}

/* Hero Section with Slider */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide.next {
    animation: slideInFromRight 1.5s ease-out forwards;
}

.hero-slide.prev {
    animation: slideInFromLeft 1.5s ease-out forwards;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%) scale(1.1);
        opacity: 0;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%) scale(1.1);
        opacity: 0;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translateX(0);
    }
    50% {
        transform: scale(1.15) translateX(-20px);
    }
    100% {
        transform: scale(1.1) translateX(20px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 70%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 4;
    pointer-events: none;
}

.slider-arrow {
    pointer-events: all;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slider-arrow:active {
    transform: scale(0.95);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    transition: all 0.4s ease;
}

.dot.active {
    background: rgba(255, 255, 255, 0.8);
    border-color: white;
    width: 16px;
    height: 16px;
}

.dot.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

/* Progress bar inside dots */
.dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        rgba(255, 255, 255, 0.9) 0deg,
        rgba(255, 255, 255, 0.9) 0deg,
        transparent 0deg
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dot.active .dot-progress {
    opacity: 1;
    animation: progressRotate 5s linear forwards;
}

@keyframes progressRotate {
    0% {
        background: conic-gradient(
            rgba(255, 255, 255, 0.9) 0deg,
            transparent 0deg
        );
    }
    100% {
        background: conic-gradient(
            rgba(255, 255, 255, 0.9) 360deg,
            transparent 360deg
        );
    }
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: calc(100vh - 150px);
    padding-bottom: 40px;
}

.hero-text {
    display: none;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    margin-top: 0;
    animation: fadeInUp 1s ease-out;
    text-align: center;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.brand-name {
    background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
    justify-content: center;
    position: relative;
    z-index: 1;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
}

@media (max-width: 768px) {
    .btn {
        padding: 14px 30px;
        font-size: 15px;
        gap: 8px;
        white-space: normal;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 13px 25px;
        font-size: 14px;
        gap: 7px;
    }
}

.btn-primary {
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.6);
    background: #f0f9ff;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 3px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    font-weight: 700;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
}

.hero-certifications {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
    order: 3;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.cert-badge {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: transparent;
    padding: 0;
    border-radius: 15px;
    transition: var(--transition);
    border: none;
}

.cert-badge:hover {
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 10px 20px rgba(59, 130, 246, 0.4));
}

/* ISO Banner - Single Image */
.iso-banner {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    cursor: pointer;
}

.iso-banner:hover {
    transform: translateY(-5px) scale(1.05);
    filter: drop-shadow(0 10px 25px rgba(59, 130, 246, 0.4));
}

.iso-banner:active {
    transform: translateY(-2px) scale(1.02);
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 32px;
    animation: bounce 2s infinite;
    z-index: 5;
    background: rgba(30, 58, 138, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -15px);
    }
    60% {
        transform: translate(-50%, -10px);
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 30px 20px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 75px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-item p {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 44px;
    font-weight: 900;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    writing-mode: horizontal-tb !important;
}

.section-subtitle {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 20px;
    writing-mode: horizontal-tb !important;
}

.title-underline {
    width: 100px;
    height: 5px;
    background: 
        repeating-linear-gradient(90deg, #3b82f6 0px, #3b82f6 10px, #60a5fa 10px, #60a5fa 20px);
    margin: 0 auto;
    border-radius: 3px;
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.3);
    position: relative;
}

.title-underline::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.title-underline::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #60a5fa;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(96, 165, 250, 0.08) 0%, transparent 30%),
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(59, 130, 246, 0.02) 40px, rgba(59, 130, 246, 0.02) 80px),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}


.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 30px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

.about-text .mission-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-text .mission-list li {
    position: relative;
    padding: 12px 0 12px 35px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.about-text .mission-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--secondary-color);
    font-size: 18px;
}

[dir="rtl"] .about-text .mission-list li {
    padding: 12px 35px 12px 0;
}

[dir="rtl"] .about-text .mission-list li:before {
    left: auto;
    right: 0;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 600px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.1);
}

.about-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-3);
    padding: 30px;
    transform: translateY(100%);
    transition: var(--transition);
}

.about-image:hover .about-overlay {
    transform: translateY(0);
}

.about-overlay h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(96, 165, 250, 0.1) 0%, transparent 40%),
        repeating-linear-gradient(135deg, transparent, transparent 50px, rgba(59, 130, 246, 0.03) 50px, rgba(59, 130, 246, 0.03) 100px),
        linear-gradient(135deg, #e0f2fe 0%, #f0f7ff 50%, #dbeafe 100%);
    position: relative;
}


.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    background: 
        repeating-linear-gradient(45deg, rgba(59, 130, 246, 0.02) 0px, rgba(59, 130, 246, 0.02) 1px, transparent 1px, transparent 15px),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.3);
    background: 
        repeating-linear-gradient(45deg, rgba(59, 130, 246, 0.03) 0px, rgba(59, 130, 246, 0.03) 1px, transparent 1px, transparent 15px),
        linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.why-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.4) 0%, transparent 70%),
        linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 20px;
    font-size: 60px;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border: 2px solid rgba(96, 165, 250, 0.3);
}

.why-card:hover .why-icon {
    transform: rotateY(360deg) scale(1.1);
    background: 
        radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.5) 0%, transparent 70%),
        linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
    border-color: rgba(96, 165, 250, 0.6);
}

.why-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 70% 80%, rgba(96, 165, 250, 0.06) 0%, transparent 35%),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(59, 130, 246, 0.02) 60px, rgba(59, 130, 246, 0.02) 120px),
        linear-gradient(180deg, #ffffff 0%, #f0f9ff 50%, #ffffff 100%);
    position: relative;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    background: 
        repeating-linear-gradient(90deg, rgba(59, 130, 246, 0.02) 0px, rgba(59, 130, 246, 0.02) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(0deg, rgba(96, 165, 250, 0.02) 0px, rgba(96, 165, 250, 0.02) 1px, transparent 1px, transparent 20px),
        linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.2);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.service-overlay i {
    font-size: 90px;
    color: var(--white);
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* Services Description */
.services-description {
    margin-top: 60px;
    padding: 50px;
    background: 
        repeating-linear-gradient(45deg, rgba(59, 130, 246, 0.02) 0px, rgba(59, 130, 246, 0.02) 2px, transparent 2px, transparent 15px),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.services-intro {
    text-align: center;
    margin-bottom: 50px;
}

.services-intro h3 {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.services-intro p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

/* Service Icons Grid */
.service-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-icon-item {
    text-align: center;
    padding: 30px 20px;
    background: 
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid rgba(59, 130, 246, 0.08);
}

.service-icon-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
    border-color: var(--secondary-color);
    background: 
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.service-icon-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.service-icon-badge i {
    font-size: 60px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.service-icon-item:hover .service-icon-badge i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gradient-1);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

[dir="rtl"] .service-badge {
    right: auto;
    left: -10px;
}

.service-icon-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Sectors Section */
.sectors-section {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 85% 75%, rgba(96, 165, 250, 0.08) 0%, transparent 35%),
        repeating-linear-gradient(60deg, transparent, transparent 45px, rgba(59, 130, 246, 0.03) 45px, rgba(59, 130, 246, 0.03) 90px),
        linear-gradient(135deg, #dbeafe 0%, #e0f2fe 50%, #f0f7ff 100%);
    position: relative;
}

/* Sectors Introduction */
.sectors-intro {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 50px;
    padding: 40px;
    background: 
        repeating-linear-gradient(45deg, rgba(59, 130, 246, 0.02) 0px, rgba(59, 130, 246, 0.02) 2px, transparent 2px, transparent 15px),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.sectors-intro p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 0;
    text-align: justify;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.sector-card {
    background: 
        repeating-linear-gradient(45deg, rgba(59, 130, 246, 0.015) 0px, rgba(59, 130, 246, 0.015) 2px, transparent 2px, transparent 12px),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid rgba(59, 130, 246, 0.08);
}

.sector-card:hover {
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.35);
    border-color: rgba(96, 165, 250, 0.5);
}

.sector-card i {
    font-size: 90px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.sector-card:hover i {
    color: var(--white);
    transform: scale(1.2);
}

.sector-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
}

.sector-card:hover h3 {
    color: var(--white);
}

.sectors-description {
    margin-top: 60px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sectors-description p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.sectors-description p:last-child {
    margin-bottom: 0;
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 25% 35%, rgba(59, 130, 246, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 75% 65%, rgba(96, 165, 250, 0.05) 0%, transparent 30%),
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(59, 130, 246, 0.015) 50px, rgba(59, 130, 246, 0.015) 100px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(96, 165, 250, 0.015) 50px, rgba(96, 165, 250, 0.015) 100px),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
}


/* Clients Grid - 9 circular logos */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.client-card:hover {
    transform: translateY(-8px);
}

.client-logo-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border: 3px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    overflow: hidden;
}

.client-card:hover .client-logo-circle {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.25);
}

.client-logo-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.client-card:hover .client-logo-circle img {
    transform: scale(1.1);
}

.client-name {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    transition: var(--transition);
}

.client-card:hover .client-name {
    color: var(--primary-color);
}

/* Keep old styles for backwards compatibility */
.clients-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: 
        repeating-linear-gradient(45deg, rgba(59, 130, 246, 0.02) 0px, rgba(59, 130, 246, 0.02) 1px, transparent 1px, transparent 10px),
        linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    border-radius: 15px;
    transition: var(--transition);
    height: 180px;
    border: 2px solid rgba(59, 130, 246, 0.06);
}

.client-logo:hover {
    background: 
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.15);
}

.client-logo img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* More Clients Button */
.more-clients-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.btn-more-clients {
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.btn-more-clients:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, var(--primary-color));
}

.btn-more-clients i {
    font-size: 22px;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.gallery-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.4s ease;
}

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

.gallery-close {
    position: absolute;
    top: -50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

[dir="rtl"] .gallery-close {
    left: 0;
}

[dir="ltr"] .gallery-close {
    right: 0;
}

.gallery-close:hover {
    background: rgba(239, 68, 68, 0.9);
    border-color: white;
    transform: rotate(90deg);
}

.gallery-header {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-header h3 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.gallery-image-wrapper {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    display: block;
}

.gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.gallery-nav {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.gallery-nav:active {
    transform: scale(0.95);
}

/* Reverse arrows for RTL */
[dir="rtl"] .gallery-prev i {
    transform: scaleX(-1);
}

[dir="rtl"] .gallery-next i {
    transform: scaleX(-1);
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    max-height: 120px;
    overflow-y: auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 8px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumb:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.5);
}

.gallery-thumb.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ISO PDF Gallery Styles */
.iso-pdf-modal .pdf-viewer-wrapper {
    flex: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    height: 70vh;
    border: 3px solid rgba(59, 130, 246, 0.3);
}

.iso-pdf-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

.iso-pdf-modal .gallery-counter {
    background: rgba(30, 58, 138, 0.9);
    backdrop-filter: blur(10px);
}

.pdf-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    z-index: 10;
    gap: 15px;
}

.pdf-loading i {
    font-size: 48px;
    color: var(--primary-color);
}

.pdf-loading p {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.pdf-actions {
    display: flex;
    justify-content: center;
    padding: 15px;
}

.btn-download-pdf {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.btn-download-pdf:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

.btn-download-pdf:active {
    transform: translateY(0);
}

.btn-download-pdf i {
    font-size: 18px;
}

.pdf-names-list {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    max-height: 150px;
    overflow-y: auto;
}

.pdf-names-list::-webkit-scrollbar {
    height: 8px;
}

.pdf-names-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.pdf-names-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.pdf-name-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pdf-name-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.pdf-name-item.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.pdf-name-item i {
    font-size: 16px;
    color: #ef4444;
}

.pdf-name-item.active i {
    color: white;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 10% 15%, rgba(59, 130, 246, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 85%, rgba(96, 165, 250, 0.12) 0%, transparent 40%),
        repeating-linear-gradient(-60deg, transparent, transparent 55px, rgba(59, 130, 246, 0.03) 55px, rgba(59, 130, 246, 0.03) 110px),
        linear-gradient(135deg, #dbeafe 0%, #e0f2fe 30%, #f0f7ff 70%, #dbeafe 100%);
    position: relative;
}


.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 85px;
    height: 85px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.35) 0%, transparent 70%),
        linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 38px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
    border: 2px solid rgba(96, 165, 250, 0.2);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
    border-color: rgba(96, 165, 250, 0.5);
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-details p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form-wrapper {
    background: 
        repeating-linear-gradient(45deg, rgba(59, 130, 246, 0.02) 0px, rgba(59, 130, 246, 0.02) 2px, transparent 2px, transparent 18px),
        repeating-linear-gradient(-45deg, rgba(96, 165, 250, 0.02) 0px, rgba(96, 165, 250, 0.02) 2px, transparent 2px, transparent 18px),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 50px 18px 20px;
    border: 2px solid rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: 
        repeating-linear-gradient(90deg, rgba(59, 130, 246, 0.01) 0px, rgba(59, 130, 246, 0.01) 1px, transparent 1px, transparent 20px),
        linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
}

[dir="rtl"] .form-group input,
[dir="rtl"] .form-group textarea {
    padding: 18px 20px 18px 50px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: 
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.15);
}

.form-group i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    transition: var(--transition);
}

[dir="rtl"] .form-group i {
    right: auto;
    left: 20px;
}

.form-group textarea {
    resize: vertical;
}

.form-group:has(textarea) i {
    top: 25px;
    transform: none;
}

.form-group input:focus + i,
.form-group textarea:focus + i {
    color: var(--secondary-color);
}

.contact-form button {
    background: 
        radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.3) 0%, transparent 70%),
        linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    color: var(--white);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-form button:hover::before {
    width: 300px;
    height: 300px;
}

.contact-form button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.5);
}

/* Footer */
.footer {
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(96, 165, 250, 0.15) 0%, transparent 40%),
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(59, 130, 246, 0.05) 60px, rgba(59, 130, 246, 0.05) 120px),
        linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}


.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    background: var(--white);
    padding: 15px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-logo h3 {
    font-size: 22px;
    margin: 0;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: 
        repeating-linear-gradient(45deg, rgba(59, 130, 246, 0.15) 0px, rgba(59, 130, 246, 0.15) 1px, rgba(255, 255, 255, 0.1) 1px, rgba(255, 255, 255, 0.1) 8px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.social-links a:hover {
    background: 
        radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.3) 0%, transparent 70%),
        linear-gradient(135deg, #3b82f6, #60a5fa);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    border-color: rgba(96, 165, 250, 0.5);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    display: inline-block;
}

.footer-section ul li a:hover {
    opacity: 1;
    transform: translateX(-5px);
}

[dir="rtl"] .footer-section ul li a:hover {
    transform: translateX(5px);
}

.contact-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-list i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 2px solid rgba(59, 130, 246, 0.2);
    padding: 30px 0;
    text-align: center;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(59, 130, 246, 0.03) 40px, rgba(59, 130, 246, 0.03) 80px),
        linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

[dir="rtl"] .scroll-top {
    right: auto;
    left: 30px;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

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

/* Responsive Design */
@media (max-width: 1280px) {
    .mobile-menu-btn {
        display: block;
    }
    
    /* Mobile Navigation - Fixed Position */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        flex-direction: column;
        padding: 70px 0 25px 0;
        box-shadow: 4px 0 25px rgba(0, 0, 0, 0.2);
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1001;
        margin: 0;
        list-style: none;
        display: flex;
    }
    
    [dir="rtl"] .nav-menu {
        left: auto;
        right: -100%;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 25px rgba(0, 0, 0, 0.2);
    }
    
    [dir="ltr"] .nav-menu.active {
        left: 0;
    }
    
    [dir="rtl"] .nav-menu.active {
        right: 0;
    }
    
    /* Logo adjustments in mobile menu mode */
    .logo-text h2 {
        font-size: 22px;
    }
    
    .logo-text p {
        font-size: 12px;
    }
    
    .logo-img {
        width: 80px;
        height: 80px;
        padding: 12px;
    }

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

    .hero-description {
        font-size: 18px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 400px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
    
    /* Hero Content */
    .hero-content {
        padding-top: 50px;
        padding-bottom: 25px;
        min-height: calc(100vh - 120px);
    }
    
    .hero-text {
        padding: 25px 20px;
        border-radius: 18px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 20px;
        word-wrap: break-word;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .hero-certifications {
        padding: 18px 20px;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    /* Slider Controls on Mobile */
    .slider-controls {
        padding: 0 15px;
    }
    
    .slider-arrow {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .slider-dots {
        bottom: 75px;
        gap: 8px;
    }
    
    .dot {
        width: 9px;
        height: 9px;
    }
    
    .dot.active {
        width: 11px;
        height: 11px;
    }
    
    .cert-badge {
        width: 70px;
        height: 70px;
    }
    
    .iso-banner {
        max-height: 80px;
    }
    
    .scroll-indicator {
        bottom: 12px;
        font-size: 22px;
        width: 38px;
        height: 38px;
    }
    
    .hero-buttons {
        gap: 12px;
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }

    /* Section Titles */
    .section-title {
        font-size: 30px;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .section-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-icon {
        font-size: 60px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-item p {
        font-size: 14px;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 16px;
        line-height: 1.3;
    }
    
    .service-content p {
        font-size: 12px;
        line-height: 1.6;
    }

    /* Why Grid */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-card {
        padding: 25px 15px;
    }
    
    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .why-card h3 {
        font-size: 16px;
    }
    
    .why-card p {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .why-icon {
        width: 100px;
        height: 100px;
        font-size: 50px;
    }
    
    .why-card h3 {
        font-size: 20px;
        line-height: 1.4;
    }
    
    .why-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Sectors Grid */
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .sector-card {
        padding: 30px 20px;
    }
    
    .sector-card i {
        font-size: 70px;
    }
    
    .sector-card h3 {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .sectors-description p {
        font-size: 16px;
        line-height: 1.7;
    }

    /* Clients Grid */
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .client-logo-circle {
        width: 130px;
        height: 130px;
        padding: 15px;
    }
    
    .client-name {
        font-size: 14px;
    }
    
    /* Clients Slider (legacy) */
    .clients-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .client-logo {
        height: 150px;
        padding: 30px;
    }

    /* About Section */
    .about-content {
        gap: 40px;
    }
    
    .about-text h3 {
        font-size: 24px;
        line-height: 1.4;
    }
    
    .about-text p {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .about-image {
        height: 350px;
    }

    /* Contact Section */
    .contact-content {
        gap: 40px;
    }
    
    .contact-item {
        gap: 15px;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .contact-details h3 {
        font-size: 18px;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 15px 45px 15px 18px;
        font-size: 14px;
    }
    
    [dir="rtl"] .form-group input,
    [dir="rtl"] .form-group textarea {
        padding: 15px 18px 15px 45px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-section h3 {
        font-size: 18px;
    }
    
    .footer-section p {
        font-size: 14px;
    }
    
    .footer-logo img {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 12px;
    }
    
    /* Hero Section */
    .hero-content {
        padding-top: 35px;
        padding-bottom: 18px;
    }
    
    .hero-text {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .hero-title {
        font-size: 22px;
        line-height: 1.35;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-description {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 20px;
        word-wrap: break-word;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 13px 25px;
        font-size: 14px;
    }
    
    .cert-badge {
        width: 55px;
        height: 55px;
    }
    
    .iso-banner {
        max-height: 60px;
    }
    
    .hero-certifications {
        gap: 8px;
        padding: 12px 15px;
        border-radius: 18px;
    }
    
    /* Slider Controls */
    .slider-controls {
        padding: 0 10px;
    }
    
    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .slider-dots {
        bottom: 65px;
        gap: 6px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 10px;
        height: 10px;
    }
    
    .scroll-indicator {
        bottom: 8px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    /* Section Titles */
    .section-title {
        font-size: 24px;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .section-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .title-underline {
        width: 80px;
        height: 4px;
    }
    
    /* Clients Grid */
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .client-logo-circle {
        width: 90px;
        height: 90px;
        padding: 10px;
        border-width: 2px;
    }
    
    .client-name {
        font-size: 11px;
        margin-top: 8px;
    }
    
    /* Gallery Modal */
    .btn-more-clients {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .btn-more-clients i {
        font-size: 18px;
    }
    
    .gallery-modal-content {
        width: 98%;
        max-height: 95vh;
    }
    
    .gallery-header {
        margin-bottom: 15px;
    }
    
    .gallery-header h3 {
        font-size: 20px;
    }
    
    .gallery-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .gallery-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-image-wrapper img {
        max-height: 50vh;
    }
    
    .gallery-counter {
        font-size: 14px;
        padding: 8px 20px;
        bottom: 15px;
    }
    
    .gallery-close {
        width: 40px;
        height: 40px;
        font-size: 18px;
        top: 5px;
    }
    
    [dir="rtl"] .gallery-close {
        left: 5px;
    }
    
    [dir="ltr"] .gallery-close {
        right: 5px;
    }
    
    .gallery-thumbnails {
        gap: 6px;
        max-height: 90px;
        padding: 8px;
    }
    
    .gallery-thumb {
        width: 60px;
        height: 60px;
    }
    
    /* ISO PDF Modal */
    .iso-pdf-modal .pdf-viewer-wrapper {
        height: 45vh;
    }
    
    .pdf-names-list {
        gap: 6px;
        max-height: 100px;
        padding: 10px;
    }
    
    .pdf-name-item {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .pdf-name-item i {
        font-size: 12px;
    }
    
    .pdf-name-item span {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .btn-download-pdf {
        font-size: 12px;
        padding: 8px 20px;
    }
    
    .btn-download-pdf i {
        font-size: 14px;
    }
    
    .pdf-loading i {
        font-size: 36px;
    }
    
    .pdf-loading p {
        font-size: 14px;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-item {
        padding: 20px 12px;
    }
    
    .stat-icon {
        font-size: 35px;
        margin-bottom: 8px;
    }
    
    .stat-number {
        font-size: 26px;
        margin-bottom: 6px;
    }
    
    .stat-item p {
        font-size: 11px;
    }

    /* Service Cards */
    .services-grid {
        gap: 12px;
    }
    
    .service-image {
        height: 140px;
    }
    
    .service-content {
        padding: 12px;
    }
    
    .service-content h3 {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .service-content p {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
    
    .service-overlay i {
        font-size: 40px;
    }
    
    .service-card .btn {
        padding: 8px 15px;
        font-size: 11px;
    }

    /* Why Cards */
    .why-card {
        padding: 20px 12px;
    }
    
    .why-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .why-card h3 {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .why-card p {
        font-size: 11px;
        line-height: 1.5;
    }

    /* Sectors Grid */
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .sector-card {
        padding: 15px 10px;
    }
    
    .sector-card i {
        font-size: 35px;
        margin-bottom: 8px;
    }
    
    .sector-card h3 {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .sector-card p {
        font-size: 11px;
        line-height: 1.5;
    }
    
    .sectors-description {
        margin-top: 40px;
    }
    
    .sectors-description p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    /* Clients Grid */
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .client-logo-circle {
        width: 110px;
        height: 110px;
        padding: 12px;
    }
    
    .client-name {
        font-size: 13px;
        margin-top: 10px;
    }
    
    /* Gallery Modal */
    .btn-more-clients {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .gallery-modal-content {
        width: 95%;
    }
    
    .gallery-header h3 {
        font-size: 24px;
    }
    
    .gallery-container {
        gap: 10px;
    }
    
    .gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .gallery-close {
        width: 45px;
        height: 45px;
        font-size: 20px;
        top: -45px;
    }
    
    .gallery-thumbnails {
        gap: 8px;
        max-height: 100px;
    }
    
    .gallery-thumb {
        width: 70px;
        height: 70px;
    }
    
    /* ISO PDF Modal */
    .iso-pdf-modal .pdf-viewer-wrapper {
        height: 55vh;
    }
    
    .pdf-names-list {
        gap: 8px;
        max-height: 120px;
        padding: 12px;
    }
    
    .pdf-name-item {
        font-size: 12px;
        padding: 8px 15px;
    }
    
    .pdf-name-item i {
        font-size: 14px;
    }
    
    .btn-download-pdf {
        font-size: 14px;
        padding: 10px 25px;
    }
    
    .btn-download-pdf i {
        font-size: 16px;
    }
    
    /* Clients Slider (legacy) */
    .clients-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .client-logo {
        height: 140px;
        padding: 25px;
    }
    
    .client-logo img {
        max-height: 100px;
    }

    /* About Section */
    .about-content {
        gap: 30px;
    }
    
    .about-text h3 {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 15px;
        margin-top: 25px;
    }
    
    .about-text p {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 15px;
    }
    
    .about-image {
        height: 300px;
    }
    
    .about-overlay {
        padding: 20px;
    }
    
    .about-overlay h3 {
        font-size: 18px;
    }

    /* Contact Section */
    .contact-content {
        gap: 30px;
    }
    
    .contact-item {
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin: 0 auto;
    }
    
    .contact-details h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .contact-details p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .contact-form-wrapper {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 13px 40px 13px 15px;
        font-size: 13px;
        border-radius: 10px;
    }
    
    [dir="rtl"] .form-group input,
    [dir="rtl"] .form-group textarea {
        padding: 13px 15px 13px 40px;
    }
    
    .form-group i {
        font-size: 14px;
        right: 12px;
    }
    
    [dir="rtl"] .form-group i {
        left: 12px;
        right: auto;
    }
    
    .contact-form button {
        padding: 14px 30px;
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .footer-section p {
        font-size: 13px;
        line-height: 1.7;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-logo img {
        width: 80px;
        height: 80px;
        margin: 0 auto 12px;
    }
    
    .footer-logo h3 {
        font-size: 18px;
    }
    
    .social-links {
        justify-content: center;
        gap: 12px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .footer-section ul li {
        margin-bottom: 10px;
    }
    
    .footer-section ul li a {
        font-size: 13px;
    }
    
    .contact-list li {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-list i {
        margin-top: 0;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 12px;
        line-height: 1.6;
    }
    
    /* Scroll to Top */
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
    
    [dir="rtl"] .scroll-top {
        left: 20px;
        right: auto;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-out;
}

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

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-2);
}

/* Service Pages Styles */
.service-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.service-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.service-hero.k9-hero .hero-background img,
.service-hero.training-hero .hero-background img {
    object-position: center center;
}

.hero-background.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
    overflow: hidden;
}

.hero-background.gradient-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.hero-background.gradient-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: 30px 30px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.hero-shapes .shape {
    position: absolute;
    opacity: 0.3;
}

.hero-shapes .shape-1 {
    width: 400px;
    height: 400px;
    border: 4px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    top: 5%;
    right: 5%;
    animation: rotatePulse 25s ease-in-out infinite;
}

.hero-shapes .shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 10%;
    left: 5%;
    animation: morphFloat 20s ease-in-out infinite;
}

@keyframes rotatePulse {
    0%, 100% { 
        transform: rotate(0deg) scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: rotate(180deg) scale(1.05); 
        opacity: 0.4; 
    }
}

@keyframes morphFloat {
    0%, 100% { 
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translateY(0px);
    }
    25% { 
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: translateY(-25px);
    }
    50% { 
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: translateY(-35px);
    }
    75% { 
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: translateY(-25px);
    }
}

.hero-shapes .shape-3 {
    width: 280px;
    height: 280px;
    border: 3px solid rgba(255, 255, 255, 0.35);
    top: 45%;
    left: 8%;
    animation: rotateSquare 30s linear infinite;
}

@keyframes rotateSquare {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

.hero-shapes .shape-4 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    top: 20%;
    left: 42%;
    animation: floatPulse 10s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

@keyframes floatPulse {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: translateY(-35px) scale(1.08); 
        opacity: 0.4; 
    }
}

@keyframes rotate360 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.compliance-hero .hero-background.gradient-bg,
.human-rights-hero .hero-background.gradient-bg,
.complaints-procedures-hero .hero-background.gradient-bg,
.complaints-form-hero .hero-background.gradient-bg,
.violation-form-hero .hero-background.gradient-bg {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.service-hero.compliance-hero .hero-overlay,
.service-hero.human-rights-hero .hero-overlay,
.service-hero.complaints-procedures-hero .hero-overlay,
.service-hero.complaints-form-hero .hero-overlay,
.service-hero.violation-form-hero .hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.service-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.service-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.service-hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.service-hero-content p {
    font-size: 20px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.service-details {
    padding: 80px 0;
    background: var(--light-color);
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.service-main-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.service-main-content h2 {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-main-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.service-main-content p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
    writing-mode: horizontal-tb !important;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
    border-bottom: 1px solid #e2e8f0;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: var(--secondary-color);
    margin-left: 10px;
    font-size: 18px;
}

[dir="rtl"] .service-list li i {
    margin-left: 0;
    margin-right: 10px;
}

.cta-section {
    background: var(--gradient-1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.cta-section h3 {
    color: var(--white);
    font-size: 28px;
    margin: 0 0 15px 0;
}

.cta-section p {
    color: var(--white);
    opacity: 0.95;
    font-size: 16px;
    margin-bottom: 25px;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary-color);
}

/* Sidebar Styles */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.sidebar-widget h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
}

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

.services-menu li {
    margin-bottom: 10px;
}

.services-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--light-color);
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.services-menu li a:hover {
    background: var(--gradient-1);
    color: var(--white);
    transform: translateX(-5px);
}

[dir="rtl"] .services-menu li a:hover {
    transform: translateX(5px);
}

.services-menu li a i {
    font-size: 18px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-info-list li i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 3px;
}

.cta-widget {
    background: var(--gradient-1);
    text-align: center;
}

.cta-widget h3 {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-widget p {
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 20px;
}

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

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--light-color);
}

/* Responsive - Service Pages */
@media (max-width: 1024px) {
    .service-content-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .service-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .service-hero {
        height: 45vh;
        min-height: 350px;
        margin-top: 75px;
    }
    
    .service-hero-content h1 {
        font-size: 40px;
    }
    
    .service-hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    /* Service Pages Mobile */
    .service-hero {
        height: 38vh;
        min-height: 280px;
        margin-top: 70px;
    }
    
    .service-hero-content h1 {
        font-size: 28px;
        line-height: 1.35;
        margin-bottom: 15px;
        word-wrap: break-word;
    }
    
    .service-hero-content p {
        font-size: 15px;
        line-height: 1.6;
        opacity: 0.95;
    }
    
    .service-details {
        padding: 60px 0;
    }
    
    .service-content-wrapper {
        gap: 30px;
    }
    
    .service-main-content {
        padding: 30px 20px;
        border-radius: 18px;
    }
    
    .service-main-content h2 {
        font-size: 26px;
        line-height: 1.4;
        margin-bottom: 18px;
    }
    
    .service-main-content h3 {
        font-size: 22px;
        line-height: 1.4;
        margin-top: 35px;
        margin-bottom: 18px;
    }
    
    .service-main-content p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 18px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 25px 0;
    }
    
    .feature-item {
        flex-direction: row;
        text-align: right;
        padding: 20px;
    }
    
    [dir="ltr"] .feature-item {
        text-align: left;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        border-radius: 12px;
    }
    
    .feature-content h4 {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .feature-content p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .service-list {
        margin: 18px 0;
    }
    
    .service-list li {
        padding: 10px 0;
        font-size: 15px;
    }
    
    .service-list li i {
        font-size: 16px;
        margin-left: 8px;
    }
    
    [dir="rtl"] .service-list li i {
        margin-right: 8px;
        margin-left: 0;
    }
    
    .cta-section {
        padding: 35px 25px;
        margin-top: 35px;
        border-radius: 15px;
    }
    
    .cta-section h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .cta-section p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .sidebar-widget {
        padding: 25px 20px;
        border-radius: 18px;
    }
    
    .sidebar-widget h3 {
        font-size: 19px;
        margin-bottom: 18px;
        padding-bottom: 12px;
    }
    
    .services-menu li {
        margin-bottom: 8px;
    }
    
    .services-menu li a {
        padding: 11px 14px;
        font-size: 14px;
        gap: 10px;
    }
    
    .services-menu li a i {
        font-size: 16px;
    }
    
    .contact-info-list li {
        margin-bottom: 13px;
        gap: 10px;
    }
    
    .contact-info-list li i {
        font-size: 16px;
    }
    
    .cta-widget {
        padding: 25px 20px;
    }
    
    .cta-widget p {
        margin-bottom: 18px;
    }
    
    /* Navigation Mobile Menu */
    .navbar {
        padding: 12px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .nav-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    
    .nav-wrapper .logo {
        flex: 1;
        min-width: 0;
        max-width: calc(100% - 60px);
    }
    
    .nav-wrapper .mobile-menu-btn {
        flex-shrink: 0;
        margin-right: 5px;
    }
    
    [dir="rtl"] .nav-wrapper .mobile-menu-btn {
        margin-left: 5px;
        margin-right: 0;
    }
    
    .logo {
        gap: 10px;
        overflow: hidden;
    }
    
    .logo-img {
        width: 65px;
        height: 65px;
        flex-shrink: 0;
        padding: 9px;
        border-radius: 13px;
    }
    
    .logo-text {
        min-width: 0;
        flex: 1;
        overflow: hidden;
    }
    
    .logo-text h2 {
        font-size: 15px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-bottom: 3px;
        max-height: 40px;
    }
    
    .logo-text p {
        font-size: 10px;
        margin: 0;
        line-height: 1.3;
        opacity: 0.9;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 0;
        z-index: 1002;
        position: relative;
        border-radius: 10px;
    }
    
    .mobile-menu-btn i {
        font-size: 20px;
    }
    
    /* Mobile Menu Overlay */
    .nav-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.35s ease;
        backdrop-filter: blur(2px);
    }
    
    .nav-menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(59, 130, 246, 0.08);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu > li > a {
        width: 100%;
        padding: 16px 20px;
        text-align: right;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 0;
        font-size: 15px;
        font-weight: 600;
        color: var(--text-dark);
        transition: all 0.3s ease;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.5;
        gap: 10px;
    }
    
    .nav-menu > li > a span {
        flex: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    [dir="ltr"] .nav-menu > li > a {
        text-align: left;
    }
    
    .nav-menu > li > a:hover {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(96, 165, 250, 0.12));
        color: var(--primary-color);
        transform: none;
        padding-right: 25px;
    }
    
    [dir="ltr"] .nav-menu > li > a:hover {
        padding-left: 25px;
        padding-right: 20px;
    }
    
    .nav-menu > li > a i {
        font-size: 13px;
        transition: transform 0.3s ease;
        flex-shrink: 0;
        margin-right: 8px;
    }
    
    [dir="ltr"] .nav-menu > li > a i {
        margin-left: 8px;
        margin-right: 0;
    }
    
    .nav-menu > li.dropdown.active > a i {
        transform: rotate(180deg);
    }
    
    /* Dropdown Menu in Mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: rgba(59, 130, 246, 0.06);
        border: none;
        border-radius: 0;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 600px;
        padding: 8px 0;
    }
    
    .dropdown-menu li {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        padding: 13px 20px 13px 35px;
        font-size: 14px;
        font-weight: 700;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        text-align: right;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.5;
        border-radius: 0;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu a span {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    [dir="ltr"] .dropdown-menu a {
        text-align: left;
        padding: 13px 35px 13px 20px;
    }
    
    .dropdown-menu a:hover {
        background: rgba(59, 130, 246, 0.12);
        color: var(--primary-color);
        padding-right: 40px;
        transform: none;
    }
    
    [dir="ltr"] .dropdown-menu a:hover {
        padding-left: 40px;
        padding-right: 20px;
    }
    
    .service-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .service-hero-content h1 {
        font-size: 32px;
    }
    
    .service-hero-content p {
        font-size: 16px;
    }
    
    .service-main-content {
        padding: 25px;
    }
    
    .service-main-content h2 {
        font-size: 26px;
    }
    
    .service-main-content h3 {
        font-size: 20px;
    }
    
    .service-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .feature-icon {
        margin: 0 auto;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .service-hero-content h1 {
        font-size: 26px;
    }
    
    .service-content-wrapper {
        flex-direction: column;
    }
    
    .service-main-content {
        width: 100%;
    }
    
    .service-sidebar {
        width: 100%;
        margin-top: 30px;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* ============================================
   Form Pages Styles (Complaints & Violations)
   ============================================ */

.form-page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.form-intro {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
}

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

.form-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-box {
    background: var(--light-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 2px solid var(--accent-color);
    transition: var(--transition);
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-box h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.info-box p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.warning-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
}

.warning-box i {
    font-size: 36px;
    color: #ffc107;
    flex-shrink: 0;
}

.warning-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.warning-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warning-box ul li {
    padding: 8px 0;
    color: var(--text-dark);
    padding-right: 20px;
    position: relative;
}

[dir="rtl"] .warning-box ul li::before {
    content: "●";
    color: #ffc107;
    position: absolute;
    right: 0;
    font-weight: bold;
}

[dir="ltr"] .warning-box ul li {
    padding-left: 20px;
    padding-right: 0;
}

[dir="ltr"] .warning-box ul li::before {
    content: "●";
    color: #ffc107;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Download Form Section */
.download-form-section {
    margin-bottom: 30px;
}

.download-box {
    background: linear-gradient(135deg, #1a365d 0%, #0f2744 100%);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.3);
}

.download-box > i {
    font-size: 50px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.download-content h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.download-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-download {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f4d03f 100%);
    color: var(--primary-color) !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-email {
    background: transparent;
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-email:hover {
    background: var(--accent-color);
    color: var(--primary-color) !important;
}

.divider-or {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider-or::before,
.divider-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 100px);
    height: 2px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.divider-or::before {
    right: 0;
}

.divider-or::after {
    left: 0;
}

.divider-or span {
    background: #f8fafc;
    padding: 10px 20px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    border-radius: 25px;
    border: 2px solid #e2e8f0;
}

/* Radio Group Styles */
.radio-group {
    display: flex;
    gap: 25px;
    padding: 10px 0;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

/* Witnesses & Documents Input */
.witnesses-input,
.documents-input {
    margin-top: 15px;
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.witnesses-input:focus,
.documents-input:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* File Upload Section */
.file-upload-group {
    margin-bottom: 25px;
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background: #f8fafc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-wrapper:hover,
.file-upload-wrapper.drag-over {
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.05);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.file-upload-btn i {
    font-size: 40px;
    color: var(--accent-color);
}

.file-upload-btn span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
}

.file-hint {
    margin-top: 10px;
    font-size: 12px;
    color: #64748b;
}

.file-list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.file-item-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-item-info i {
    font-size: 24px;
    color: var(--primary-color);
}

.file-item-info .file-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.file-item-info .file-size {
    font-size: 12px;
    color: #64748b;
}

.file-item-remove {
    background: #ef4444;
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.file-item-remove:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.file-error {
    color: #ef4444;
    font-size: 13px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Acknowledgment Section */
.acknowledgment-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    border: 2px solid var(--primary-color);
}

.acknowledgment-section h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.acknowledgment-text {
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-right: 4px solid var(--accent-color);
}

.acknowledgment-text p {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
}

.acknowledgment-checkbox {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
}

.acknowledgment-checkbox span {
    font-weight: 600;
    color: var(--primary-color);
}

.complaint-form-container {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.complaint-form h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.complaint-form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.complaint-form .form-group label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.complaint-form .form-group input[type="text"],
.complaint-form .form-group input[type="email"],
.complaint-form .form-group input[type="tel"],
.complaint-form .form-group input[type="date"],
.complaint-form .form-group select,
.complaint-form .form-group textarea {
    width: 100%;
    padding: 14px;
    padding-right: 45px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

[dir="ltr"] .complaint-form .form-group input[type="text"],
[dir="ltr"] .complaint-form .form-group input[type="email"],
[dir="ltr"] .complaint-form .form-group input[type="tel"],
[dir="ltr"] .complaint-form .form-group input[type="date"],
[dir="ltr"] .complaint-form .form-group select,
[dir="ltr"] .complaint-form .form-group textarea {
    padding-left: 45px;
    padding-right: 14px;
}

.complaint-form .form-group input:focus,
.complaint-form .form-group select:focus,
.complaint-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.complaint-form .form-group i {
    position: absolute;
    top: 43px;
    right: 15px;
    color: var(--text-light);
    font-size: 16px;
}

[dir="ltr"] .complaint-form .form-group i {
    left: 15px;
    right: auto;
}

.complaint-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.form-actions .btn {
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
}

.form-note {
    background: #e0f2fe;
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.form-note i {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.form-note p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.7;
}

.additional-info {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.additional-info h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-method i {
    font-size: 30px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-method h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-method p {
    color: var(--text-dark);
    font-size: 14px;
    margin: 0;
}

.process-info {
    background: var(--light-color);
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
}

.process-info h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 20px;
}

.process-info ol {
    counter-reset: item;
    list-style: none;
    padding: 0;
}

.process-info ol li {
    counter-increment: item;
    padding: 12px 0;
    padding-right: 45px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

[dir="ltr"] .process-info ol li {
    padding-left: 45px;
    padding-right: 0;
}

.process-info ol li::before {
    content: counter(item);
    position: absolute;
    right: 0;
    top: 10px;
    background: var(--primary-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

[dir="ltr"] .process-info ol li::before {
    left: 0;
    right: auto;
}

.cert-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.cert-badges .cert-badge {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive - Form Pages */
@media (max-width: 768px) {
    .download-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .download-box > i {
        font-size: 40px;
    }
    
    .download-content h4 {
        font-size: 16px;
    }
    
    .download-actions {
        justify-content: center;
    }
    
    .btn-download,
    .btn-email {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .divider-or span {
        font-size: 14px;
        padding: 8px 15px;
    }
    
    .radio-group {
        gap: 15px;
    }
    
    .acknowledgment-section {
        padding: 20px 15px;
    }
    
    .acknowledgment-text {
        padding: 15px;
    }
    
    .acknowledgment-text p {
        font-size: 13px;
    }
    
    .form-intro,
    .complaint-form-container,
    .additional-info {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .form-intro h2 {
        font-size: 26px;
        line-height: 1.4;
        margin-bottom: 18px;
    }
    
    .form-intro p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 18px;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .info-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .info-box {
        padding: 18px 12px;
    }
    
    .info-box i {
        font-size: 28px;
    }
    
    .info-box h4 {
        font-size: 14px;
    }
    
    .info-box p {
        font-size: 11px;
    }
    
    .info-box i {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .info-box h4 {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .info-box p {
        font-size: 13px;
    }
    
    .warning-box {
        flex-direction: column;
        padding: 22px 18px;
        gap: 15px;
    }
    
    .warning-box i {
        font-size: 32px;
    }
    
    .warning-box h4 {
        font-size: 17px;
        margin-bottom: 12px;
    }
    
    .warning-box ul li {
        padding: 7px 0;
        font-size: 13px;
        line-height: 1.6;
    }
    
    .complaint-form h3 {
        font-size: 22px;
        margin-bottom: 25px;
        padding-bottom: 12px;
    }
    
    .complaint-form .form-group {
        margin-bottom: 22px;
    }
    
    .complaint-form .form-group label {
        font-size: 14px;
        margin-bottom: 7px;
    }
    
    .complaint-form .form-group input,
    .complaint-form .form-group select,
    .complaint-form .form-group textarea {
        padding: 13px 40px 13px 13px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    [dir="rtl"] .complaint-form .form-group input,
    [dir="rtl"] .complaint-form .form-group select,
    [dir="rtl"] .complaint-form .form-group textarea {
        padding: 13px 13px 13px 40px;
    }
    
    .complaint-form .form-group i {
        top: 40px;
        right: 13px;
        font-size: 15px;
    }
    
    [dir="rtl"] .complaint-form .form-group i {
        left: 13px;
        right: auto;
    }
    
    .complaint-form textarea {
        min-height: 110px;
    }
    
    .checkbox-label {
        font-size: 14px;
        gap: 10px;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
    }
    
    .form-actions .btn {
        width: 100%;
        min-width: auto;
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .form-note {
        padding: 18px;
        gap: 12px;
        margin-top: 25px;
    }
    
    .form-note i {
        font-size: 22px;
    }
    
    .form-note p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-method {
        padding: 18px;
        gap: 12px;
    }
    
    .contact-method i {
        font-size: 26px;
    }
    
    .contact-method h4 {
        font-size: 15px;
        margin-bottom: 7px;
    }
    
    .contact-method p {
        font-size: 13px;
    }
    
    .process-info {
        padding: 25px 20px;
    }
    
    .process-info h4 {
        font-size: 17px;
        margin-bottom: 18px;
    }
    
    .process-info ol li {
        padding: 11px 0 11px 40px;
        font-size: 13px;
        line-height: 1.6;
    }
    
    [dir="rtl"] .process-info ol li {
        padding: 11px 40px 11px 0;
    }
    
    .process-info ol li::before {
        width: 28px;
        height: 28px;
        font-size: 13px;
        top: 9px;
    }
}

@media (max-width: 480px) {
    .form-intro,
    .complaint-form-container,
    .additional-info {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .form-intro h2 {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 15px;
        word-wrap: break-word;
    }
    
    .form-intro p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .complaint-form h3 {
        font-size: 19px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .info-boxes {
        gap: 15px;
    }
    
    .info-box {
        padding: 18px 15px;
    }
    
    .info-box i {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .info-box h4 {
        font-size: 16px;
        margin-bottom: 7px;
    }
    
    .info-box p {
        font-size: 12px;
    }
    
    .warning-box {
        padding: 18px 15px;
        gap: 12px;
    }
    
    .warning-box i {
        font-size: 28px;
    }
    
    .warning-box h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .warning-box ul li {
        padding: 6px 0;
        font-size: 12px;
        line-height: 1.6;
        padding-right: 18px;
    }
    
    [dir="ltr"] .warning-box ul li {
        padding-left: 18px;
        padding-right: 0;
    }
    
    .complaint-form .form-group {
        margin-bottom: 18px;
    }
    
    .complaint-form .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .complaint-form .form-group input,
    .complaint-form .form-group select,
    .complaint-form .form-group textarea {
        padding: 12px 35px 12px 12px;
        font-size: 13px;
        border-radius: 8px;
    }
    
    [dir="rtl"] .complaint-form .form-group input,
    [dir="rtl"] .complaint-form .form-group select,
    [dir="rtl"] .complaint-form .form-group textarea {
        padding: 12px 12px 12px 35px;
    }
    
    .complaint-form .form-group i {
        top: 38px;
        right: 12px;
        font-size: 14px;
    }
    
    [dir="rtl"] .complaint-form .form-group i {
        left: 12px;
        right: auto;
    }
    
    .complaint-form textarea {
        min-height: 100px;
    }
    
    .checkbox-label {
        font-size: 13px;
        gap: 8px;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 17px;
        height: 17px;
    }
    
    .form-actions {
        gap: 10px;
        margin-top: 22px;
    }
    
    .form-actions .btn {
        padding: 13px 25px;
        font-size: 13px;
    }
    
    .btn-sm {
        padding: 9px 18px;
        font-size: 12px;
    }
    
    .form-note {
        padding: 15px;
        gap: 10px;
        margin-top: 20px;
        border-radius: 10px;
    }
    
    .form-note i {
        font-size: 20px;
    }
    
    .form-note p {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .additional-info h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .contact-methods {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .contact-method {
        padding: 15px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method i {
        font-size: 24px;
        margin: 0 auto 5px;
    }
    
    .contact-method {
        padding: 15px 10px;
    }
    
    .contact-method i {
        font-size: 28px;
    }
    
    .contact-method h4 {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .contact-method p {
        font-size: 11px;
    }
    
    .process-info {
        padding: 20px 15px;
    }
    
    .process-info h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .process-info ol li {
        padding: 10px 0 10px 38px;
        font-size: 12px;
        line-height: 1.6;
    }
    
    [dir="rtl"] .process-info ol li {
        padding: 10px 38px 10px 0;
    }
    
    .process-info ol li::before {
        width: 26px;
        height: 26px;
        font-size: 12px;
        top: 8px;
    }
    
    .cert-badges {
        padding: 15px 0;
    }
    
    .cert-badges .cert-badge {
        max-width: 280px;
        padding: 10px;
    }
}

/* ===================================
   Language Support Classes
   =================================== */

/* Multi-Language Support */
.en-text {
    display: none;
}

.ku-text {
    display: none;
}

[lang="ku"] .ku-text {
    display: inline !important;
}

[lang="ku"] .ar-text,
[lang="ku"] .en-text {
    display: none !important;
}

/* Arabic Language Support */
[lang="ar"] .ar-text {
    display: inline !important;
}

[lang="ar"] .en-text,
[lang="ar"] .ku-text {
    display: none !important;
}

/* English Language Support */
[lang="en"] .en-text {
    display: inline !important;
}

[lang="en"] .ar-text,
[lang="en"] .ku-text {
    display: none !important;
}

/* Kurdish RTL Support */
[lang="ku"] {
    direction: rtl;
    text-align: right;
}

[lang="ku"] body {
    font-family: 'Tajawal', 'Noto Kufi Arabic', sans-serif;
    word-wrap: normal;
    overflow-wrap: normal;
    letter-spacing: normal;
    writing-mode: horizontal-tb;
}

/* Kurdish Text Wrapping & Spacing */
[lang="ku"] h1,
[lang="ku"] h2,
[lang="ku"] h3,
[lang="ku"] h4,
[lang="ku"] p,
[lang="ku"] span,
[lang="ku"] a {
    word-wrap: normal;
    overflow-wrap: normal;
    hyphens: none;
    line-height: 1.75;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed;
}

[lang="ku"] .hero-title,
[lang="ku"] .section-title {
    word-spacing: normal;
    letter-spacing: normal;
}

/* Kurdish specific adjustments for buttons and links */
[lang="ku"] .btn i,
[lang="ku"] .nav-menu a i {
    margin-left: 8px;
    margin-right: 0;
}

[lang="ku"] .service-card i,
[lang="ku"] .feature-icon i {
    margin-left: 0;
    margin-right: 0;
}

/* Kurdish Language Toggle Position */
[lang="ku"] .language-toggle {
    left: 20px;
    right: auto;
}

/* Kurdish Navigation Adjustments */
[lang="ku"] .nav-menu {
    flex-direction: row-reverse;
}

[lang="ku"] .nav-menu a,
[lang="ku"] .nav-menu span,
[lang="ku"] .dropdown-menu a,
[lang="ku"] .dropdown-menu span {
    writing-mode: horizontal-tb !important;
    white-space: nowrap;
}

[lang="ku"] .logo {
    flex-direction: row-reverse;
}

[lang="ku"] .logo-text {
    text-align: right;
    margin-right: 0;
    margin-left: 15px;
}

[lang="ku"] .logo-text h2,
[lang="ku"] .logo-text p {
    writing-mode: horizontal-tb !important;
    white-space: nowrap;
}

/* Kurdish Footer Adjustments */
[lang="ku"] .footer-content {
    direction: rtl;
}

[lang="ku"] .social-links {
    justify-content: flex-start;
}

/* GLOBAL FIX: Ensure all Kurdish text is horizontal */
[lang="ku"] * {
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
}

[lang="ku"] .ku-text {
    display: inline !important;
    writing-mode: horizontal-tb !important;
    white-space: normal;
}

/* Kurdish Mobile Optimization */
@media (max-width: 768px) {
    [lang="ku"] h1,
    [lang="ku"] h2,
    [lang="ku"] h3 {
        word-break: normal;
        overflow-wrap: normal;
        line-height: 1.5;
        writing-mode: horizontal-tb !important;
    }
    
    [lang="ku"] p,
    [lang="ku"] span {
        word-break: normal;
        overflow-wrap: normal;
        line-height: 1.7;
        writing-mode: horizontal-tb !important;
    }
}

@media (max-width: 480px) {
    [lang="ku"] .hero-title {
        font-size: 22px;
        line-height: 1.5;
        word-spacing: normal;
        writing-mode: horizontal-tb !important;
    }
    
    [lang="ku"] .section-title {
        font-size: 24px;
        line-height: 1.4;
        writing-mode: horizontal-tb !important;
    }
    
    [lang="ku"] .logo-text h2 {
        font-size: 16px;
        line-height: 1.3;
        writing-mode: horizontal-tb !important;
    }
}

/* Ensure hidden class works across all languages */
.hidden {
    display: none !important;
}

/* Block-level language text support */
div.ar-text,
div.en-text,
div.ku-text,
p.ar-text,
p.en-text,
p.ku-text,
h1.ar-text,
h1.en-text,
h1.ku-text,
h2.ar-text,
h2.en-text,
h2.ku-text,
h3.ar-text,
h3.en-text,
h3.ku-text,
h4.ar-text,
h4.en-text,
h4.ku-text,
li.ar-text,
li.en-text,
li.ku-text {
    display: none;
}

[lang="ar"] div.ar-text,
[lang="ar"] p.ar-text,
[lang="ar"] h1.ar-text,
[lang="ar"] h2.ar-text,
[lang="ar"] h3.ar-text,
[lang="ar"] h4.ar-text,
[lang="ar"] li.ar-text {
    display: block !important;
}

[lang="en"] div.en-text,
[lang="en"] p.en-text,
[lang="en"] h1.en-text,
[lang="en"] h2.en-text,
[lang="en"] h3.en-text,
[lang="en"] h4.en-text,
[lang="en"] li.en-text {
    display: block !important;
}

[lang="ku"] div.ku-text,
[lang="ku"] p.ku-text,
[lang="ku"] h1.ku-text,
[lang="ku"] h2.ku-text,
[lang="ku"] h3.ku-text,
[lang="ku"] h4.ku-text,
[lang="ku"] li.ku-text {
    display: block !important;
}

/* List items should be list-item */
[lang="ar"] li.ar-text {
    display: list-item !important;
}

[lang="en"] li.en-text {
    display: list-item !important;
}

[lang="ku"] li.ku-text {
    display: list-item !important;
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    /* Language Toggle Responsive */
    .language-toggle {
        top: 12px;
        z-index: 1002;
    }
    
    [dir="rtl"] .language-toggle {
        left: 12px;
    }
    
    [dir="ltr"] .language-toggle {
        right: 12px;
    }
    
    .language-toggle .lang-btn {
        width: 38px;
        height: 38px;
        padding: 9px;
    }
    
    .language-toggle .lang-btn i {
        font-size: 17px;
    }
    
    .language-dropdown {
        min-width: 130px;
        top: calc(100% + 8px);
        border-radius: 10px;
    }
    
    .language-dropdown .lang-option {
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 8px;
        margin: 4px;
    }
    
    .language-dropdown .lang-option span {
        font-size: 13px;
        line-height: 1.4;
    }
    
    /* Navigation Responsive */
    .navbar {
        padding: 10px 0;
    }
    
    .nav-wrapper {
        gap: 10px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-img {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }
    
    .logo-text h2 {
        font-size: 18px;
        line-height: 1.2;
    }
    
    .logo-text p {
        font-size: 11px;
        margin-top: 3px;
    }
    
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu-btn i {
        font-size: 20px;
    }
    
    .nav-menu {
        width: 80%;
        max-width: 300px;
        padding: 70px 0 25px 0;
    }
    
    .nav-menu > li > a {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .dropdown-menu a {
        padding: 12px 20px 12px 35px;
        font-size: 14px;
    }
    
    [dir="ltr"] .dropdown-menu a {
        padding: 12px 35px 12px 20px;
    }
    
    /* Hero Section Responsive */
    .hero-content {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    /* Service Cards Responsive */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Contact Section Responsive */
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .language-toggle {
        top: 10px;
    }
    
    [dir="rtl"] .language-toggle {
        left: 10px;
    }
    
    [dir="ltr"] .language-toggle {
        right: 10px;
    }
    
    .language-toggle .lang-btn {
        width: 36px;
        height: 36px;
        padding: 8px;
    }
    
    .language-toggle .lang-btn i {
        font-size: 16px;
    }
    
    .language-dropdown {
        min-width: 115px;
        border-radius: 8px;
    }
    
    .language-dropdown .lang-option {
        padding: 8px 11px;
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    /* Service Pages Responsive */
    .service-hero {
        height: 30vh;
        min-height: 230px;
        margin-top: 65px;
    }
    
    .service-hero-content h1 {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .service-hero-content p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .service-details {
        padding: 50px 0;
    }
    
    .service-content-wrapper {
        flex-direction: column;
        gap: 25px;
    }
    
    .service-main-content {
        width: 100%;
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .service-main-content h2 {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 15px;
        word-wrap: break-word;
    }
    
    .service-main-content h3 {
        font-size: 19px;
        line-height: 1.4;
        margin-top: 30px;
        margin-bottom: 15px;
        word-wrap: break-word;
    }
    
    .service-main-content p {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 15px;
    }
    
    .service-sidebar {
        width: 100%;
        margin-top: 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 20px 0;
    }
    
    .feature-item {
        padding: 12px 10px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin: 0 auto 8px;
    }
    
    .feature-content h4 {
        font-size: 12px;
        margin-bottom: 7px;
        line-height: 1.4;
    }
    
    .feature-content p {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .service-list {
        font-size: 14px;
        margin: 15px 0;
    }
    
    .service-list li {
        padding: 9px 0;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .service-list li i {
        font-size: 15px;
        margin-left: 7px;
    }
    
    [dir="rtl"] .service-list li i {
        margin-right: 7px;
        margin-left: 0;
    }
    
    .cta-section {
        padding: 28px 20px;
        margin-top: 30px;
        border-radius: 12px;
    }
    
    .cta-section h3 {
        font-size: 21px;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .cta-section p {
        font-size: 14px;
        margin-bottom: 18px;
        line-height: 1.6;
    }
    
    .sidebar-widget {
        padding: 15px 12px;
        border-radius: 12px;
    }
    
    .sidebar-widget h3 {
        font-size: 14px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .services-menu li {
        margin-bottom: 7px;
    }
    
    .services-menu li a {
        padding: 10px 12px;
        font-size: 13px;
        gap: 8px;
        border-radius: 8px;
    }
    
    .services-menu li a i {
        font-size: 15px;
    }
    
    .contact-info-list li {
        margin-bottom: 12px;
        gap: 9px;
        font-size: 13px;
    }
    
    .contact-info-list li i {
        font-size: 15px;
    }
    
    .cta-widget {
        padding: 20px 15px;
    }
    
    .cta-widget h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .cta-widget p {
        margin-bottom: 15px;
        font-size: 14px;
    }
    
    .btn-block {
        padding: 13px 25px;
        font-size: 13px;
    }
    
    /* Form Pages Responsive */
    .form-intro,
    .complaint-form-container,
    .additional-info {
        padding: 20px;
    }
    
    .form-intro h2 {
        font-size: 24px;
    }
    
    .complaint-form h3 {
        font-size: 18px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 14px;
        padding: 10px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

/* ===================================
   Enhanced Mobile Improvements
   =================================== */

/* Better Mobile Grid Layout */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Better spacing for service pages */
    .service-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    /* Mobile-optimized cards */
    .service-card,
    .why-card,
    .sector-card {
        margin-bottom: 15px;
    }
    
    /* Better touch targets */
    .btn,
    .nav-menu a,
    .services-menu li a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Improved form inputs on mobile */
    input, select, textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
}

/* Phone number styling */
.phone-number {
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    direction: ltr;
    unicode-bidi: embed;
    display: inline-block;
}

/* RTL phone number fix */
[dir="rtl"] .phone-number,
[dir="rtl"] a[href^="tel:"] {
    direction: ltr;
    unicode-bidi: isolate;
    text-align: left;
}

/* Better typography hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.3;
}

.section-title {
    font-weight: 900;
    text-transform: none;
}

p {
    font-weight: 700;
}

a {
    font-weight: 800;
}

li {
    font-weight: 700;
}

span {
    font-weight: 700;
}

button {
    font-weight: 800;
}

.btn {
    font-weight: 800;
}

/* Smooth animations */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active link state for sidebar */
.services-menu li a.active {
    background: var(--gradient-1);
    color: var(--white);
}

/* ===================================
   Enhanced Visual Effects
   =================================== */

/* Smooth hover transitions */
.service-card,
.why-card,
.sector-card,
.stat-item,
.client-logo,
.client-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}

/* Gradient text for headings */
.section-title,
.service-hero-content h1,
.hero-title {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-hero-content h1 {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #dbeafe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

/* Card hover effects */
.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

/* Button shine effect */
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::after {
    transform: translateX(100%);
}

/* Improved focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Smooth scrolling improvement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Better loading states */
.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::before {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}

[dir="rtl"] .btn.loading::before {
    margin-left: 0;
    margin-right: 8px;
}

/* Info box highlight style */
.info-box-highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-box-highlight i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-box-highlight h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.info-box-highlight p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   ARROW DIRECTION FIX FOR LTR (English)
   ============================================ */
[dir="ltr"] .btn .fa-arrow-left,
[dir="ltr"] .btn i.fa-arrow-left,
[dir="ltr"] .fa-arrow-left {
    transform: scaleX(-1);
}

[dir="ltr"] .slider-prev .fa-chevron-right {
    transform: scaleX(-1);
}

[dir="ltr"] .slider-next .fa-chevron-left {
    transform: scaleX(-1);
}

/* RTL arrow fix - ensure correct direction */
[dir="rtl"] .btn .fa-arrow-left,
[dir="rtl"] .fa-arrow-left {
    transform: scaleX(1);
}

/* ============================================
   MOBILE CENTER ALIGNMENT FOR CONTACT SECTION
   ============================================ */
@media (max-width: 768px) {
    .contact-info {
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .contact-details h3 {
        text-align: center;
    }
    
    .contact-details p {
        text-align: center;
    }
    
    /* Center the contact wrapper */
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        width: 100%;
    }
    
    /* Section titles center on mobile */
    .section-header {
        text-align: center;
    }
    
    .section-header h2,
    .section-header p {
        text-align: center;
    }
    
    /* Contact list items center */
    .contact-list li {
        justify-content: center !important;
        text-align: center !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }
    
    .contact-list li i {
        margin: 0 auto !important;
    }
    
    .contact-list li span {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }
    
    /* Footer mobile center */
    .footer-content {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .footer-section {
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .footer-section h3 {
        text-align: center !important;
        width: 100% !important;
    }
    
    .footer-section p {
        text-align: center !important;
    }
    
    .footer-section ul {
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .footer-section ul li {
        text-align: center !important;
        width: 100% !important;
    }
    
    .footer-section ul li a {
        text-align: center !important;
    }
    
    .footer-logo {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .social-links {
        justify-content: center !important;
    }
    
    .contact-list {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
}