/* ===================================
   Smart Medical - Professional Website
   CSS Styles with Animations
   =================================== */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary-blue: #0077B6;
    --secondary-cyan: #00B4D8;
    --light-cyan: #90E0EF;
    --dark-blue: #03045E;
    --accent-teal: #48CAE4;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark-gray: #343A40;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    --gradient-dark: linear-gradient(135deg, #03045E 0%, #0077B6 100%);
    --gradient-light: linear-gradient(135deg, #90E0EF 0%, #CAF0F8 100%);

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-arabic: 'Cairo', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(0, 119, 182, 0.3);

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;
}

/* ===== Dark Mode Variables ===== */
[data-theme="dark"] {
    /* Dark Mode Colors - Premium Deep Navy Palette */
    --primary-blue: #22D3EE;
    --secondary-cyan: #67E8F9;
    --light-cyan: #164E63;
    --dark-blue: #38BDF8;
    --accent-teal: #06B6D4;
    --white: #0a0f1a;
    --light-gray: #111827;
    --gray: #94A3B8;
    --dark-gray: #F1F5F9;

    /* Dark Mode Gradients */
    --gradient-primary: linear-gradient(135deg, #0891B2 0%, #22D3EE 100%);
    --gradient-dark: linear-gradient(135deg, #0a0f1a 0%, #1E3A5F 100%);
    --gradient-light: linear-gradient(135deg, #1E3A5F 0%, #0F172A 100%);

    /* Dark Mode Shadows with Glow */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(34, 211, 238, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 20px rgba(34, 211, 238, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(34, 211, 238, 0.1);
    --shadow-glow: 0 0 30px rgba(34, 211, 238, 0.4);
}

/* Dark Mode Text Color Fixes */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: var(--dark-gray);
}

[data-theme="dark"] p {
    color: var(--gray);
}

[data-theme="dark"] .strength-item p,
[data-theme="dark"] .section-dark h2,
[data-theme="dark"] .section-dark h3,
[data-theme="dark"] .section-dark p {
    color: #ffffff;
}

[data-theme="dark"] .highlight-item span,
[data-theme="dark"] .ceo-quote p,
[data-theme="dark"] .mv-card p,
[data-theme="dark"] .service-card p,
[data-theme="dark"] .value-card p,
[data-theme="dark"] .about-content p,
[data-theme="dark"] .team-text p,
[data-theme="dark"] .csr-text p {
    color: var(--gray);
}

[data-theme="dark"] .org-subitem {
    color: var(--gray);
    background: #1E3A5F;
}

[data-theme="dark"] .branch-tag {
    color: var(--primary-blue);
    background: rgba(34, 211, 238, 0.1);
}

[data-theme="dark"] .header {
    background: rgba(10, 15, 26, 0.98);
}

/* Theme Transition */
body,
body * {
    transition: background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

/* ===== Reset & Base Styles ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

body.rtl {
    font-family: var(--font-arabic);
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-blue);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* ===== Section Styles ===== */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-alt {
    background-color: var(--light-gray);
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ===== Page Hero (Internal Pages) ===== */
.page-hero {
    background: var(--gradient-primary);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

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

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

/* Logo Image Styles */
.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-full);
}

/* Splash Screen Logo */
.splash-logo-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    animation: logoPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 40px rgba(144, 224, 239, 0.6)) drop-shadow(0 0 60px rgba(0, 180, 216, 0.4));
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    padding: 15px;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 40px rgba(144, 224, 239, 0.6)) drop-shadow(0 0 60px rgba(0, 180, 216, 0.4));
    }

    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1)) drop-shadow(0 0 60px rgba(144, 224, 239, 0.8)) drop-shadow(0 0 90px rgba(0, 180, 216, 0.6));
    }
}

/* Footer Logo Styles */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.logo-text span {
    color: var(--secondary-cyan);
}

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

.nav-link {
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--light-gray);
    padding: 8px 15px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-switcher:hover {
    background: var(--light-cyan);
}

.lang-switcher i {
    color: var(--primary-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Hide mobile menu controls on desktop */
.mobile-menu-controls {
    display: none;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #CAF0F8 0%, #FFFFFF 50%, #CAF0F8 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    max-width: 100vw;
    height: 150%;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    animation: heroFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-50px, 50px) rotate(10deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Typing Animation Styles */
.typing-text {
    display: inline-block;
    position: relative;
    min-height: 1.2em;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    color: var(--primary-blue);
    font-weight: 400;
    animation: blink 0.7s infinite;
    -webkit-text-fill-color: var(--primary-blue);
}

/* RTL Support for typing cursor */
.rtl .typing-text::after {
    right: auto;
    left: -10px;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero-text .subtitle {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-text .tagline {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ===== Hero Logo Showcase ===== */
.hero-logo-showcase {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-ring-1 {
    width: 360px;
    height: 360px;
    border-color: rgba(0, 119, 182, 0.1);
    animation: ringPulse 4s ease-in-out infinite;
}

.hero-ring-2 {
    width: 280px;
    height: 280px;
    border-color: rgba(0, 180, 216, 0.2);
    animation: ringPulse 4s ease-in-out infinite 0.5s;
}

.hero-ring-3 {
    width: 200px;
    height: 200px;
    border-color: rgba(72, 202, 228, 0.3);
    animation: ringPulse 4s ease-in-out infinite 1s;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.7;
    }
}

.hero-logo-container {
    position: relative;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(202, 240, 248, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 20px 60px rgba(0, 119, 182, 0.3),
        0 0 80px rgba(0, 180, 216, 0.2),
        inset 0 -5px 20px rgba(0, 119, 182, 0.1);
    animation: logoFloat 6s ease-in-out infinite;
    z-index: 2;
}

.hero-main-logo {
    width: 220px;
    height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 119, 182, 0.3));
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
        box-shadow:
            0 20px 60px rgba(0, 119, 182, 0.3),
            0 0 80px rgba(0, 180, 216, 0.2),
            inset 0 -5px 20px rgba(0, 119, 182, 0.1);
    }

    50% {
        transform: translateY(-15px);
        box-shadow:
            0 35px 80px rgba(0, 119, 182, 0.25),
            0 0 100px rgba(0, 180, 216, 0.3),
            inset 0 -5px 20px rgba(0, 119, 182, 0.1);
    }
}

@keyframes logoSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-float-dot {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-cyan) 100%);
    animation: dotFloat 5s ease-in-out infinite;
}

.dot-1 {
    width: 20px;
    height: 20px;
    top: 5%;
    right: 20%;
    animation-delay: 0s;
}

.dot-2 {
    width: 15px;
    height: 15px;
    bottom: 15%;
    left: 10%;
    animation-delay: 1s;
}

.dot-3 {
    width: 12px;
    height: 12px;
    top: 60%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes dotFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

/* Responsive Hero Logo */
@media screen and (max-width: 768px) {
    .hero-logo-showcase {
        width: 300px;
        height: 300px;
    }

    .hero-ring-1 {
        width: 280px;
        height: 280px;
    }

    .hero-ring-2 {
        width: 220px;
        height: 220px;
    }

    .hero-ring-3 {
        width: 160px;
        height: 160px;
    }

    .hero-logo-container {
        width: 180px;
        height: 180px;
    }

    .hero-main-logo {
        width: 150px;
        height: 150px;
    }
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.6;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--light-cyan);
    top: 10%;
    left: 10%;
    animation: pulse 4s ease-in-out infinite;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: var(--secondary-cyan);
    bottom: 20%;
    right: 10%;
    animation: pulse 4s ease-in-out infinite 1s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    top: 40%;
    right: 5%;
    animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

/* ===== CEO Message Section ===== */
.ceo-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

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

.ceo-image {
    position: relative;
}

.ceo-photo {
    width: 280px;
    height: 350px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.ceo-photo i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

.ceo-quote {
    position: relative;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.ceo-quote::before {
    content: '"';
    font-size: 8rem;
    color: var(--light-cyan);
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.ceo-quote p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    position: relative;
    z-index: 1;
}

.ceo-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--light-cyan);
}

.ceo-signature h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.ceo-signature span {
    color: var(--gray);
    font-style: italic;
}

/* ===== About Section ===== */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
}

.about-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

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

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.highlight-item span {
    font-weight: 600;
    color: var(--dark-blue);
}

/* ===== Mission & Vision Section ===== */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    padding: 50px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.mv-card h3 {
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===== Values Section ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-medium);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover .value-icon,
.value-card:hover h4,
.value-card:hover p {
    color: var(--white);
}

.value-card:hover .value-icon {
    background: rgba(255, 255, 255, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-medium);
    position: relative;
    z-index: 1;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: var(--transition-medium);
}

.value-card:hover .value-icon i {
    color: var(--white);
}

.value-card h4,
.value-card p {
    position: relative;
    z-index: 1;
    transition: var(--transition-medium);
}

.value-card h4 {
    margin-bottom: 15px;
}

/* ===== Strengths Section ===== */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.strength-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
}

.strength-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.strength-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.strength-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.strength-item p {
    font-size: 1.05rem;
    margin: 0;
}

/* ===== Team Section ===== */
.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-text p {
    font-size: 1.1rem;
    line-height: 1.9;
}

.team-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.team-member {
    aspect-ratio: 1;
    background: var(--gradient-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.team-member:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.team-member i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

/* ===== Organization Chart ===== */
.org-chart {
    max-width: 1000px;
    margin: 0 auto;
}

.org-level {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.org-level::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background: var(--primary-blue);
}

.org-level:last-child::after {
    display: none;
}

.org-box {
    padding: 20px 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

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

.org-box.secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.org-departments {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.org-department {
    text-align: center;
}

.org-department .org-box {
    margin-bottom: 15px;
}

.org-subitems {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.org-subitem {
    padding: 10px 20px;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.org-branches {
    margin-top: 40px;
    text-align: center;
}

.org-branches h4 {
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.branches-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.branch-tag {
    padding: 10px 20px;
    background: var(--gradient-light);
    border-radius: var(--radius-lg);
    color: var(--primary-blue);
    font-weight: 500;
    transition: var(--transition-fast);
}

.branch-tag:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

/* ===== Distribution Network ===== */
.distribution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.distribution-map {
    position: relative;
    background: var(--gradient-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
}

.map-placeholder i {
    font-size: 6rem;
    color: var(--primary-blue);
    opacity: 0.5;
    margin-bottom: 20px;
}

.map-placeholder p {
    color: var(--primary-blue);
    font-weight: 500;
}

.distribution-legend {
    margin-top: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.legend-dot {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
}

.legend-dot.hq {
    background: var(--dark-blue);
}

.legend-dot.branch {
    background: var(--secondary-cyan);
}

.legend-dot.subagent {
    background: var(--light-cyan);
}

/* ===== Services Section ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-medium);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: var(--transition-medium);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h4 {
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Products Section ===== */
.products-section {
    padding-bottom: 0;
}

.product-category {
    padding: 80px 0;
}

.product-category:nth-child(even) {
    background: var(--light-gray);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.product-header-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.product-header-icon i {
    font-size: 3rem;
    color: var(--white);
}

.product-header-text h3 {
    margin-bottom: 10px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.categories-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.category-item {
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--gradient-light);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition-fast);
}

.category-item:hover .category-icon {
    background: var(--gradient-primary);
}

.category-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: var(--transition-fast);
}

.category-item:hover .category-icon i {
    color: var(--white);
}

.category-item span {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* ===== Partners & Customers ===== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.partner-logo {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    padding: 20px;
    aspect-ratio: 16/10;
    border: 2px solid transparent;
}

.partner-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.partner-logo:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 119, 182, 0.25);
    border-color: var(--secondary-cyan);
}

.partner-logo:hover::before {
    opacity: 0.05;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Partner logo staggered animation on load */
.partner-logo:nth-child(1) {
    animation-delay: 0.1s;
}

.partner-logo:nth-child(2) {
    animation-delay: 0.15s;
}

.partner-logo:nth-child(3) {
    animation-delay: 0.2s;
}

.partner-logo:nth-child(4) {
    animation-delay: 0.25s;
}

.partner-logo:nth-child(5) {
    animation-delay: 0.3s;
}

.partner-logo:nth-child(6) {
    animation-delay: 0.35s;
}

.partner-logo:nth-child(7) {
    animation-delay: 0.4s;
}

.partner-logo:nth-child(8) {
    animation-delay: 0.45s;
}

.partner-logo:nth-child(9) {
    animation-delay: 0.5s;
}

/* Responsive Partner Grid */
@media screen and (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .partner-logo {
        padding: 15px;
    }
}

@media screen and (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partner-logo {
        padding: 12px;
        aspect-ratio: 3/2;
    }
}

@media screen and (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partner-logo {
        padding: 10px;
        border-radius: var(--radius-md);
    }
}

/* Dark Mode Partner Logo Styles */
[data-theme="dark"] .partner-logo {
    background: rgba(30, 58, 95, 0.5);
    border: 1px solid rgba(34, 211, 238, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .partner-logo:hover {
    background: rgba(34, 211, 238, 0.1);
    border-color: var(--secondary-cyan);
    box-shadow: 0 20px 40px rgba(34, 211, 238, 0.2);
}

[data-theme="dark"] .partner-logo img {
    filter: grayscale(20%) brightness(0.95);
}

[data-theme="dark"] .partner-logo:hover img {
    filter: grayscale(0%) brightness(1.05);
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.customer-type {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.customer-type:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    background: var(--gradient-light);
}

body.rtl .customer-type:hover {
    transform: translateX(-10px);
}

.customer-type i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.customer-type span {
    font-weight: 500;
    color: var(--dark-gray);
}

/* ===== CSR Section ===== */
.csr-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.csr-text p {
    font-size: 1.1rem;
    line-height: 1.9;
}

.csr-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.csr-item {
    aspect-ratio: 1;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 30px;
    text-align: center;
    transition: var(--transition-fast);
}

.csr-item:hover {
    transform: scale(1.05);
}

.csr-item i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.csr-item span {
    font-weight: 500;
}

/* ===== Licenses Section ===== */
.licenses-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.license-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    max-width: 300px;
}

.license-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.license-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.license-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.license-card h4 {
    color: var(--dark-blue);
}

/* ===== Stats Section ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--white);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Contact Section ===== */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-medium);
}

.contact-card:hover .contact-card-icon {
    background: var(--gradient-primary);
}

.contact-card-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: var(--transition-medium);
}

.contact-card:hover .contact-card-icon i {
    color: var(--white);
}

.contact-card h4 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card-content a,
.contact-card-content span,
.contact-card-content p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--dark-gray);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.contact-card-content a:hover {
    color: var(--primary-blue);
}

.contact-card-content i {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

/* Responsive for contact cards */
@media screen and (max-width: 992px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Dark mode for contact cards */
[data-theme="dark"] .contact-card {
    background: rgba(30, 58, 95, 0.3);
    border: 1px solid rgba(34, 211, 238, 0.15);
}

[data-theme="dark"] .contact-card:hover {
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.4);
}

[data-theme="dark"] .contact-card-icon {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(34, 211, 238, 0.3);
}

[data-theme="dark"] .contact-card-icon i {
    color: var(--secondary-cyan);
}

[data-theme="dark"] .contact-card h4 {
    color: var(--secondary-cyan);
}

[data-theme="dark"] .contact-card-content a,
[data-theme="dark"] .contact-card-content span,
[data-theme="dark"] .contact-card-content p {
    color: var(--gray);
}

[data-theme="dark"] .contact-card-content a:hover {
    color: var(--secondary-cyan);
}

[data-theme="dark"] .contact-card-content i {
    color: var(--secondary-cyan);
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.footer-brand .logo-text span {
    color: var(--secondary-cyan);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-cyan);
    padding-left: 10px;
}

body.rtl .footer-links a:hover {
    padding-left: 0;
    padding-right: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.developer-credit {
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.developer-credit span {
    margin-right: 5px;
}

body.rtl .developer-credit span {
    margin-right: 0;
    margin-left: 5px;
}

.developer-name {
    color: var(--secondary-cyan);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    background: linear-gradient(135deg, var(--secondary-cyan) 0%, var(--light-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.developer-name:hover {
    filter: brightness(1.2);
    text-shadow: 0 0 20px rgba(144, 224, 239, 0.5);
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

[data-delay="1"] {
    transition-delay: 0.1s;
}

[data-delay="2"] {
    transition-delay: 0.2s;
}

[data-delay="3"] {
    transition-delay: 0.3s;
}

[data-delay="4"] {
    transition-delay: 0.4s;
}

[data-delay="5"] {
    transition-delay: 0.5s;
}

[data-delay="6"] {
    transition-delay: 0.6s;
}

[data-delay="7"] {
    transition-delay: 0.7s;
}

[data-delay="8"] {
    transition-delay: 0.8s;
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

body.rtl .back-to-top {
    right: auto;
    left: 30px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.back-to-top i {
    font-size: 1.2rem;
}

/* ===== Responsive Design ===== */
@media screen and (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: var(--transition-medium);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Hide theme and language buttons in header on mobile - move to menu */
    .nav-actions .theme-toggle,
    .nav-actions .lang-switcher {
        display: none;
    }

    /* Mobile menu controls container */
    .mobile-menu-controls {
        display: flex;
        justify-content: center;
        gap: 15px;
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid var(--light-cyan);
    }

    .mobile-menu-controls .theme-toggle,
    .mobile-menu-controls .lang-switcher {
        display: flex !important;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .ceo-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ceo-photo {
        margin: 0 auto;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media screen and (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid,
    .categories-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .org-departments {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-links {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links a:hover {
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-text .subtitle {
        font-size: 1.2rem;
    }

    .hero-text .tagline {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .categories-grid,
    .categories-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .customers-grid {
        grid-template-columns: 1fr;
    }

    .csr-visual {
        grid-template-columns: 1fr;
    }

    .licenses-grid {
        flex-direction: column;
        align-items: center;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .team-visual {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-highlights {
        flex-direction: column;
        align-items: center;
    }

    .product-header {
        flex-direction: column;
        text-align: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    body.rtl .back-to-top {
        right: auto;
        left: 20px;
    }
}

/* ===== Print Styles ===== */
@media print {

    .header,
    .back-to-top,
    .scroll-progress {
        display: none !important;
    }

    .section {
        page-break-inside: avoid;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    a {
        color: #000;
    }
}

/* ===== Dark Mode Specific Styles ===== */

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gradient-light);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: var(--gradient-primary);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-icon-light,
.theme-icon-dark {
    position: absolute;
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
}

.theme-icon-light {
    color: var(--primary-blue);
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-icon-dark {
    color: var(--primary-blue);
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

[data-theme="dark"] .theme-icon-light {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

[data-theme="dark"] .theme-icon-dark {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    color: var(--secondary-cyan);
}

[data-theme="dark"] .theme-toggle {
    background: linear-gradient(135deg, #1E3A5F 0%, #0F172A 100%);
    border: 2px solid rgba(34, 211, 238, 0.3);
}

[data-theme="dark"] .theme-toggle:hover {
    border-color: var(--secondary-cyan);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
}

/* Dark Mode Header */
[data-theme="dark"] .header {
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(34, 211, 238, 0.1);
}

[data-theme="dark"] .header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 211, 238, 0.05);
}

[data-theme="dark"] .nav-link {
    color: var(--gray);
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
    color: var(--secondary-cyan);
}

[data-theme="dark"] .logo-text {
    color: var(--dark-gray);
}

[data-theme="dark"] .logo-text span {
    color: var(--secondary-cyan);
}

[data-theme="dark"] .hamburger span {
    background: var(--dark-gray);
}

[data-theme="dark"] .lang-switcher {
    background: rgba(30, 58, 95, 0.5);
    border: 1px solid rgba(34, 211, 238, 0.2);
}

[data-theme="dark"] .lang-switcher:hover {
    background: rgba(34, 211, 238, 0.2);
    border-color: var(--secondary-cyan);
}

/* Dark Mode Mobile Menu */
[data-theme="dark"] .nav-menu {
    background: rgba(10, 15, 26, 0.98);
    border: 1px solid rgba(34, 211, 238, 0.1);
}

/* Dark Mode Hero Section */
[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #0a0f1a 0%, #1E3A5F 50%, #0a0f1a 100%);
}

[data-theme="dark"] .hero::before {
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, transparent 70%);
}

[data-theme="dark"] .hero-text .subtitle {
    color: var(--gray);
}

[data-theme="dark"] .hero-text .tagline {
    color: var(--gray);
}

/* Dark Mode Page Hero */
[data-theme="dark"] .page-hero {
    background: linear-gradient(135deg, #0a0f1a 0%, #0891B2 100%);
}

/* Dark Mode Cards */
[data-theme="dark"] .value-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .category-item,
[data-theme="dark"] .mv-card,
[data-theme="dark"] .license-card,
[data-theme="dark"] .partner-logo,
[data-theme="dark"] .customer-type,
[data-theme="dark"] .contact-block,
[data-theme="dark"] .contact-form,
[data-theme="dark"] .ceo-quote,
[data-theme="dark"] .highlight-item {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(34, 211, 238, 0.15);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .value-card:hover,
[data-theme="dark"] .service-card:hover,
[data-theme="dark"] .category-item:hover,
[data-theme="dark"] .mv-card:hover,
[data-theme="dark"] .license-card:hover,
[data-theme="dark"] .customer-type:hover,
[data-theme="dark"] .highlight-item:hover {
    border-color: rgba(34, 211, 238, 0.4);
    box-shadow: var(--shadow-lg);
}

[data-theme="dark"] .value-icon,
[data-theme="dark"] .service-icon,
[data-theme="dark"] .category-icon,
[data-theme="dark"] .mv-icon,
[data-theme="dark"] .strength-icon {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(34, 211, 238, 0.3);
}

[data-theme="dark"] .value-icon i,
[data-theme="dark"] .service-icon i,
[data-theme="dark"] .category-icon i,
[data-theme="dark"] .mv-icon i,
[data-theme="dark"] .strength-icon i {
    color: var(--secondary-cyan);
}

/* Dark Mode CEO Section */
[data-theme="dark"] .ceo-section {
    background: linear-gradient(135deg, #0a0f1a 0%, #111827 100%);
}

[data-theme="dark"] .ceo-quote::before {
    color: rgba(34, 211, 238, 0.3);
}

[data-theme="dark"] .ceo-signature {
    border-top-color: rgba(34, 211, 238, 0.3);
}

/* Dark Mode Section Alt */
[data-theme="dark"] .section-alt {
    background: #0F172A;
}

/* Dark Mode Strength Items */
[data-theme="dark"] .strength-item {
    background: rgba(30, 58, 95, 0.3);
    border: 1px solid rgba(34, 211, 238, 0.15);
}

[data-theme="dark"] .strength-item:hover {
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.4);
}

/* Dark Mode Organization Chart */
[data-theme="dark"] .org-box.secondary {
    background: rgba(30, 58, 95, 0.5);
    color: var(--secondary-cyan);
    border-color: var(--secondary-cyan);
}

[data-theme="dark"] .org-subitem {
    background: rgba(30, 58, 95, 0.3);
    color: var(--gray);
    border: 1px solid rgba(34, 211, 238, 0.1);
}

[data-theme="dark"] .branch-tag {
    background: rgba(34, 211, 238, 0.1);
    color: var(--secondary-cyan);
    border: 1px solid rgba(34, 211, 238, 0.2);
}

[data-theme="dark"] .branch-tag:hover {
    background: var(--gradient-primary);
    border-color: transparent;
}

/* Dark Mode Distribution Map */
[data-theme="dark"] .distribution-map {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(34, 211, 238, 0.15);
}

/* Dark Mode Stats Section */
[data-theme="dark"] .section-dark {
    background: linear-gradient(135deg, #0a0f1a 0%, #1E3A5F 100%);
}

[data-theme="dark"] .stat-card {
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.2);
}

[data-theme="dark"] .stat-card:hover {
    background: rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.4);
}

/* Dark Mode Form Elements */
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    background: rgba(30, 58, 95, 0.3);
    border: 2px solid rgba(34, 211, 238, 0.2);
    color: var(--dark-gray);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus {
    border-color: var(--secondary-cyan);
    background: rgba(30, 58, 95, 0.5);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
}

[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
    color: var(--gray);
}

/* Dark Mode Footer */
[data-theme="dark"] .footer {
    background: #030712;
    border-top: 1px solid rgba(34, 211, 238, 0.1);
}

[data-theme="dark"] .footer-social a {
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
}

[data-theme="dark"] .footer-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
}

[data-theme="dark"] .footer-bottom {
    border-top-color: rgba(34, 211, 238, 0.1);
}

/* Dark Mode Back to Top */
[data-theme="dark"] .back-to-top {
    background: linear-gradient(135deg, #0891B2 0%, #22D3EE 100%);
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3);
}

[data-theme="dark"] .back-to-top:hover {
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.5);
}

/* Dark Mode Scroll Progress */
[data-theme="dark"] .scroll-progress {
    background: linear-gradient(90deg, #0891B2 0%, #22D3EE 50%, #67E8F9 100%);
}

/* Dark Mode Buttons */
[data-theme="dark"] .btn-outline {
    border-color: var(--secondary-cyan);
    color: var(--secondary-cyan);
}

[data-theme="dark"] .btn-outline:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #0a0f1a;
}

/* Dark Mode Partner Logo */
[data-theme="dark"] .partner-logo i {
    color: var(--gray);
}

/* Dark Mode Team Members */
[data-theme="dark"] .team-member {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(34, 211, 238, 0.15);
}

[data-theme="dark"] .team-member:hover {
    border-color: rgba(34, 211, 238, 0.4);
}

[data-theme="dark"] .team-member i {
    color: var(--secondary-cyan);
}

/* Dark Mode CSR Items */
[data-theme="dark"] .csr-item {
    background: linear-gradient(135deg, #0891B2 0%, #22D3EE 100%);
}

/* Dark Mode Product Categories */
[data-theme="dark"] .product-category:nth-child(even) {
    background: #0F172A;
}

/* Dark Mode Section Header */
[data-theme="dark"] .section-header h2::after {
    background: linear-gradient(90deg, #0891B2 0%, #22D3EE 100%);
}

/* ===== Premium Product Showcase Gallery ===== */
.products-showcase {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    overflow: hidden;
}

.products-showcase .section-header {
    margin-bottom: 50px;
}

.products-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.product-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 119, 182, 0) 0%,
            rgba(0, 180, 216, 0.1) 50%,
            rgba(72, 202, 228, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 119, 182, 0.25),
        0 0 40px rgba(0, 180, 216, 0.15);
}

.product-card-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.15);
    filter: brightness(1.05);
}

/* Floating elements animation on hover */
.product-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 2;
}

.product-card:hover .product-card-glow {
    transform: translate(-50%, -50%) scale(3);
}

/* Premium badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.4);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.product-card:hover .product-badge {
    transform: translateY(0);
    opacity: 1;
}

/* RTL Badge positioning */
body.rtl .product-badge {
    right: auto;
    left: 15px;
}

/* Product overlay info */
.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(to top,
            rgba(3, 4, 94, 0.95) 0%,
            rgba(0, 119, 182, 0.8) 50%,
            transparent 100%);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.product-overlay h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.product-card:hover .product-overlay h4 {
    transform: translateY(0);
    opacity: 1;
}

.product-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.product-card:hover .product-overlay p {
    transform: translateY(0);
    opacity: 1;
}

/* View Product Button */
.product-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.3s;
    cursor: pointer;
}

.product-card:hover .product-view-btn {
    transform: translateY(0);
    opacity: 1;
}

.product-view-btn:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.product-view-btn i {
    width: 16px;
    height: 16px;
}

/* ===== Infinite Scrolling Product Marquee ===== */
.products-marquee-section {
    padding: 40px 0;
    background: var(--gradient-dark);
    overflow: hidden;
    position: relative;
}

.products-marquee-section::before,
.products-marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.products-marquee-section::before {
    left: 0;
    background: linear-gradient(to right, #03045E, transparent);
}

.products-marquee-section::after {
    right: 0;
    background: linear-gradient(to left, #03045E, transparent);
}

.marquee-title {
    text-align: center;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    opacity: 0.8;
}

.products-marquee {
    display: flex;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.products-marquee:hover {
    animation-play-state: paused;
}

.products-marquee-reverse {
    animation-direction: reverse;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-track {
    display: flex;
    gap: 25px;
    padding: 0 12.5px;
}

.marquee-item {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.marquee-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 180, 216, 0) 0%,
            rgba(0, 180, 216, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.marquee-item:hover::before {
    opacity: 1;
}

.marquee-item:hover {
    transform: scale(1.15) rotate(-2deg);
    box-shadow: 0 15px 40px rgba(0, 180, 216, 0.4),
        0 0 30px rgba(72, 202, 228, 0.3);
    z-index: 10;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.marquee-item:hover img {
    transform: scale(1.1);
}

/* Small Marquee Strip (for use in multiple pages) */
.products-strip {
    padding: 25px 0;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-cyan) 50%, var(--primary-blue) 100%);
    background-size: 200% 100%;
    animation: stripGradient 8s ease infinite;
    overflow: hidden;
    position: relative;
}

@keyframes stripGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.products-strip::before,
.products-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.products-strip::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-blue), transparent);
}

.products-strip::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-blue), transparent);
}

.strip-marquee {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.strip-marquee:hover {
    animation-play-state: paused;
}

.strip-track {
    display: flex;
    gap: 20px;
    padding: 0 10px;
}

.strip-item {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.strip-item:hover {
    transform: scale(1.2) translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Dark Mode for Product Showcase ===== */
[data-theme="dark"] .products-showcase {
    background: linear-gradient(135deg, #0F172A 0%, #0a0f1a 100%);
}

[data-theme="dark"] .product-card {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(34, 211, 238, 0.15);
}

[data-theme="dark"] .product-card:hover {
    box-shadow: 0 25px 60px rgba(34, 211, 238, 0.2),
        0 0 40px rgba(34, 211, 238, 0.1);
    border-color: rgba(34, 211, 238, 0.4);
}

[data-theme="dark"] .product-card-image {
    background: linear-gradient(135deg, #1E3A5F 0%, #0F172A 100%);
}

[data-theme="dark"] .product-card-glow {
    background: radial-gradient(circle, rgba(34, 211, 238, 0.4) 0%, transparent 70%);
}

[data-theme="dark"] .product-badge {
    background: linear-gradient(135deg, #0891B2 0%, #22D3EE 100%);
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.4);
}

[data-theme="dark"] .product-overlay {
    background: linear-gradient(to top,
            rgba(10, 15, 26, 0.98) 0%,
            rgba(30, 58, 95, 0.9) 50%,
            transparent 100%);
}

[data-theme="dark"] .products-marquee-section {
    background: linear-gradient(135deg, #0a0f1a 0%, #1E3A5F 100%);
}

[data-theme="dark"] .products-marquee-section::before {
    background: linear-gradient(to right, #0a0f1a, transparent);
}

[data-theme="dark"] .products-marquee-section::after {
    background: linear-gradient(to left, #0a0f1a, transparent);
}

[data-theme="dark"] .marquee-item {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
}

[data-theme="dark"] .marquee-item:hover {
    box-shadow: 0 15px 40px rgba(34, 211, 238, 0.3),
        0 0 30px rgba(34, 211, 238, 0.2);
    border-color: rgba(34, 211, 238, 0.5);
}

[data-theme="dark"] .products-strip {
    background: linear-gradient(90deg, #0891B2 0%, #22D3EE 50%, #0891B2 100%);
    background-size: 200% 100%;
}

[data-theme="dark"] .products-strip::before {
    background: linear-gradient(to right, #0891B2, transparent);
}

[data-theme="dark"] .products-strip::after {
    background: linear-gradient(to left, #0891B2, transparent);
}

[data-theme="dark"] .strip-item {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(34, 211, 238, 0.2);
}

[data-theme="dark"] .strip-item:hover {
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.4);
}

/* ===== Responsive Product Showcase ===== */
@media screen and (max-width: 1200px) {
    .products-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-card-image {
        height: 280px;
    }
}

@media screen and (max-width: 992px) {
    .products-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .product-card-image {
        height: 260px;
    }

    .marquee-item {
        width: 150px;
        height: 150px;
    }

    .strip-item {
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width: 768px) {
    .products-showcase {
        padding: 40px 0;
    }

    .products-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-card-image {
        height: 220px;
    }

    .product-overlay {
        padding: 20px 15px;
    }

    .product-overlay h4 {
        font-size: 1rem;
    }

    .product-overlay p {
        font-size: 0.8rem;
    }

    .products-marquee-section {
        padding: 30px 0;
    }

    .marquee-item {
        width: 130px;
        height: 130px;
    }

    .products-strip {
        padding: 20px 0;
    }

    .strip-item {
        width: 70px;
        height: 70px;
    }

    .strip-track {
        gap: 15px;
    }
}

@media screen and (max-width: 576px) {
    .products-gallery {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    .product-card-image {
        height: 280px;
    }

    .product-card:hover {
        transform: translateY(-10px) scale(1.01);
    }

    .marquee-item {
        width: 110px;
        height: 110px;
    }

    .marquee-track {
        gap: 15px;
    }

    .strip-item {
        width: 60px;
        height: 60px;
    }

    .strip-track {
        gap: 12px;
    }

    .products-marquee-section::before,
    .products-marquee-section::after,
    .products-strip::before,
    .products-strip::after {
        width: 50px;
    }
}

/* ===== Product Lightbox Gallery ===== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

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

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.lightbox-overlay.active .lightbox-image-wrapper {
    transform: scale(1);
    opacity: 1;
}

.lightbox-image {
    max-width: 80vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 180, 216, 0.2);
    transition: transform 0.3s ease;
}

.lightbox-image:hover {
    transform: scale(1.02);
}

/* Navigation Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.8) 0%, rgba(0, 180, 216, 0.8) 100%);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 119, 182, 0.4);
    z-index: 10001;
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.6),
        0 0 40px rgba(0, 180, 216, 0.3);
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-nav i {
    width: 28px;
    height: 28px;
}

.lightbox-prev {
    left: -100px;
}

.lightbox-next {
    right: -100px;
}

/* Close Button */
.lightbox-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(239, 68, 68, 0.8);
    border-color: transparent;
    transform: rotate(90deg) scale(1.1);
}

.lightbox-close i {
    width: 24px;
    height: 24px;
}

/* Image Counter */
.lightbox-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10002;
}

.lightbox-counter span {
    color: var(--secondary-cyan);
    font-weight: 700;
}

/* Product Title in Lightbox */
.lightbox-title {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.9) 0%, rgba(0, 180, 216, 0.9) 100%);
    color: var(--white);
    padding: 12px 30px;
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 119, 182, 0.3);
    z-index: 10002;
    max-width: 80vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Thumbnail Strip */
.lightbox-thumbnails {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10002;
    max-width: 90vw;
    overflow-x: auto;
}

.lightbox-thumbnails::-webkit-scrollbar {
    height: 4px;
}

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

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: var(--secondary-cyan);
    border-radius: 2px;
}

.lightbox-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.lightbox-thumb:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--secondary-cyan);
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.5);
}

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

/* Loading spinner */
.lightbox-loading {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--secondary-cyan);
    border-radius: 50%;
    animation: lightboxSpin 1s linear infinite;
}

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

/* Dark Mode Lightbox */
[data-theme="dark"] .lightbox-overlay {
    background: rgba(10, 15, 26, 0.98);
}

[data-theme="dark"] .lightbox-image {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(34, 211, 238, 0.2);
}

[data-theme="dark"] .lightbox-nav {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.9) 0%, rgba(34, 211, 238, 0.9) 100%);
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.4);
}

[data-theme="dark"] .lightbox-nav:hover {
    box-shadow: 0 8px 30px rgba(34, 211, 238, 0.6),
        0 0 40px rgba(34, 211, 238, 0.3);
}

[data-theme="dark"] .lightbox-title {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.95) 0%, rgba(34, 211, 238, 0.95) 100%);
}

/* Responsive Lightbox */
@media screen and (max-width: 992px) {
    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
    }

    .lightbox-nav i {
        width: 24px;
        height: 24px;
    }

    .lightbox-image {
        max-width: 90vw;
        max-height: 70vh;
    }

    .lightbox-thumbnails {
        bottom: 100px;
    }
}

@media screen and (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
    }

    .lightbox-nav i {
        width: 20px;
        height: 20px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .lightbox-close i {
        width: 20px;
        height: 20px;
    }

    .lightbox-title {
        font-size: 0.9rem;
        padding: 10px 20px;
        top: 15px;
    }

    .lightbox-counter {
        bottom: 20px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .lightbox-thumbnails {
        display: none;
    }

    .lightbox-image {
        max-width: 95vw;
        max-height: 65vh;
    }
}

@media screen and (max-width: 576px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-nav i {
        width: 18px;
        height: 18px;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }
}

/* ===== Splash Screen Styles ===== */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            #03045E 0%,
            #023E8A 20%,
            #0077B6 40%,
            #0096C7 60%,
            #00B4D8 80%,
            #48CAE4 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

/* Animated gradient movement */
.splash-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 180, 216, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(144, 224, 239, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 119, 182, 0.2) 0%, transparent 40%);
    animation: gradientMove 15s ease-in-out infinite;
    pointer-events: none;
}

/* Floating hexagon grid pattern */
.splash-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: patternFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes gradientMove {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(2%, 2%) rotate(2deg);
    }

    50% {
        transform: translate(-1%, 3%) rotate(-1deg);
    }

    75% {
        transform: translate(3%, -2%) rotate(1deg);
    }
}

@keyframes patternFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-60px);
    }
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Floating Elements */
.splash-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Floating Pills */
.floating-pill {
    position: absolute;
    width: 60px;
    height: 25px;
    border-radius: 15px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 50%, rgba(144, 224, 239, 0.8) 50%);
    opacity: 0.4;
    animation: floatPill 8s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(144, 224, 239, 0.5);
}

.pill-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.pill-2 {
    top: 60%;
    right: 15%;
    width: 50px;
    height: 20px;
    animation-delay: 2s;
}

.pill-3 {
    bottom: 20%;
    left: 20%;
    width: 45px;
    height: 18px;
    animation-delay: 4s;
}

@keyframes floatPill {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-30px) rotate(15deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(30px) rotate(-15deg);
    }
}

/* Floating Capsules */
.floating-capsule {
    position: absolute;
    width: 80px;
    height: 30px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(72, 202, 228, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%);
    opacity: 0.35;
    animation: floatCapsule 10s ease-in-out infinite;
    box-shadow: 0 0 25px rgba(72, 202, 228, 0.5);
}

.capsule-1 {
    top: 25%;
    right: 10%;
    animation-delay: 1s;
}

.capsule-2 {
    bottom: 30%;
    left: 8%;
    width: 70px;
    height: 26px;
    animation-delay: 3s;
}

@keyframes floatCapsule {

    0%,
    100% {
        transform: translateX(0) rotate(45deg);
    }

    50% {
        transform: translateX(50px) rotate(-45deg);
    }
}

/* DNA Helix */
.dna-helix {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 300px;
    opacity: 0.2;
}

.dna-strand {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(144, 224, 239, 0.7);
    border-radius: 50%;
    animation: rotateDNA 4s linear infinite;
    box-shadow: 0 0 15px rgba(144, 224, 239, 0.4);
}

.dna-strand:nth-child(2) {
    animation-delay: -2s;
}

@keyframes rotateDNA {
    0% {
        transform: rotateY(0deg) scaleX(0.3);
    }

    100% {
        transform: rotateY(360deg) scaleX(0.3);
    }
}

/* Molecules */
.molecule {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(144, 224, 239, 0.5);
    border-radius: 50%;
    animation: pulseMolecule 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(144, 224, 239, 0.4);
}

.molecule::before,
.molecule::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: rgba(144, 224, 239, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(144, 224, 239, 0.3);
}

.molecule::before {
    top: -20px;
    left: 5px;
}

.molecule::after {
    bottom: -18px;
    right: -10px;
}

.molecule-1 {
    top: 10%;
    left: 30%;
}

.molecule-2 {
    bottom: 15%;
    right: 25%;
    animation-delay: 1s;
}

.molecule-3 {
    top: 40%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes pulseMolecule {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}

/* Main Splash Content */
.splash-main {
    text-align: center;
    z-index: 10;
}

/* Logo Container for Splash */
.medical-cross-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 40px;
}

.splash-main-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: crossPulse 2s ease-in-out infinite;
    z-index: 5;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 0 0 80px rgba(144, 224, 239, 0.4);
}

.splash-cross-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: none;
}

@keyframes logoGlow {
    0% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 0 0 80px rgba(144, 224, 239, 0.4);
    }

    100% {
        box-shadow: 0 0 60px rgba(255, 255, 255, 0.8), 0 0 100px rgba(144, 224, 239, 0.6);
    }
}

/* Legacy cross styles - kept for backward compatibility */
.medical-cross {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: crossPulse 2s ease-in-out infinite;
}

.cross-vertical,
.cross-horizontal {
    position: absolute;
    background: linear-gradient(135deg, #ffffff 0%, #90E0EF 100%);
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(144, 224, 239, 0.8);
}

.cross-vertical {
    width: 25px;
    height: 70px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cross-horizontal {
    width: 70px;
    height: 25px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cross-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: crossRipple 2s ease-out infinite;
}

.cross-pulse.delay-1 {
    animation-delay: 0.5s;
}

.cross-pulse.delay-2 {
    animation-delay: 1s;
}

@keyframes crossPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes crossRipple {
    0% {
        width: 80px;
        height: 80px;
        opacity: 1;
    }

    100% {
        width: 180px;
        height: 180px;
        opacity: 0;
    }
}

/* Heartbeat Animation */
.heartbeat-container {
    width: 300px;
    margin: 0 auto 30px;
    overflow: hidden;
}

.heartbeat-svg {
    width: 100%;
    height: 60px;
}

.heartbeat-line {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawHeartbeat 2s ease-in-out infinite;
}

@keyframes drawHeartbeat {
    0% {
        stroke-dashoffset: 600;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -600;
    }
}

/* Splash Logo */
.splash-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.splash-logo-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: iconPulse 2s ease-in-out infinite;
}

.splash-logo-icon i {
    width: 45px;
    height: 45px;
    color: #fff;
}

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 30px 10px rgba(255, 255, 255, 0.2);
    }
}

.splash-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.title-smart {
    display: block;
    color: #ffffff;
    text-shadow: 0 2px 30px rgba(144, 224, 239, 0.8),
        0 0 60px rgba(0, 180, 216, 0.4);
}

.title-medical {
    display: block;
    color: #90E0EF;
    text-shadow: 0 2px 30px rgba(144, 224, 239, 0.8),
        0 0 60px rgba(0, 180, 216, 0.4);
}

.splash-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animation */
.splash-loader {
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.loader-pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.loader-pill {
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, #90E0EF 0%, #00B4D8 100%);
    border-radius: 50%;
    animation: loaderBounce 1.4s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(144, 224, 239, 0.6);
}

.loader-pill:nth-child(1) {
    animation-delay: 0s;
}

.loader-pill:nth-child(2) {
    animation-delay: 0.1s;
}

.loader-pill:nth-child(3) {
    animation-delay: 0.2s;
}

.loader-pill:nth-child(4) {
    animation-delay: 0.3s;
}

.loader-pill:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes loaderBounce {

    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.loading-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 0 10px rgba(144, 224, 239, 0.5);
}

/* Responsive Splash */
@media (max-width: 768px) {
    .splash-title {
        font-size: 2.5rem;
    }

    .splash-tagline {
        font-size: 1rem;
        padding: 0 20px;
    }

    .heartbeat-container {
        width: 250px;
    }

    .medical-cross-container {
        width: 140px;
        height: 140px;
    }

    .splash-cross-logo {
        width: 110px;
        height: 110px;
    }

    .cross-vertical {
        width: 20px;
        height: 55px;
    }

    .cross-horizontal {
        width: 55px;
        height: 20px;
    }

    .floating-pill,
    .floating-capsule,
    .dna-helix {
        display: none;
    }
}