/* ============================================
   AITI BIZTEK — Premium Aerospace Website
   style.css
   ============================================
   Color Palette:
   Primary:      #081221
   Secondary:    #0B5ED7
   Accent:       #00D9FF
   Highlight:    #14F1FF
   White:        #FFFFFF
   Gray:         #9CA3AF
   Dark Surface: #111827
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Colors */
    --clr-primary: #081221;
    --clr-secondary: #0B5ED7;
    --clr-accent: #00D9FF;
    --clr-highlight: #14F1FF;
    --clr-white: #FFFFFF;
    --clr-gray: #9CA3AF;
    --clr-dark-surface: #111827;
    --clr-card-bg: rgba(17, 24, 39, 0.6);
    --clr-glass: rgba(17, 24, 39, 0.4);
    --clr-border: rgba(0, 217, 255, 0.12);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #0B5ED7, #00D9FF);
    --grad-accent: linear-gradient(135deg, #00D9FF, #14F1FF);
    --grad-dark: linear-gradient(180deg, #081221, #111827);
    --grad-card: linear-gradient(145deg, rgba(11, 94, 215, 0.08), rgba(0, 217, 255, 0.04));
    --grad-glow: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(20, 241, 255, 0.05));

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-button: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1280px;
    --container-padding: 0 24px;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(0, 217, 255, 0.15);
    --shadow-glow-strong: 0 0 60px rgba(0, 217, 255, 0.25);

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-base: 0.3s var(--ease-smooth);
    --transition-slow: 0.6s var(--ease-smooth);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--clr-gray);
    background-color: var(--clr-primary);
    overflow-x: hidden;
    cursor: default;
}

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

ul,
ol {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: var(--font-button);
}

input,
textarea,
select {
    font-family: var(--font-body);
    outline: none;
    border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--clr-white);
    line-height: 1.2;
    font-weight: 700;
}

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

.section {
    padding: var(--section-padding);
    position: relative;
}

/* ============================================
   TEXT GRADIENT UTILITY
   ============================================ */
.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-label {
    display: inline-block;
    font-family: var(--font-button);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--grad-primary);
    transform: translateY(-50%);
}

.section-label-light {
    color: var(--clr-highlight);
}

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

.section-header .section-label {
    padding-left: 0;
}

.section-header .section-label::before {
    display: none;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 20px;
}

.section-title-light {
    color: var(--clr-white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #FFFFFF;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
    position: relative;
}

.preloader-ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: preloaderSpin 1.5s linear infinite;
}

.preloader-ring:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-color: var(--clr-accent);
}

.preloader-ring:nth-child(2) {
    width: 130px;
    height: 130px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-right-color: var(--clr-secondary);
    animation-duration: 2s;
    animation-direction: reverse;
}

.preloader-ring:nth-child(3) {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-bottom-color: var(--clr-highlight);
    animation-duration: 2.5s;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-white);
    letter-spacing: 4px;
    text-transform: uppercase;
    padding-top: 100px;
}

@keyframes preloaderSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ============================================
   CUSTOM CURSOR (Desktop Only)
   ============================================ */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--clr-accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(0, 217, 255, 0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
}

.cursor-outline.hover {
    width: 56px;
    height: 56px;
    border-color: var(--clr-accent);
    background: rgba(0, 217, 255, 0.05);
}

@media (max-width: 1024px) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-button);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--clr-white);
    box-shadow: 0 4px 20px rgba(11, 94, 215, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 217, 255, 0.4);
}

.btn-outline {
    border: 1.5px solid rgba(0, 217, 255, 0.5);
    color: var(--clr-accent);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(0, 217, 255, 0.08);
    border-color: var(--clr-accent);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--clr-white);
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--clr-white);
}

.btn-glow {
    background: var(--grad-primary);
    color: var(--clr-white);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3), 0 4px 20px rgba(11, 94, 215, 0.4);
    animation: btnGlow 2s ease-in-out infinite alternate;
}

@keyframes btnGlow {
    from {
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.2), 0 4px 20px rgba(11, 94, 215, 0.3);
    }

    to {
        box-shadow: 0 0 40px rgba(0, 217, 255, 0.4), 0 4px 30px rgba(11, 94, 215, 0.5);
    }
}

.btn-glow:hover {
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

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

.btn:hover i {
    transform: translateX(4px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(8, 18, 33, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(0, 217, 255, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    /* Extra Bold */
    text-align: center;
    color: #04F5F1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-light {
    font-weight: 540;
    /* Normal */
    color: #04F5F1;
}

.logo-sub {
    font-size: 10.55px;
    color: #FFFFFF;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 24px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-button);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-white);
    background: var(--grad-primary);
    padding: 10px 24px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(11, 94, 215, 0.4);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 217, 255, 0.4);
}

.nav-cta i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-cta:hover i {
    transform: translateX(3px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1010;
}

.toggle-bar {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--clr-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.nav-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 18, 33, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.mobile-menu-content {
    text-align: center;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--clr-white);
    padding: 8px 24px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-link:hover {
    color: var(--clr-accent);
}

.mobile-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-button);
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-white);
    background: var(--grad-primary);
    padding: 14px 36px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-cta-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -3;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridFloat 20s linear infinite;
}

@keyframes gridFloat {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(60px, 60px);
    }
}

/* Radar Circles */
.hero-radar {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 217, 255, 0.07);
    border-radius: 50%;
    animation: radarPulse 4s ease-out infinite;
}

.rc-1 {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.rc-2 {
    width: 350px;
    height: 350px;
    animation-delay: 1.3s;
}

.rc-3 {
    width: 500px;
    height: 500px;
    animation-delay: 2.6s;
}

@keyframes radarPulse {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.8);
    }

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

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 217, 255, 0.5), transparent);
    transform-origin: left center;
    animation: radarSweep 6s linear infinite;
}

@keyframes radarSweep {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Circuit Lines */
.hero-circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.circuit-svg {
    width: 100%;
    height: 100%;
    opacity: 0.08;
}

.circuit-path {
    fill: none;
    stroke: var(--clr-accent);
    stroke-width: 1;
    stroke-dasharray: 10 20;
    animation: circuitFlow 10s linear infinite;
}

.cp-2 {
    animation-delay: -3s;
}

.cp-3 {
    animation-delay: -6s;
}

@keyframes circuitFlow {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -200;
    }
}

/* Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(11, 94, 215, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(8, 18, 33, 0.4), rgba(8, 18, 33, 0.9));
}

/* Particle Canvas Container */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Hero Container Layout */
.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 850px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(0, 217, 255, 0.06);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 100px;
    margin-bottom: 28px;
    font-size: 0.85rem;
    color: var(--clr-accent);
    font-weight: 500;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--clr-accent);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

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

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 24px;
    color: var(--clr-white);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin: 0 auto 35px;
    color: #FFFFFF;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--clr-white);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--clr-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 217, 255, 0.2);
}

/* Hero Visual (Right) */
.hero-visual {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hud-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.hud-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(0, 217, 255, 0.15);
}

.hud-ring-1 {
    width: 200px;
    height: 200px;
    border-color: rgba(0, 217, 255, 0.2);
    animation: hudRingSpin 20s linear infinite;
}

.hud-ring-2 {
    width: 300px;
    height: 300px;
    border-color: rgba(11, 94, 215, 0.15);
    border-style: dashed;
    animation: hudRingSpin 30s linear infinite reverse;
}

.hud-ring-3 {
    width: 380px;
    height: 380px;
    border-color: rgba(0, 217, 255, 0.08);
    animation: hudRingSpin 25s linear infinite;
}

@keyframes hudRingSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    color: var(--clr-accent);
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.4));
    z-index: 2;
}

.sat-element {
    top: 10%;
    right: 15%;
    animation: floatSlow 6s ease-in-out infinite;
}

.plane-element {
    bottom: 25%;
    left: 5%;
    animation: floatSlow 5s ease-in-out infinite;
    animation-delay: -2s;
}

.rocket-element {
    top: 50%;
    right: 5%;
    animation: floatSlow 7s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes floatSlow {

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

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

    50% {
        transform: translateY(-8px) rotate(-1deg);
    }

    75% {
        transform: translateY(-20px) rotate(1deg);
    }
}

/* HUD Graphics */
.hud-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
}

.hud-crosshair::before,
.hud-crosshair::after {
    content: '';
    position: absolute;
    background: rgba(0, 217, 255, 0.3);
}

.hud-crosshair::before {
    width: 100%;
    height: 1px;
    top: 50%;
}

.hud-crosshair::after {
    width: 1px;
    height: 100%;
    left: 50%;
}

.hud-data {
    position: absolute;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.15);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
}

.hud-data-1 {
    top: 5%;
    left: 0;
}

.hud-data-2 {
    bottom: 15%;
    right: 0;
}

.hud-data-3 {
    bottom: 5%;
    left: 10%;
}

.hud-label {
    font-size: 0.6rem;
    color: var(--clr-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.hud-value {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--clr-white);
    font-weight: 600;
}

/* Glow Circles */
.glow-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.2), transparent 70%);
    animation: glowPulse 3s ease-in-out infinite alternate;
}

.gc-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
}

.gc-2 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    right: 20%;
    animation-delay: -1s;
}

.gc-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 40%;
    animation-delay: -2s;
}

@keyframes glowPulse {
    from {
        opacity: 0.4;
        transform: scale(0.8);
    }

    to {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--clr-accent);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {

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

    50% {
        opacity: 0.3;
        transform: translateY(8px);
    }
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: rgba(0, 217, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============================================
   TRUSTED BY SECTION
   ============================================ */
.trusted-section {
    padding: 60px 0;
    background: var(--clr-dark-surface);
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    overflow: hidden;
}

.trusted-heading {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.logo-marquee-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logo-marquee {
    overflow: hidden;
}

.logo-track {
    display: flex;
    gap: 64px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.client-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.client-logo:hover {
    opacity: 0.8;
}

.client-logo i {
    font-size: 1.6rem;
    color: var(--clr-accent);
}

.client-logo span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-white);
    letter-spacing: 1px;
}

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

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--clr-primary);
    overflow: hidden;
}

.about-grid {
    text-align: center;
    margin: 0 auto;

    gap: 80px;
    align-items: center;
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 500px;
    margin: 0 auto;
}

.about-illustration {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-globe {
    position: relative;
    width: 280px;
    height: 280px;
}

.globe-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1.5px solid rgba(0, 217, 255, 0.15);
    border-radius: 50%;
}

.gr-1 {
    width: 200px;
    height: 200px;
    animation: hudRingSpin 15s linear infinite;
}

.gr-2 {
    width: 260px;
    height: 260px;
    border-style: dashed;
    animation: hudRingSpin 20s linear infinite reverse;
}

.gr-3 {
    width: 280px;
    height: 280px;
    border-color: rgba(11, 94, 215, 0.1);
    animation: hudRingSpin 25s linear infinite;
}

.globe-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--clr-white);
    box-shadow: 0 0 60px rgba(0, 217, 255, 0.3);
    animation: corePulse 3s ease-in-out infinite alternate;
}

@keyframes corePulse {
    from {
        box-shadow: 0 0 40px rgba(0, 217, 255, 0.2);
    }

    to {
        box-shadow: 0 0 80px rgba(0, 217, 255, 0.4);
    }
}

.orbit-dot {
    position: absolute;
    color: var(--clr-accent);
    font-size: 0.9rem;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.od-1 {
    top: -5%;
    left: 50%;
    animation: floatSlow 4s ease-in-out infinite;
}

.od-2 {
    bottom: 10%;
    left: -5%;
    animation: floatSlow 5s ease-in-out infinite;
    animation-delay: -1.5s;
}

.od-3 {
    bottom: 10%;
    right: -5%;
    animation: floatSlow 6s ease-in-out infinite;
    animation-delay: -3s;
}

/* Float Cards */
.about-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--clr-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow);
    color: var(--clr-white);
    font-size: 0.85rem;
    font-weight: 600;
    animation: floatSlow 5s ease-in-out infinite;
}

.about-float-card i {
    color: var(--clr-accent);
    font-size: 1.1rem;
}

.afc-1 {
    bottom: 15%;
    left: -10%;
    animation-delay: -2s;
}

.afc-2 {
    top: 15%;
    right: -10%;
}

/* About Content */
.about-content .about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #FFFFFF;

    margin-bottom: 20px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
}

.mv-card {
    padding: 28px;
    max-width: 500px;
    height: 300px;
    margin: 0 auto;
    background: var(--grad-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.mv-card:hover {
    border-color: rgba(0, 217, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.mv-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 217, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.mv-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.mv-card p {
    color: #FFFFFF;

    font-size: 0.9rem;
    line-height: 1.7;
}

/* ======================================
   About Feature Image
====================================== */

.about-feature-image {
    position: relative;
    width: 100%;
    height: 320px;
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    transition: all 0.4s ease;
}

.about-feature-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-feature-image:hover img {
    transform: scale(1.08);
}



.feature-overlay h4 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-overlay p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 500px;
    margin: 0;
}



/* Responsive */

@media (max-width:768px) {
    .about-feature-image {
        height: 500px;
    }

    .feature-overlay {
        padding: 20px;
    }

    .feature-overlay h4 {
        font-size: 1.3rem;
    }

    .feature-overlay p {
        font-size: 0.95rem;
    }
}

/* Section Decorative */
.section-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.decor-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.05), transparent 70%);
}

.ds-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation: floatSlow 10s ease-in-out infinite;
}

.ds-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation: floatSlow 12s ease-in-out infinite;
    animation-delay: -5s;
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.solutions-section {
    background: var(--clr-dark-surface);
}

/*==============================
  SOLUTIONS
==============================*/

.solutions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.solution-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-row.reverse .solution-image {
    order: 2;
}

.solution-row.reverse .solution-content {
    order: 1;
}

.solution-image {
    overflow: hidden;
    border-radius: 20px;
}

.solution-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: .5s;
}

.solution-image:hover img {
    transform: scale(1.08);
}

.solution-content {
    padding: 20px;
}

.solution-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 217, 255, .1);
    border: 1px solid rgba(0, 217, 255, .3);
    color: #00D9FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.solution-content h3 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #fff;
}

.solution-content p {
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 30px;
}

.solution-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.solution-content li {
    margin-bottom: 14px;
    color: #fff;
}

.solution-content li::before {
    content: "✔";
    color: #00D9FF;
    margin-right: 12px;
}

/*==============================
  RESPONSIVE
==============================*/

@media(max-width:992px) {

    .solution-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-row.reverse .solution-image,
    .solution-row.reverse .solution-content {
        order: unset;
    }

    .solution-image img {
        height: 350px;
    }

    .solution-content {
        text-align: center;
    }

    .solution-icon {
        margin: 0 auto 25px;
    }

}

.solution-card {
    position: relative;
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all 0.4s var(--ease-smooth);
    overflow: hidden;
}

.solution-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.solution-card:hover .solution-card-glow {
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.25);
    box-shadow: var(--shadow-glow-strong);
}

.solution-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-accent);
    margin-bottom: 24px;
    transition: all var(--transition-base);
}

.solution-card:hover .solution-icon {
    background: var(--grad-primary);
    color: var(--clr-white);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

.solution-image-placeholder {
    width: 100%;
    height: 160px;
    background: rgba(0, 217, 255, 0.03);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 217, 255, 0.06);
    overflow: hidden;
}

.sol-visual {
    font-size: 4rem;
    color: rgba(0, 217, 255, 0.15);
    transition: all 0.5s ease;
}

.solution-card:hover .sol-visual {
    color: rgba(0, 217, 255, 0.3);
    transform: scale(1.1);
}

.solution-title {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.solution-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.solution-features {
    margin-bottom: 24px;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 0;
}

.solution-features li i {
    color: var(--clr-accent);
    font-size: 0.8rem;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-button);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-accent);
    transition: all var(--transition-base);
}

.solution-link:hover {
    color: var(--clr-highlight);
    gap: 12px;
}

.solution-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.solution-link:hover i {
    transform: translateX(4px);
}


/* ============================================
   INDUSTRIES SECTION
   ============================================ */
.industries-section {
    background: var(--clr-dark-surface);
}

.industries-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--clr-secondary), var(--clr-accent), var(--clr-secondary));
    transform: translateX(-50%);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.ti-left {
    flex-direction: row;
    padding-right: calc(50% + 40px);
}

.ti-right {
    flex-direction: row-reverse;
    padding-left: calc(50% + 40px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1rem;
    z-index: 2;
    box-shadow: 0 0 24px rgba(0, 217, 255, 0.3);
}

.timeline-content {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition-base);
    width: 100%;
}

.timeline-content:hover {
    border-color: rgba(0, 217, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--clr-white);
}

.timeline-content p {
    color: #FFFFFF;

    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    background: var(--clr-primary);
}

.products-wrapper {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-row.reverse .product-image {
    order: 2;
}

.product-row.reverse .product-content {
    order: 1;
}

.product-image {
    overflow: hidden;
    border-radius: 20px;
}

.product-image img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border-radius: 20px;
    transition: .5s;
    border-radius: 50px;
}

.product-image:hover img {
    transform: scale(1.08);
}

.product-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.product-content p {
    color: #FFFFFF;
    line-height: 1.8;
    margin-bottom: 25px;
}

.product-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.product-content li {
    margin-bottom: 12px;
    color: #fff;
}

.product-content li::before {
    content: "✔";
    color: #00D9FF;
    margin-right: 10px;
}

.product-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 217, 255, .08);
    border: 1px solid rgba(0, 217, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D9FF;
    font-size: 28px;
    margin-bottom: 20px;
}

@media(max-width:992px) {

    .product-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-row.reverse .product-image,
    .product-row.reverse .product-content {
        order: unset;
    }

    .product-image img {
        height: 350px;
    }

    .product-content {
        text-align: center;
    }

    .product-icon-wrap {
        margin: 0 auto 20px;
    }
}

.product-card {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grad-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.2);
    box-shadow: var(--shadow-glow);
}

.product-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(1, 201, 236, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--clr-accent);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.product-card:hover .product-icon-wrap {
    background: var(--grad-primary);
    color: var(--clr-white);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(0, 217, 255, 0.3);
}

.product-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.product-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.product-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-tags span {
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-accent);
    background: rgba(0, 217, 255, 0.06);
    border: 1px solid rgba(0, 217, 255, 0.12);
    border-radius: 100px;
    letter-spacing: 0.5px;
}

/* ============================================
   RESEARCH SECTION
   ============================================ */
.research-section {
    position: relative;
    background: linear-gradient(135deg, #081221, #0a2a5e, #081221);
    overflow: hidden;
}

.research-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.research-stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.research-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(11, 94, 215, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
}

.research-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.research-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #FFFFFF;
    margin-bottom: 32px;
}

.research-highlights {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.rh-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(0, 217, 255, 0.06);
    border: 1px solid rgba(0, 217, 255, 0.15);
    border-radius: 100px;
    color: var(--clr-accent);
    font-size: 0.85rem;
    font-weight: 600;
}

.rh-item i {
    font-size: 0.9rem;
}

/* Research Illustration */
.research-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.research-illustration {
    position: relative;
    width: 350px;
    height: 350px;
}

.ri-rocket {
    position: absolute;
    bottom: 10%;
    left: 40%;
    font-size: 3rem;
    color: var(--clr-accent);
    filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.4));
    animation: rocketFloat 4s ease-in-out infinite;
    transform: rotate(-30deg);
}

@keyframes rocketFloat {

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

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

.rocket-trail {
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, rgba(0, 217, 255, 0.5), transparent);
    border-radius: 4px;
    transform: translateX(-50%) rotate(30deg);
    animation: trailPulse 2s ease-in-out infinite alternate;
}

@keyframes trailPulse {
    from {
        opacity: 0.3;
        height: 30px;
    }

    to {
        opacity: 0.8;
        height: 50px;
    }
}

.ri-satellite {
    position: absolute;
    top: 10%;
    right: 15%;
    font-size: 2rem;
    color: var(--clr-highlight);
    animation: floatSlow 5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(20, 241, 255, 0.4));
}

.ri-planet {
    position: absolute;
    top: 25%;
    left: 10%;
}

.planet-body {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a3a6b, #0B5ED7);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(11, 94, 215, 0.3);
}

.planet-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 20px;
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(70deg);
}

.ri-star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--clr-white);
    border-radius: 50%;
    animation: starTwinkle 2s ease-in-out infinite alternate;
}

.ri-s1 {
    top: 5%;
    left: 30%;
    animation-delay: 0s;
}

.ri-s2 {
    top: 40%;
    right: 5%;
    animation-delay: 0.5s;
}

.ri-s3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.ri-s4 {
    top: 15%;
    left: 60%;
    animation-delay: 1.5s;
}

.ri-s5 {
    bottom: 30%;
    right: 30%;
    animation-delay: 0.8s;
}

@keyframes starTwinkle {
    from {
        opacity: 0.3;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* ============================================
   DEVELOPMENT PROCESS
   ============================================ */
.process-section {
    background: var(--clr-primary);
    overflow: hidden;
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--clr-secondary) transparent;
}

.process-timeline::-webkit-scrollbar {
    height: 4px;
}

.process-timeline::-webkit-scrollbar-track {
    background: transparent;
}

.process-timeline::-webkit-scrollbar-thumb {
    background: var(--clr-secondary);
    border-radius: 4px;
}

.process-line {
    position: absolute;
    top: 44px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--clr-secondary), var(--clr-accent), var(--clr-secondary));
    opacity: 0.3;
}

.process-step {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-accent);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1.1rem;
    margin: 0 auto 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 24px rgba(0, 217, 255, 0.2);
    transition: all var(--transition-base);
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.4);
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.process-step p {
    color: #FFFFFF;

    font-size: 0.82rem;
    line-height: 1.6;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-section {
    background: var(--clr-dark-surface);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 217, 255, 0.25);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 217, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    font-size: 1.3rem;
    margin: 0 auto 16px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-white);
    display: inline;
}

.stat-number-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-white);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-accent);
    display: inline;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--clr-gray);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Features */
.why-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 28px;
}

.why-feature {
    padding: 32px 24px;
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.why-feature:hover {
    border-color: rgba(0, 217, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.wf-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 217, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    font-size: 1.2rem;
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.why-feature:hover .wf-icon {
    background: var(--grad-primary);
    color: var(--clr-white);
    box-shadow: 0 4px 16px rgba(0, 217, 255, 0.3);
}

.why-feature h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.why-feature p {
    color: #FFFFFF;

    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   CASE STUDIES SECTION
   ============================================ */
.cases-section {
    background: var(--clr-primary);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.case-card {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.25);
    box-shadow: var(--shadow-glow);
}

.case-overlay {
    height: 180px;
    background: var(--grad-card);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}




.case-icon {
    font-size: 2.5rem;
    color: rgb(5, 234, 255);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.case-card:hover .case-icon {
    opacity: 0.7;
    transform: scale(1.1);
}

.case-content {
    padding: 24px;
}

.case-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--clr-accent);
    background: rgba(0, 217, 255, 0.06);
    border: 1px solid rgba(0, 217, 255, 0.12);
    border-radius: 100px;
    padding: 4px 14px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.case-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.case-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #FFFFFF;

    margin-bottom: 16px;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-button);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-accent);
    transition: all var(--transition-base);
}

.case-link:hover {
    color: var(--clr-highlight);
    gap: 12px;
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
    background: var(--clr-dark-surface);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news-card {
    background: var(--clr-card-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.2);
    box-shadow: var(--shadow-glow);
}

.news-image {
    position: relative;
    height: 200px;
    background: var(--grad-card);
    overflow: hidden;
}

.news-placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgb(0, 217, 255);
    transition: all 0.4s ease;
}

.news-card:hover .news-placeholder-img {
    color: rgba(0, 217, 255, 0.25);
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--grad-primary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.news-day {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1;
}

.news-month {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-body {
    padding: 24px;
}

.news-category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--clr-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.news-body h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-body p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-button);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-accent);
    transition: all var(--transition-base);
}

.news-link:hover {
    color: var(--clr-highlight);
    gap: 12px;
}

/* ============================================
   CAREERS SECTION
   ============================================ */
.careers-section {
    position: relative;
    overflow: hidden;
}

.careers-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #081221, #0a2a5e, #081221);
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.career-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    gap: 20px;
}

.career-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 217, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.career-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.career-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.career-meta span {
    font-size: 0.8rem;
    color: var(--clr-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.career-meta i {
    color: var(--clr-accent);
    font-size: 0.75rem;
}

.career-info p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--clr-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--clr-border);
    border-radius: 14px;
    transition: 0.3s ease;
}

.contact-item:hover {
    transform: translateX(8px);
    border-color: var(--clr-accent);
    box-shadow: 0 10px 25px rgba(0, 217, 255, .15);
}

.contact-map {
    height: 450px;
    width: 450px;
    margin: 40px auto;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--clr-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Contact Info */
.contact-details {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--clr-border);
}

.contact-item:last-child {
    border-bottom: none;
}

.ci-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(0, 217, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    font-size: 1rem;
}

.ci-text h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--clr-white);
}

.ci-text p {
    color: #FFFFFF;

    font-size: 0.9rem;
    line-height: 1.6;
}

.ci-text a {
    color: var(--clr-accent);
    transition: color 0.3s ease;
}

.ci-text a:hover {
    color: var(--clr-highlight);
}

/* Contact Map */
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
}

/* ===========================
   Responsive Contact Section
=========================== */

/* Large Tablets */
@media (max-width: 992px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        order: 1;
    }

    .contact-map {
        order: 2;
        width: 100%;
        max-width: 700px;
        height: 400px;
        margin: 0 auto;
    }
}

/* Tablets */
@media (max-width: 768px) {

    .contact-section {
        padding: 80px 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-details {
        gap: 16px;
    }

    .contact-item {
        padding: 16px;
        gap: 14px;
    }

    .ci-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1rem;
    }

    .ci-text h4 {
        font-size: 0.95rem;
    }

    .ci-text p {
        font-size: 0.88rem;
    }

    .contact-map {
        width: 100%;
        max-width: 100%;
        height: 350px;
        margin: 0;
    }

    .contact-map iframe {
        width: 100%;
        height: 100%;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .contact-section {
        padding: 60px 16px;
    }

    .contact-grid {
        gap: 30px;
    }

    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        padding: 14px;
        border-radius: 12px;
    }

    .ci-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 0.95rem;
    }

    .ci-text h4 {
        font-size: 0.9rem;
    }

    .ci-text p,
    .ci-text a {
        font-size: 0.85rem;
        line-height: 1.6;
        word-break: break-word;
    }

    .contact-map {
        width: 100%;
        height: 280px;
        border-radius: 14px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {

    .contact-item {
        padding: 12px;
        gap: 12px;
    }

    .ci-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 0.9rem;
    }

    .contact-map {
        height: 240px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--clr-dark-surface);
    border-top: 1px solid var(--clr-border);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #FFFFFF;

    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-gray);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--grad-primary);
    color: var(--clr-white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--grad-primary);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: #FFFFFF;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--clr-accent);
    padding-left: 4px;
}

/* Newsletter Form */
.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    color: var(--clr-white);
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    border-color: var(--clr-accent);
}

.newsletter-form input::placeholder {
    color: rgba(156, 163, 175, 0.5);
}

.newsletter-form button {
    padding: 12px 18px;
    background: var(--grad-primary);
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--clr-white);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.newsletter-form button:hover {
    box-shadow: 0 4px 16px rgba(0, 217, 255, 0.3);
}

.footer-contact-quick p {
    font-size: 0.85rem;
    color: var(--clr-gray);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.footer-contact-quick i {
    color: var(--clr-accent);
    font-size: 0.8rem;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--clr-border);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #FFFFFF;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--clr-accent);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--grad-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4);
}

/* ============================================
   RESPONSIVE — LARGE TABLETS (1024px)
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        margin-top: 30px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        height: 350px;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats-row {
        justify-content: center;
    }

    .hero-radar {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

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

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

    .research-visual {
        height: 300px;
    }

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

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

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

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

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

/* ============================================
   RESPONSIVE — TABLETS (768px)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

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

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

    .timeline-line {
        left: 20px;
    }

    .ti-left,
    .ti-right {
        padding-right: 0;
        padding-left: 60px;
        flex-direction: row;
    }

    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .process-step {
        min-width: 140px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hud-container {
        width: 280px;
        height: 280px;
    }

    .hud-ring-1 {
        width: 140px;
        height: 140px;
    }

    .hud-ring-2 {
        width: 210px;
        height: 210px;
    }

    .hud-ring-3 {
        width: 260px;
        height: 260px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
    :root {
        --section-padding: 48px 0;
        --container-padding: 0 16px;
    }

    .hero {
        padding-top: 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-visual {
        height: 250px;
    }

    .hero-stats-row {
        gap: 16px;
    }

    .hero-stat-number {
        font-size: 1.2rem;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .stat-number,
    .stat-number-text {
        font-size: 2rem;
    }

    .career-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .about-float-card {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .process-step {
        min-width: 120px;
    }
}

/* ============================================
   GSAP Animation Helper Classes
   ============================================ */
.gs-reveal {
    opacity: 1;
    visibility: hidden;
}

.gs-reveal-visible {
    opacity: 1;
    visibility: visible;
}