/* ==========================================================================
   PROJECT GLOBAL STYLE - style.css
   - Temiz, scoped ve conflict-minimized CSS
   - Not: HTML'de aynı selector'ları (inline veya başka CSS) kullanmayın.
   ========================================================================== */
/* ------------- RESET / BASE ------------- */
* { box-sizing: border-box; }
html,body {
     background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f4f7fb 40%,
    #eef2f7 100%
  ) !important;

  color: #1f2937 !important;
 }
body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
    background: linear-gradient(
    180deg,
    #eef2f7 0%,
    #e5eaf1 40%,
    #dde3ec 100%
  ) !important;

  color: rgb(105, 105, 105); !important;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ---------- UTILITIES (non-breaking helpers) ---------- */
/* Use these to avoid global selectors clashing */
.u-center { display:flex; justify-content:center; align-items:center; }
.u-no-select { user-select:none; -webkit-user-select:none; }

/* ========== VIDEO BANNER (scoped) ========== */
/* Use .video-banner exactly as in your HTML */

/**/
.video-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff !important;
  margin-top: var(--navbar-height);  /* artık navbar ile çarpışmaz */
  height: calc(100vh - var(--navbar-height)); 
}

/* Video element styling (cover, centered) */
.video-banner video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* keep aspect, cover area */
  transform: translate(-50%, -50%);
  pointer-events: none;    /* prevent accidental clicks on video */
  position: relative;
  z-index: 1 !important;

}

/* Watermark (centered horizontally, above video) */
.video-banner .watermark {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff !important;
  text-shadow: 0 6px 25px rgba(48,137,215,0.5);
  font-weight: 700;
  opacity: 0.45;           /* subtle watermark */
  z-index: 2;              /* above video */
  width: calc(100% - 60px);
  text-align: center;
  pointer-events: none;    /* doesn't block clicks */
}

/* Smaller, responsive watermark text */
.video-banner .watermark h1 {
  margin: 0;
  font-size: clamp(18px, 3.6vw, 48px); /* responsive sizing */
  letter-spacing: 2px;
  line-height: 1.05;
}

/* If you have an overlay (darken the video for readability) */
.video-banner .overlay {
  position:absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(48,137,215,0.25),
    rgba(15,23,42,0.55)
  ) !important;
  z-index:1;
  pointer-events:none;
}

/* ========== BRANDS SECTION (scoped to #brands) ========== */
/* Using a specific scope prevents affecting other .container/.row */
/* ======================================================
   ULTRA VIP BRAND LOGO PACKAGE (ALL EFFECTS)
====================================================== */

.brand-image.ultra-vip {
    width: 100%;
    max-width: 150px;
    max-height: 70px;
    object-fit: contain;
    cursor: pointer;
    transition: 
        transform 0.35s cubic-bezier(.23,1.5,.32,1),
        filter 0.35s ease,
        box-shadow 0.35s ease;

    position: relative;
    z-index: 2;

    /* Base look */
    filter: brightness(1) saturate(1.2);
}

/* 🔥 Apple Dock Bounce + Tilt Follow Cursor */
.brand-image.ultra-vip:hover {
    transform: scale(1.22) rotateX(6deg) rotateY(-6deg);
    filter: brightness(1.25);
}

/* 🔥 Soft breathing glow */
.brand-image.ultra-vip {
    animation: breatheGlow 4s ease-in-out infinite;
}

@keyframes breatheGlow {
    0%, 100% { filter: brightness(1); }
    50%      { filter: brightness(1.25); }
}

/* 💎 Diamond Dust Particles */
.brand-image.ultra-vip::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;

    background-image:
        radial-gradient(circle, rgba(255,255,255,0.9) 1px, transparent 2px),
        radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 2px);

    background-size: 22px 22px, 30px 30px;
    opacity: 0;
    transition: .35s ease;
}

.brand-image.ultra-vip:hover::before {
    opacity: .9;
    animation: dustFloat 8s linear infinite;
}

@keyframes dustFloat {
    0%   { background-position: 0 0, 0 0; }
    100% { background-position: 140px 120px, -100px 160px; }
}

/* 🔥 Dual Shine Sweep */
.brand-image.ultra-vip::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -50%;
    width: 80%;
    height: 300%;
    transform: rotate(20deg);

    background: linear-gradient(
        125deg,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.4) 35%,
        transparent 70%
    );

    opacity: 0;
    transition: opacity .3s ease-in-out;
    pointer-events: none;
}

.brand-image.ultra-vip:hover::after {
    opacity: 1;
    animation: shineSweep 1.15s ease-out;
}

@keyframes shineSweep {
    0%   { transform: translateX(-220%) rotate(20deg); }
    100% { transform: translateX(220%) rotate(20deg); }
}

/* 🔵 Neon Ultra Glow */
.brand-image.ultra-vip:hover {
    box-shadow:
        0 0 14px rgba(0,153,255,0.55),
        0 0 22px rgba(0,153,255,0.35),
        0 0 40px rgba(0,153,255,0.25);
}

/* 🪞 Glass Reflection */
.brand-image.ultra-vip + .reflection {
    content: "";
    display: block;
    max-width: 140px;
    max-height: 70px;
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
    opacity: 0.25;
    transform: scaleY(-1);
    filter: blur(3px);
    object-fit: contain;
}

/* 🌀 Click Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
    z-index: 999;
}

@keyframes rippleAnim {
    to {
        transform: scale(5);
        opacity: 0;
    }
}


/* ================================
   VIP BRAND MODAL SYSTEM
================================ */

/* Arka plan */
.brand-modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;

    z-index: 999999;
}

/* Açık modal */
.brand-modal-bg.active {
    opacity: 1;
    visibility: visible;
}

/* Resim */
.brand-modal {
    max-width: 80%;
    max-height: 80%;
    transition: transform .25s ease;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255,255,255,0.35);
    position: relative;
    z-index: 5;
}

/* Kapatma butonu */
.brand-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    z-index: 1000000;
    transition: .3s;
    font-weight: 200;
}

.brand-close:hover {
    transform: scale(1.2) rotate(12deg);
    color: #00c8ff;
}

/* Sağ–sol oklar */
.brand-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 70px;
    cursor: pointer;
    padding: 18px;
    user-select: none;
    transition: .25s;
    z-index: 10;
    opacity: .75;
}

.brand-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.brand-arrow.left { left: 40px; }
.brand-arrow.right { right: 40px; }

/* LENS FLARE */
.lens-flare {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255,255,255,0.9), transparent 70%);
    mix-blend-mode: screen;
    opacity: 0;
    pointer-events: none;
    animation: flarePop .6s cubic-bezier(.2,.9,.3,1);
    z-index: 2;
}

@keyframes flarePop {
    0% { opacity: 0; transform: scale(.3); }
    40% { opacity: .95; transform: scale(1.4); }
    100% { opacity: 0; transform: scale(1); }
}

/* GLOSSY SHINE */
.glossy-shine {
    position: absolute;
    width: 160px;
    height: 140%;
    top: -20%;
    left: -200%;
    background: linear-gradient(115deg,
        rgba(255,255,255,0.9) 0%,
        rgba(255,255,255,0.5) 30%,
        rgba(255,255,255,0.1) 60%,
        transparent 100%
    );
    mix-blend-mode: screen;
    opacity: 0;
    z-index: 3;
    border-radius: 8px;
}

.brand-modal-bg.active .glossy-shine {
    animation: glossySweep 1.4s ease-out forwards;
    opacity: 1;
}

@keyframes glossySweep {
    0% { left: -200%; opacity: .6; }
    60% { left: 160%; opacity: .4; }
    100% { left: 220%; opacity: 0; }
}


/* ========== LIGHTBOX / POPUP (scoped to #imagePopup) ========== */
/* Keep names specific to avoid clashing */
#imagePopup {
  display: none;              /* toggled to flex when open */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.86);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

/* show class for convenience (use JS to add/remove) */
#imagePopup.open { display:flex; }

/* image styling */
#imagePopup .popup-image {
  max-width: 90%;
  max-height: 85%;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  transform-origin: center center;
}

/* close button */
#imagePopup .popup-close {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 44px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  z-index: 100000;
}

/* arrows (left/right) */
#imagePopup .popup-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 56px;
  cursor: pointer;
  user-select: none;
  z-index: 100000;
  padding: 8px 12px;
  transition: color .15s;
}
#imagePopup .popup-arrow:hover { color: #ddd; }
#imagePopup .popup-arrow.left { left: 18px; }
#imagePopup .popup-arrow.right { right: 18px; }

/* hide arrows on very small screens if needed */
@media (max-width:480px) {
  #imagePopup .popup-arrow { display:none; }
  #imagePopup .popup-close { font-size:36px; right:14px; top:14px; }
}

/* ========== LAYOUT HELPERS / A11Y ========== */
.visually-hidden { 
  position: absolute!important; 
  height:1px; width:1px; 
  overflow:hidden; clip:rect(1px,1px,1px,1px);
}

/* prevent global styles accidentally affecting video/banner */
.video-banner, #brands, #imagePopup {
  /* isolating common properties */
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ========== AVOID GLOBAL COLLISIONS ========== */
/* Very important: do NOT use generic selectors like `.row` or `.container` here.
   If you must override bootstrap, use very specific selectors like #brands .brands-row
   or add a custom class on the element in HTML. */

/* ========== OPTIONAL: theme / dark modifiers (example) ========== */
.theme-dark body { background:#0b0b0b; color:#e5e5e5; }
.theme-dark #brands { background: #0f0f0f; border-color: #111; }

.text-light {
  color: var(--black-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-black {
  color: var(--black-color) !important;
}

/* =========================================================
   ARDA NAVBAR - FULL TEMİZ KURUMSAL CSS
   ========================================================= */

/* --------------------
   NAVBAR ARKA PLAN (DÜZELTİLMİŞ)
-------------------- */
#primary-header,
.header-bottom,
.header-top,
.navbar,
.offcanvas,
.topbar-vip {
    background: #3089d7 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: 0.3s ease;
    overflow: visible !important;
    position: relative;
    z-index: 9999 !important;
}

/* Shrink efekti */
#header.shrink #primary-header {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

/* ===============================
   3D TILT HOVER + SHRINK LOGO
=============================== */

/* Varsayılan logo / navbar ayarları */
.navbar-brand .logo-top {
    height: 75px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    display: block;
    transition: transform 0.4s ease, filter 0.3s ease, height 0.3s ease;
    transform-style: preserve-3d;
    transform-origin: center center;
}

/* 3D Tilt hover efekti */
.navbar-brand .logo-top:hover {
    transform: perspective(600px) rotateX(5deg) rotateY(-5deg) scale(1.08);
    filter: brightness(1.4) drop-shadow(0 0 10px rgba(255,255,255,0.8));
}

/* Eğer navbar shrink olursa (scroll sonrası) — logo küçülüp animasyon */
#header.shrink .navbar-brand .logo-top {
    height: 65px;
    transition: height 0.25s ease, transform 0.25s ease;
}

/* Navbar / üst bar premium tasarım — “frosted glass / blur + yarı saydam & gölgeli” */
#primary-header,
.header-bottom,
.header-top,
.navbar {
    background: rgba(48, 137, 215, 0.95) !important;
    backdrop-filter: saturate(180%) blur(12px);
    box-shadow: 0 4px 25px rgba(0,0,0,0.2);
}

/* Navbar padding / hizalama temizliği */
#primary-header .navbar {
    padding: 0.75rem 1rem;
}

/* --------------------
   MENÜ YAZILARI
-------------------- */
@media (min-width: 992px) {

    #primary-header .navbar-nav {
        display: flex;
        justify-content: center;   /* ✔ menü ortalandı */
        gap: 32px;
        margin: 0 auto !important;
    }

    #primary-header .navbar-nav .nav-item {
        margin: 0 14px;
        transition: transform .25s ease;
    }

    #primary-header .navbar-nav .nav-link {
        padding: 8px 0 !important;
        font-size: 17px;
        color: #ffffff !important;
        font-weight: 500;
    }
}

/* Apple Dock Hover – optimize */
#primary-header .nav-item:hover {
    transform: scale(1.24);
}

#primary-header .nav-item:hover + .nav-item,
#primary-header .nav-item:has(+ .nav-item:hover) {
    transform: scale(1.12);
}

/* --------------------
   HR ÇİZGİSİ
-------------------- */


/* --------------------
   ÜST BAR RENK (saat & telefon)
-------------------- */
.header-top {
    background: #3089d7 !important;
}

.header-top .info li {
    color: #ffffff !important;
}

.header-top svg {
    fill: #ffffff !important;
}

/* GENEL ICON STIL */
/* VIP INFO - fixed, premium */
.vip-info { display:flex; gap:14px; align-items:center; margin:0; padding:0; list-style:none; }
.vip-item { display:flex; gap:10px; align-items:center; color:#fffff !important; }

/* icon container */
.vip-icon { width:40px; height:40px; min-width:40px; border-radius:10px; display:flex; align-items:center; justify-content:center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.18), inset 0 1px 2px rgba(255,255,255,0.03); transition: transform .18s ease, box-shadow .18s ease; }

/* text */
.vip-text { color:#fff; font-weight:600; font-size:14px; }

/* hover lift */
.vip-item:hover .vip-icon { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,0.45); }

/* phone bg */
.vip-phone-bg { background: #3089D7; }

/* clock bg */
.vip-clock-bg .vip-phone-bg { background: #3089D7; }

/* calendar bg */
.vip-calendar-bg .vip-phone-bg { background: #3089D7; }

/* subtle svg sizing */
.vip-icon svg { width:22px; height:22px; display:block; }

/* Calendar flip class handled by JS (no infinite CSS animation) */
.calendar-wrap.flip { transform-style: preserve-3d; transition: transform .7s cubic-bezier(.22,.9,.3,1); transform-origin: center; transform: rotateX(-160deg) scale(.99); box-shadow: 0 18px 40px rgba(48,137,215,0.12); }

/* =========================================================
   GRAPHITE BLACK — Premium Metal + Chrome + Noise + Sparkle
========================================================= */

.vip-icon.blue {
    position: relative;
    overflow: hidden;
}

/* 1) METAL GRADIENT (Apple tarzı) */
.vip-icon.blue svg {
    color: #242424 !important;
    stroke: #242424 !important;

    /* Sofistike metal aura */
    filter:
        drop-shadow(0 0 4px rgba(255,255,255,0.35))
        drop-shadow(0 0 12px rgba(0,0,0,0.7))
        drop-shadow(0 0 18px rgba(50,50,50,0.45));
    
    /* Apple tarzı metalik yüzey */
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.15) 0%,
        rgba(0,0,0,0) 40%,
        rgba(255,255,255,0.08) 100%
    );
}

/* 2) METAL NOISE (çelik dokusu) */
.vip-icon.blue::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQIW2NgYGD4DwABAwEAffA9YQAAAABJRU5ErkJggg==");
    opacity: 0.25;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* 3) CHROME LIGHT SWEEP (yan ışık süpürme) */
.vip-icon.blue::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.65) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: chromeMove 3s linear infinite;
    opacity: 0.55;
}

@keyframes chromeMove {
    0% { left: -100%; }
    70% { left: 120%; }
    100% { left: 120%; }
}

/* 4) HOVER "GLINT SPARKLE" EFFECT */
.vip-item:hover .vip-icon.blue svg {
    color: #333333 !important;
    stroke: #333333 !important;

    filter:
        drop-shadow(0 0 6px rgba(255,255,255,0.9))
        drop-shadow(0 0 16px rgba(0,0,0,0.7))
        drop-shadow(0 0 24px rgba(65,65,65,0.5));
}

.vip-item:hover .vip-icon.blue::after {
    opacity: 0.9;
    animation-duration: 1.4s;
}


/* Yazı */
.vip-text {
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 0.65px;
    font-size: 17px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    margin-left: 10px;     /* İkon ile yazı arasına boşluk */
    padding-left: 4px;     /* Ekstra nefes alanı */
    display: inline-block;
}

/* --------------------
   OFFCANVAS (Mobil Menü)
-------------------- */

/* Cam blur */
.glass-menu {
    background: rgba(255,255,255,0.05) !important;
    backdrop-filter: blur(25px);
    border-left: 1px solid rgba(255,255,255,0.25);
    animation: slideFade .35s ease;
}

@keyframes slideFade {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

.mini-logo {
    height: 48px;
    background: white;
    padding: 6px;
    border-radius: 10px;
}

/* Mobil menü spacing */
.offcanvas-body .nav-item {
    margin-bottom: 14px;
}

.offcanvas-body .nav-link {
    font-size: 18px;
    padding: 6px 0 !important;
}

/* =====================================================
   VIP DROPDOWN – SAFE ADD-ON
   (Mevcut CSS’in ÜZERİNE eklenir)
   ===================================================== */

/* =========================
   ANA DROPDOWN
========================= */
.vip-dropdown {
    position: relative;
}

/* Kapalı hali */
.vip-dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
    z-index: 9999;

    display: flex;
    flex-direction: column; /* alt alta */
    align-items: center;    /* yatay ortalama */
    text-align: center;     /* yazıları ortala */
}
}

/* JS ile açılan state */
.vip-dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Desktop hover */
@media (min-width: 992px) {
    .vip-dropdown:hover > .vip-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


/* =========================
   SUB MENU – SAĞA AÇILMA
========================= */
.vip-sub {
    position: relative;
}

/* Submenu container */
.vip-submenu {
    position: absolute;
    top: 0;
    left: 100%;           /* Sağa açılması için */
    margin-left: 8px;

    background: #fff;
    border-radius: 16px;
    padding: 12px;

    display: flex;
    flex-wrap: nowrap;       /* Kartları yan yana dizmek için */
    gap: 12px;

    opacity: 0;
    visibility: hidden;
    transform: translateX(6px);
    transition: opacity .3s ease, transform .3s ease;
    z-index: 10000;
    min-width: auto; /* genişlik içeriğe göre */
}

/* Hover ile aç */
@media (min-width: 992px) {
    .vip-sub:hover > .vip-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
}

/* =========================
   KART / BG ITEM
========================= */
.bg-item {
    position: relative;
    flex: 0 0 220px; /* sabit genişlik, yan yana dizilir */
    min-height: 280px;

    border-radius: 14px;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center; /* yatay ortalama */
    text-align: left;

    color: #fff;
    font-weight: bold;
    padding: 0;

    box-shadow:
        0 10px 26px rgba(0,0,0,0.18),
        inset 0 1px 0 rgba(255,255,255,0.5);

    transition: transform 0.35s cubic-bezier(.22,.9,.3,1),
                box-shadow 0.35s ease;
    transform: scale(1); /* varsayılan hali */
}

.bg-item .bg-title {
    position: relative;
    z-index: 2;
    padding: 8px;
}

/* Hover efekt */
.bg-item:hover {
    transform: scale(1.03); /* sadece büyüme, oynama yok */
    box-shadow:
        0 18px 40px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.6);
}

.bg-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;               /* Beyaz katman yüksekliği (gerekirse artırabilirsiniz) */
    background: rgba(255, 255, 255, 0.7); /* yarı saydam beyaz */
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 1;                /* yazının altında, resmin üstünde */
}
/* =========================
   MOBİL / OFFCANVAS
========================= */
@media (max-width: 991px) {
    .vip-dropdown-menu,
    .vip-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        flex-wrap: wrap;
    }
    .bg-item {
        flex: 1 1 100%; /* mobilde alt alta */
        min-height: 200px;
    }
}



/* ========== UTILITY: responsive video height alternatives ========== */
/* If you prefer smaller hero on mobile, uncomment below */
/*
@media (max-width:800px) {
  .video-banner { height: 60vh; }
}
*/
.video-banner .watermark {
  position: absolute;
  top: 50%;                      /* dikey merkez */
  left: 50%;                     /* yatay merkez */
  transform: translate(-50%, -50%);
  z-index: 5;
  padding: 20px 40px;

  /* cam hologram efekti */
  backdrop-filter: blur(35px);           /* cam bulanıklığı */
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.12); /* camın iç rengi */
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);

  /* iç gölge – hologram parlaması */
  box-shadow:
    0 0 22px rgba(255,255,255,0.25),
    0 8px 32px rgba(0,0,0,0.35);
}

/* ARDA yazısının kendisi */
.video-banner .watermark h1 {
  margin: 0;
  font-size: clamp(37px, 6vw, 80px);  /* responsive */
  font-family: 'Inter', sans-serif;   /* kurumsal font */
  font-weight: 900;
  color: rgba(255,255,255,0.95);
  animation: neonFlicker 5s infinite ease-in-out;

  /* hafif hologram ışıltısı */
  text-shadow:
    0 0 12px rgba(255,255,255,0.7),
    0 0 28px rgba(0,150,255,0.45);
}
/* ========================
   NEON FLICKER ANIMATION
   ======================== */
@keyframes neonFlicker {
  0%   { opacity: 0.20; text-shadow: 0 0 4px rgba(0,255,255,0.5); }
  5%   { opacity: 0.85; text-shadow: 0 0 18px rgba(0,255,255,0.5); }
  10%  { opacity: 0.40; }
  15%  { opacity: 0.95; text-shadow: 0 0 22px rgba(0,255,255,0.5); }
  25%  { opacity: 0.60; }
  30%  { opacity: 1; text-shadow: 0 0 28px rgba(0,255,255,0.5); }
  45%  { opacity: 0.35; }
  60%  { opacity: 0.90; text-shadow: 0 0 24px rgba(0,255,255,0.5); }
  75%  { opacity: 0.50; }
  90%  { opacity: 1; text-shadow: 0 0 32px rgba(0,255,255,0.5); }
  100% { opacity: 0.75; }
}

/* Bu animasyonu ARDA yazısına uygula */
.video-banner .watermark h1 {
  animation: neonFlicker 3.6s infinite ease-in-out;
}

.logo {
  transition: transform .25s ease, filter .25s ease;
}
.logo:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.15));
}
.logo-container {
  position: relative;
  display: inline-block;
}

.logo-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.01) 60%);
  pointer-events: none;
  border-radius: 8px;
}


/* ======================
   MODERN GLASS SEARCH BAR ARAMA BUTONU
   ====================== */
/* ================================
   SPOTLIGHT OVERLAY
=================================== */
#spotlightOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
    z-index: 9998;
}

/* ================================
   SPOTLIGHT BOX
=================================== */
#spotlightBox {
    position: fixed;
    top: 22%;
    left: 50%;
    transform: translateX(-50%) scale(0.85);
    width: min(600px, 90%);
    background: #3089d7;
    border-radius: 18px;
    padding: 20px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
    z-index: 9999;
    box-shadow: 0 12px 40px rgba(0,0,0,0.30);
}

/* Spotlight aktif hale gelince */
#spotlightBox.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scale(1);
}

/* ================================
   INPUT
=================================== */
#spotlightInput {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    font-size: 18px;
    letter-spacing: .4px;
}

#spotlightInput::placeholder {
    color: rgba(255,255,255,0.7);
}

/* ================================
   RESULT LISTE
=================================== */
#aiResults {
    max-height: 260px;
    overflow-y: auto;
    display: none;
}

#aiResults::-webkit-scrollbar {
    width: 6px;
}
#aiResults::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.4);
    border-radius: 4px;
}

/* ================================
   RESULT ITEM
=================================== */
.result-item {
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(0,0,0,0.85);
    margin-bottom: 8px;
    cursor: pointer;
    color: #fff;
    transition: .15s;
}

.result-item:hover {
    background: rgba(255,255,255,0.22);
}

.contact-section {
    padding: 60px 0;
    background: #f7f9fc;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
    color: #3089d7;
}

.contact-container p {
    text-align: center;
    margin-bottom: 25px;
    color: #555;
}

.form-row {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.form-row label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

.form-row input,
.form-row select,
.form-row textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
    font-size: 15px;
    transition: 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: #3089d7;
    box-shadow: 0 0 0 3px rgba(48,137,215,0.12);
    background: #fff;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #3089d7;
    border: none;
    color: #fff;
    font-size: 17px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
}

.submit-btn:hover {
    background: #2677be;
}

.success-msg {
    display: none;
    margin-top: 15px;
    color: #28a745;
    font-weight: 600;
    text-align: center;
}
.why-us-section {
    padding: 60px 0;
    background: rgba(0,0,0,0.85);
    text-align: center;
}

.why-title {
    font-size: 32px;
    color: #3089d7;
    font-weight: 700;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s forwards ease;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-card {
    background: #fff;
    padding: 26px;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transition: .3s ease;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp .8s forwards ease;
}

.why-card:nth-child(1) { animation-delay: .2s; }
.why-card:nth-child(2) { animation-delay: .35s; }
.why-card:nth-child(3) { animation-delay: .5s; }
.why-card:nth-child(4) { animation-delay: .65s; }

.why-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #3089d7;
}

.why-card p {
    font-size: 14px;
    color: #555;
}

/* Animasyonlar */
@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
.short-why {
    text-align: center;
    padding: 30px 25px;
    font-size: 18px;
    color: #2e2e2e;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.5;
}
.short-why strong {
    color: #3089d7;
    font-weight: 700;
}
#arda-ultra *{ box-sizing:100px; }

/* GLOBAL DARK MODE */
#arda-ultra{
  background:#0d1117;
  color:white;
  font-family:"Segoe UI",sans-serif;
  overflow:hidden;
  padding-bottom:65px;
}

/* VIDEO HERO ------------------------------------------------ */
#arda-hero-vid{
  position:relative;
  height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

#arda-hero-vid video{
  position:absolute;
  top:50%; left:50%;
  width:100%; height:100%;
  object-fit:cover;
  transform:translate(-50%,-50%);
  opacity:0.55;
}

#arda-hero-vid::after{
  content:"";
  position:absolute;
  inset:-1;
  background: rgba(255,255,255,0.2);
}

#arda-hero-vid .hero-text{
  position:relative;
  z-index:2;
  max-width:900px;
  padding:20px;
  animation:fadeDown 1.2s ease forwards;
  opacity:0;
}

#arda-hero-vid h2{
  font-size:38px;
  font-weight:700;
  letter-spacing:1px;
  margin-bottom:10px;
}

#arda-hero-vid p{
  opacity:0.85;
  font-size:16px;
}

@keyframes fadeDown{
  from{ opacity:0; transform:translateY(-20px); }
  to{ opacity:1; transform:none; }
}

/* SECTION TITLE */
.arda-title{
  text-align:center;
  font-size:32px;
  font-weight:800;
  color:#111; /* güçlü siyah */
  margin:60px auto 30px;
  letter-spacing:-0.5px;
}

.arda-title span{
  color:#3089d7;
  text-shadow:0 4px 14px rgba(48,137,215,0.35);
}


/* GLASS CARD ------------------------------------------------ */
.glass{
  background:#ffffff;
  border:1px solid #e6eef7;
  border-radius:18px;
  padding:28px;
  box-shadow:0 10px 35px rgba(0,0,0,0.08);
  transition:0.25s ease;
}

.glass:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 60px rgba(48,137,215,0.15);
  border-color:#3089d7;
}

/*Arda Ultra*/

/* WHY CARDS ------------------------------------------------ */
#arda-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:22px;
  max-width:1100px;
  margin:auto;
}

.card-icon{
  font-size:38px;
  margin-bottom:14px;
  color:#3089d7;
}


#arda-cards h4{
  font-size:20px;
  font-weight:800;
  margin-bottom:10px;
  color:#111;
  letter-spacing:-0.3px;
}


#arda-cards p{
  color:#444;
  font-size:15px;
  line-height:1.6;
}


/* MISSION & VISION ---------------------------------------- */
#arda-mission .row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  max-width:1100px;
  margin:auto;
}
#arda-mission h4{
  color:#111;
  font-weight:800;
}

#arda-mission p{
  color:#444;
}


/* TIMELINE ------------------------------------------------- */
#arda-timeline-list{
  list-style:none;
  max-width:800px;
  margin:20px auto;
  padding:0;
}

#arda-timeline-list li{
  margin-bottom:18px;
  padding:18px 22px;
  border-left:4px solid #3089d7;
  border-radius:10px;
}

#arda-timeline-list .year{
  font-weight:800;
  color:#3089d7;
  font-size: 16px;

}

/* FADE IN EFFECT */
.fade {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1),
              transform .8s cubic-bezier(.22,1,.36,1);
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* PRO CARD */
.pro-services{
  display:flex;
  flex-wrap:wrap;
  gap:22px;
  align-items:flex-start;
}

/* PRO CARD */
.pro-card{
  width:260px;
  background:#ffffff;
  border-radius:16px;
  padding:14px;
  position:relative;
  cursor:pointer;
  overflow:hidden;
  border:1px solid #e6e6e6;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.35s cubic-bezier(.22,1,.36,1);
}

.pro-card:hover{
  transform:translateY(-10px);
  border-color:#3089d7;
  box-shadow:0 25px 60px rgba(48,137,215,.25);
}

.pro-card .thumb{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:10px;
}

/* TEXT */

.pro-card .pro-info h3{
  color:#3089d7 !important;
  font-weight:800;
}

.pro-card .pro-info p{
  color:#333 !important;
  font-weight:500;
}

.pro-info{
  padding:12px 8px;
}

/* BUTTON */
.vip-btn{
  margin-top:12px;
  padding:9px 14px;
  border-radius:10px;
  border:0;
  background:#3089d7;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:.3s ease;
}

.vip-btn:hover{
  background:#1f6fb8;
  box-shadow:0 0 18px rgba(48,137,215,.6);
}

/* FADE */
.fade{
  opacity:0;
  transform:translateY(30px);
  transition:all .7s cubic-bezier(.22,1,.36,1);
}

.fade.show{
  opacity:1;
  transform:none;
}



/* MODAL */
.vip-modal{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(12px);
  visibility:hidden;
  opacity:0;
  transition:opacity .3s ease,visibility .3s ease;
  z-index:9999;
}

.vip-modal.show{
  visibility:visible;
  opacity:1;
}

.vip-modal-content{
  background:#ffffff;
  padding:24px;
  border-radius:18px;
  max-width:920px;
  width:92%;
  box-shadow:0 30px 80px rgba(0,0,0,.2);
  position:relative;
  border:1px solid #e6e6e6;
  animation:modalPop .4s cubic-bezier(.22,1,.36,1);
}

@keyframes modalPop{
  from{
    opacity:0;
    transform:translateY(20px) scale(.97);
  }
  to{
    opacity:1;
    transform:none;
  }
}

.vip-modal img{
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
}

.vip-close{
  position:absolute;
  right:14px;
  top:10px;
  font-size:26px;
  cursor:pointer;
  color:#111;
  padding:6px;
  transition:.2s;
}

.vip-close:hover{
  color:#3089d7;
}

.vip-arrows{
  display:flex;
  justify-content:space-between;
  margin-top:14px;
}

.vip-arrows div{
  background:#f2f2f2;
  padding:8px 14px;
  border-radius:10px;
  cursor:pointer;
  color:#111;
  font-weight:600;
  transition:.3s;
}

.vip-arrows div:hover{
  background:#3089d7;
  color:#fff;
}

/* MAGNIFIER */
#magnifier{
  position:absolute;
  width:160px;
  height:160px;
  border-radius:50%;
  border:3px solid #3089d7;
  background-repeat:no-repeat;
  display:none;
  pointer-events:none;
  z-index:50;
  box-shadow:0 0 25px rgba(48,137,215,.5);
}

/* DEBUG NOTE */
.note{
  opacity:.7;
  font-size:13px;
  margin-bottom:12px;
  color:#555;
}


/* MODAL BASE */
.vip-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    backdrop-filter: blur(14px);
}

/* MODAL ACTIVE */
.vip-modal.show {
    display: flex;
    animation: modalFade .35s ease;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


.vip-modal-content {
    position: relative;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 850px;
  width: 92%;
  border: 1px solid #e6e6e6;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  animation: modalPop .4s cubic-bezier(.22,1,.36,1);
}

@keyframes lensFlare {
    0% { box-shadow: 0 0 0 rgba(255,255,255,0); }
    100% { box-shadow: 0 0 40px rgba(255,255,255,0.3); }
}

/* IMAGE + MAGNIFIER */
.vip-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

#vipImage {
    width: 100%;
    display: block;
    pointer-events:none;
    border-radius: 14px;
}

/* MAGNIFIER */
#magnifier {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(6px);
    background-repeat:no-repeat;
    background-position:center;
    display:none;
    cursor:none;
}

/* ARROWS */
.vip-arrows {
    margin-top:20px;
    display:flex;
    justify-content:space-between;
}

.vip-prev,
.vip-next {
    font-size:34px;
    cursor:pointer;
    padding:10px 20px;
    transition: .2s;
}

.vip-prev:hover,
.vip-next:hover { transform: scale(1.2); }

/* CLOSE BUTTON */
.vip-close {
    position:absolute;
    top:12px;
    right:18px;
    font-size:36px;
    cursor:pointer;
}

/* ensure dropdown appears above offcanvas content on desktop */
.vip-dropdown { position: relative; z-index: 99999; }

/* desktop / normal behaviour (kept from mevcut stil) */
/* ULTRA VIP DROPDOWN */
/* ==========================================================
   iOS 18 PREMIUM GLASS DROPDOWN
========================================================== */

.vip-dropdown {
    position: relative;
    z-index: 50;
}

/* --- NAVBAR KARARTMA + BLUR --- */
.navbar-dim {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.22);
    backdrop-filter: blur(3px);
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.navbar-dim.active {
    opacity: 1;
    pointer-events: all;
}

/* --- DROPDOWN BUTTON --- */
.vip-drop-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    transition: opacity .15s ease;
}

.vip-drop-btn:hover {
    opacity: .75;
}

/* --- DROPDOWN MENU (iOS control panel gibi) --- */
.vip-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;

    width: 240px;
    padding: 12px;
    border-radius: 20px;

    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(22px) saturate(170%);
    border: 1px solid rgba(255,255,255,0.60);
    outline: 1px solid rgba(0,0,0,0.04);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.07),
        0 10px 20px rgba(0,0,0,0.04);

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(.96);

    transition:
        opacity .25s cubic-bezier(.16,.9,.32,1),
        transform .25s cubic-bezier(.16,.9,.32,1),
        visibility .25s;
}

/* Açık state */
.vip-dropdown.open .vip-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* --- LİSTE ELEMANLARI --- */
.vip-dropdown-menu li {
    list-style: none;
}

/* --- LİNKLER (ICON + YAZI) --- */
.vip-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px;
    border-radius: 14px;
    color: #0b1b2b;
    font-weight: 600;
    text-decoration: none;

    position: relative;
    overflow: hidden;

    transition: background .25s ease, transform .15s ease;
}

/* --- HOVER SHINE EFFECT --- */
.vip-dropdown-menu li a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.0) 0%,
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0.0) 100%
    );
    transform: skewX(-20deg);
    transition: left .4s ease;
}

.vip-dropdown-menu li a:hover::after {
    left: 120%;
}

.vip-dropdown-menu li a:hover {
    background: rgba(255,255,255,0.55);
    transform: translateY(-2px);
}

/* ICON STILLERI */
.vip-dropdown-menu li a i {
    font-size: 18px;
    width: 22px;
    text-align: center;
    opacity: .9;
}



/* Mobile / offcanvas: make submenu flow inside menu (prevents cut-off) */
@media (max-width: 991px) {
  /* inside offcanvas, let submenu be static stacked item */
  .offcanvas .vip-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding: 0 0 8px 20px;
    pointer-events: auto;
  }

  /* links look like list items on mobile */
  .offcanvas .vip-dropdown-menu li a {
    padding: 12px 8px;
    display:block;
    color: #fff;
  }
}

/* small accessibility nicety: caret rotate when open */
.vip-drop-btn .caret {
  display:inline-block;
  margin-left:8px;
  transition: transform .18s ease;
}
.vip-dropdown.open .vip-drop-btn .caret {
  transform: rotate(180deg);
}

/* ensure very high stacking so it won't be hidden by other elements */
.vip-dropdown-menu { z-index: 9999999; }
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    background: #0d1117;
}

.service-inner {
    position: absolute;
    inset: 0;
    z-index: 3;

    display: flex;
    flex-direction: column;

    justify-content: flex-end;  
    align-items: center;         

    text-align: center;

    padding: 22px;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}


.service-inner p {
    margin: 6px 0 12px 0;
    padding: 0 10px;
    font-size: 15px;
    color: #e6e6e6;
    line-height: 1.4;
    text-align: center;
    max-width: 260px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.55);

    opacity: 1; /* ✔ direkt görünür */
    transform: translateY(0);
    transition: .35s ease;
}
.service-item:hover .service-inner p {
    transform: translateY(-3px);
}


@media(min-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===================================================
   VIP DETAY BUTTON
=================================================== */
/* ===================================================
   VIP NEON DETAIL BUTTON
=================================================== */
.vip-btn {
    margin-top: 14px;
    padding: 11px 22px;
    background: #0a1324;
    border: 1px solid rgba(48,137,215,0.65);
    border-radius: 10px;
    color: #dff3ff;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;

    box-shadow:
        0 0 6px rgba(48,137,215,0.5),
        inset 0 0 12px rgba(48,137,215,0.25);
}

.vip-btn .vip-icon {
    font-size: 17px;
}

.vip-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    transition: 0.4s;
}

.vip-btn:hover::before {
    left: 120%;
}

.vip-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 10px rgba(48,137,215,0.7),
        0 0 18px rgba(48,137,215,0.5),
        inset 0 0 14px rgba(48,137,215,0.35);
    border-color: rgba(48,137,215,0.9);
}



.pro-services{display:flex;flex-wrap:wrap;gap:18px;align-items:flex-start}
    .pro-card{width:260px;background:linear-gradient(180deg,#0b1b2b,#08121a);border-radius:12px;padding:12px;position:relative;cursor:pointer;overflow:hidden;box-shadow:0 8px 24px rgba(0,0,0,.6)}
    .pro-card .thumb{width:100%;height:160px;object-fit:cover;border-radius:8px;display:block}
    .pro-info{padding:10px 6px}
    .vip-btn{margin-top:10px;padding:8px 12px;border-radius:8px;border:0;background:#3089d7;color:#fff;cursor:pointer}

    /* fade */
    .fade{opacity:0;transform:translateY(20px);transition:all .6s ease}
    .fade.show{opacity:1;transform:none}

    /* modal */
    .vip-modal{position:fixed;inset:0;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,.8);backdrop-filter:blur(6px);visibility:hidden;opacity:0;transition:opacity .28s,visibility .28s;z-index:9999}
    .vip-modal.show{visibility:visible;opacity:1}
    .vip-modal-content{background:linear-gradient(180deg,rgba(10,10,10,.9),rgba(5,5,5,.85));padding:18px;border-radius:12px;max-width:920px;width:92%;box-shadow:0 20px 60px rgba(0,0,0,.7);position:relative}
    .vip-modal img{width:100%;height:auto;display:block;border-radius:8px}
    .vip-close{position:absolute;right:12px;top:8px;font-size:28px;cursor:pointer;color:#fff;padding:6px}
    .vip-arrows{display:flex;justify-content:space-between;margin-top:12px}
    .vip-arrows div{background:rgba(255,255,255,.06);padding:8px 12px;border-radius:8px;cursor:pointer;color:#fff}
    /* magnifier */
    #magnifier{position:absolute;width:160px;height:160px;border-radius:50%;border:3px solid rgba(255,255,255,.6);backdrop-filter:blur(6px);background-repeat:no-repeat;display:none;pointer-events:none;z-index:50}
    /* debug notice */
    .note{opacity:.8;font-size:13px;margin-bottom:12px;color:#bcd}

/* ============================================
                 GLASS FOOTER
============================================ */
.glass-footer {
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 60px;
    color: #ddd;
}

/* Fade animasyonu */
.fade-footer {
    animation: footerFadeUp 0.9s ease forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes footerFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GRID */
.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
    padding-bottom: 40px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.footer-text {
    color: #ccc;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
}

/* PHONE CTA */
.footer-call-btn {
    background: linear-gradient(135deg, #3fa9f5, #1c6ecf);
    padding: 10px 18px;
    border-radius: 8px;
    display: inline-block;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 18px;
    transition: 0.3s;
    box-shadow: 0 0 12px rgba(0, 163, 255, 0.4);
}

.footer-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(0, 163, 255, 0.6);
}

/* SOCIAL ICONS */
.footer-social a {
    color: #fff;
    font-size: 20px;
    margin-right: 12px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #3fa9f5;
    text-shadow: 0 0 10px #3fa9f5;
}

/* KOLONLAR */
.footer-col h3 {
    font-size: 17px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #3fa9f5;
    text-shadow: 0 0 6px #3195d3;
}

/* ===============================
   MEGA MENU (DÜZENLENMİŞ)
================================ */

/* Başlık */
.mega-footer .mega-title {
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Grid */
.mega-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Link */
.mega-menu a {
    display: flex;
    align-items: center;
    gap: 10px;

    background: rgba(255,255,255,0.05);
    padding: 10px 12px;
    border-radius: 10px;

    color: #ccc;
    text-decoration: none;
    font-family: "Bebas Neue", sans-serif;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    border: 1px solid transparent;
    transition: all 0.25s ease;
}

/* ICON (Font Awesome doğru kullanım) */
.mega-menu a i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    font-size: 17px;

    color: #3fa9f5;
    min-width: 20px;
    text-align: center;

    transition: transform 0.25s ease, color 0.25s ease;
}

/* Hover */
.mega-menu a:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(63,169,245,0.35);
    color: #fff;

    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(63,169,245,0.35);
}

/* Hover icon animasyonu */
.mega-menu a:hover i {
    color: #6fc2ff;
    transform: scale(1.2) rotate(-5deg);
}

/* Mobile */
@media (max-width: 768px) {
    .mega-menu {
        grid-template-columns: 1fr;
    }

    .mega-menu a {
        font-size: 14px;
    }
}


/* ===============================
   FOOTER BOTTOM – SILENT LUXURY
================================ */

.footer-bottom {
    text-align: center;
    padding: 22px 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(
        to top,
        rgba(5,10,20,0.35),
        rgba(5,10,20,0.15)
    );
}

/* DESKTOP */
.footer-bottom .footer-desktop {
    margin: 0;
    font-size: 12px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);

    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* MOBILE (default hidden) */
.footer-bottom .footer-mobile {
    display: none;
    margin: 0;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

/* Marka */
.footer-bottom strong {
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

/* Motto */
.footer-bottom em {
    font-style: normal;
    opacity: 0.6;
    letter-spacing: 1.3px;
}

/* Ayraç */
.footer-bottom .sep {
    opacity: 0.3;
    margin: 0 4px;
}

/* Yıl */
.footer-bottom .year {
    opacity: 0.6;
}

/* Hover – çok hafif kurumsal mavi */
.footer-bottom:hover strong {
    color: #6ab7ff;
    transition: color 0.35s ease;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {
    .footer-bottom .footer-desktop {
        display: none;
    }

    .footer-bottom .footer-mobile {
        display: block;
    }
}
.fade-footer-bottom {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-footer-bottom.visible {
    opacity: 1;
    transform: none;
}



/* ===============================
   NR STUDIO – INLINE LOGO
================================ */

.designed-by {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 22px 0;
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

/* Link wrapper */
.nr-logo {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.35s ease;
}

/* SVG */
.nr-svg {
    height: 34px;
    overflow: visible;
}

/* NR – GOOD TIMES FEEL */
.nr-text {
    font-family: 'Arial Black', 'Impact', sans-serif; /* Good Times feel */
    font-size: 56px;
    letter-spacing: 6px;
    fill: none;
    stroke: #6ab7ff;
    stroke-width: 1.4px;
    paint-order: stroke fill;
}

/* Studio – signature */
.studio-text {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 28px;
    letter-spacing: 2px;
    fill: rgba(255,255,255,0.75);
}

/* ® */
.nr-logo sup {
    font-size: 9px;
    margin-left: 4px;
    opacity: 0.6;
    transform: translateY(-6px);
}

/* ===============================
   HOVER – MICRO BLUE GLOW
================================ */

.nr-logo:hover {
    opacity: 1;
}

.nr-logo:hover .nr-text {
    stroke: #6ab7ff;
    filter: drop-shadow(0 0 4px rgba(106,183,255,0.45))
            drop-shadow(0 0 10px rgba(106,183,255,0.25));
}

.nr-logo:hover .studio-text {
    fill: #e8f3ff;
}

/* ===============================
   MOBILE – SIMPLIFIED LOGO
================================ */

@media (max-width: 576px) {
    .designed-by span {
        display: none;
    }

    .nr-svg {
        height: 28px;
    }

    .studio-text {
        display: none; /* sadece NR */
    }
}

/* ===============================
   FOOTER BOTTOM GROUP (COPYRIGHT + NR)
   PERFECT CENTER (X + Y)
================================ */

.footer-bottom-group {
    display: flex;
    flex-direction: column;
    justify-content: center;     /* DİKEY ORTA */
    align-items: center;         /* YATAY ORTA */

    min-height: 180px;           /* grubun yüksekliği */
    
    border-top: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(
        to top,
        rgba(5,10,20,0.35),
        rgba(5,10,20,0.15)
    );
    text-align: center;
}

/* İç bloklar — gerçek merkez hissi */
.footer-bottom-group .footer-bottom,
.footer-bottom-group .designed-by {
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer bottom kolon gibi durmaz */
.footer-bottom-group .footer-bottom {
    background: transparent;
    border-top: none;
    padding: 0 12px 8px;
}

/* NR devam satırı */
.footer-bottom-group .designed-by {
    padding: 0;
    margin-top: 6px;
    font-size: 10.5px;
    opacity: 0.6;
}

/* Hover senkronu */
.footer-bottom-group:hover strong {
    color: #6ab7ff;
}



/* ======================================
   PREMIUM APPLE LANGUAGE FAB (FULL)
====================================== */

/* Konum */
.lang-fab {
  position: fixed;
  left: 26px;
  top: 90px; /* Header yüksekliğine göre ayarlayabilirsin */
  z-index: 9999;
}

/* Mobil */
@media (max-width: 768px) {
  .lang-fab {
    top: 70px;
    left: 18px;
  }
}

/* ======================================
   ANA BUTON
====================================== */
.lang-main {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(15,20,30,0.85);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  overflow: hidden;
  z-index: 2;

  box-shadow: 0 10px 30px rgba(0,0,0,0.35);

  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    background .3s ease;
}

.lang-main:hover {
  background: #3089d7;
  transform: scale(1.05);
}

/* Açılınca döner */
.lang-fab.open .lang-main {
  transform: rotate(135deg) scale(1.05);
  animation: fabGlow 2.5s ease-in-out infinite;
}

/* Halo ışık */
.lang-main::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(48,137,215,0.45) 0%,
    rgba(48,137,215,0.18) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}

.lang-fab.open .lang-main::before {
  opacity: 1;
}

/* Glow animasyonu */
@keyframes fabGlow {
  0%,100% {
    box-shadow:
      0 10px 30px rgba(0,0,0,0.35),
      0 0 0 rgba(48,137,215,0);
  }
  50% {
    box-shadow:
      0 12px 36px rgba(0,0,0,0.4),
      0 0 18px rgba(48,137,215,0.45);
  }
}

/* ======================================
   MENÜ MERKEZİ
====================================== */
.lang-options {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.lang-fab.open .lang-options {
  pointer-events: auto;
}

/* ======================================
   DİL BUTONLARI
====================================== */
.lang-item {
  position: absolute;
  left: 50%;
  top: 50%;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15,20,30,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  cursor: pointer;

  opacity: 0;
  transform: translate(-50%, -50%) scale(0);

  transition:
    transform .4s cubic-bezier(.25,.8,.25,1),
    opacity .25s ease,
    background .25s ease;
}

.lang-item img {
  width: 22px;
  height: 22px;
  pointer-events: none;
}

/* Hover efekti */
.lang-item:hover {
  background: rgba(48,137,215,0.9);
  box-shadow:
    0 0 12px rgba(48,137,215,0.6),
    0 6px 20px rgba(0,0,0,0.35);
  transform: translate(-50%, -50%) scale(1.15);
}

/* Aktif dil */
.lang-item.active {
  background: #3089d7;
  box-shadow:
    0 0 0 3px rgba(48,137,215,0.45),
    0 10px 24px rgba(48,137,215,0.5);
}

/* Açılınca görünür */
.lang-fab.open .lang-item {
  opacity: 1;
  animation: itemScale .35s cubic-bezier(.22,1.4,.36,1);
}

/* Yay efekti */
@keyframes itemScale {
  0% {
    opacity: 0;
    scale: 0;
  }
  60% {
    opacity: 1;
    scale: 1.15;
  }
  100% {
    scale: 1;
  }
}

/* ======================================
   YARIM DAİRE (YUKARI AÇILIR)
====================================== */
.lang-fab.open .lang-item:nth-child(1) {
  transform: translate(-50%, -50%) rotate(-90deg) translate(85px) rotate(90deg);
}

.lang-fab.open .lang-item:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-30deg) translate(85px) rotate(30deg);
}

.lang-fab.open .lang-item:nth-child(3) {
  transform: translate(-50%, -50%) rotate(30deg) translate(85px) rotate(-30deg);
}

.lang-fab.open .lang-item:nth-child(4) {
  transform: translate(-50%, -50%) rotate(90deg) translate(85px) rotate(-90deg);
}

/* Kapalı durum */
.lang-fab:not(.open) .lang-item {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

/* ======================================
   GENEL HALO (MENÜ AÇILINCA)
====================================== */
.lang-fab.open::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(48,137,215,0.15),
    transparent 70%
  );
  animation: haloExpand .5s ease;
  pointer-events: none;
}

@keyframes haloExpand {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}


/* =========================
   FORCE THEME SYSTEM
========================= */

/* LIGHT (default) */
body{
  background:#ffffff !important;
  color:#000000 !important;
}

/* DARK */
body.dark-mode{
  background:#ffffff !important;
  color:#3089d7 !important;
}

/* Tüm yazıları zorla body'den miras al */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body p,
body span,
body li,
body a{
  color:inherit !important;
}

/* Neden Bizi Seçmelisiniz kartları */
#arda-cards .glass {
    background: #ffffff !important;
    border: 1px solid #e5e5e5;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Başlıklar siyah */
#arda-cards .glass h4 {
    color: #000000 !important;
}

/* Açıklama yazıları siyah */
#arda-cards .glass p {
    color: #000000 !important;
}

/* İkon rengi (isteğe bağlı – daha kurumsal görünür) */
#arda-cards .card-icon {
    font-size: 32px;
}

/* Misyon & Vizyon kartları */
#arda-mission .glass {
    background: #ffffff !important;
    border: 1px solid #e5e5e5;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Başlık siyah */
#arda-mission .glass h4 {
    color: #000000 !important;
}

/* Metin siyah */
#arda-mission .glass p {
    color: #000000 !important;
}

/* Timeline kartları */
#arda-timeline-list .glass {
    background: #ffffff !important;
    border: 1px solid #e5e5e5;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Yıl rengi Arda mavisi (kurumsal görünür) */
#arda-timeline-list .year {
    color: #3089d7;
    font-weight: 600;
}

/* Yazılar siyah */
#arda-timeline-list .glass p {
    color: #000000 !important;
}


/* =====================================================
   ARDA KLIMA – FINAL LIGHT THEME
   Tek ve son stil sistemi
===================================================== */

/* BASE */
:root{
  --arda-blue:#3089d7;
  --text-dark:#333;
  --border:#e6e6e6;
  --bg:#ffffff;
}

body{
  background:var(--bg) !important;
  color:var(--text-dark) !important;
  font-family:Inter, Poppins, sans-serif;
}

/* SECTIONS */
section{
  background:#ffffff !important;
}

/* TITLES */
.arda-title{
  color:var(--arda-blue);
  font-weight:700;
}

/* =================================
   GLASS CARDS (WHY / MISSION / TIMELINE)
================================= */
.glass{
  background:#ffffff !important;
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow:0 8px 24px rgba(0,0,0,0.06);
}

.glass h4{
  color:#000;
}

.glass p{
  color:#000;
}

/* Timeline year */
.year{
  color:var(--arda-blue);
  font-weight:600;
}


/* =================================
   GLOBAL DARK MODE KORUMA
================================= */

body.dark-mode{
  background:#ffffff !important;
  color:var(--text-dark) !important;
}

/* =========================================
   PRO SERVICES SECTION
========================================= */

.pro-services {
    background: #3089d7;
    padding: 100px 0;
}

.pro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* CARD */
.pro-card {
    position: relative;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(6px);
    transition: all .4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* IMAGE */
.pro-img {
    height: 240px;
    overflow: hidden;
}

.pro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

/* CONTENT */
.pro-content {
    padding: 28px;
}

.pro-content h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: .5px;
}

.pro-content p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 24px;
}

/* Hover Efekt */
.pro-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.25);
}

.pro-card:hover .pro-img img {
    transform: scale(1.08);
}

/* Alt Çizgi Animasyonu */
.pro-content h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #ffffff;
    margin-top: 10px;
    transition: width .3s ease;
}

.pro-card:hover .pro-content h3::after {
    width: 80px;
}

/* Responsive */

@media(max-width: 1200px){
    .pro-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width: 600px){
    .pro-grid{
        grid-template-columns: 1fr;
    }
}


/*Hakkımızda*/
/* ===============================
   FORCE ARDA BACKGROUND FIX
=============================== */

/* Tüm section'larda beyaz varsa iptal et */
section.about-section {
  background: #3089d7 !important;
}

/* Eğer container beyaz yapılıyorsa */
.about-section .about-container {
  background: transparent !important;
}

/* İç blok beyazsa */
.about-section .about-content {
  background: transparent !important;
}

/* Sayfa genelinde section beyaz yapan varsa override */
.about-section,
.about-section * {
  box-sizing: border-box;
}

/* Yazılar beyaz olsun */
.about-section {
  color: #ffffff !important;
}

/* =========================================
   ARDA MAVİ ZEMİN – FORCE
========================================= */

.about-stats,
.about-timeline,
.ceo-section {
  background: #3089d7 !important;
  padding: 100px 0;
  color: #ffffff !important;
  position: relative;
}

/* container'lar beyaz yapılıysa iptal */
.stats-container,
.timeline-container,
.ceo-container {
  background: transparent !important;
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* =========================================
   STATS – PREMIUM CAM KART
========================================= */

.stats-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.stat-box {
  flex: 1;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  text-align: center;
  padding: 40px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-8px);
}

.stat-box h3 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #ffffff;
}

.stat-box p {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}

/* =========================================
   TIMELINE
========================================= */

.timeline-container h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 32px;
  color: #ffffff;
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
}

.timeline-year {
  width: 120px;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
}

.timeline-content {
  flex: 1;
  padding-left: 25px;
  border-left: 3px solid rgba(255,255,255,0.7);
  color: rgba(255,255,255,0.95);
}

/* =========================================
   CEO – CAM KART
========================================= */

.ceo-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  padding: 60px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  color: #ffffff;
}

.ceo-card h3 {
  margin-bottom: 20px;
  font-size: 26px;
  color: #ffffff;
}

.ceo-card p {
  line-height: 1.9;
  color: rgba(255,255,255,0.95);
}

.ceo-card span {
  display: block;
  margin-top: 25px;
  font-weight: 600;
  color: #ffffff;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {
  .stats-container {
    flex-direction: column;
  }

  .timeline-item {
    flex-direction: column;
  }

  .timeline-year {
    margin-bottom: 8px;
  }

  .ceo-card {
    padding: 40px 25px;
  }
}

