﻿
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Cairo', sans-serif; }
        :root {
            --primary-blue: #004b93;
            --primary-blue-dark: #003366;
            --primary-blue-light: #005cba;
            --secondary-blue: #004b93;
            --gray: #6b7280;
            --gray-light: #9ca3af;
            --gray-dark: #374151;
            --accent: #38b000;
            --ice: #e8f4fc;
            --ice-dark: #c5dcef;
            --white: #ffffff;
            --text: #2c3e50;
            --text-light: #6b7c93;
            --glass: rgba(30,90,142,0.08);
            --glass-border: rgba(30,90,142,0.15);
            --shadow: 0 20px 60px rgba(30,90,142,0.15);
            --shadow-hover: 0 30px 80px rgba(30,90,142,0.25);
            --gradient-blue: linear-gradient(135deg, #004b93 0%, #005cba 50%, #38b000 100%);
            --gradient-blue-dark: linear-gradient(135deg, #003366 0%, #004b93 100%);
            --gradient-hero: linear-gradient(160deg, #003366 0%, #004b93 40%, #005cba 100%);
        }
        html { scroll-behavior: smooth; }
        body { background: #f7f9fc; color: var(--text); overflow-x: hidden; line-height: 1.8; }

        /* ====== LANGUAGE SWITCHER ====== */
        .lang-switcher {
            display: flex; align-items: center; gap: 0;
            background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
            border-radius: 10px; overflow: hidden; margin-right: 15px;
        }
        .lang-btn {
            padding: 8px 16px; border: none; background: transparent;
            color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 700;
            cursor: pointer; transition: all 0.3s; font-family: 'Cairo', sans-serif;
        }
        .lang-btn.active { background: var(--white); color: var(--primary-blue); }
        .lang-btn:hover:not(.active) { background: rgba(255,255,255,0.1); color: var(--white); }
        .navbar.scrolled .lang-switcher { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

        /* ====== LTR Adjustments ====== */
        html[dir="ltr"] .about-content h3::before { right: auto; left: 0; }
        html[dir="ltr"] .about-content h3 { padding-right: 0; padding-left: 20px; }
        html[dir="ltr"] .about-feature:hover { transform: translateX(5px); }
        html[dir="ltr"] .product-link:hover { transform: translateX(5px); }
        html[dir="ltr"] .footer-col h4::after { right: auto; left: 0; }
        html[dir="ltr"] .footer-col ul li a::before { content: '→'; }
        html[dir="ltr"] .footer-col ul li a:hover { padding-right: 0; padding-left: 5px; }
        html[dir="ltr"] .product-link i { transform: scaleX(-1); }
        html[dir="ltr"] .testimonial-card::before { right: auto; left: 30px; }
        html[dir="ltr"] .scroll-top-btn { left: auto; right: 30px; }

        /* ====== NAVBAR ====== */
        .navbar {
            position: fixed; top: 0; width: 100%; z-index: 1000;
            padding: 18px 0; transition: all 0.4s ease; background: transparent;
        }
        .navbar.scrolled {
            background: rgba(30,90,142,0.97); backdrop-filter: blur(20px);
            padding: 10px 0; box-shadow: 0 5px 30px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1300px; margin: 0 auto; padding: 0 40px;
            display: flex; justify-content: space-between; align-items: center;
        }
        .logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
        .logo-img { height: 50px; width: auto; object-fit: contain; transition: all 0.3s; filter: brightness(0) invert(1); }
        .navbar.scrolled .logo-img { filter: brightness(0) invert(1); }
        .nav-right { display: flex; align-items: center; gap: 10px; }
        .nav-links { display: flex; gap: 8px; list-style: none; }
        .nav-links a {
            color: rgba(255,255,255,0.9); text-decoration: none; font-weight: 600; font-size: 14px;
            padding: 10px 20px; border-radius: 10px; transition: all 0.3s; position: relative;
        }
        .nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.15); }
        .nav-links a.active::before {
            content: ''; position: absolute; bottom: 4px; right: 50%; transform: translateX(50%);
            width: 20px; height: 3px; background: var(--white); border-radius: 2px;
        }
        .menu-toggle { display: none; font-size: 24px; cursor: pointer; color: var(--white); }

        /* ====== HERO ====== */
        .hero {
            min-height: 100vh; background: var(--gradient-hero);
            display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 120px;
        }
        .hero-bg-animation { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
        .floating-pill { position: absolute; border-radius: 50px; opacity: 0.15; animation: floatPill 15s infinite ease-in-out; }
        .pill-1 { width: 80px; height: 40px; background: linear-gradient(135deg, var(--white) 0%, var(--ice) 100%); top: 20%; left: 10%; animation-delay: 0s; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        .pill-2 { width: 100px; height: 50px; background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--secondary-blue) 100%); top: 60%; left: 5%; animation-delay: 3s; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        .pill-3 { width: 60px; height: 30px; background: linear-gradient(135deg, var(--ice) 0%, var(--white) 100%); top: 40%; right: 8%; animation-delay: 6s; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        .pill-4 { width: 90px; height: 45px; background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-blue) 100%); bottom: 20%; right: 12%; animation-delay: 9s; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        @keyframes floatPill {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-30px) rotate(5deg); }
            50% { transform: translateY(-15px) rotate(-5deg); }
            75% { transform: translateY(-45px) rotate(3deg); }
        }
        .rotating-cross { position: absolute; font-size: 120px; color: rgba(255,255,255,0.08); animation: rotateCross 20s infinite linear; }
        .cross-1 { top: 15%; right: 15%; animation-delay: 0s; }
        .cross-2 { bottom: 25%; left: 8%; animation-delay: 5s; font-size: 80px; }
        @keyframes rotateCross { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        .particle { position: absolute; width: 8px; height: 8px; background: rgba(255,255,255,0.3); border-radius: 50%; animation: floatParticle 12s infinite ease-in-out; }
        .particle:nth-child(1) { top: 25%; left: 20%; animation-delay: 0s; }
        .particle:nth-child(2) { top: 55%; left: 15%; animation-delay: 2s; width: 12px; height: 12px; }
        .particle:nth-child(3) { top: 35%; right: 20%; animation-delay: 4s; }
        .particle:nth-child(4) { bottom: 30%; right: 25%; animation-delay: 6s; width: 10px; height: 10px; }
        .particle:nth-child(5) { top: 70%; left: 30%; animation-delay: 8s; }
        .particle:nth-child(6) { top: 10%; right: 35%; animation-delay: 10s; width: 6px; height: 6px; }
        @keyframes floatParticle {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
            50% { transform: translateY(-40px) translateX(20px); opacity: 0.6; }
        }
        .hero-grid-pattern {
            position: absolute; inset: 0;
            background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
            background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
        }
        .hero-content {
            max-width: 1300px; margin: 0 auto; padding: 0 40px;
            display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2;
        }
        .hero-text { color: var(--white); }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3); padding: 8px 20px; border-radius: 50px;
            font-size: 13px; color: var(--white); margin-bottom: 25px; animation: fadeInUp 0.8s ease;
        }
        .hero-badge i { font-size: 10px; }
        .hero-text h1 { font-size: 48px; font-weight: 900; margin-bottom: 25px; line-height: 1.3; animation: fadeInUp 0.8s ease 0.2s backwards; }
        .hero-text h1 span { background: linear-gradient(135deg, #ffffff 0%, #e8f4fc 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .hero-text p { font-size: 17px; opacity: 0.9; margin-bottom: 35px; max-width: 550px; text-align: justify; animation: fadeInUp 0.8s ease 0.4s backwards; }
        .hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.6s backwards; }
        .btn {
            padding: 15px 35px; border-radius: 12px; font-weight: 700; text-decoration: none;
            display: inline-flex; align-items: center; gap: 10px; transition: all 0.4s;
            border: none; cursor: pointer; font-size: 15px; font-family: 'Cairo', sans-serif;
        }
        .btn-primary { background: var(--white); color: var(--primary-blue); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
        .btn-glass { background: rgba(255,255,255,0.1); color: var(--white); border: 2px solid rgba(255,255,255,0.3); backdrop-filter: blur(10px); }
        .btn-glass:hover { background: rgba(255,255,255,0.2); border-color: var(--white); }

        /* ====== ANIMATED HERO VISUAL ====== */
        .hero-visual { position: relative; animation: fadeInRight 1s ease 0.5s backwards; display: flex; justify-content: center; align-items: center; min-height: 500px; }
        .medical-animation-container { position: relative; width: 100%; max-width: 500px; height: 450px; }
        .central-cross {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 180px; height: 180px; background: var(--gradient-blue); border-radius: 30px;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 20px 60px rgba(30,90,142,0.5), inset 0 2px 10px rgba(255,255,255,0.3);
            animation: pulseCross 3s infinite ease-in-out; z-index: 10;
        }
        .central-cross::before { content: '+'; font-size: 120px; color: var(--white); font-weight: 300; text-shadow: 0 4px 15px rgba(0,0,0,0.2); }
        @keyframes pulseCross { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.05); } }
        .rotating-ring {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 280px; height: 280px; border: 3px solid rgba(255,255,255,0.2); border-radius: 50%; animation: rotateRing 15s infinite linear;
        }
        .rotating-ring::before {
            content: ''; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
            width: 20px; height: 20px; background: var(--primary-blue-light); border-radius: 50%; box-shadow: 0 0 20px rgba(45,122,184,0.8);
        }
        @keyframes rotateRing { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
        .floating-icon {
            position: absolute; width: 70px; height: 70px; background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px); border: 2px solid rgba(255,255,255,0.3); border-radius: 20px;
            display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--white);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2); animation: floatIcon 6s infinite ease-in-out;
        }
        .icon-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
        .icon-2 { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 1.5s; }
        .icon-3 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 3s; }
        .icon-4 { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 4.5s; }
        @keyframes floatIcon { 0%, 100% { transform: translateY(0) translateX(-50%) rotate(0deg); } 50% { transform: translateY(-15px) translateX(-50%) rotate(5deg); } }
        .capsule {
            position: absolute; width: 60px; height: 30px; border-radius: 30px;
            background: linear-gradient(135deg, var(--white) 0%, var(--ice) 100%);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2); animation: floatCapsule 8s infinite ease-in-out;
        }
        .capsule::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 2px; height: 100%; background: rgba(30,90,142,0.3); }
        .capsule-1 { top: 80px; right: 60px; animation-delay: 0s; background: linear-gradient(135deg, #e8f4fc 0%, #c5dcef 100%); }
        .capsule-2 { bottom: 100px; right: 40px; animation-delay: 2s; background: linear-gradient(135deg, #005cba 0%, #004b93 100%); }
        .capsule-3 { top: 120px; left: 40px; animation-delay: 4s; background: linear-gradient(135deg, #ffffff 0%, #e8f4fc 100%); }
        .capsule-4 { bottom: 60px; left: 60px; animation-delay: 6s; background: linear-gradient(135deg, #004b93 0%, #003366 100%); }
        @keyframes floatCapsule { 0%, 100% { transform: translateY(0) rotate(-10deg); } 50% { transform: translateY(-20px) rotate(10deg); } }
        .glass-card {
            position: absolute; background: rgba(255,255,255,0.12); backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.2); border-radius: 16px; padding: 20px;
            color: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.2); animation: floatCard 7s infinite ease-in-out; z-index: 5;
        }
        .glass-card-1 { top: 40px; right: 20px; animation-delay: 0s; }
        .glass-card-2 { bottom: 80px; right: 10px; animation-delay: 3.5s; }
        .glass-card-3 { bottom: 40px; left: 20px; animation-delay: 2s; }
        @keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
        .glass-card i { font-size: 28px; margin-bottom: 8px; color: var(--ice); }
        .glass-card h4 { font-size: 24px; font-weight: 900; margin-bottom: 4px; }
        .glass-card p { font-size: 12px; opacity: 0.9; }
        .shine-effect {
            position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); animation: shine 8s infinite ease-in-out;
        }
        @keyframes shine { 0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; } 50% { transform: translate(20px, 20px) rotate(10deg); opacity: 0.8; } }

                /* ====== BRANCHES ====== */
        .branch-card { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
        .branch-info { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
        html[dir="rtl"] .branch-info { align-items: flex-start; }
        .branch-map { height: 100%; min-height: 400px; }

        /* ====== SECTIONS ====== */
        section { padding: 100px 0; }
        .container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
        .section-header { text-align: center; margin-bottom: 70px; }
        .section-header .label {
            display: inline-flex; align-items: center; gap: 8px; background: var(--ice); color: var(--primary-blue);
            padding: 8px 24px; border-radius: 50px; font-size: 13px; font-weight: 700;
            letter-spacing: 1px; margin-bottom: 15px; border: 1px solid var(--ice-dark);
        }
        .section-header h2 { font-size: 42px; color: var(--primary-blue); margin-bottom: 15px; font-weight: 900; }
        .section-header p { color: var(--text-light); max-width: 650px; margin: 0 auto; font-size: 16px; }

        /* ====== ABOUT ====== */
        .about { background: var(--white); }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
        .about-image-wrap { position: relative; }
        .about-image { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); position: relative; }
        .about-image img { width: 100%; height: 420px; display: block; object-fit: cover; object-position: center; }
        .about-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,90,142,0.3) 0%, transparent 50%); }
        .about-year-badge {
            position: absolute; bottom: -20px; left: -20px; background: var(--gradient-blue);
            color: var(--white); padding: 25px 30px; border-radius: 20px; text-align: center;
            box-shadow: 0 15px 40px rgba(30,90,142,0.4); z-index: 2;
        }
        .about-year-badge h3 { font-size: 40px; font-weight: 900; margin: 0; line-height: 1; }
        .about-year-badge p { font-size: 13px; margin: 5px 0 0; font-weight: 700; }
        .about-decor {
            position: absolute; top: -20px; right: -20px; width: 120px; height: 120px;
            border: 3px solid var(--primary-blue); border-radius: 20px; opacity: 0.2; z-index: -1;
        }
        .about-content h3 { font-size: 32px; color: var(--primary-blue); margin-bottom: 20px; font-weight: 900; position: relative; padding-right: 20px; }
        .about-content h3::before { content: ''; position: absolute; right: 0; top: 5px; bottom: 5px; width: 4px; background: var(--gradient-blue); border-radius: 2px; }
        .about-content > p { color: var(--text-light); margin-bottom: 18px; font-size: 15px; line-height: 2; text-align: justify; }
        .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
        .about-feature {
            display: flex; align-items: center; gap: 12px; padding: 14px 18px;
            background: var(--ice); border-radius: 12px; transition: all 0.3s; border: 1px solid transparent;
        }
        .about-feature:hover { background: var(--white); border-color: var(--primary-blue); box-shadow: 0 5px 20px rgba(30,90,142,0.15); transform: translateX(-5px); }
        .about-feature i {
            color: var(--primary-blue); font-size: 18px; width: 35px; height: 35px;
            background: rgba(30,90,142,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
        }
        .about-feature span { font-weight: 600; font-size: 14px; color: var(--primary-blue); }

        /* ====== PRODUCTS - MIXED GRID (2+3) ====== */
        .products { background: linear-gradient(180deg, #f7f9fc 0%, #eef3fa 50%, #f7f9fc 100%); position: relative; overflow: hidden; }
        .products::before {
            content: ''; position: absolute; top: 20%; right: -100px; width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(30,90,142,0.12) 0%, transparent 70%);
            border-radius: 50%; filter: blur(40px); animation: floatOrb 15s infinite ease-in-out; pointer-events: none;
        }
        .products::after {
            content: ''; position: absolute; bottom: 20%; left: -100px; width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(45,122,184,0.12) 0%, transparent 70%);
            border-radius: 50%; filter: blur(40px); animation: floatOrb 15s infinite ease-in-out reverse; pointer-events: none;
        }
        @keyframes floatOrb { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -30px) scale(1.1); } 66% { transform: translate(-20px, 20px) scale(0.9); } }
        .products-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; position: relative; z-index: 1; }
        .product-card { grid-column: span 2; }
        
        .product-card {
            position: relative; border-radius: 24px; overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); cursor: pointer;
            background: var(--white); box-shadow: 0 4px 20px rgba(30,90,142,0.08);
        }
        .product-card::before {
            content: ''; position: absolute; inset: 0; border-radius: 24px; padding: 2px;
            background: linear-gradient(135deg, rgba(30,90,142,0) 0%, rgba(30,90,142,0) 40%, rgba(30,90,142,0.5) 50%, rgba(30,90,142,0) 60%, rgba(30,90,142,0) 100%);
            background-size: 300% 300%; background-position: 0% 0%;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor; mask-composite: exclude;
            transition: background-position 0.8s; z-index: 2; pointer-events: none;
        }
        .product-card:hover::before { background-position: 100% 100%; animation: borderRotate 2s linear infinite; }
        @keyframes borderRotate { 0% { background-position: 0% 0%; } 100% { background-position: 300% 300%; } }
        .product-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 25px 50px rgba(30,90,142,0.2); }
        .product-card::after {
            content: ''; position: absolute; width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(45,122,184,0.15) 0%, transparent 70%);
            border-radius: 50%; top: var(--mouse-y, 50%); left: var(--mouse-x, 50%);
            transform: translate(-50%, -50%); opacity: 0; transition: opacity 0.3s; pointer-events: none; z-index: 1;
        }
        .product-card:hover::after { opacity: 1; }
        .product-image { position: relative; overflow: hidden; height: 260px; display: flex; align-items: center; justify-content: center; }
        
        .product-card:nth-child(1) .product-image { background: linear-gradient(135deg, #001f3f 0%, #004b93 50%, #005cba 100%); }
        .product-card:nth-child(2) .product-image { background: linear-gradient(135deg, #1a4971 0%, #004b93 100%); }
        .product-card:nth-child(3) .product-image { background: linear-gradient(135deg, #004b93 0%, #38b000 100%); }
        .product-card:nth-child(4) .product-image { background: linear-gradient(135deg, #003366 0%, #005cba 100%); }
        .product-card:nth-child(5) .product-image { background: linear-gradient(135deg, #001f3f 0%, #004b93 100%); }
        .product-card:nth-child(6) .product-image { background: linear-gradient(135deg, #1e5a8e 0%, #38b000 100%); }
        .product-image img { width: 100%; height: 100%; object-fit: cover; transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1); position: relative; z-index: 2; }
        .product-card:hover .product-image img { transform: scale(1.15) rotate(-2deg); filter: brightness(1.1); }
        .product-image::before { content: ''; position: absolute; width: 200px; height: 200px; background: rgba(255,255,255,0.1); border-radius: 50%; top: -60px; right: -60px; transition: all 0.6s; z-index: 1; }
        .product-image::after { content: ''; position: absolute; width: 150px; height: 150px; background: rgba(255,255,255,0.08); border-radius: 50%; bottom: -50px; left: -50px; transition: all 0.6s; z-index: 1; }
        .product-card:hover .product-image::before { transform: scale(1.5) translate(-20px, 20px) rotate(180deg); background: rgba(255,255,255,0.15); }
        .product-card:hover .product-image::after { transform: scale(1.5) translate(20px, -20px) rotate(-180deg); background: rgba(255,255,255,0.12); }
        .product-image-overlay {
            position: absolute; inset: 0; background: rgba(15,58,94,0.7); backdrop-filter: blur(8px);
            display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.4s; z-index: 3;
        }
        .product-card:hover .product-image-overlay { opacity: 1; }
        .view-btn {
            width: 60px; height: 60px; background: var(--white); border-radius: 50%;
            display: flex; align-items: center; justify-content: center; color: var(--primary-blue); font-size: 22px;
            transform: scale(0) rotate(-180deg); transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3); text-decoration: none;
        }
        .product-card:hover .view-btn { transform: scale(1) rotate(0deg); }
        .view-btn:hover { background: var(--primary-blue); color: var(--white); transform: scale(1.1) rotate(15deg); }
        .product-tag {
            position: absolute; top: 15px; right: 15px; background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px); color: var(--primary-blue); padding: 4px 10px; border-radius: 50px;
            font-size: 10px; font-weight: 700; z-index: 4; box-shadow: 0 3px 10px rgba(0,0,0,0.15);
            display: inline-flex; align-items: center; gap: 4px; border: 1px solid rgba(255,255,255,0.3);
            transition: all 0.3s; line-height: 1;
        }
        html[dir="ltr"] .product-tag { right: auto; left: 15px; }
        .product-tag i { font-size: 9px; }
        .product-card:hover .product-tag { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
        .product-content { padding: 22px; display: flex; flex-direction: column; gap: 10px; position: relative; background: var(--white); }
        .product-content::before {
            content: ''; position: absolute; top: 0; left: 22px; right: 22px; height: 3px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-blue-light), var(--primary-blue));
            background-size: 200% 100%; border-radius: 0 0 3px 3px; transform: scaleX(0); transform-origin: right; transition: transform 0.5s;
        }
        .product-card:hover .product-content::before { transform: scaleX(1); animation: gradientShift 2s linear infinite; }
        @keyframes gradientShift { 0% { background-position: 0% 0%; } 100% { background-position: 200% 0%; } }
        .product-content h3 { font-size: 17px; color: var(--primary-blue); font-weight: 800; line-height: 1.4; margin: 0; transition: all 0.3s; }
        
        .product-card:hover .product-content h3 { color: var(--primary-blue-dark); transform: translateX(-3px); }
        html[dir="ltr"] .product-card:hover .product-content h3 { transform: translateX(3px); }
        .product-content p { color: var(--text-light); font-size: 13px; line-height: 1.8; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        
        .product-number {
            position: absolute; top: 15px; left: 15px; width: 36px; height: 36px;
            background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); border: 1.5px solid rgba(255,255,255,0.3);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            color: var(--white); font-weight: 900; font-size: 13px; z-index: 4; transition: all 0.4s;
        }
        html[dir="ltr"] .product-number { left: auto; right: 15px; }
        .product-card:hover .product-number { background: var(--white); color: var(--primary-blue); transform: rotate(-360deg) scale(1.1); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

        /* ====== SERVICES ====== */
        .services { background: var(--gradient-blue-dark); position: relative; overflow: hidden; }
        .services::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 50px 50px; }
        .services .section-header .label { background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.3); }
        .services .section-header h2 { color: var(--white); }
        .services .section-header p { color: rgba(255,255,255,0.8); }
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; position: relative; z-index: 1; }
        .service-card {
            background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15);
            padding: 40px 30px; border-radius: 20px; text-align: center; transition: all 0.4s; position: relative; overflow: hidden;
        }
        .service-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: var(--white); transform: scaleX(0); transition: transform 0.4s; }
        .service-card:hover::before { transform: scaleX(1); }
        .service-card:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); transform: translateY(-8px); }
        .service-icon {
            width: 75px; height: 75px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2);
            border-radius: 20px; display: flex; align-items: center; justify-content: center;
            margin: 0 auto 25px; color: var(--white); font-size: 28px; transition: all 0.4s;
        }
        .service-card:hover .service-icon { background: var(--white); color: var(--primary-blue); border-color: transparent; transform: rotate(-5deg) scale(1.05); }
        .service-card h3 { font-size: 20px; color: var(--white); margin-bottom: 15px; font-weight: 700; }
        .service-card p { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.9; }

        /* ====== TRUSTED ====== */
        .trusted { background: linear-gradient(135deg, #f7f9fc 0%, #e8f0f8 50%, #f7f9fc 100%); position: relative; overflow: hidden; }
        .trusted::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--gradient-blue); }
        .trusted::after { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(30,90,142,0.05) 0%, transparent 70%); border-radius: 50%; }
        .trusted-wrapper { position: relative; z-index: 1; }
        .trusted-header { text-align: center; margin-bottom: 60px; }
        .trusted-badge {
            display: inline-flex; align-items: center; gap: 10px; background: var(--gradient-blue);
            color: var(--white); padding: 12px 30px; border-radius: 50px; font-size: 14px; font-weight: 700;
            margin-bottom: 20px; box-shadow: 0 10px 30px rgba(30,90,142,0.3); animation: pulse 2s infinite;
        }
        @keyframes pulse { 0%, 100% { box-shadow: 0 10px 30px rgba(30,90,142,0.3); } 50% { box-shadow: 0 15px 40px rgba(30,90,142,0.5); } }
        .trusted-header h2 { font-size: 48px; color: var(--primary-blue); margin-bottom: 15px; font-weight: 900; }
        .trusted-header p { color: var(--text-light); font-size: 17px; max-width: 700px; margin: 0 auto; }
        .trust-indicators { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 60px; }
        .trust-card {
            background: var(--white); padding: 40px 30px; border-radius: 24px; text-align: center;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); border: 2px solid transparent;
            position: relative; overflow: hidden; box-shadow: 0 10px 40px rgba(30,90,142,0.1);
        }
        .trust-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-blue); transform: scaleX(0); transition: transform 0.4s; }
        .trust-card:hover::before { transform: scaleX(1); }
        .trust-card:hover { transform: translateY(-10px); border-color: var(--primary-blue-light); box-shadow: 0 20px 60px rgba(30,90,142,0.2); }
        .trust-icon {
            width: 90px; height: 90px; background: var(--ice); border-radius: 50%;
            display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
            font-size: 40px; color: var(--primary-blue); transition: all 0.4s; position: relative;
        }
        .trust-card:hover .trust-icon { background: var(--gradient-blue); color: var(--white); transform: rotateY(360deg); }
        .trust-card h3 { font-size: 42px; color: var(--primary-blue); margin-bottom: 10px; font-weight: 900; }
        .trust-card p { color: var(--text-light); font-size: 15px; font-weight: 600; }

        /* Testimonials */
        .testimonials-section { margin-top: 80px; }
        .testimonials-title { text-align: center; margin-bottom: 50px; }
        .testimonials-title h3 { font-size: 32px; color: var(--primary-blue); margin-bottom: 10px; }
        .testimonials-title p { color: var(--text-light); }
        .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
        .testimonial-card {
            background: var(--white); padding: 35px; border-radius: 20px; box-shadow: 0 10px 40px rgba(30,90,142,0.1);
            transition: all 0.4s; position: relative; border: 1px solid rgba(30,90,142,0.1);
        }
        .testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(30,90,142,0.15); }
        .testimonial-card::before { content: '"'; position: absolute; top: 20px; right: 30px; font-size: 80px; color: var(--ice); font-family: Georgia, serif; line-height: 1; }
        .testimonial-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
        .doctor-avatar {
            width: 70px; height: 70px; border-radius: 50%; background: var(--gradient-blue);
            display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 28px; font-weight: 700; flex-shrink: 0;
        }
        .doctor-info h4 { color: var(--primary-blue); font-size: 18px; margin-bottom: 5px; }
        .doctor-info p { color: var(--text-light); font-size: 14px; }
        .testimonial-text { color: var(--text); font-size: 15px; line-height: 1.9; margin-bottom: 15px; }
        .testimonial-rating { color: #fbbf24; font-size: 16px; }

        /* Certifications */
        .certifications-bar { margin-top: 80px; padding: 40px; background: var(--white); border-radius: 20px; box-shadow: 0 10px 40px rgba(30,90,142,0.1); }
        .certifications-title { text-align: center; margin-bottom: 30px; }
        .certifications-title h4 { color: var(--primary-blue); font-size: 24px; margin-bottom: 10px; }
        .certifications-grid { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
        .cert-item { display: flex; align-items: center; gap: 12px; padding: 15px 25px; background: var(--ice); border-radius: 12px; transition: all 0.3s; }
        .cert-item:hover { background: var(--gradient-blue); transform: translateY(-3px); }
        .cert-item:hover i, .cert-item:hover span { color: var(--white); }
        .cert-item i { font-size: 28px; color: var(--primary-blue); transition: color 0.3s; }
        .cert-item span { font-weight: 700; color: var(--primary-blue); font-size: 14px; }

        /* ====== CTA ====== */
        .cta { background: var(--gradient-blue-dark); padding: 90px 0; text-align: center; color: var(--white); position: relative; overflow: hidden; }
        .cta::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 40px 40px; }
        .cta-content { position: relative; z-index: 1; max-width: 750px; margin: 0 auto; padding: 0 40px; }
        .cta h2 { font-size: 38px; margin-bottom: 15px; font-weight: 900; }
        .cta p { font-size: 17px; opacity: 0.9; margin-bottom: 35px; }
        .cta .btn-primary:hover { transform: translateY(-3px) scale(1.02); }

        /* ====== FOOTER (مطابق لصفحة منتجاتنا) ====== */
        footer {
            background-color: #0f2b46; color: #ffffff; padding-top: 70px;
            position: relative; overflow: hidden; font-family: 'Cairo', sans-serif;
        }
        footer::before {
            content: ''; position: absolute; top: -50%; left: -10%; width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(30,90,142,0.15) 0%, transparent 70%); 
            border-radius: 50%; pointer-events: none;
        }
        .footer-grid {
            max-width: 1300px; margin: 0 auto; padding: 0 40px;
            display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; 
            position: relative; z-index: 2;
        }
        .footer-col h4 {
            font-size: 20px; font-weight: 800; margin-bottom: 25px; color: #ffffff;
            position: relative; padding-bottom: 15px;
        }
        .footer-col h4::after {
            content: ''; position: absolute; bottom: 0; right: 0; width: 50px; height: 3px;
            background: linear-gradient(90deg, #38b000, #004b93); border-radius: 2px;
        }
        html[dir="ltr"] .footer-col h4::after { right: auto; left: 0; }
        .footer-col p { color: #cbd5e1; line-height: 1.9; font-size: 14px; margin-bottom: 15px; opacity: 0.9; }
        .footer-links, .footer-col ul { list-style: none; padding: 0; margin: 0; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a {
            color: #cbd5e1; text-decoration: none; font-size: 14px; transition: all 0.3s ease;
            display: inline-flex; align-items: center; gap: 8px;
        }
        .footer-col ul li a:hover { color: #60a5fa; transform: translateX(-5px); }
        html[dir="ltr"] .footer-col ul li a:hover { transform: translateX(5px); }

        .contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; color: #cbd5e1; font-size: 14px; }
        .contact-item i { color: #38b000; font-size: 18px; margin-top: 4px; width: 20px; text-align: center; }

        .social-icons { display: flex; gap: 12px; margin-top: 20px; }
        .social-icon {
            width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 50%;
            display: flex; align-items: center; justify-content: center; color: white; 
            text-decoration: none; transition: all 0.3s; font-size: 16px;
        }
        .social-icon:hover { background: #38b000; transform: translateY(-3px); }

        .footer-bottom {
            background-color: #0a1f33; padding: 20px 0; margin-top: 50px; text-align: center;
            font-size: 13px; color: #94a3b8; border-top: 1px solid rgba(255,255,255,0.05);
        }
        .footer-bottom a { color: #60a5fa; text-decoration: none; font-weight: 600; }
        .footer-bottom a:hover { color: #fff; text-decoration: underline; }

        @media (max-width: 992px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
        }
        @media (max-width: 576px) {
            .footer-grid { grid-template-columns: 1fr; padding: 0 20px; }
            footer { padding-top: 40px; }
        }

        /* ====== SCROLL TO TOP BUTTON ====== */
        .scroll-top-btn {
            position: fixed; bottom: 30px; left: 30px; width: 55px; height: 55px;
            background: var(--gradient-blue); color: var(--white); border: none; border-radius: 50%;
            cursor: pointer; font-size: 20px; display: flex; align-items: center; justify-content: center;
            box-shadow: 0 10px 30px rgba(30,90,142,0.4); z-index: 999;
            opacity: 0; visibility: hidden; transform: translateY(20px) scale(0.8);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); overflow: hidden;
        }
        .scroll-top-btn::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
            border-radius: 50%; opacity: 0; transition: opacity 0.3s;
        }
        .scroll-top-btn::after {
            content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%;
            border: 2px solid var(--primary-blue-light); opacity: 0; animation: ripple 2s infinite;
        }
        @keyframes ripple { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.5); opacity: 0; } }
        .scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
        .scroll-top-btn:hover { transform: translateY(-5px) scale(1.1); box-shadow: 0 15px 40px rgba(30,90,142,0.5); background: var(--gradient-blue-dark); }
        .scroll-top-btn:hover::before { opacity: 1; }
        .scroll-top-btn:hover i { animation: bounceUp 0.6s ease infinite; }
        @keyframes bounceUp { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
        .scroll-top-btn i { position: relative; z-index: 2; transition: transform 0.3s; }
        .scroll-top-progress { position: absolute; top: -3px; left: -3px; width: 61px; height: 61px; transform: rotate(-90deg); }
        .scroll-top-progress circle { fill: none; stroke: rgba(255,255,255,0.3); stroke-width: 3; }
        .scroll-top-progress .progress-bar { stroke: var(--white); stroke-dasharray: 170; stroke-dashoffset: 170; transition: stroke-dashoffset 0.3s; }

        /* ====== ANIMATIONS ====== */
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeInRight { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
        .fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        /* ====== RESPONSIVE ====== */
        @media (max-width: 968px) {
            .nav-links {
                position: fixed; top: 80px; right: -100%; width: 85%; /* تم تعديل العرض ليناسب الموبايل */
                height: calc(100vh - 80px);
                background: var(--primary-blue-dark); flex-direction: column; padding: 30px;
                transition: right 0.3s; box-shadow: -5px 0 30px rgba(0,0,0,0.3); gap: 5px; z-index: 1001; /* رفع الطبقة لتظهر فوق كل شيء */
            }
            html[dir="ltr"] .nav-links { right: auto; left: -100%; }
            html[dir="ltr"] .nav-links.active { left: 0; }
            .nav-links.active { right: 0; }
            .nav-links a { padding: 14px 20px; border-radius: 12px; font-size: 16px; } /* تكبير الخط قليلاً للقراءة */
            .menu-toggle { display: block; }
            .hero-content { grid-template-columns: 1fr; text-align: center; }
            .hero-text p { margin-right: auto; margin-left: auto; }
            .hero-buttons { justify-content: center; }
            .hero-text h1 { font-size: 36px; }
            .hero-visual { display: flex; transform: scale(0.85); margin-top: 20px; min-height: 350px; }
            .about-grid { grid-template-columns: 1fr; }
            .branch-card { grid-template-columns: 1fr; }
            .branch-map { height: 300px; min-height: 300px; }
            .section-header h2 { font-size: 32px; }
            .products-grid { grid-template-columns: repeat(2, 1fr); }
            .product-card:nth-child(n) { grid-column: span 1; }
            .product-image { height: 220px; }
            
            .testimonials-grid { grid-template-columns: 1fr; }
            
            /* تعديلات الموبايل للوجو واللغة */
            .logo-img { height: 38px; } /* تصغير اللوجو */
            .lang-switcher { margin-right: 0; margin-left: 10px; }
        }
        @media (max-width: 600px) {
            .hero-text h1 { font-size: 28px; }
            .about-features { grid-template-columns: 1fr; }
            .section-header h2 { font-size: 26px; }
            section { padding: 70px 0; }
            .container { padding: 0 20px; }
            .cta h2 { font-size: 28px; }
            .about-year-badge { bottom: -15px; left: 10px; padding: 18px 22px; }
            .about-year-badge h3 { font-size: 32px; }
            .trusted-header h2 { font-size: 32px; }
            .certifications-grid { gap: 15px; }
            .cert-item { padding: 12px 18px; }
            
                                    .about-image img { height: 320px; }
            .logo-img { height: 32px; } /* تصغير اللوجو أكثر في الشاشات الصغيرة جداً */ /* تصغير اللوجو أكثر في الشاشات الصغيرة جداً */
            .hero-visual { transform: scale(0.65); min-height: 280px; margin-top: 10px; }
            
            /* تصغير زر اللغة أكثر */
            .lang-btn { padding: 5px 10px; font-size: 11px; }
            
            .products-grid { grid-template-columns: 1fr; }
            .product-image { height: 200px; }
            
            .stat-number { font-size: 26px; }
            .stat-icon { width: 45px; height: 45px; font-size: 18px; }
            .scroll-top-btn { width: 48px; height: 48px; bottom: 20px; left: 20px; font-size: 18px; }
            .scroll-top-progress { width: 54px; height: 54px; top: -3px; left: -3px; }
            html[dir="ltr"] .scroll-top-btn { left: auto; right: 20px; }
        }
    








