/* =====================================================
   VAL MAR — style.css (Enhanced)
   ===================================================== */

/* ---- CSS Variables ---- */
:root {
    --sea-blue: #026C7C;
    --sea-teal: #1F98A7;
    --sand-light: #F4ECD8;
    --sand-dark: #D4BA90;
    --ocean-dark: #013A49;
    --white: #ffffff;
    --text-dark: #2E3b42;
    --sea-deep: #005580;

    --bg-color: var(--sand-light);
    --card-bg: var(--white);
    --header-bg: var(--ocean-dark);
    --shadow-sm: 0 4px 16px rgba(1, 58, 73, 0.07);
    --shadow-md: 0 8px 30px rgba(1, 58, 73, 0.11);
    --shadow-lg: 0 16px 48px rgba(1, 58, 73, 0.16);
    --radius: 16px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-border: rgba(1, 58, 73, 0.08);
    --section-max: 1200px;
}

[data-theme="dark"] {
    --sea-blue: #1F98A7;
    --sea-teal: #75E2E6;
    --sand-light: #141a1d;
    --sand-dark: #1e272c;
    --ocean-dark: #0a1216;
    --sea-deep: #002A40;
    --white: #e8e0cc;
    --text-dark: #e8e0cc;

    --bg-color: var(--sand-light);
    --card-bg: var(--sand-dark);
    --header-bg: var(--ocean-dark);
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.3);
    --glass-bg: rgba(30, 39, 44, 0.65);
    --glass-border: rgba(255, 255, 255, 0.06);
}

/* ---- Global Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-dark);
    transition: color 0.4s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Global Background Image (solves mobile fixed attachment bugs) */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('hero-01.webp') center center / cover no-repeat;
    z-index: -1;
    transition: background-image 0.4s ease;
}

[data-theme="dark"] body::before {
    background-image: url('hero-02.webp');
}

/* Selection */
::selection {
    background: var(--sea-teal);
    color: #fff;
}

/* Focus — Accessibility (WCAG 2.1) */
:focus-visible {
    outline: 2px solid var(--sea-teal);
    outline-offset: 3px;
    border-radius: 4px;
}

h1, h2, h3, h4, h5, h6, .nav-links a, .cta-btn {
    font-family: 'Tajawal', 'Segoe UI', sans-serif;
}

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

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
header {
    background: var(--header-bg);
    color: var(--white);
    padding: 0.7rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 1px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

.controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

#lang-select, #theme-toggle {
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--sea-teal);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: 'Cairo', sans-serif;
    transition: background var(--transition);
}

#lang-select:hover, #theme-toggle:hover {
    background: rgba(255,255,255,0.2);
}

#lang-select option {
    background-color: var(--ocean-dark);
    color: var(--white);
}

#theme-toggle {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
}

/* Logo */
.logo { display: flex; align-items: center; }
#logo-img { 
    height: 60px; 
    border-radius: 50%;
    background: #fff;
    padding: 2px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
#logo-img:hover { transform: scale(1.05) rotate(5deg); }

[data-theme="dark"] #logo-img {
    filter: brightness(1.2);
}

/* Nav Links */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-inline-start: 22px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color var(--transition);
    position: relative;
    padding-bottom: 4px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 0;
    height: 2px;
    background: var(--sea-teal);
    transition: width var(--transition);
}

nav a:hover { color: var(--sea-teal); }
nav a:hover::after { width: 100%; }

/* Nav Icons — hidden on desktop, shown on mobile */
.nav-icon {
    display: none;
    margin-inline-end: 6px;
    font-size: 1.1rem;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    /* Background is now on body, keeping hero transparent to show body background */
}

/* Subtle overlay — lets the background shine through */
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0, 18, 23, 0.70) 0%,
        rgba(1, 58, 73, 0.45) 40%,
        rgba(2, 108, 124, 0.30) 70%,
        rgba(0, 18, 23, 0.65) 100%
    );
    z-index: 0;
}

/* Inner grid — two columns on desktop */
.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0 3rem; /* Reduced top padding to prevent plunging down */
    transform: translateY(-30px); /* Gently nudge the entire block up to balance the visual space below the fixed header */
}

/* ---- Text / Branding Side ---- */
.hero-text {
    flex: 1;
    text-align: start;
    max-width: 550px;
}

/* Hero Logo Animation Container */
.hero-logo-container {
    width: 130px;
    height: 130px;
    margin: 0 0 1.5rem;
    position: relative;
    display: inline-block;
}

.hero-logo-container::before {
    content: '';
    position: absolute;
    top: -10px; right: -10px; bottom: -10px; left: -10px;
    border: 3px dashed var(--sea-teal);
    border-radius: 50%;
    animation: rotateBounce 6s infinite linear;
}

.hero-logo-container::after {
    content: '';
    position: absolute;
    top: -4px; right: -4px; bottom: -4px; left: -4px;
    border: 2px solid var(--sea-blue);
    border-radius: 50%;
    animation: pulseBounce 2.5s infinite ease-in-out;
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
    border-radius: 50%;
    padding: 8px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

@keyframes rotateBounce {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.03); border-color: rgba(255,255,255,0.5); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes pulseBounce {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.08); opacity: 0.3; }
}

/* Founders Section — compact horizontal cards */
.founders-section {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.founder-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.2rem;
    background: rgba(1, 58, 73, 0.45);
    border: 1px solid rgba(255,255,255,0.13);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    transition: transform var(--transition), background var(--transition);
    text-align: start;
}

@media (hover: hover) {
    .founder-card:hover {
        transform: translateY(-3px);
        background: rgba(1, 58, 73, 0.65);
    }
}

.founder-img-container {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    position: relative;
    border-radius: 50%;
    margin-top: 4px;
}

.founder-img-container::before {
    content: '';
    position: absolute;
    top: -5px; right: -5px; bottom: -5px; left: -5px;
    border: 2px dashed var(--sea-teal);
    border-radius: 50%;
    animation: rotateBounce 5s infinite linear reverse;
}

.founder-img-container::after {
    content: '';
    position: absolute;
    top: -2px; right: -2px; bottom: -2px; left: -2px;
    border: 1.5px solid var(--sea-blue);
    border-radius: 50%;
    animation: pulseBounce 3s infinite ease-in-out;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    background: #fff;
    padding: 2px;
}

.founder-info {
    flex: 1;
    min-width: 0;
    text-align: start;
}

.founder-info h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.founder-info .founder-role {
    font-size: 0.82rem;
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 0.4rem;
    color: var(--sea-teal);
    opacity: 0.9;
}

.founder-bio-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: inherit;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 0.6rem;
    transition: color var(--transition);
}

.founder-bio-btn:hover {
    color: var(--sea-teal);
    text-decoration: underline;
}

.founder-socials {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* Slightly smaller social icons inside hero founder cards */
.founder-socials .fsoc-icon {
    width: 32px;
    height: 32px;
}

/* Tablet: 2 cards side by side */
@media (min-width: 680px) and (max-width: 1100px) {
    .founders-section {
        flex-direction: row;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .founder-card {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 0;
    }
}

/* Mobile: stacked, slightly smaller image */
@media (max-width: 679px) {
    .founders-section {
        flex-direction: column;
    }
    .founder-card {
        padding: 0.9rem 1rem;
    }
    .founder-img-container {
        width: 60px;
        height: 60px;
    }
    .founder-info h3 {
        font-size: 0.9rem;
    }
    .founder-info .founder-role {
        font-size: 0.75rem;
    }
}

/* Bio Modal */
.bio-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 18, 23, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.bio-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.bio-modal-inner {
    background: var(--card-bg);
    color: var(--text-dark);
    width: 90%;
    max-width: 550px;
    border-radius: var(--radius);
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    max-height: 90vh;
    overflow-y: auto;
}

.bio-modal.active .bio-modal-inner {
    transform: translateY(0) scale(1);
}

.bio-modal-close {
    position: absolute;
    top: 15px;
    inset-inline-end: 15px;
    background: rgba(1, 58, 73, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.bio-modal-close:hover {
    background: var(--sea-blue);
    color: #fff;
}

.bio-modal-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.bio-modal-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sea-teal);
    padding: 2px;
}

.bio-modal-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sea-blue);
    margin-bottom: 0.2rem;
}

.bio-modal-role {
    font-size: 0.95rem;
    color: var(--sea-teal);
    font-weight: 600;
    margin: 0;
}

.bio-modal-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.85;
}

[data-theme="dark"] .bio-modal-close {
    background: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .bio-modal-close:hover {
    background: var(--sea-teal);
    color: #000;
}

#hero h1 {
    font-size: clamp(2.2rem, 5vw + 1rem, 4rem);
    font-weight: 900;
    margin: 0 0 0.6rem;
    letter-spacing: 3px;
    text-shadow: 2px 3px 12px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
    line-height: 1.8;
}

.hero-explanation {
    font-size: 1rem;
    margin: 0 0 1.8rem;
    opacity: 0.80;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
    line-height: 1.9;
}

/* Founders Pointer (Down Arrows) */
.founders-pointer {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0 0.5rem;
    animation: bounceDown 2s infinite ease-in-out;
}

.arrow-down {
    width: 20px;
    height: 20px;
    border-right: 3px solid var(--sea-teal);
    border-bottom: 3px solid var(--sea-teal);
    transform: rotate(45deg);
    display: block;
    filter: drop-shadow(0px 3px 3px rgba(0,0,0,0.3));
    border-radius: 2px;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(12px); }
    60% { transform: translateY(6px); }
}

/* ---- Slider Side ---- */
.hero-slider-side {
    flex: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 650px;
    width: 100%;
}

/* Profile Slider */
.profile-slider-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    border: none;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.profile-slide {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain; /* إظهار الصورة بالكامل بدون قص */
    padding: 10px;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    will-change: opacity;
}

.profile-slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: white;
    border: none;
    font-size: 1.3rem;
    padding: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    border-radius: 8px;
    transition: background 0.3s, transform 0.3s;
    backdrop-filter: blur(4px);
}

@media (hover: hover) {
    .slider-nav:hover {
        background: rgba(0,0,0,0.75);
        transform: translateY(-50%) scale(1.1);
    }
}

.slider-nav.prev { right: 10px; left: auto; }
.slider-nav.next { left: 10px; right: auto; }

[dir="ltr"] .slider-nav.prev { left: 10px; right: auto; }
[dir="ltr"] .slider-nav.next { right: 10px; left: auto; }

/* =====================================================
   SECTIONS — GENERAL
   ===================================================== */
section {
    padding: 5.5rem 2rem;
    text-align: center;
    position: relative;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--sea-teal);
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--sea-teal), var(--sea-blue));
    margin: 0.5rem auto 0;
    border-radius: 3px;
}

section > p {
    max-width: 700px;
    margin: 1rem auto 2.5rem;
    font-size: 1.05rem;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.9;
}

/* =====================================================
   ABOUT
   ===================================================== */
#about {
    padding: 5.5rem 2rem;
}

#about > p {
    font-size: 1.1rem;
    max-width: 800px;
    line-height: 2;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-align: start;
}

/* =====================================================
   RAW MATERIALS
   ===================================================== */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    width: 90%;
    margin-inline: auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    padding: 6px;
}

@media (hover: hover) {
    .gallery-item:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: calc(var(--radius) - 4px);
    transition: transform 0.5s ease;
}

@media (hover: hover) {
    .gallery-item:hover img {
        transform: scale(1.06);
    }
}

/* =====================================================
   PRODUCTS
   ===================================================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    width: 90%;
    margin-inline: auto;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 2rem 1.8rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sea-teal), var(--sea-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

@media (hover: hover) {
    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--sea-teal);
    }
    .product-card:hover::before {
        transform: scaleX(1);
    }
}

/* Product Slider */
.product-slider {
    position: relative;
    margin-bottom: 1.5rem;
    height: 180px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(1, 58, 73, 0.05);
    border: 1px solid rgba(255,255,255,0.05);
}

.product-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-img {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.6s ease, transform var(--transition);
    cursor: zoom-in;
    will-change: opacity, transform;
}

.product-img.active {
    opacity: 1;
    z-index: 1;
}

@media (hover: hover) {
    .product-card:hover .product-img.active {
        transform: translate(-50%, -50%) scale(1.06);
    }
}

.prod-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    font-size: 1rem;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    border-radius: 6px;
    transition: background 0.3s, opacity 0.3s;
    backdrop-filter: blur(4px);
    opacity: 0;
}

/* Desktop: show on hover */
@media (hover: hover) {
    .product-slider:hover .prod-nav {
        opacity: 1;
    }
    .prod-nav:hover {
        background: rgba(0,0,0,0.8);
    }
}

/* Touch: always visible */
@media (hover: none) {
    .prod-nav {
        opacity: 0.7;
    }
}

.prod-nav.prev { right: 8px; left: auto; }
.prod-nav.next { left: 8px; right: auto; }
[dir="ltr"] .prod-nav.prev { left: 8px; right: auto; }
[dir="ltr"] .prod-nav.next { right: 8px; left: auto; }

.product-card h3 {
    color: var(--sea-blue);
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.product-card p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* =====================================================
   PROCESS
   ===================================================== */
#process {
    padding-bottom: 6rem;
}

.process-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.8rem;
    margin-top: 3rem;
    width: 90%;
    margin-inline: auto;
}

.step {
    width: 220px;
    padding: 2.2rem 1.5rem 1.8rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--radius);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
}

@media (hover: hover) {
    .step:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--sea-teal);
    }
}

.step-icon {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sea-teal), var(--sea-blue));
    color: #fff;
    box-shadow: 0 4px 15px rgba(2, 108, 124, 0.25);
}

.step h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--sea-blue);
    font-weight: 700;
}

.step p {
    font-size: 0.92rem;
    opacity: 0.8;
    line-height: 1.7;
}

@media (hover: hover) {
    .step:hover .step-icon {
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }
}

/* =====================================================
   CONTACT
   ===================================================== */
#contact {
    /* Translucent sea gradient so background image shows through */
    background: linear-gradient(160deg, rgba(1, 58, 73, 0.85) 0%, rgba(0, 85, 128, 0.85) 50%, rgba(2, 108, 124, 0.85) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Decorative circle */
#contact::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 152, 167, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

#contact h2 { color: #fff; }
#contact h2::after { background: linear-gradient(90deg, rgba(255,255,255,0.6), var(--sea-teal)); }

.contact-sub {
    color: rgba(255,255,255,0.75);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    width: 92%;
    max-width: 900px;
    margin: 0 auto;
    text-align: start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Info Cards Grid */
.contact-info-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.info-card-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
    transition: background var(--transition);
    min-width: 0;
    overflow: hidden;
}

@media (hover: hover) {
    .info-card-modern:hover {
        background: rgba(255,255,255,0.1);
        transform: translateX(-5px);
    }
    [dir="ltr"] .info-card-modern:hover { transform: translateX(5px); }
}

.info-icon-wrapper {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--sea-teal), rgba(31, 152, 167, 0.3));
    color: #fff;
    box-shadow: 0 4px 12px rgba(2, 108, 124, 0.25);
}

.info-text {
    min-width: 0;
    overflow: hidden;
}

.info-text strong {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: var(--sea-teal);
}

.info-text a, .info-text span {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    overflow-wrap: break-word;
    word-break: break-word;
    display: block;
}
.info-text a:hover { color: var(--sea-teal); }

/* Socials in Contact */
.official-socials {
    margin-top: 1.5rem;
}

.follow-label {
    display: block;
    margin-bottom: 12px;
    color: var(--sea-teal);
    font-size: 1.05rem;
}

.social-circles {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .social-circle:hover {
        background: var(--sea-teal);
        transform: translateY(-4px);
        box-shadow: 0 5px 15px rgba(31, 152, 167, 0.4);
    }
}


/* =====================================================
   SOCIAL ICON SYSTEM — fsoc-icon (with tooltips)
   ===================================================== */

/* Base fsoc-icon style */
.fsoc-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255,255,255,0.15);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
}

@media (hover: hover) {
    .fsoc-icon:hover {
        transform: translateY(-6px) scale(1.12);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }
}

/* Platform Colors on hover */
.fsoc-instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.fsoc-linkedin:hover  { background: #0A66C2; box-shadow: 0 8px 20px rgba(10,102,194,0.4); }
.fsoc-facebook:hover  { background: #1877F2; box-shadow: 0 8px 20px rgba(24,119,242,0.4); }
.fsoc-whatsapp:hover  { background: #25D366; box-shadow: 0 8px 20px rgba(37,211,102,0.4); }
.fsoc-email:hover     { background: var(--sea-teal); box-shadow: 0 8px 20px rgba(31,152,167,0.4); }

/* Tooltip */
.fsoc-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: rgba(10, 20, 30, 0.92);
    color: #fff;
    font-size: 0.72rem;
    font-family: 'Cairo', sans-serif;
    white-space: nowrap;
    padding: 4px 10px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    letter-spacing: 0.3px;
}

.fsoc-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(10, 20, 30, 0.92);
}

.fsoc-icon:hover .fsoc-tooltip,
.social-circle:hover .fsoc-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Social circles in contact also get tooltip support */
.social-circle {
    position: relative;
    overflow: visible !important;
}

/* Platform hover colors for social-circle (contact section) */
.facebook-circle:hover  { background: #1877F2 !important; box-shadow: 0 5px 15px rgba(24,119,242,0.4) !important; }
.linkedin-circle:hover  { background: #0A66C2 !important; box-shadow: 0 5px 15px rgba(10,102,194,0.4) !important; }
.email-circle:hover     { background: var(--sea-teal) !important; box-shadow: 0 5px 15px rgba(31,152,167,0.4) !important; }
.whatsapp-circle:hover  { background: #25D366 !important; box-shadow: 0 5px 15px rgba(37,211,102,0.4) !important; }

/* Founder Socials (hero) */
.founder-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.2rem;
    justify-content: center;
}

/* =====================================================
   CONTACT BLOCKS — company vs founders
   ===================================================== */

.contact-block {
    width: 100%;
}

.contact-block-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-block-badge {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-block-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sea-teal);
    margin: 0;
    letter-spacing: 0.5px;
}

.founders-contact-block {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 2rem;
}

/* Phones list */
.phones-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phone-link {
    font-size: 0.95rem;
}

/* Founders contact cards inside contact section */
.founders-contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.founder-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.4rem;
    transition: background 0.3s ease;
}

@media (hover: hover) {
    .founder-contact-card:hover {
        background: rgba(255,255,255,0.09);
        transform: translateY(-3px);
    }
}

.fc-avatar {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--sea-teal);
}

.fc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fc-info {
    flex: 1;
}

.fc-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 2px;
    line-height: 1.3;
}

.fc-info > p {
    font-size: 0.78rem;
    opacity: 0.65;
    margin: 0 0 0.7rem;
    color: var(--sea-teal);
}

.fc-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fc-socials .fsoc-icon {
    width: 32px;
    height: 32px;
}


/* =====================================================
   FOOTER
   ===================================================== */
footer {
    background: linear-gradient(180deg, rgba(1, 58, 73, 0.9) 0%, rgba(0, 10, 15, 0.95) 100%);
    color: rgba(255,255,255,0.6);
    padding: 2.5rem 0 1.5rem;
    border-top: 1px solid rgba(31, 152, 167, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.footer-inner {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-social a:hover {
    background: var(--sea-teal);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(31, 152, 167, 0.3);
}

/* =====================================================
   BACK TO TOP
   ===================================================== */
#back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sea-teal), var(--sea-blue));
    color: white;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,168,204,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
}

#back-to-top.visible { opacity: 1; visibility: visible; pointer-events: auto; }
#back-to-top:hover { transform: scale(1.1) translateY(-3px); }

/* =====================================================
   SCROLL REVEAL ANIMATION
   ===================================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */
@keyframes navLinkFade {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0px); }
}

/* ---- Mobile Controls inside nav (hidden on desktop) ---- */
.mobile-controls-item {
    display: none;
}

.mobile-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 0.5rem;
}

.lang-select-clone,
.theme-toggle-clone {
    background: rgba(255,255,255,0.12);
    border: 1px solid var(--sea-teal);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: background var(--transition);
}

.lang-select-clone option { background-color: var(--ocean-dark); color: var(--white); }
.lang-select-clone:hover,
.theme-toggle-clone:hover { background: rgba(255,255,255,0.22); }

.theme-toggle-clone { font-size: 1.4rem; padding: 6px 10px; }

@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        padding-inline: 15px;
    }

    /* Adjust desktop controls for mobile */
    .controls {
        display: flex;
        gap: 15px; /* زيادة المسافة بين أزرار التحكم */
        margin-inline-end: 25px; /* زيادة المسافة بين الأزرار وزر الهومبورغر */
        margin-inline-start: auto;
    }
    .controls select { padding: 4px 8px; font-size: 0.85rem; }
    .controls button { font-size: 1.2rem; padding: 4px 8px; }

    .nav-links {
        position: fixed;
        inset-inline-end: 0;
        height: 100vh;
        top: 0;
        background: rgba(1, 58, 73, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 100px;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        gap: 0;
    }

    [data-theme="dark"] .nav-links {
        background: rgba(10, 18, 22, 0.98);
    }

    [dir="rtl"] .nav-links {
        transform: translateX(-100%);
    }

    .nav-active {
        transform: translateX(0%) !important;
    }

    .nav-links li {
        opacity: 0;
        margin: 1rem 0;
    }

    .nav-links li a {
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* Show icons on mobile */
    .nav-icon {
        display: inline-block;
        font-size: 1.3rem;
    }

    /* Mobile controls must override the li opacity when animated */
    .mobile-controls-item {
        display: block !important;
        margin-top: 1.5rem;
        opacity: 1 !important;
    }

    .hamburger { 
        display: block; 
        z-index: 1001; 
    }

    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

    #hero h1 { font-size: 2.8rem; }
    #hero { background-attachment: scroll; }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 5rem 1.5rem 2rem;
        gap: 1.5rem;
        transform: none;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    /* Compact founders on mobile */
    .founders-pointer { display: none; }
    .founder-info p { display: none; }
    .founders-section {
        margin-top: 1.5rem;
        gap: 0.8rem;
    }
    .founder-card {
        padding: 0.8rem 1rem;
        gap: 0.7rem;
    }
    .founder-img-container { width: 55px; height: 55px; }
    .founder-img-container::before,
    .founder-img-container::after { display: none; }
    .founder-info h3 { font-size: 0.95rem; margin-bottom: 0.2rem; }
    .founder-socials { margin-top: 0.5rem; gap: 6px; }
    .founder-socials .fsoc-icon { width: 30px; height: 30px; }

    .hero-slider-side {
        width: 100%;
        max-width: 500px;
    }
    
    .profile-slider-frame {
        aspect-ratio: 4 / 3;
    }

    section { padding: 4rem 1.2rem; }
    section h2 { font-size: 2rem; }

    .process-steps { gap: 1rem; }
    .step { width: 100%; max-width: 340px; }

    .contact-wrapper {
        padding: 2rem 1.2rem;
        gap: 1.5rem;
    }

    .founders-contact-cards {
        flex-direction: column;
    }

    .founder-contact-card {
        min-width: unset;
    }

    .fsoc-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    #logo-img { height: 48px; }
    .hero-logo-container { width: 90px; height: 90px; margin-bottom: 1.5rem; }
    #hero h1  { font-size: 2.2rem; }
    .hero-tagline { font-size: 1.05rem; }
    .hero-explanation { font-size: 0.9rem; }
    .hero-inner { padding: 4rem 0 2.5rem; }
    .products-grid { grid-template-columns: 1fr; width: 95%; }
    .gallery  { grid-template-columns: repeat(2, 1fr); }
    #back-to-top { bottom: 20px; left: 15px; width: 42px; height: 42px; }

    .contact-wrapper { padding: 1.5rem 1rem; }
    .founder-contact-card { flex-direction: column; align-items: center; text-align: center; }
    .fc-socials { justify-content: center; }
    .fc-info > p { text-align: center; }
    .fc-info h4 { text-align: center; }
    .founder-socials { justify-content: center; }
    .social-circles { flex-wrap: wrap; justify-content: center; }
}

/* =====================================================
   RESPONSIVE — TABLET (769px – 1024px)
   ===================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-inner {
        gap: 2rem;
        transform: none;
        padding: 3rem 1.5rem;
    }
    .hero-text { max-width: 480px; }
    .hero-slider-side { max-width: 450px; }
    .founders-section { flex-direction: row; }
    .founder-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .founder-info { text-align: center; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .step { width: 200px; }
    .founders-contact-cards { flex-direction: row; }
    section h2 { font-size: 2.2rem; }

    /* Fix email overflow on tablet */
    .contact-info-modern {
        grid-template-columns: 1fr;
    }
    .info-text a {
        font-size: 0.9rem;
    }
}

/* =====================================================
   LIGHTBOX MODAL
   ===================================================== */
.lightbox-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 5, 10, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img-wrapper {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    transition: transform 0.05s linear;
    cursor: grab;
    will-change: transform;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-family: Arial, sans-serif;
    line-height: 1;
    cursor: pointer;
    z-index: 100000;
    transition: color 0.3s ease, transform 0.3s ease;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

[dir="rtl"] .lightbox-close {
    right: auto;
    left: 35px;
}

.lightbox-close:hover { 
    color: var(--sea-teal); 
    transform: scale(1.1);
}


/* =====================================================
   CUSTOM LANGUAGE DROPDOWN
   ===================================================== */
.lang-switcher {
    position: relative;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    min-width: 70px;
    justify-content: center;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lang-dropdown {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    color: #333;
    border-radius: 12px;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 140px;
    
    /* منع الوراثة من nav ul */
    display: flex !important;
    flex-direction: column;
}

.lang-dropdown.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.lang-dropdown li {
    padding: 10px 15px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    text-align: right;
    display: flex;
    align-items: center;
    gap: 12px;
    
    /* منع الوراثة من nav ul li */
    margin: 0 !important;
}

/* تنسيق صور الأعلام */
.lang-btn img, .lang-dropdown li img {
    width: 22px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    display: inline-block;
    vertical-align: middle;
    margin-inline-end: 0; /* gap handles spacing in lang-btn */
}

.lang-dropdown li:hover {
    background: #f0f5f7;
    color: var(--sea-blue);
}

[data-theme="dark"] .lang-dropdown {
    background: var(--card-bg);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

[data-theme="dark"] .lang-dropdown li { color: #ccc; }
[data-theme="dark"] .lang-dropdown li:hover { background: rgba(255,255,255,0.05); color: #fff; }

/* =====================================================
   ACCESSIBILITY — prefers-reduced-motion
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .hero-logo-container::before,
    .hero-logo-container::after,
    .founder-img-container::before,
    .founder-img-container::after {
        animation: none !important;
    }
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
    .founders-pointer {
        animation: none !important;
    }
}

/* =====================================================
   FOOTER DEVELOPER CREDIT
   ===================================================== */
.developer-credit {
    display: inline-block;
    margin-top: 5px;
    font-size: 0.85rem;
    opacity: 0.9;
}
.developer-credit a {
    color: var(--sea-teal);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color var(--transition);
}
.developer-credit a:hover {
    color: var(--white);
    text-decoration: none;
}
