/* ============================================================
   style-en.css - SCI Suez Canal Insurance - English Version
   ============================================================ */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --sci-blue: #0e7dc5;
    --sci-dark-blue: #0a5a8c;
    --sci-navy: #000A93;
    --sci-dark: #1a1a2e;
    --sci-light-bg: #f8faff;
    --sci-gray-bg: #EBEEF1;
    --sci-white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background: #fff;
    direction: ltr;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--sci-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--sci-dark-blue);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.col-6 {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
}

.col-3 {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

.sub {
    color: var(--sci-blue);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: var(--sci-blue);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
    text-decoration: none;
}

.btn:hover {
    background: var(--sci-dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(14, 125, 197, 0.3);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .sub {
    color: var(--sci-blue);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #222;
}

.section-title h2 cite {
    color: var(--sci-blue);
    font-style: normal;
}

.section-title .line {
    width: 60px;
    height: 3px;
    background: var(--sci-blue);
    margin: 15px auto 0;
    border-radius: 5px;
}

/* ============================================================
   ACCESSIBILITY TOOLS
   ============================================================ */
.accessibility-tools {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    padding: 12px 8px;
    border-radius: 0 12px 12px 0;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.15);
    width: 55px;
    gap: 8px;
    border: 2px solid var(--sci-blue);
    border-left: none;
}

.accessibility-tools .tool-toggle {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--sci-blue);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.accessibility-tools .tool-toggle:hover {
    transform: scale(1.1);
    background: var(--sci-dark-blue);
}

.tools-container {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.tools-container.open {
    display: flex;
}

.accessibility-tools .tool-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.accessibility-tools .tool-btn:hover {
    background: var(--sci-blue);
    color: #fff;
    transform: scale(1.1);
}

.accessibility-tools .tool-btn span {
    display: none;
    position: absolute;
    left: 50px;
    background: #333;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
}

.accessibility-tools .tool-btn:hover span {
    display: block;
}

/* ============================================================
   ACCESSIBILITY CLASSES
   ============================================================ */
.large-text * { font-size: 20px !important; line-height: 1.8 !important; }
.x-large-text * { font-size: 24px !important; line-height: 2 !important; }
.increased-spacing * { letter-spacing: 1.5px !important; word-spacing: 5px !important; }
.high-contrast { background: #000 !important; color: #fff !important; }
.high-contrast * { color: #ffff00 !important; }
.blue-light { background: #e6f7ff !important; color: #003366 !important; }
.blue-light * { color: #003366 !important; }
.dyslexia-friendly { font-family: 'Arial', sans-serif !important; line-height: 1.8 !important; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--sci-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .row {
    justify-content: space-between;
    gap: 10px;
}

.top-bar .info-item {
    margin-right: 20px;
}

.top-bar .info-item i {
    color: var(--sci-blue);
    margin-right: 8px;
}

.top-bar .social a {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 15px;
    font-size: 16px;
    transition: var(--transition);
}

.top-bar .social a:hover {
    color: var(--sci-blue);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .top-bar .row {
        flex-direction: column;
        text-align: center;
    }
    .top-bar .info-item {
        display: inline-block;
        margin: 5px 10px;
    }
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
 /* ============================================================
   HEADER - LOGO + MENU IN ONE ROW (FIXED)
   ============================================================ */
.main-header {
    padding: 10px 0;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ===== الحاوية الرئيسية ===== */
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

/* ===== اللوجو ===== */
.logo {
    flex-shrink: 0;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
}

/* ===== القائمة ===== */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* تأكد من عدم وجود أي حاجة تخليها تنزل */
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: nowrap; /* ← مهم جداً: منع اللف */
}

.nav-menu ul li {
    position: relative;
    flex-shrink: 0; /* ← منع العناصر من التقلص */
}

.nav-menu ul li a {
    padding: 8px 14px;
    color: #1a1a2e;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.nav-menu ul li a:hover {
    background: rgba(14, 125, 197, 0.08);
    color: #0e7dc5;
}

.nav-menu ul li a i {
    font-size: 11px;
    margin-left: 2px;
    transition: transform 0.3s ease;
}

.nav-menu ul li:hover > a i {
    transform: rotate(180deg);
}

/* ===== Language Switcher ===== */
.wpml-ls-item > a {
    padding: 6px 14px !important;
    background: #f0f4f8;
    border-radius: 30px !important;
    gap: 6px;
}

.wpml-ls-item > a:hover {
    background: #e0e8f0 !important;
}

.wpml-ls-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 3px;
}

.wpml-ls-native {
    font-size: 13px;
    font-weight: 500;
}

.wpml-ls-item .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 160px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 8px 0;
    z-index: 999;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.wpml-ls-item:hover .sub-menu {
    display: block;
    animation: fadeDown 0.3s ease;
}

.wpml-ls-item .sub-menu li {
    list-style: none;
}

.wpml-ls-item .sub-menu li a {
    padding: 8px 18px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 0 !important;
    background: transparent !important;
    white-space: nowrap;
}

.wpml-ls-item .sub-menu li a:hover {
    background: rgba(14, 125, 197, 0.06) !important;
}

/* ===== Dropdown Menu ===== */
.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 8px 0;
    z-index: 999;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeDown 0.3s ease;
}

.nav-menu .dropdown-menu li a {
    padding: 8px 20px !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    border-radius: 0 !important;
    white-space: normal;
}

.nav-menu .dropdown-menu li a:hover {
    background: rgba(14, 125, 197, 0.06) !important;
    color: #0e7dc5 !important;
}

/* ===== Hamburger (Mobile) ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    flex-shrink: 0;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #1a1a2e;
    border-radius: 3px;
    transition: all 0.3s ease;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE - HEADER
   ============================================================ */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
    .header-wrapper {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 8px 0;
    }
    .logo img {
        height: 38px;
    }
}
/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    padding: 30px 25px;
    overflow-y: auto;
    transition: right 0.4s ease;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav .close-nav {
    font-size: 32px;
    cursor: pointer;
    color: #333;
    display: block;
    text-align: right;
    margin-bottom: 20px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    margin-bottom: 5px;
}

.mobile-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    color: #333;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.mobile-nav ul li a:hover {
    background: rgba(14, 125, 197, 0.08);
    color: var(--sci-blue);
}

.mobile-nav ul li a i {
    transition: transform 0.3s ease;
}

.mobile-nav .sub-menu {
    display: none;
    padding-left: 20px;
    list-style: none;
}

.mobile-nav .sub-menu.open {
    display: block;
}

.mobile-nav .sub-menu li a {
    padding: 10px 15px;
    font-size: 14px;
}

/* ============================================================
   SLIDER - مع تأثيرات Revolution Slider
   ============================================================ */
.slider {
    position: relative;
    overflow: hidden;
    height: 600px;
    background: var(--sci-dark);
    direction: ltr;
    max-height: 530px;
}

.slider .slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.slider .slide {
    width: 33.333%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 60px;
}

.slider .slide .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* إزالة الطبقة المظللة */
.slider .slide::before {
    content: none;
}

/* تدرج خفيف من الأسفل لتحسين النص */
.slider .slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    z-index: 1;
    pointer-events: none;
}

.slider .slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    width: 100%;
}

.slider .slide-content .slide-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--sci-blue);
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.slider .slide.active .slide-content .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.slider .slide-content h1 {
    font-size: 45px;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.slider .slide-content h1 .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%) rotate(-20deg);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.slider .slide-content h1 .word.visible {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.slider .slide-content h1 .word.from-top {
    transform: translateY(-100%) rotate(20deg);
}

.slider .slide.active .slide-content h1 .word.from-top.visible {
    transform: translateY(0) rotate(0deg);
}

.slider .slide-content h1 cite {
    color: var(--sci-blue);
    font-style: normal;
}

.slider .slide-content h1 cite .word {
    color: var(--sci-blue);
}

.slider .slide-content h1 .word:nth-child(1) { transition-delay: 0.05s; }
.slider .slide-content h1 .word:nth-child(2) { transition-delay: 0.10s; }
.slider .slide-content h1 .word:nth-child(3) { transition-delay: 0.15s; }
.slider .slide-content h1 .word:nth-child(4) { transition-delay: 0.20s; }
.slider .slide-content h1 .word:nth-child(5) { transition-delay: 0.25s; }
.slider .slide-content h1 .word:nth-child(6) { transition-delay: 0.30s; }
.slider .slide-content h1 .word:nth-child(7) { transition-delay: 0.35s; }
.slider .slide-content h1 .word:nth-child(8) { transition-delay: 0.40s; }
.slider .slide-content h1 .word:nth-child(9) { transition-delay: 0.45s; }
.slider .slide-content h1 .word:nth-child(10) { transition-delay: 0.50s; }
.slider .slide-content h1 .word:nth-child(11) { transition-delay: 0.55s; }
.slider .slide-content h1 .word:nth-child(12) { transition-delay: 0.60s; }
.slider .slide-content h1 .word:nth-child(13) { transition-delay: 0.65s; }
.slider .slide-content h1 .word:nth-child(14) { transition-delay: 0.70s; }
.slider .slide-content h1 .word:nth-child(15) { transition-delay: 0.75s; }
.slider .slide-content h1 .word:nth-child(16) { transition-delay: 0.80s; }
.slider .slide-content h1 .word:nth-child(17) { transition-delay: 0.85s; }
.slider .slide-content h1 .word:nth-child(18) { transition-delay: 0.90s; }
.slider .slide-content h1 .word:nth-child(19) { transition-delay: 0.95s; }
.slider .slide-content h1 .word:nth-child(20) { transition-delay: 1.00s; }

.slider .slide-content p {
    font-size: 18px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    margin-bottom: 30px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slider .slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 4.2s;
}

.slider .slide-content .btn {
    background: var(--sci-blue);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    font-family: var(--font-heading);
}

.slider .slide.active .slide-content .btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 4.4s;
}

.slider .slide-content .btn:hover {
    background: var(--sci-dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(14, 125, 197, 0.4);
}

.slider .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.slider .arrow:hover {
    background: var(--sci-blue);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.slider .arrow.prev { left: 20px; right: auto; }
.slider .arrow.next { right: 20px; left: auto; }

.slider .dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
    direction: ltr;
}

.slider .dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
}

.slider .dots span.active {
    background: var(--sci-blue);
    width: 35px;
    border-radius: 10px;
}

.slider .dots span:hover {
    background: var(--sci-blue);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slider { height: 400px; max-height: 400px; }
    .slider .slide { padding: 0 20px; }
    .slider .slide-content h1 { font-size: 28px; }
    .slider .slide-content p { font-size: 15px; }
    .slider .arrow { width: 40px; height: 40px; font-size: 18px; }
    .slider .arrow.prev { left: 10px; }
    .slider .arrow.next { right: 10px; }
}

@media (max-width: 480px) {
    .slider { height: 350px; max-height: 350px; }
    .slider .slide-content h1 { font-size: 22px; }
    .slider .slide-content p { font-size: 13px; }
    .slider .slide-content .btn { padding: 8px 18px; font-size: 13px; }
    .slider .arrow { width: 35px; height: 35px; font-size: 14px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: 80px 0;
    background: #fff;
}

.about .row {
    align-items: center;
}

.about .content h2 {
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #222;
    margin-bottom: 20px;
}

.about .content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about .image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    padding: 80px 0;
    background: var(--sci-light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--sci-blue);
    transition: var(--transition);
    transform: scaleY(0);
    transform-origin: bottom;
    border-radius: 0 5px 5px 0;
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14, 125, 197, 0.12);
}

.service-item img {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-item:hover img {
    transform: rotateY(360deg) scale(1.15);
}

.service-item h3 {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #222;
    margin-bottom: 12px;
}

.service-item:hover h3 {
    color: var(--sci-blue);
}

.service-item a {
    color: var(--sci-blue);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-item a i {
    transition: var(--transition);
}

.service-item:hover a i {
    transform: translateX(5px);
}

/* ============================================================
   CLIENTS
   ============================================================ */
.clients {
    padding: 80px 0;
}

.clients .row {
    align-items: center;
}

.clients .content h3 {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #222;
    margin-bottom: 15px;
}

.clients .content h3 cite {
    color: var(--sci-blue);
    font-style: normal;
}

.clients .content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat .number {
    font-size: 48px;
    font-weight: 700;
    color: var(--sci-blue);
    font-family: var(--font-heading);
}

.stat .label {
    font-size: 18px;
    color: #555;
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.clients-logos .logo-item {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.clients-logos .logo-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.clients-logos .logo-item img {
    max-height: 60px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   RATINGS
   ============================================================ */
.ratings {
    padding: 80px 0;
    background: var(--sci-gray-bg);
}

.ratings .row {
    align-items: center;
}

.ratings .content h3 {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #222;
    margin-bottom: 15px;
}

.ratings .content h3 cite {
    color: var(--sci-blue);
    font-style: normal;
}

.ratings .content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.ratings .content a {
    color: var(--sci-blue);
    font-weight: 600;
}

.ratings .content a:hover {
    color: var(--sci-dark-blue);
}

/* ============================================================
   MEMBERSHIPS
   ============================================================ */
.memberships {
    padding: 80px 0;
}

.memberships .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.memberships .logos img {
    max-height: 100px;
    object-fit: contain;
    transition: var(--transition);
    filter: grayscale(0.3);
    opacity: 0.8;
    cursor: pointer;
}

.memberships .logos img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.08);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--sci-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer .row {
    align-items: flex-start;
    gap: 30px;
}

.footer p {
    font-size: 14px;
    line-height: 1.8;
}

.footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer .footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .footer-links a:hover {
    color: var(--sci-blue);
    transform: translateX(5px);
}

.footer .footer-links a i {
    color: var(--sci-blue);
    width: 20px;
}

.footer .contact-info {
    list-style: none;
}

.footer .contact-info li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.footer .contact-info li i {
    color: var(--sci-blue);
    width: 20px;
}

.footer .contact-info li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer .contact-info li a:hover {
    color: var(--sci-blue);
}

.footer .social-icons {
    display: flex;
    gap: 15px;
}

.footer .social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.footer .social-icons a:hover {
    background: var(--sci-blue);
    color: #fff;
    transform: translateY(-3px);
}

.footer .bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

.footer .bottom a {
    color: var(--sci-blue);
}

.footer .bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer .footer-links a {
        justify-content: center;
    }
    .footer .contact-info li {
        justify-content: center;
    }
    .footer .social-icons {
        justify-content: center;
    }
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--sci-blue);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(14, 125, 197, 0.4);
    transition: var(--transition);
    z-index: 999;
}

#scrollTop:hover {
    background: var(--sci-dark-blue);
    transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .col-6, .col-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .about .content h2 {
        font-size: 28px;
    }
    
    .clients .content h3 {
        font-size: 24px;
    }
    
    .ratings .content h3 {
        font-size: 24px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .accessibility-tools {
        top: auto;
        bottom: 0;
        left: 0;
        transform: none;
        flex-direction: row;
        border-radius: 10px 10px 0 0;
        padding: 5px 10px;
        width: 100%;
        justify-content: center;
        border: none;
        border-top: 2px solid var(--sci-blue);
        box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.1);
    }
    
    .tools-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .accessibility-tools .tool-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .accessibility-tools .tool-btn span {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .clients-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .clients-logos .logo-item img {
        max-height: 40px;
    }
    
    .memberships .logos {
        gap: 20px;
    }
    
    .memberships .logos img {
        max-height: 60px;
    }
}

@media (orientation: landscape) and (max-width: 992px) {
    .slider {
        height: 350px;
        max-height: 350px;
    }
    .slider .slide-content h1 {
        font-size: 24px;
    }
    .slider .slide-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .slider .slide-content .btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    .slider .arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}/* ============================================================
   AWARDS SECTION - ENHANCED
   ============================================================ */
.awards-section {
    padding: 60px 0;
    background: #f8faff;
}

.awards-section .section-title {
    margin-bottom: 40px;
}

/* ===== شبكة الجوائز ===== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* ===== عنصر الجائزة ===== */
.award-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.award-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0e7dc5, #0a5a8c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.award-item:hover::before {
    transform: scaleX(1);
}

.award-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(14, 125, 197, 0.12);
    border-bottom-color: #0e7dc5;
}

/* ===== صورة الجائزة ===== */
.award-item .award-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7ff;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.award-item:hover .award-image {
    background: #0e7dc5;
    transform: scale(1.05) rotate(-5deg);
}

.award-item .award-image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.award-item:hover .award-image img {
    filter: brightness(0) invert(1);
}

/* ===== محتوى الجائزة ===== */
.award-item .award-content h4 {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.award-item .award-content p {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.award-item .award-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0e7dc5;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 20px;
    border-radius: 30px;
    border: 2px solid #0e7dc5;
}

.award-item .award-link:hover {
    background: #0e7dc5;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 125, 197, 0.3);
}

.award-item .award-link i {
    transition: all 0.3s ease;
}

.award-item .award-link:hover i {
    transform: translateX(5px);
}

/* ============================================================
   RESPONSIVE - AWARDS
   ============================================================ */
@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .award-item {
        padding: 20px 15px;
    }
    
    .award-item .award-image {
        width: 80px;
        height: 80px;
    }
    
    .award-item .award-image img {
        width: 45px;
        height: 45px;
    }
    
    .award-item .award-content h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }
}