/* ============================================
   TECHNODOX -ULTRA-MODERN STYLESHEET
   ============================================ */

   @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Syne:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

   /* ─── TOKENS ─── */
   :root {
       --blue: #4A90E2;
       --blue-dark: #357ABD;
       --blue-light: #6AAAEA;
       --orange: #eb9125;
       --orange-dark: #E55A2B;
       --orange-light: #FF8C5A;
       --dark: #0A0E1A;
       --dark-card: #111827;
       --dark-card-hover: #cc914849;
       --text-primary: #F0F2F5;
       --text-secondary: #c7cfe1;
       --text-muted: #4b90e1;
       --glow-blue: rgba(74, 144, 226, 0.4);
       --glow-orange: rgba(255, 107, 53, 0.4);
       --page-bg: #0A0E1A;
       --surface-bg: #111827;
       --surface-border-soft: rgba(255, 255, 255, 0.08);
       --surface-border-subtle: rgba(255, 255, 255, 0.06);
       --navbar-scrolled-bg: rgba(10, 14, 26, 0.8);
       --mobile-menu-bg: rgba(10, 14, 26, 0.98);
       --overlay-noise-opacity: 0.018;
       --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   }

   html[data-theme='light'] {
       --dark: #f4f7fb;
       --dark-card: #ffffff;
       --dark-card-hover: #e3ecf8;
       --text-primary: #0f172a;
       --text-secondary: #334155;
       --text-muted: #5f7190;
       --glow-blue: rgba(53, 122, 189, 0.24);
       --glow-orange: rgba(229, 90, 43, 0.24);
       --page-bg: #f4f7fb;
       --surface-bg: #ffffff;
       --surface-border-soft: rgba(15, 23, 42, 0.14);
       --surface-border-subtle: rgba(15, 23, 42, 0.1);
       --navbar-scrolled-bg: rgba(244, 247, 251, 0.9);
       --mobile-menu-bg: rgba(244, 247, 251, 0.98);
       --overlay-noise-opacity: 0.01;
   }
   
   /* ─── RESET ─── */
   *, *::before, *::after {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }
   
   html {
       scroll-behavior: smooth;
       overflow-x: hidden;
   }
   
   body {
       font-family: 'Inter', sans-serif;
       background: var(--page-bg);
       color: var(--text-primary);
       line-height: 1.6;
       overflow-x: hidden;
       -webkit-font-smoothing: antialiased;
       
   }

   body,
   .navbar,
   .theme-toggle,
   .contact-form-wrap,
   .stat-item,
   .testimonial-card-animated,
   .footer-col a,
   .form-group input,
   .form-group select,
   .form-group textarea {
       transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
   }

   a:focus-visible,
   button:focus-visible,
   input:focus-visible,
   select:focus-visible,
   textarea:focus-visible {
       outline: 2px solid var(--blue);
       outline-offset: 2px;
   }
   
   /* ─── SCROLLBAR ─── */
   ::-webkit-scrollbar { width: 6px; }
   ::-webkit-scrollbar-track { background: var(--page-bg); }
   ::-webkit-scrollbar-thumb {
       background: linear-gradient(180deg, var(--blue), var(--orange));
       border-radius: 3px;
   }
   
   /* ─── NOISE OVERLAY (whole page grain) ─── */
   body::after {
       content: '';
       position: fixed;
       inset: 0;
       pointer-events: none;
       z-index: 9999;
       opacity: var(--overlay-noise-opacity);
       background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
   }
   
   /* ─── UTILITY ─── */
   .text-blue { color: var(--blue); }
   .text-orange { color: var(--orange); }
   .gradient-text {
       background: linear-gradient(135deg, var(--blue), var(--orange));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
   }
   
   /* ─── LOADER ─── */
   .loader {
       position: fixed;
       inset: 0;
       background: var(--page-bg);
       z-index: 99999;
       display: flex;
       align-items: center;
       justify-content: center;
       transition: opacity 0.6s ease, visibility 0.6s ease;
   }
   .loader.hidden {
       opacity: 0;
       visibility: hidden;
       pointer-events: none;
   }
   .loader-ring {
       width: 56px;
       height: 56px;
       position: relative;
   }
   .loader-ring div {
       position: absolute;
       inset: 0;
       border-radius: 50%;
       border: 3px solid transparent;
       animation: loader-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
   }
   .loader-ring div:nth-child(1) { border-top-color: var(--blue); animation-delay: 0s; }
   .loader-ring div:nth-child(2) { border-right-color: var(--orange); animation-delay: -0.15s; width: 42px; height: 42px; top: 7px; left: 7px; }
   .loader-ring div:nth-child(3) { border-bottom-color: var(--blue-light); animation-delay: -0.3s; width: 28px; height: 28px; top: 14px; left: 14px; }
   @keyframes loader-spin { to { transform: rotate(360deg); } }
   
   /* ─── NAVBAR ─── */
   .navbar {
       position: fixed;
       top: 0;
       left: 0;
       right: 0;
       z-index: 1000;
       padding: 1.25rem 0;
       transition: all 0.4s ease;
       border-bottom: 1px solid transparent;
   }
   .navbar.scrolled {
       padding: 0.6rem 0;
       background: var(--navbar-scrolled-bg);
       backdrop-filter: blur(24px);
       -webkit-backdrop-filter: blur(24px);
       border-bottom-color: rgba(74, 144, 226, 0.12);
   }
   .navbar .container {
       display: flex;
       align-items: center;
       justify-content: space-between;
       max-width: 1280px;
       margin: 0 auto;
       padding: 0 1.5rem;
   }
   .img-logo-technodox {
    width: 120px;
   }

   .brand-logo {
       font-family: 'Syne', sans-serif;
       font-size: 1.7rem;
       font-weight: 800;
       text-decoration: none;
       letter-spacing: -0.5px;
   }
   .brand-logo .techno { color: var(--blue); }
   .brand-logo .dox { color: var(--orange); }
   .nav-links {
       display: flex;
       align-items: center;
       gap: 2rem;
       list-style: none;
   }
   .nav-links a {
       color: var(--text-secondary);
       text-decoration: none;
       font-size: 0.88rem;
       font-weight: 500;
       letter-spacing: 0.3px;
       position: relative;
       transition: color var(--transition);
   }
   .nav-links a::after {
       content: '';
       position: absolute;
       bottom: -4px;
       left: 0;
       width: 0;
       height: 1.5px;
       background: var(--orange);
       transition: width var(--transition);
   }
   .nav-links a:hover { color: var(--text-primary); }
   .nav-links a:hover::after { width: 100%; }
   .nav-cta {
       background: linear-gradient(135deg, var(--blue), var(--blue-dark));
       color: #fff !important;
       padding: 0.55rem 1.5rem;
       border-radius: 50px;
       font-weight: 600;
       font-size: 0.82rem;
       text-transform: uppercase;
       letter-spacing: 0.8px;
       transition: all var(--transition);
       box-shadow: 0 4px 20px var(--glow-blue);
   }
   .nav-cta:hover {
       transform: translateY(-2px);
       box-shadow: 0 8px 30px var(--glow-blue);
   }
   .nav-cta::after { display: none !important; }

   .theme-toggle {
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
       background: rgba(255, 255, 255, 0.06);
       border: 1px solid var(--surface-border-soft);
       border-radius: 999px;
       color: var(--text-secondary);
       padding: 0.45rem 0.85rem;
       cursor: pointer;
       transition: all var(--transition);
       margin-left: 0.8rem;
   }
   .theme-toggle:hover {
       color: var(--text-primary);
       border-color: rgba(74, 144, 226, 0.35);
       transform: translateY(-1px);
   }
   .theme-toggle i {
       font-size: 0.9rem;
   }
   .theme-toggle-label {
       font-size: 0.75rem;
       font-weight: 700;
       letter-spacing: 0.08em;
       text-transform: uppercase;
   }
   .theme-icon-light {
       display: none;
   }
   html[data-theme='light'] .theme-icon-dark {
       display: none;
   }
   html[data-theme='light'] .theme-icon-light {
       display: inline-block;
   }
   html[data-theme='light'] .theme-toggle {
       background: rgba(15, 23, 42, 0.04);
   }
   
   /* Mobile toggle */
   .nav-toggle {
       display: none;
       flex-direction: column;
       gap: 5px;
       cursor: pointer;
       padding: 8px;
       border: 0;
       background: transparent;
   }
   .nav-toggle span {
       width: 24px; height: 2px;
       background: var(--text-primary);
       border-radius: 2px;
       transition: all 0.3s ease;
   }
   
   @media (max-width: 900px) {
       .nav-links { display: none; }
       .nav-toggle { display: flex; }
       .nav-links.open {
           display: flex;
           flex-direction: column;
           position: fixed;
           inset: 0;
           top: 60px;
           background: var(--mobile-menu-bg);
           backdrop-filter: blur(24px);
           align-items: center;
           justify-content: center;
           gap: 2.5rem;
           z-index: 999;
       }
       .nav-links.open a { font-size: 1.2rem; }
   }

   /* ═══════════════════════════════════════════
   MOBILE NAVIGATION FIX
   Replace the @media (max-width: 900px) section in your style.css
   ═══════════════════════════════════════════ */

@media (max-width: 900px) {
    .nav-links { 
        display: none; 
    }
    
    .theme-toggle {
        margin-left: auto;
        margin-right: 0.5rem;
    }

    .theme-toggle-label {
        display: none;
    }

    .nav-toggle { 
        display: flex; 
        position: relative;
        z-index: 1001;
    }
    
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for better mobile support */
        background: var(--mobile-menu-bg);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 1000;
        padding: 6rem 2rem 3rem;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links.open a { 
        font-size: 1.2rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
        display: block;
    }
    
    /* Make sure nav items are accessible */
    .nav-links.open li {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    /* CTA button on mobile */
    .nav-cta {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
}

/* Smaller screens */
@media (max-width: 600px) {
    .nav-links.open {
        gap: 1.5rem;
        padding: 5rem 1.5rem 2rem;
    }
    
    .nav-links.open a {
        font-size: 1.1rem;
    }
}

/* Very small screens */
@media (max-width: 400px) {
    .nav-links.open {
        gap: 1.2rem;
    }
    
    .nav-links.open a {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
}

/* Prevent body scroll when menu is open */
body.nav-open {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100%;
}
   
   /* ─── HERO ─── */
   .hero {
       position: relative;
       min-height: 100vh;
       display: flex;
       align-items: center;
       overflow: hidden;
       padding: 7rem 0 4rem;
   }
   
   /* Animated mesh background */
   .hero-mesh {
       position: absolute;
       inset: 0;
       z-index: 0;
   }
   .mesh-blob {
       position: absolute;
       border-radius: 50%;
       filter: blur(100px);
       opacity: 0.35;
       animation: blob-drift 12s ease-in-out infinite alternate;
   }
   .mesh-blob--1 {
       width: 700px; height: 700px;
       background: var(--blue);
       top: -200px; left: -200px;
       animation-delay: 0s;
   }
   .mesh-blob--2 {
       width: 500px; height: 500px;
       background: var(--orange);
       bottom: -150px; right: -100px;
       animation-delay: -4s;
   }
   .mesh-blob--3 {
       width: 300px; height: 300px;
       background: var(--blue-light);
       top: 50%; left: 50%;
       transform: translate(-50%, -50%);
       animation-delay: -8s;
       opacity: 0.15;
   }
   @keyframes blob-drift {
       0% { transform: translate(0, 0) scale(1); }
       100% { transform: translate(60px, -40px) scale(1.15); }
   }
   
   /* Grid lines */
   .hero-grid {
       position: absolute;
       inset: 0;
       background-image:
           linear-gradient(rgba(74,144,226,0.04) 1px, transparent 1px),
           linear-gradient(90deg, rgba(74,144,226,0.04) 1px, transparent 1px);
       background-size: 80px 80px;
       mask-image: radial-gradient(ellipse 80% 70% at center, black 20%, transparent 80%);
       -webkit-mask-image: radial-gradient(ellipse 80% 70% at center, black 20%, transparent 80%);
   }
   
   .hero-content {
       position: relative;
       z-index: 1;
       max-width: 1280px;
       margin: 0 auto;
       padding: 0 1.5rem;
       width: 100%;
   }
   
   .hero-inner {
       display: grid;
       grid-template-columns: 1.1fr 0.9fr;
       gap: 4rem;
       align-items: center;
   }
   
   /* Badge */
   .hero-badge {
       display: inline-flex;
       align-items: center;
       gap: 0.6rem;
       background: rgba(74, 144, 226, 0.1);
       border: 1px solid rgba(74, 144, 226, 0.25);
       padding: 0.4rem 1rem;
       border-radius: 50px;
       margin-bottom: 1.8rem;
   }
   .hero-badge-dot {
       width: 8px; height: 8px;
       background: var(--blue);
       border-radius: 50%;
       box-shadow: 0 0 8px var(--glow-blue);
       animation: pulse-dot 2s infinite;
   }
   @keyframes pulse-dot {
       0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--glow-blue); }
       50% { opacity: 0.5; box-shadow: 0 0 20px var(--glow-blue); }
   }
   .hero-badge span {
       font-size: 0.78rem;
       color: var(--blue-light);
       font-weight: 500;
       letter-spacing: 0.5px;
       text-transform: uppercase;
   }
   
   .hero-title {
       font-family: 'Syne', sans-serif;
       font-size: clamp(2.8rem, 5.5vw, 4.2rem);
       font-weight: 800;
       line-height: 1.1;
       letter-spacing: -2px;
       margin-bottom: 1.6rem;
       color: var(--text-primary);
   }
   .hero-title .line { display: block; }
   .hero-title .highlight {
       background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
   }
   
   .hero-desc {
       color: var(--text-secondary);
       font-size: 1.05rem;
       max-width: 480px;
       margin-bottom: 2.5rem;
       line-height: 1.75;
   }
   
   .hero-actions {
       display: flex;
       gap: 1rem;
       flex-wrap: wrap;
       align-items: center;
   }
   
   /* Buttons */
   .btn-glow {
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
       background: linear-gradient(135deg, var(--orange), var(--orange-dark));
       color: #fff;
       padding: 0.85rem 2rem;
       border-radius: 50px;
       font-weight: 600;
       font-size: 0.9rem;
       text-decoration: none;
       letter-spacing: 0.3px;
       transition: all var(--transition);
       box-shadow: 0 4px 24px var(--glow-orange);
       position: relative;
       overflow: hidden;
   }
   .btn-glow::before {
       content: '';
       position: absolute;
       inset: 0;
       background: linear-gradient(135deg, var(--orange-light), var(--orange));
       opacity: 0;
       transition: opacity var(--transition);
   }
   .btn-glow:hover::before { opacity: 1; }
   .btn-glow:hover { transform: translateY(-3px); box-shadow: 0 8px 36px var(--glow-orange); }
   .btn-glow span, .btn-glow svg { position: relative; z-index: 1; }
   
   .btn-ghost {
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
       color: var(--text-secondary);
       padding: 0.85rem 1.8rem;
       border-radius: 50px;
       font-weight: 500;
       font-size: 0.9rem;
       text-decoration: none;
       border: 1px solid rgba(255,255,255,0.1);
       transition: all var(--transition);
   }
   .btn-ghost:hover {
       color: var(--text-primary);
       border-color: rgba(74,144,226,0.4);
       background: rgba(74,144,226,0.06);
       transform: translateY(-2px);
   }
   
   /* Hero visual */
   .hero-visual {
       position: relative;
       display: flex;
       align-items: center;
       justify-content: center;
   }
   
   .hero-card-stack {
       position: relative;
       width: 100%;
       max-width: 460px;
       margin: 0 auto;
   }
   
   /* Main showcase card */
   .showcase-card {
       position: relative;
       background: var(--dark-card);
       border: 1px solid rgba(74, 144, 226, 0.15);
       border-radius: 24px;
       padding: 2rem;
       overflow: hidden;
       box-shadow: 0 40px 80px rgba(0,0,0,0.4);
   }
   .showcase-card::before {
       content: '';
       position: absolute;
       top: 0; left: 0; right: 0;
       height: 1px;
       background: linear-gradient(90deg, transparent, var(--blue), var(--orange), transparent);
   }
   
   .code-window-bar {
       display: flex;
       align-items: center;
       gap: 0.5rem;
       margin-bottom: 1.4rem;
   }
   .code-dot {
       width: 12px; height: 12px;
       border-radius: 50%;
   }
   .code-dot--red { background: #ff5f57; }
   .code-dot--yellow { background: #febc2e; }
   .code-dot--green { background: #28c840; }
   .code-window-title {
       font-family: 'Space Mono', monospace;
       font-size: 0.72rem;
       color: var(--text-muted);
       margin-left: 0.8rem;
       letter-spacing: 0.5px;
   }
   
   .code-lines { display: flex; flex-direction: column; gap: 0.45rem; }
   .code-line {
       font-family: 'Space Mono', monospace;
       font-size: 0.75rem;
       color: var(--text-muted);
       white-space: pre;
       overflow: hidden;
       max-height: 0;
       opacity: 0;
       animation: reveal-line 0.4s ease forwards;
   }
   .code-line--keyword { color: var(--blue); }
   .code-line--string { color: var(--orange); }
   .code-line--comment { color: #444d6b; font-style: italic; }
   .code-line--indent { padding-left: 1.2rem; }
   .code-line:nth-child(1) { animation-delay: 0.8s; }
   .code-line:nth-child(2) { animation-delay: 1.1s; }
   .code-line:nth-child(3) { animation-delay: 1.4s; }
   .code-line:nth-child(4) { animation-delay: 1.7s; }
   .code-line:nth-child(5) { animation-delay: 2.0s; }
   .code-line:nth-child(6) { animation-delay: 2.3s; }
   .code-line:nth-child(7) { animation-delay: 2.6s; }
   .code-line:nth-child(8) { animation-delay: 2.9s; }
   .code-line:nth-child(9) { animation-delay: 3.2s; }
   .code-line:nth-child(10) { animation-delay: 3.5s; }
   @keyframes reveal-line {
       to { max-height: 30px; opacity: 1; }
   }
   
   /* Floating accent cards */
   .float-card {
       position: absolute;
       background: var(--dark-card);
       border: 1px solid rgba(255,255,255,0.08);
       border-radius: 16px;
       padding: 0.9rem 1.2rem;
       box-shadow: 0 20px 50px rgba(0,0,0,0.35);
       display: flex;
       align-items: center;
       gap: 0.75rem;
       white-space: nowrap;
       z-index: 2;
   }
   .float-card--1 { top: -20px; right: -30px; animation: float-1 6s ease-in-out infinite; }
   .float-card--2 { bottom: -10px; left: -40px; animation: float-2 7s ease-in-out infinite; }
   .float-card--3 { top: 40%; right: -50px; animation: float-3 5.5s ease-in-out infinite; }
   
   @keyframes float-1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
   @keyframes float-2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
   @keyframes float-3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
   
   .float-card-icon {
       width: 36px; height: 36px;
       border-radius: 10px;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1rem;
   }
   .float-card-icon--blue { background: rgba(74,144,226,0.15); color: var(--blue); }
   .float-card-icon--orange { background: rgba(255,107,53,0.15); color: var(--orange); }
   .float-card-icon--green { background: rgba(39,174,96,0.15); color: #27ae60; }
   .float-card-text { font-size: 0.78rem; font-weight: 600; color: var(--text-primary); }
   .float-card-sub { font-size: 0.67rem; color: var(--text-muted); margin-top: 1px; }
   
   /* ─── SECTIONS COMMON ─── */
   .section {
       padding: 120px 0;
       position: relative;
   }
   .section-inner {
       max-width: 1280px;
       margin: 0 auto;
       padding: 0 1.5rem;
   }
   .section-label {
       display: inline-flex;
       align-items: center;
       gap: 0.6rem;
       margin-bottom: 1rem;
   }
   .section-label-line {
       width: 28px; height: 2px;
       background: linear-gradient(90deg, var(--blue), var(--orange));
       border-radius: 1px;
   }
   .section-label span {
       font-size: 0.72rem;
       text-transform: uppercase;
       letter-spacing: 2px;
       color: var(--text-muted);
       font-weight: 600;
   }
   .section-title {
       font-family: 'Syne', sans-serif;
       font-size: clamp(2rem, 3.5vw, 2.8rem);
       font-weight: 800;
       letter-spacing: -1.5px;
       line-height: 1.2;
       color: var(--text-primary);
       margin-bottom: 1rem;
   }
   .section-sub {
       color: var(--text-secondary);
       font-size: 1rem;
       max-width: 560px;
       line-height: 1.7;
   }
   
   /* ─── SERVICES ─── */
   .services-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 1.5rem;
       margin-top: 4rem;
   }
   
   .service-card {
       background: var(--dark-card);
       border: 1px solid rgba(255,255,255,0.06);
       border-radius: 20px;
       padding: 2rem;
       position: relative;
       overflow: hidden;
       transition: all var(--transition);
       cursor: default;
   }
   .service-card::before {
       content: '';
       position: absolute;
       top: 0; left: 0; right: 0;
       height: 2px;
       background: linear-gradient(90deg, var(--blue), var(--orange));
       transform: scaleX(0);
       transform-origin: left;
       transition: transform 0.5s ease;
   }
   .service-card:hover::before { transform: scaleX(1); }
   .service-card:hover {
       border-color: rgba(74, 144, 226, 0.2);
       transform: translateY(-6px);
       box-shadow: 0 20px 60px rgba(0,0,0,0.25);
       background: var(--dark-card-hover);
   }
   
   .service-num {
       position: absolute;
       top: 1.5rem; right: 1.5rem;
       font-family: 'Syne', sans-serif;
       font-size: 1.8rem;
       font-weight: 800;
       color: #4b91e1;
       line-height: 1;
   }
   .service-icon-wrap {
       width: 52px; height: 52px;
       border-radius: 14px;
       background: rgba(74,144,226,0.1);
       display: flex;
       align-items: center;
       justify-content: center;
       margin-bottom: 1.4rem;
       font-size: 1.3rem;
       color: var(--blue);
       transition: all var(--transition);
   }
   .service-card:hover .service-icon-wrap {
       background: linear-gradient(135deg, var(--blue), var(--orange));
       color: #fff;
       transform: scale(1.08);
   }
   .service-card h4 {
       font-family: 'Syne', sans-serif;
       font-weight: 700;
       font-size: 1.15rem;
       margin-bottom: 0.6rem;
       color: var(--text-primary);
       letter-spacing: -0.3px;
   }
   .service-card p {
       color: var(--text-muted);
       font-size: 0.85rem;
       line-height: 1.7;
   }
   
   /* ─── TECH STACK ─── */
   .tech-section { background: transparent; }
   .tech-marquee-wrap {
       margin-top: 4rem;
       overflow: hidden;
       position: relative;
   }
   .tech-marquee-wrap::before,
   .tech-marquee-wrap::after {
       content: '';
       position: absolute;
       top: 0; bottom: 0;
       width: 120px;
       z-index: 2;
       pointer-events: none;
   }
   .tech-marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--dark), transparent); }
   .tech-marquee-wrap::after { right: 0; background: linear-gradient(270deg, var(--dark), transparent); }
   
   .tech-marquee {
       display: flex;
       gap: 1.5rem;
       animation: marquee 30s linear infinite;
       width: max-content;
   }
   .tech-marquee:hover { animation-play-state: paused; }
   
   .tech-pill {
       flex-shrink: 0;
       display: flex;
       align-items: center;
       gap: 0.7rem;
       background: var(--dark-card);
       border: 1px solid rgba(255,255,255,0.07);
       border-radius: 50px;
       padding: 0.7rem 1.3rem;
       transition: all var(--transition);
       white-space: nowrap;
   }
   .tech-pill:hover {
       border-color: rgba(74,144,226,0.3);
       background: rgba(74,144,226,0.07);
       transform: translateY(-3px);
   }
   .tech-pill i { font-size: 1.1rem; color: var(--blue); }
   .tech-pill span { font-size: 0.82rem; color: var(--text-secondary); font-weight: 500; }
   
   @keyframes marquee { to { transform: translateX(-50%); } }
   
   /* ─── PROCESS ─── */
   .process-grid {
       display: grid;
       grid-template-columns: repeat(4, 1fr);
       gap: 1.5rem;
       margin-top: 4rem;
       position: relative;
   }
   /* connecting line */
   .process-grid::before {
       content: '';
       position: absolute;
       top: 38px;
       left: 12.5%;
       right: 12.5%;
       height: 2px;
       background: linear-gradient(90deg, var(--blue), var(--orange), var(--blue));
       opacity: 0.2;
       z-index: 0;
   }
   
   .process-card {
       position: relative;
       z-index: 1;
       text-align: center;
   }
   .process-step {
       width: 56px; height: 56px;
       border-radius: 16px;
       background: var(--dark-card);
       border: 1px solid rgba(74,144,226,0.2);
       display: flex;
       align-items: center;
       justify-content: center;
       margin: 0 auto 1.4rem;
       position: relative;
       transition: all var(--transition);
   }
   .process-card:hover .process-step {
       background: linear-gradient(135deg, var(--blue), var(--orange));
       border-color: transparent;
       box-shadow: 0 8px 30px var(--glow-blue);
       transform: scale(1.08);
   }
   .process-step-num {
       font-family: 'Syne', sans-serif;
       font-weight: 800;
       font-size: 1.1rem;
       color: var(--blue);
       transition: color var(--transition);
   }
   .process-card:hover .process-step-num { color: #fff; }
   
   .process-card h4 {
       font-family: 'Syne', sans-serif;
       font-weight: 700;
       font-size: 1rem;
       color: var(--text-primary);
       margin-bottom: 0.5rem;
       letter-spacing: -0.2px;
   }
   .process-card p {
       font-size: 0.8rem;
       color: var(--text-muted);
       line-height: 1.65;
       max-width: 200px;
       margin: 0 auto;
   }
   
   /* ─── STATS ─── */
   .stats-section {
       position: relative;
       overflow: hidden;
   }
   .stats-bg {
       position: absolute;
       inset: 0;
       background: linear-gradient(135deg, rgba(74,144,226,0.08) 0%, rgba(255,107,53,0.06) 100%);
       border-top: 1px solid rgba(74,144,226,0.1);
       border-bottom: 1px solid rgba(74,144,226,0.1);
   }
   .stats-grid {
       display: grid;
       grid-template-columns: repeat(4, 1fr);
       gap: 2rem;
       position: relative;
       z-index: 1;
   }
   .stat-item {
       text-align: center;
       padding: 2.5rem 1rem;
       border-radius: 20px;
       background: rgba(17, 24, 39, 0.6);
       border: 1px solid rgba(255,255,255,0.06);
       transition: all var(--transition);
   }
   .stat-item:hover {
       background: rgba(17, 24, 39, 0.9);
       border-color: rgba(74,144,226,0.2);
       transform: translateY(-6px);
       box-shadow: 0 20px 50px rgba(0,0,0,0.3);
   }
   .stat-icon-wrap {
       width: 48px; height: 48px;
       border-radius: 12px;
       background: rgba(74,144,226,0.1);
       display: flex;
       align-items: center;
       justify-content: center;
       margin: 0 auto 1rem;
       color: var(--blue);
       font-size: 1.2rem;
   }
   .stat-number {
       font-family: 'Syne', sans-serif;
       font-size: 2.8rem;
       font-weight: 800;
       letter-spacing: -2px;
       background: linear-gradient(135deg, var(--blue), var(--orange));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
       line-height: 1;
       margin-bottom: 0.5rem;
   }
   .stat-label {
       font-size: 0.8rem;
       color: var(--text-muted);
       text-transform: uppercase;
       letter-spacing: 1px;
       font-weight: 500;
   }
   
   /* ─── PRODUCTS ─── */
   .products-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 1.5rem;
       margin-top: 4rem;
   }
   
   .product-card {
       position: relative;
       background: var(--dark-card);
       border: 1px solid rgba(255,255,255,0.06);
       border-radius: 24px;
       padding: 2.5rem;
       overflow: hidden;
       transition: all var(--transition);
   }
   .product-card:hover {
       transform: translateY(-6px);
       box-shadow: 0 30px 70px rgba(0,0,0,0.3);
   }
   .product-card--blue { border-top: 2px solid var(--blue); }
   .product-card--orange { border-top: 2px solid var(--orange); }
   .product-card--blue:hover { border-color: rgba(74,144,226,0.25); box-shadow: 0 30px 70px rgba(74,144,226,0.12); }
   .product-card--orange:hover { border-color: rgba(255,107,53,0.25); box-shadow: 0 30px 70px rgba(255,107,53,0.12); }
   
   /* bg accent shape */
   .product-card::after {
       content: '';
       position: absolute;
       width: 200px; height: 200px;
       border-radius: 50%;
       filter: blur(60px);
       opacity: 0.12;
       top: -60px; right: -60px;
       pointer-events: none;
       transition: opacity var(--transition);
   }
   .product-card--blue::after { background: var(--blue); }
   .product-card--orange::after { background: var(--orange); }
   .product-card:hover::after { opacity: 0.22; }
   
   .product-icon-wrap {
       width: 64px; height: 64px;
       border-radius: 18px;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1.6rem;
       color: #fff;
       margin-bottom: 1.5rem;
       position: relative;
       z-index: 1;
   }
   .product-icon-wrap--blue { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); box-shadow: 0 8px 24px var(--glow-blue); }
   .product-icon-wrap--orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); box-shadow: 0 8px 24px var(--glow-orange); }
   
   .product-card h3 {
       font-family: 'Syne', sans-serif;
       font-weight: 800;
       font-size: 1.5rem;
       color: var(--text-primary);
       margin-bottom: 0.6rem;
       position: relative; z-index: 1;
       letter-spacing: -0.5px;
   }
   .product-card > p {
       color: var(--text-muted);
       font-size: 0.85rem;
       line-height: 1.7;
       margin-bottom: 1.6rem;
       position: relative; z-index: 1;
   }
   
   .product-features {
       list-style: none;
       margin-bottom: 2rem;
       position: relative; z-index: 1;
   }
   .product-features li {
       display: flex;
       align-items: center;
       gap: 0.7rem;
       font-size: 0.82rem;
       color: var(--text-secondary);
       padding: 0.4rem 0;
   }
   .product-features li svg { flex-shrink: 0; }
   .product-features .check--blue { color: var(--blue); }
   .product-features .check--orange { color: var(--orange); }
   
   .btn-product {
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
       font-size: 0.82rem;
       font-weight: 600;
       text-decoration: none;
       position: relative; z-index: 1;
       transition: all var(--transition);
   }
   .btn-product--blue { color: var(--blue); }
   .btn-product--orange { color: var(--orange); }
   .btn-product:hover { gap: 0.8rem; }
   .btn-product svg { transition: transform var(--transition); }
   .btn-product:hover svg { transform: translateX(3px); }
   
   /* ─── WHY US (Features) ─── */
   .features-layout {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 5rem;
       align-items: center;
       margin-top: 4rem;
   }
   .features-left .section-label { margin-bottom: 1.2rem; }
   .features-left .section-title { margin-bottom: 1rem; }
   .features-left .section-sub { margin-bottom: 2.5rem; }
   
   .feature-list { display: flex; flex-direction: column; gap: 1.5rem; }
   .feature-item {
       display: flex;
       gap: 1rem;
       align-items: flex-start;
   }
   .feature-bullet {
       width: 40px; height: 40px;
       flex-shrink: 0;
       border-radius: 12px;
       background: rgba(74,144,226,0.1);
       display: flex;
       align-items: center;
       justify-content: center;
       color: var(--blue);
       font-size: 1rem;
       transition: all var(--transition);
   }
   .feature-item:hover .feature-bullet {
       background: linear-gradient(135deg, var(--blue), var(--orange));
       color: #fff;
       transform: scale(1.1);
   }
   .feature-item h5 {
       font-weight: 600;
       font-size: 0.92rem;
       color: var(--text-primary);
       margin-bottom: 0.2rem;
   }
   .feature-item p {
       font-size: 0.78rem;
       color: var(--text-muted);
       line-height: 1.6;
   }
   
   /* Features right -visual board */
   .features-visual {
       position: relative;
   }
   .visual-board {
       background: var(--dark-card);
       border: 1px solid rgba(255,255,255,0.07);
       border-radius: 24px;
       padding: 2rem;
       position: relative;
       overflow: hidden;
   }
   .visual-board::before {
       content: '';
       position: absolute;
       inset: 0;
       background: radial-gradient(circle at 30% 70%, rgba(74,144,226,0.08), transparent 60%),
                   radial-gradient(circle at 80% 20%, rgba(255,107,53,0.06), transparent 50%);
       pointer-events: none;
   }
   .board-row {
       display: flex;
       gap: 1rem;
       margin-bottom: 1rem;
       position: relative; z-index: 1;
   }
   .board-block {
       flex: 1;
       background: rgba(255,255,255,0.03);
       border: 1px solid rgba(255,255,255,0.06);
       border-radius: 14px;
       padding: 1.2rem;
       transition: all var(--transition);
   }
   .board-block:hover {
       background: rgba(74,144,226,0.07);
       border-color: rgba(74,144,226,0.2);
       transform: translateY(-2px);
   }
   .board-block--wide { flex: 2; }
   .board-block-title {
       font-size: 0.72rem;
       text-transform: uppercase;
       letter-spacing: 1px;
       color: var(--text-muted);
       margin-bottom: 0.4rem;
       font-weight: 600;
   }
   .board-block-value {
       font-family: 'Syne', sans-serif;
       font-size: 1.3rem;
       font-weight: 700;
       color: var(--text-primary);
   }
   .board-block-value .unit { font-size: 0.8rem; color: var(--text-muted); font-family: 'Inter', sans-serif; font-weight: 500; }
   .board-bar {
       width: 100%;
       height: 4px;
       background: rgba(255,255,255,0.06);
       border-radius: 2px;
       margin-top: 0.6rem;
       overflow: hidden;
   }
   .board-bar-fill {
       height: 100%;
       border-radius: 2px;
       background: linear-gradient(90deg, var(--blue), var(--orange));
       transition: width 1.5s ease;
   }
   
   /* ─── TESTIMONIALS ─── */
   .testimonials-grid {
       display: grid;
       grid-template-columns: repeat(3, 1fr);
       gap: 1.5rem;
       margin-top: 4rem;
   }
   
   .testimonial-card {
       background: var(--dark-card);
       border: 1px solid rgba(255,255,255,0.06);
       border-radius: 20px;
       padding: 2rem;
       position: relative;
       overflow: hidden;
       transition: all var(--transition);
   }
   .testimonial-card:hover {
       border-color: rgba(74,144,226,0.2);
       transform: translateY(-5px);
       box-shadow: 0 20px 50px rgba(0,0,0,0.2);
   }
   .testimonial-quote {
       font-size: 2.5rem;
       line-height: 1;
       color: var(--orange);
       opacity: 0.4;
       margin-bottom: 0.8rem;
       font-family: 'Syne', sans-serif;
       font-weight: 800;
   }
   .testimonial-card p {
       font-size: 0.83rem;
       color: var(--text-secondary);
       line-height: 1.75;
       margin-bottom: 1.4rem;
   }
   .testimonial-author {
       display: flex;
       align-items: center;
       gap: 0.8rem;
   }
   .testimonial-avatar {
       width: 38px; height: 38px;
       border-radius: 50%;
       background: linear-gradient(135deg, var(--blue), var(--orange));
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 0.7rem;
       font-weight: 700;
       color: #fff;
   }
   .testimonial-author-info h6 {
       font-size: 0.82rem;
       color: var(--text-primary);
       font-weight: 600;
       margin-bottom: 1px;
   }
   .testimonial-author-info span {
       font-size: 0.7rem;
       color: var(--text-muted);
   }
   .stars { color: #f39c12; font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 0.6rem; }
   
   /* ─── CTA SECTION ─── */
   .cta-section {
       position: relative;
       overflow: hidden;
   }
   .cta-bg {
       position: absolute;
       inset: 0;
       background: linear-gradient(135deg, rgba(74,144,226,0.12) 0%, rgba(255,107,53,0.08) 100%);
       border-top: 1px solid rgba(74,144,226,0.12);
       border-bottom: 1px solid rgba(74,144,226,0.12);
   }
   .cta-blob {
       position: absolute;
       border-radius: 50%;
       filter: blur(80px);
       pointer-events: none;
   }
   .cta-blob--1 { width: 400px; height: 400px; background: var(--blue); opacity: 0.15; top: -150px; left: -100px; }
   .cta-blob--2 { width: 350px; height: 350px; background: var(--orange); opacity: 0.12; bottom: -120px; right: -80px; }
   
   .cta-inner {
       position: relative; z-index: 1;
       text-align: center;
       max-width: 700px;
       margin: 0 auto;
   }
   .cta-inner .section-title { margin-bottom: 1rem; }
   .cta-inner .section-sub { margin: 0 auto 2.5rem; text-align: center; }
   .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
   
   /* ─── FOOTER ─── */
   footer {
       padding: 5rem 0 2rem;
       position: relative;
       border-top: 1px solid var(--surface-border-subtle);
   }
   .footer-inner {
       max-width: 1280px;
       margin: 0 auto;
       padding: 0 1.5rem;
   }
   .footer-grid {
       display: grid;
       grid-template-columns: 1.8fr 1fr 1fr 1fr;
       gap: 3rem;
       padding-bottom: 3rem;
       border-bottom: 1px solid var(--surface-border-subtle);
   }
   .footer-brand .brand-logo { font-size: 1.5rem; margin-bottom: 0.8rem; display: block; }
   .footer-brand p {
       font-size: 0.82rem;
       color: var(--text-muted);
       line-height: 1.7;
       max-width: 280px;
   }
   .footer-col h5 {
       font-size: 0.72rem;
       text-transform: uppercase;
       letter-spacing: 2px;
       color: var(--text-muted);
       font-weight: 600;
       margin-bottom: 1.2rem;
   }
   .footer-col ul { list-style: none; }
   .footer-col li { margin-bottom: 0.6rem; }
   .footer-col a {
       color: var(--text-secondary);
       text-decoration: none;
       font-size: 0.83rem;
       transition: color var(--transition);
   }
   .footer-col a i {
       color: var(--blue);
       margin-right: 0.4rem;
   }
   .footer-col a:hover { color: var(--orange); }
   
   .footer-socials {
       display: flex;
       gap: 0.7rem;
       margin-top: 1.5rem;
   }
   .footer-social-link {
       width: 36px; height: 36px;
       border-radius: 10px;
       background: rgba(255,255,255,0.05);
       border: 1px solid var(--surface-border-soft);
       display: flex;
       align-items: center;
       justify-content: center;
       color: var(--text-muted);
       text-decoration: none;
       font-size: 0.85rem;
       transition: all var(--transition);
   }
   .footer-social-link:hover {
       background: linear-gradient(135deg, var(--blue), var(--orange));
       color: #fff;
       border-color: transparent;
       transform: translateY(-2px);
   }
   .footer-bottom {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding-top: 2rem;
   }
   .footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }
   .footer-bottom-links { display: flex; gap: 1.5rem; }
   .footer-bottom-links a {
       font-size: 0.75rem;
       color: var(--text-muted);
       text-decoration: none;
       transition: color var(--transition);
   }
   .footer-bottom-links a:hover { color: var(--text-secondary); }
   
   /* ─── SCROLL REVEAL ─── */
   .reveal {
       opacity: 0;
       transform: translateY(28px);
       transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                   transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   }
   .reveal.visible { opacity: 1; transform: translateY(0); }
   
   /* ─── RESPONSIVE ─── */
   @media (max-width: 1024px) {
       .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
       .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
       .hero-actions { justify-content: center; }
       .hero-badge { justify-content: center; }
       .services-grid { grid-template-columns: repeat(2, 1fr); }
       .products-grid { grid-template-columns: 1fr; }
       .features-layout { grid-template-columns: 1fr; gap: 3rem; }
       .footer-grid { grid-template-columns: 1fr 1fr; }
   }
   
   @media (max-width: 768px) {
       .section { padding: 80px 0; }
       .services-grid { grid-template-columns: 1fr; }
       .process-grid { grid-template-columns: repeat(2, 1fr); }
       .process-grid::before { display: none; }
       .stats-grid { grid-template-columns: repeat(2, 1fr); }
       .testimonials-grid { grid-template-columns: 1fr; }
       .hero-card-stack { max-width: 320px; }
       .float-card { display: none; }
       .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
       .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
   }
   
   @media (max-width: 480px) {
       .hero-title { letter-spacing: -1px; }
       .process-grid { grid-template-columns: 1fr; }
       .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
       .stat-number { font-size: 2.2rem; }
       .board-row { flex-direction: column; }
   }


/* ============================================
   TECHNODOX -INNER PAGES STYLESHEET
   Append to style.css or link separately
   ============================================ */

/* ─── PAGE HEADER (shared across inner pages) ─── */
.page-header {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
}
.page-header-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-header .mesh-blob--1 {
    width: 500px; height: 500px;
    top: -250px; right: -150px;
    opacity: 0.25;
}
.page-header .mesh-blob--2 {
    width: 350px; height: 350px;
    bottom: -200px; left: -100px;
    opacity: 0.2;
}
.page-header-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(74,144,226,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74,144,226,0.035) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 100%, black 10%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 100%, black 10%, transparent 75%);
}
.page-header-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}
.page-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(74,144,226,0.1);
    border: 1px solid rgba(74,144,226,0.2);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}
.page-header-badge span {
    font-size: 0.72rem;
    color: var(--blue-light);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.page-header h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}
.page-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 520px;
    line-height: 1.7;
}

/* ─── ABOUT: STORY SPLIT ─── */
.story-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}
.story-text .section-label { margin-bottom: 1.2rem; }
.story-text .section-title { margin-bottom: 1.2rem; }
.story-paragraph {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}
.story-paragraph:last-of-type { margin-bottom: 2rem; }

.story-visual {
    position: relative;
}
.story-card-main {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 2.8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.story-card-main::before {
    content: '';
    position: absolute;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: var(--blue);
    filter: blur(70px);
    opacity: 0.1;
    top: -80px; right: -80px;
    pointer-events: none;
}
.story-card-main::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: var(--orange);
    filter: blur(60px);
    opacity: 0.08;
    bottom: -60px; left: -60px;
    pointer-events: none;
}
.story-icon-wrap {
    width: 80px; height: 80px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 1.5rem;
    position: relative; z-index: 1;
    box-shadow: 0 12px 40px var(--glow-blue);
}
.story-card-main h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: relative; z-index: 1;
}
.story-card-main p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.7;
    position: relative; z-index: 1;
}
/* floating mini-badges on story card */
.story-badge {
    position: absolute;
    background: var(--dark-card-hover);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 0.6rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    white-space: nowrap;
    box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}
.story-badge--1 { top: 10px; left: 5px; animation: float-1 5.5s ease-in-out infinite; }
.story-badge--2 { bottom: 6px; right: 19px; animation: float-2 6.5s ease-in-out infinite; }
.story-badge-dot {
    width: 28px; height: 28px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
}
.story-badge-dot--blue { background: rgba(74,144,226,0.15); color: var(--blue); }
.story-badge-dot--orange { background: rgba(255,107,53,0.15); color: var(--orange); }
.story-badge-text { font-size: 0.7rem; font-weight: 600; color: var(--text-primary); }
.story-badge-sub { font-size: 0.6rem; color: var(--text-muted); }

/* ─── MISSION / VISION CARDS ─── */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
}
.mv-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}
.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.mv-card--mission { border-top: 2px solid var(--blue); }
.mv-card--vision { border-top: 2px solid var(--orange); }
.mv-card--mission:hover { border-color: rgba(74,144,226,0.3); }
.mv-card--vision:hover { border-color: rgba(255,107,53,0.3); }
/* bg blob */
.mv-card::after {
    content: '';
    position: absolute;
    width: 180px; height: 180px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.1;
    top: -50px; right: -50px;
    pointer-events: none;
    transition: opacity var(--transition);
}
.mv-card--mission::after { background: var(--blue); }
.mv-card--vision::after { background: var(--orange); }
.mv-card:hover::after { opacity: 0.2; }

.mv-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.4rem;
    position: relative; z-index: 1;
}
.mv-icon-wrap--blue { background: rgba(74,144,226,0.12); color: var(--blue); }
.mv-icon-wrap--orange { background: rgba(255,107,53,0.12); color: var(--orange); }

.mv-card h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 0.7rem;
    position: relative; z-index: 1;
    letter-spacing: -0.3px;
}
.mv-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.8;
    position: relative; z-index: 1;
}

/* ─── VALUES GRID ─── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}
.value-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    cursor: default;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover {
    border-color: rgba(74,144,226,0.18);
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.22);
    background: var(--dark-card-hover);
}
.value-num {
    position: absolute;
    top: 1.2rem; right: 1.4rem;
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #4b91e1;
    line-height: 1;
}
.value-icon-wrap {
    width: 46px; height: 46px;
    border-radius: 13px;
    background: rgba(74,144,226,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--blue);
    margin-bottom: 1.1rem;
    transition: all var(--transition);
}
.value-card:hover .value-icon-wrap {
    background: linear-gradient(135deg, var(--blue), var(--orange));
    color: #fff;
    transform: scale(1.05);
}
.value-card h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.45rem;
    letter-spacing: -0.2px;
}
.value-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.7;
}

/* ─── TEAM ─── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}
.team-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}
.team-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.45s ease;
}
.team-card:hover::before { transform: scaleX(1); }
.team-card:hover {
    border-color: rgba(74,144,226,0.18);
    transform: translateY(-6px);
    box-shadow: 0 20px 55px rgba(0,0,0,0.25);
    background: var(--dark-card-hover);
}
.team-avatar-wrap {
    width: 88px; height: 88px;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    position: relative;
}
.team-avatar-wrap::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    z-index: 0;
    opacity: 0;
    transition: opacity var(--transition);
}
.team-card:hover .team-avatar-wrap::before { opacity: 1; }
.team-avatar-inner {
    position: relative;
    z-index: 1;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74,144,226,0.2), rgba(255,107,53,0.2));
    border: 2px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--text-secondary);
    transition: all var(--transition);
}
.team-card:hover .team-avatar-inner {
    background: linear-gradient(135deg, rgba(74,144,226,0.35), rgba(255,107,53,0.3));
    color: var(--text-primary);
}
.team-card h5 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
    letter-spacing: -0.2px;
}
.team-card .team-role {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.team-card .team-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.team-socials {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.team-socials a {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    transition: all var(--transition);
}
.team-socials a:hover {
    background: linear-gradient(135deg, var(--blue), var(--orange));
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* ─── CONTACT ─── */
.contact-layout {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr;
    gap: 3rem;
    margin-top: 1rem;
}
.contact-form-wrap {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 24px;
    padding: 2.8rem;
    position: relative;
    overflow: hidden;
}
.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--orange));
}
.contact-form-wrap::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: var(--blue);
    filter: blur(70px);
    opacity: 0.06;
    top: -60px; right: -60px;
    pointer-events: none;
}
.contact-form-wrap h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    position: relative; z-index: 1;
    letter-spacing: -0.3px;
}
.contact-form-wrap > p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 2rem;
    position: relative; z-index: 1;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative; z-index: 1;
}
.form-grid .full-col { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; }
.form-group label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all var(--transition);
    -webkit-appearance: none;
    appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(74,144,226,0.5);
    background: rgba(74,144,226,0.06);
    box-shadow: 0 0 0 3px rgba(74,144,226,0.12);
}
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238B93A7' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.form-group select option {
    background: var(--dark-card);
    color: var(--text-primary);
}
.form-group textarea {
    resize: vertical;
    min-height: 130px;
}
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 20px var(--glow-blue);
    margin-top: 0.5rem;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-blue);
    background: linear-gradient(135deg, var(--blue-light), var(--blue));
}

/* Contact sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 1.6rem;
    transition: all var(--transition);
}
.contact-info-card:hover {
    border-color: rgba(74,144,226,0.2);
    transform: translateX(4px);
}
.contact-info-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
}
.contact-info-icon {
    width: 38px; height: 38px;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
}
.contact-info-icon--blue { background: rgba(74,144,226,0.12); color: var(--blue); }
.contact-info-icon--orange { background: rgba(255,107,53,0.12); color: var(--orange); }
.contact-info-card h5 {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}
.contact-info-card p,
.contact-info-card a {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin: 0;
    text-decoration: none;
    transition: color var(--transition);
}
.contact-info-card a:hover { color: var(--blue); }

/* Hours card */
.hours-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 1.6rem;
}
.hours-card h5 {
    font-family: 'Syne', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.2px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child {
    font-size: 0.77rem;
    color: var(--text-secondary);
}
.hours-row span:last-child {
    font-size: 0.72rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.05);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}
.hours-row.closed span:last-child {
    color: rgba(255,107,53,0.6);
    background: rgba(255,107,53,0.08);
}

/* ─── GALLERY ─── */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.gallery-filter-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}
.gallery-filter-btn:hover {
    border-color: rgba(74,144,226,0.35);
    color: var(--text-primary);
    background: rgba(74,144,226,0.07);
}
.gallery-filter-btn.active {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 18px var(--glow-blue);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
}
.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all var(--transition);
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: rgba(74,144,226,0.2);
}
.gallery-item-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.gallery-item-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    transition: all var(--transition);
}
.gallery-item-icon--blue { background: rgba(74,144,226,0.12); color: var(--blue); }
.gallery-item-icon--orange { background: rgba(255,107,53,0.12); color: var(--orange); }
.gallery-item:hover .gallery-item-icon {
    transform: scale(1.1);
}
.gallery-item-icon--blue:hover { background: rgba(74,144,226,0.25); }
.gallery-item-icon--orange:hover { background: rgba(255,107,53,0.25); }

.gallery-item-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    transition: color var(--transition);
}
.gallery-item:hover .gallery-item-title { color: var(--blue-light); }
.gallery-item-sub {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.2rem;
}
/* category tag */
.gallery-item-tag {
    position: absolute;
    top: 1rem; left: 1rem;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    z-index: 2;
}
.gallery-item-tag--blue { background: rgba(74,144,226,0.15); color: var(--blue-light); border: 1px solid rgba(74,144,226,0.2); }
.gallery-item-tag--orange { background: rgba(255,107,53,0.15); color: var(--orange-light); border: 1px solid rgba(255,107,53,0.2); }

/* overlay on hover */
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,14,26,0.85) 100%);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 1;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-overlay-content {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: relative; z-index: 2;
}
.gallery-overlay-eye {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    transition: background var(--transition);
}
.gallery-item:hover .gallery-overlay-eye { background: rgba(74,144,226,0.5); }
.gallery-overlay-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* Hidden state for filtered items */
.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
    pointer-events: none;
    position: absolute;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-grid-wrap { position: relative; }

/* ─── LIGHTBOX ─── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(8px);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner {
    position: relative;
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    text-align: center;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lightbox.open .lightbox-inner { transform: translateY(0) scale(1); }
.lightbox-close {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all var(--transition);
}
.lightbox-close:hover { background: rgba(255,107,53,0.2); color: var(--orange); }
.lightbox-icon-wrap {
    width: 100px; height: 100px;
    border-radius: 28px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.2rem;
}
.lightbox-icon-wrap--blue { background: rgba(74,144,226,0.12); color: var(--blue); }
.lightbox-icon-wrap--orange { background: rgba(255,107,53,0.12); color: var(--orange); }
.lightbox-inner h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}
.lightbox-inner p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .story-layout { grid-template-columns: 1fr; gap: 3rem; }
    .mv-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .page-header { padding: 140px 0 70px; min-height: auto; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .form-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 1.8rem; }
    .story-badge { display: none; }
}
@media (max-width: 480px) {
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MODERN TECH STACK STYLES
   Add this CSS to your style.css file
   ═══════════════════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────────────────────────────────
   OPTION 1: 3D ROTATING TECH CARDS CSS
   ───────────────────────────────────────────────────────────────────────── */

   .tech-showcase {
    padding: 60px 0;
    overflow: hidden;
  }
  
  .tech-grid-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
  }
  
  .tech-card-3d {
    perspective: 1000px;
    height: 200px;
  }
  
  .tech-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  
  .tech-card-3d:hover .tech-card-inner {
    transform: rotateY(10deg) rotateX(-5deg) translateZ(20px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--blue);
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.2);
  }
  
  .tech-icon-large {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.4s ease;
  }
  
  .tech-card-3d:hover .tech-icon-large {
    transform: scale(1.15) rotateZ(-5deg);
  }
  
  .tech-card-inner h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
  }
  
  .tech-card-inner p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.7;
  }
  
  /* Category color accents */
  .tech-card-3d[data-category="hardware"]:hover .tech-card-inner {
    border-color: #10b981;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
  }
  
  .tech-card-3d[data-category="security"]:hover .tech-card-inner {
    border-color: #f59e0b;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2);
  }
  
  .tech-card-3d[data-category="network"]:hover .tech-card-inner {
    border-color: #3b82f6;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
  }
  
  .tech-card-3d[data-category="software"]:hover .tech-card-inner {
    border-color: #8b5cf6;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
  }
  
  .tech-card-3d[data-category="cloud"]:hover .tech-card-inner {
    border-color: #06b6d4;
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.2);
  }
  
  .tech-card-3d[data-category="training"]:hover .tech-card-inner {
    border-color: #ec4899;
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.2);
  }
  
  @media (max-width: 768px) {
    .tech-grid-3d {
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 20px;
      padding: 0 20px;
    }
  
    .tech-card-3d {
      height: 180px;
    }
  
    .tech-icon-large {
      font-size: 2.8rem;
    }
  
    .tech-card-inner h4 {
      font-size: 1.05rem;
    }
  }
  
  
  /* ─────────────────────────────────────────────────────────────────────────
     OPTION 2: INTERACTIVE CATEGORY GRID CSS
     ───────────────────────────────────────────────────────────────────────── */
  
  .tech-categories {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(74, 144, 226, 0.03) 100%);
  }
  
  .tech-categories .section-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }
  
  .tech-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .tech-category:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(74, 144, 226, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.15);
  }
  
  .tech-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .tech-category-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: transform 0.4s ease;
  }
  
  .tech-category:hover .tech-category-icon {
    transform: scale(1.1) rotate(-5deg);
  }
  
  .tech-category-icon--hardware {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
  }
  
  .tech-category-icon--network {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
  }
  
  .tech-category-icon--security {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
  }
  
  .tech-category-icon--software {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
  }
  
  .tech-category-icon--cloud {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
  }
  
  .tech-category-icon--training {
    background: linear-gradient(135deg, #ec4899, #db2777);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
  }
  
  .tech-category-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
  }
  
  .tech-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .tech-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
  }
  
  .tech-item i {
    font-size: 1.2rem;
    color: var(--blue);
    transition: transform 0.3s ease;
  }
  
  .tech-item:hover {
    background: rgba(74, 144, 226, 0.1);
    border-color: rgba(74, 144, 226, 0.3);
    color: var(--text-primary);
    transform: translateX(8px);
  }
  
  .tech-item:hover i {
    transform: scale(1.2);
  }
  
  @media (max-width: 768px) {
    .tech-categories .section-inner {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  
    .tech-category {
      padding: 24px;
    }
  
    .tech-category-header h3 {
      font-size: 1.2rem;
    }
  }
  
  
  /* ─────────────────────────────────────────────────────────────────────────
     OPTION 3: MULTI-ROW INFINITE SCROLL CSS
     ───────────────────────────────────────────────────────────────────────── */
  
  .tech-multi-scroll {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
  }
  
  .tech-scroll-row {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(
      to right,
      transparent,
      black 10%,
      black 90%,
      transparent
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      black 10%,
      black 90%,
      transparent
    );
  }
  
  .tech-scroll-track {
    display: flex;
    gap: 20px;
    width: fit-content;
  }
  
  /* Scroll left animation */
  .tech-scroll-left .tech-scroll-track {
    animation: scroll-left 30s linear infinite;
  }
  
  .tech-scroll-left:hover .tech-scroll-track {
    animation-play-state: paused;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Scroll right animation */
  .tech-scroll-right .tech-scroll-track {
    animation: scroll-right 35s linear infinite;
  }
  
  .tech-scroll-right:hover .tech-scroll-track {
    animation-play-state: paused;
  }
  
  @keyframes scroll-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  /* Large tech badges */
  .tech-badge--large {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 14px;
    padding: 18px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 1.05rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
  }
  
  .tech-badge--large i {
    font-size: 1.8rem;
    transition: transform 0.4s ease;
  }
  
  .tech-badge--large:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }
  
  .tech-badge--large:hover i {
    transform: scale(1.2);
  }
  
  /* Category-specific colors for badges */
  .tech-badge--hardware {
    border-color: rgba(16, 185, 129, 0.3);
  }
  
  .tech-badge--hardware:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
  }
  
  .tech-badge--hardware i {
    color: #10b981;
  }
  
  .tech-badge--network {
    border-color: rgba(59, 130, 246, 0.3);
  }
  
  .tech-badge--network:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
  }
  
  .tech-badge--network i {
    color: #3b82f6;
  }
  
  .tech-badge--security {
    border-color: rgba(245, 158, 11, 0.3);
  }
  
  .tech-badge--security:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
  }
  
  .tech-badge--security i {
    color: #f59e0b;
  }
  
  .tech-badge--software {
    border-color: rgba(139, 92, 246, 0.3);
  }
  
  .tech-badge--software:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
  }
  
  .tech-badge--software i {
    color: #8b5cf6;
  }
  
  .tech-badge--cloud {
    border-color: rgba(6, 182, 212, 0.3);
  }
  
  .tech-badge--cloud:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.2);
  }
  
  .tech-badge--cloud i {
    color: #06b6d4;
  }
  
  .tech-badge--training {
    border-color: rgba(236, 72, 153, 0.3);
  }
  
  .tech-badge--training:hover {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.2);
  }
  
  .tech-badge--training i {
    color: #ec4899;
  }
  
  @media (max-width: 768px) {
    .tech-badge--large {
      padding: 14px 24px;
      font-size: 0.95rem;
    }
  
    .tech-badge--large i {
      font-size: 1.5rem;
    }
  
    .tech-scroll-left .tech-scroll-track {
      animation-duration: 20s;
    }
  
    .tech-scroll-right .tech-scroll-track {
      animation-duration: 25s;
    }
  }
/* ═══════════════════════════════════════════
   ANIMATED TESTIMONIALS - INFINITE SCROLL
   ═══════════════════════════════════════════ */

.testimonials-section {
    overflow: hidden;
    padding: 80px 0;
}

.testimonials-section .section-inner {
    max-width: 100%;
    padding: 0;
}

.testimonials-section .text-center {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem 60px;
}

.testimonial-head .section-sub {
    max-width: 720px;
}

.testimonial-kpis {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.testimonial-kpi {
    display: inline-flex;
    align-items: baseline;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 0.55rem 1rem;
}

.testimonial-kpi strong {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.testimonial-kpi span {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Scroll Row Container */
.testimonial-scroll-row {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 24px;
    /* Fade edges for smooth effect */
    mask-image: linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
}

/* Track that holds the cards */
.testimonial-scroll-track {
    display: flex;
    gap: 24px;
    width: fit-content;
    padding: 10px 0;
}

/* Animated Testimonial Cards */
.testimonial-card-animated {
    flex: 0 0 420px;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.6));
    border: 1px solid rgba(74, 144, 226, 0.15);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.testimonial-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 1.1rem;
}

.testimonial-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--orange);
    font-size: 0.95rem;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.2rem 0.65rem;
    border: 1px solid rgba(74, 144, 226, 0.28);
    background: rgba(74, 144, 226, 0.1);
    color: var(--blue-light);
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.testimonial-card-animated::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--blue), transparent, var(--orange));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card-animated:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.3);
}

.testimonial-card-animated:hover::before {
    opacity: 1;
}

.testimonial-card-animated .stars {
    font-size: 1.2rem;
    color: var(--orange);
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testimonial-card-animated .testimonial-quote {
    font-size: 4rem;
    font-family: 'Georgia', serif;
    color: rgba(74, 144, 226, 0.2);
    line-height: 0.5;
    margin-bottom: 16px;
}

.testimonial-card-animated p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-card-animated .testimonial-text {
    margin-bottom: 1.4rem;
}

.testimonial-card-animated .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.testimonial-card-animated .testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-card-animated .testimonial-author-info h6 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-card-animated .testimonial-author-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Scroll Left Animation */
.testimonial-scroll-left .testimonial-scroll-track {
    animation: testimonial-scroll-left 40s linear infinite;
}

.testimonial-scroll-left:hover .testimonial-scroll-track {
    animation-play-state: paused;
}

@keyframes testimonial-scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Scroll Right Animation */
.testimonial-scroll-right .testimonial-scroll-track {
    animation: testimonial-scroll-right 45s linear infinite;
}

.testimonial-scroll-right:hover .testimonial-scroll-track {
    animation-play-state: paused;
}

@keyframes testimonial-scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-kpis {
        gap: 0.55rem;
        margin-top: 1.4rem;
    }

    .testimonial-kpi {
        padding: 0.45rem 0.8rem;
    }

    .testimonial-kpi strong {
        font-size: 0.95rem;
    }

    .testimonial-kpi span {
        font-size: 0.66rem;
    }

    .testimonial-card-animated {
        flex: 0 0 340px;
        padding: 24px;
    }

    .testimonial-card-animated p {
        font-size: 0.95rem;
    }

    .testimonial-scroll-left .testimonial-scroll-track {
        animation-duration: 30s;
    }

    .testimonial-scroll-right .testimonial-scroll-track {
        animation-duration: 35s;
    }

    .testimonials-section .text-center {
        padding: 0 1rem 40px;
    }
}

@media (max-width: 480px) {
    .testimonial-card-animated {
        flex: 0 0 300px;
        padding: 20px;
    }

    .testimonial-card-animated .stars {
        font-size: 1rem;
    }

    .testimonial-card-animated .testimonial-quote {
        font-size: 3rem;
    }

    .testimonial-scroll-left .testimonial-scroll-track {
        animation-duration: 25s;
    }

    .testimonial-scroll-right .testimonial-scroll-track {
        animation-duration: 28s;
    }
}

/* Add subtle glow effect on hover */
.testimonial-card-animated:hover {
    box-shadow: 
        0 20px 50px rgba(74, 144, 226, 0.2),
        0 0 30px rgba(74, 144, 226, 0.1),
        inset 0 0 60px rgba(74, 144, 226, 0.05);
}
/* ═══════════════════════════════════════════
   INTERACTIVE MAP SECTION - Contact Page
   ═══════════════════════════════════════════ */

   .map-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0) 0%, rgba(17, 24, 39, 0.5) 100%);
}

.map-container {
    max-width: 1200px;
    margin: 60px auto 0;
}

.map-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(74, 144, 226, 0.2);
    background: var(--dark-card);
}

/* Map Container */
.office-map {
    height: 500px;
    width: 100%;
    position: relative;
    z-index: 1;
    border-radius: 24px;
}

/* Google Maps iframe styling */
iframe.office-map {
    display: block;
}

/* Map Overlay Info Card */
.map-overlay-info {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 1000;
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.map-info-content {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.9));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    max-width: 320px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 60px rgba(74, 144, 226, 0.03);
}

.map-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.3);
}

.map-info-icon i {
    font-size: 1.5rem;
    color: white;
}

.map-info-text h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.map-info-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.map-directions-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.map-directions-btn:hover {
    color: var(--blue-light);
    gap: 8px;
}

.map-directions-btn:hover i {
    transform: translate(2px, -2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .office-map {
        height: 400px;
    }
    
    .map-overlay-info {
        top: 16px;
        left: 16px;
        right: 16px;
    }
    
    .map-info-content {
        max-width: 100%;
        padding: 20px;
    }
    
    .map-info-icon {
        width: 44px;
        height: 44px;
    }
    
    .map-info-icon i {
        font-size: 1.3rem;
    }
    
    .map-info-text h6 {
        font-size: 1rem;
    }
    
    .map-info-text p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .office-map {
        height: 350px;
    }
    
    .map-overlay-info {
        position: static;
        margin-top: -20px;
        transform: translateY(-100%);
    }
    
    .map-info-content {
        padding: 16px;
        gap: 12px;
    }
    
    .map-info-icon {
        width: 40px;
        height: 40px;
    }
    
    .map-info-icon i {
        font-size: 1.2rem;
    }
    
    .map-info-text h6 {
        font-size: 0.95rem;
    }
    
    .map-info-text p {
        font-size: 0.8rem;
    }
    
    .map-directions-btn {
        font-size: 0.8rem;
    }
}

html[data-theme='light'] .hero-grid,
html[data-theme='light'] .page-header-grid {
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
}

html[data-theme='light'] .btn-ghost {
    border-color: rgba(15, 23, 42, 0.16);
}

html[data-theme='light'] .btn-ghost:hover {
    background: rgba(74, 144, 226, 0.12);
}

html[data-theme='light'] .showcase-card,
html[data-theme='light'] .float-card,
html[data-theme='light'] .service-card,
html[data-theme='light'] .process-card,
html[data-theme='light'] .product-card,
html[data-theme='light'] .team-card,
html[data-theme='light'] .value-card,
html[data-theme='light'] .mv-card,
html[data-theme='light'] .story-card-main,
html[data-theme='light'] .contact-info-card,
html[data-theme='light'] .hours-card,
html[data-theme='light'] .testimonial-card,
html[data-theme='light'] .testimonial-card-animated,
html[data-theme='light'] .gallery-item,
html[data-theme='light'] .tech-category,
html[data-theme='light'] .tech-item,
html[data-theme='light'] .tech-badge--large,
html[data-theme='light'] .map-info-content,
html[data-theme='light'] .map-wrapper {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--surface-border-soft);
}

html[data-theme='light'] .code-line--comment,
html[data-theme='light'] .footer-bottom p,
html[data-theme='light'] .footer-bottom-links a,
html[data-theme='light'] .footer-brand p,
html[data-theme='light'] .footer-col h5 {
    color: var(--text-muted);
}

html[data-theme='light'] .map-section {
    background: linear-gradient(180deg, rgba(244, 247, 251, 0) 0%, rgba(219, 231, 247, 0.7) 100%);
}

html[data-theme='light'] .testimonials-section,
html[data-theme='light'] .tech-categories {
    background: linear-gradient(180deg, transparent 0%, rgba(74, 144, 226, 0.08) 100%);
}

html[data-theme='light'] .testimonial-kpi {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.14);
}

html[data-theme='light'] .testimonial-badge {
    border-color: rgba(53, 122, 189, 0.35);
    background: rgba(74, 144, 226, 0.12);
    color: #2f6ca9;
}

html[data-theme='light'] .stats-bg {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.12) 0%, rgba(235, 145, 37, 0.1) 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

html[data-theme='light'] .stat-item {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--surface-border-soft);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

html[data-theme='light'] .stat-item:hover {
    background: #ffffff;
    border-color: rgba(74, 144, 226, 0.3);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

html[data-theme='light'] .contact-form-wrap {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.12);
}

html[data-theme='light'] .form-group input,
html[data-theme='light'] .form-group select,
html[data-theme='light'] .form-group textarea {
    background: #f8fbff;
    border-color: rgba(15, 23, 42, 0.2);
    color: var(--text-primary);
}

html[data-theme='light'] .form-group input::placeholder,
html[data-theme='light'] .form-group textarea::placeholder {
    color: #6b7b96;
}

html[data-theme='light'] .form-group input:focus,
html[data-theme='light'] .form-group select:focus,
html[data-theme='light'] .form-group textarea:focus {
    border-color: rgba(74, 144, 226, 0.65);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.16);
}

html[data-theme='light'] .form-group select option {
    background: #ffffff;
    color: var(--text-primary);
}

