/* ==================== Global Styles ==================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

/* Base Font Size - Responsive scaling for all devices */
html {
    font-size: clamp(13px, 2.5vw, 16px);
    scroll-behavior: smooth;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

@media (max-width: 1920px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 1440px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1f3a;
    --secondary-color: #2a2f4a;
    --accent-primary: #00d4ff;
    --accent-secondary: #ff006e;
    --accent-tertiary: #8f00ff;
    --text-primary: #ffffff;
    --text-secondary: #d0d8f0;
    --light-bg: #2a2f4a;
    --card-bg: rgba(42, 47, 74, 0.8);
    --glass-bg: rgba(26, 31, 58, 0.6);
    --white: #ffffff;
    --shadow-sm: 0 4px 15px rgba(0, 212, 255, 0.1);
    --shadow-md: 0 8px 32px rgba(0, 212, 255, 0.15);
    --shadow-lg: 0 12px 48px rgba(0, 212, 255, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-cyan: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    --gradient-purple: linear-gradient(135deg, #8f00ff 0%, #ff006e 100%);
    --gradient-blend: linear-gradient(135deg, #00d4ff 0%, #00b8e6 30%, #ff006e 65%, #8f00ff 100%);
}

/* Light Theme */
body.light-theme {
    --primary-color: #ffffff;
    --secondary-color: #f5f5f7;
    --accent-primary: #0066cc;
    --accent-secondary: #cc0066;
    --accent-tertiary: #6600cc;
    --text-primary: #1a1a2e;
    --text-secondary: #666666;
    --light-bg: #f9f9fb;
    --card-bg: rgba(245, 245, 247, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.5);
    --white: #ffffff;
    --shadow-sm: 0 4px 15px rgba(0, 102, 204, 0.1);
    --shadow-md: 0 8px 32px rgba(0, 102, 204, 0.15);
    --shadow-lg: 0 12px 48px rgba(0, 102, 204, 0.2);
    --gradient-cyan: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    --gradient-purple: linear-gradient(135deg, #6600cc 0%, #cc0066 100%);
    --gradient-blend: linear-gradient(135deg, #0066cc 0%, #cc0066 50%, #6600cc 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #1a1f3a 0%, #2a2f4a 50%, #252a42 100%);
    background-attachment: fixed;
    transition: background 0.5s ease, color 0.5s ease;
}

body.light-theme {
    background: linear-gradient(to bottom, #ffffff 0%, #f5f5f7 50%, #f0f0f5 100%);
    background-attachment: fixed;
}

/* Heading Font Family */
h1,
h2,
h3,
h4 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 110, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* ==================== Navbar ==================== */
.navbar {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(0, 212, 255, 0.15) 33%, rgba(255, 0, 110, 0.15) 66%, rgba(143, 0, 255, 0.15) 100%);
    backdrop-filter: blur(20px);
    color: var(--text-primary);
    padding: 0.3rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(143, 0, 255, 0.4);
    box-shadow: 0 8px 32px rgba(143, 0, 255, 0.15);
    transition: var(--transition);
    overflow: visible;
    position: relative;
}

body.light-theme .navbar {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(0, 102, 204, 0.1) 33%, rgba(204, 0, 102, 0.1) 66%, rgba(102, 0, 204, 0.1) 100%);
    border-bottom-color: rgba(102, 0, 204, 0.3);
    box-shadow: 0 8px 32px rgba(102, 0, 204, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 2rem);
    overflow: visible;
    position: relative;
    flex-wrap: nowrap;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    z-index: 10;
    overflow: visible;
    flex-shrink: 0;
}

.logo h1 {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 800;
    letter-spacing: 0.5px;
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.logo img {
    height: clamp(40px, 8vw, 70px);
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    display: block;
}

.logo h1:hover {
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(0.5rem, 2vw, 2.5rem);
    margin-left: clamp(0.5rem, 2vw, 1rem);
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-menu a:hover {
    color: var(--accent-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-cyan);
    transition: width 0.4s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ==================== Hamburger Menu ==================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8f00ff 0%, #ff006e 50%, #8f00ff 100%) !important;
    border: 2px solid #ff006e !important;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1001;
    margin-left: auto;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 4px 15px rgba(143, 0, 255, 0.4);
}

.hamburger:hover {
    background: linear-gradient(135deg, #a020f0 0%, #ff1493 50%, #a020f0 100%) !important;
    border-color: #ff1493 !important;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(143, 0, 255, 0.6);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: #ffffff !important;
    border-radius: 3px;
    transition: all 0.3s ease;
    opacity: 1 !important;
    display: block !important;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #ffffff !important;
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0 !important;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #ffffff !important;
}

/* Same purple gradient for light theme */
body.light-theme .hamburger {
    background: linear-gradient(135deg, #8f00ff 0%, #ff006e 50%, #8f00ff 100%) !important;
    border-color: #ff006e !important;
    box-shadow: 0 4px 15px rgba(143, 0, 255, 0.4);
}

body.light-theme .hamburger:hover {
    background: linear-gradient(135deg, #a020f0 0%, #ff1493 50%, #a020f0 100%) !important;
    box-shadow: 0 6px 20px rgba(143, 0, 255, 0.6);
}

body.light-theme .hamburger-line {
    background: #ffffff !important;
}

/* ==================== Theme Toggle Button ==================== */
.theme-toggle {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    width: clamp(40px, 10vw, 50px);
    height: clamp(40px, 10vw, 50px);
    border-radius: 50%;
    cursor: pointer;
    font-size: clamp(1rem, 2vw, 1.3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: auto;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(20deg);
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.theme-toggle:hover::before {
    opacity: 1;
}

body.light-theme .theme-toggle {
    background: rgba(0, 102, 204, 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

body.light-theme .theme-toggle:hover {
    background: rgba(0, 102, 204, 0.2);
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.3);
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1128 0%, #1a1f3a 60%, #0f1633 100%);
}

body.light-theme .hero {
    background: linear-gradient(135deg, #f8faff 0%, #eef2ff 60%, #f5f5f7 100%);
}

/* Background decorative orbs */
.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-orb--1 {
    width: clamp(300px, 50vw, 700px);
    height: clamp(300px, 50vw, 700px);
    top: clamp(-100px, -10vw, -200px);
    right: clamp(-100px, -10vw, -150px);
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 65%);
    animation: float 10s ease-in-out infinite;
}

.hero-bg-orb--2 {
    width: clamp(200px, 35vw, 500px);
    height: clamp(200px, 35vw, 500px);
    bottom: clamp(-50px, -5vw, -100px);
    left: clamp(-50px, -5vw, -100px);
    background: radial-gradient(circle, rgba(143, 0, 255, 0.1) 0%, transparent 65%);
    animation: float 13s ease-in-out infinite reverse;
}

.hero-bg-orb--3 {
    width: clamp(150px, 25vw, 350px);
    height: clamp(150px, 25vw, 350px);
    top: 40%;
    left: 40%;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.07) 0%, transparent 65%);
    animation: float 8s ease-in-out infinite 2s;
}

body.light-theme .hero-bg-orb--1 {
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 65%);
}

body.light-theme .hero-bg-orb--2 {
    background: radial-gradient(circle, rgba(102, 0, 204, 0.07) 0%, transparent 65%);
}

body.light-theme .hero-bg-orb--3 {
    background: radial-gradient(circle, rgba(204, 0, 102, 0.05) 0%, transparent 65%);
}

/* Hero inner grid */
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ---- LEFT: Content ---- */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    width: fit-content;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    animation: slideDown 0.6s ease both;
}

body.light-theme .hero-badge {
    background: rgba(0, 102, 204, 0.08);
    border-color: rgba(0, 102, 204, 0.25);
    color: #0066cc;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.25);
    animation: pulse 2s ease infinite;
}

body.light-theme .hero-badge-dot {
    background: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
}

/* Headline */
.hero-title {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--text-primary);
    animation: slideDown 0.7s ease 0.1s both;
}

.hero-highlight {
    background: var(--gradient-blend);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 480px;
    font-weight: 400;
    animation: slideDown 0.7s ease 0.2s both;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    animation: slideDown 0.7s ease 0.3s both;
}

.cta-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-btn:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.1rem 2.2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(0, 212, 255, 0.4);
    color: var(--text-primary);
    background: rgba(0, 212, 255, 0.05);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.cta-outline:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.7);
    transform: translateY(-3px);
}

body.light-theme .cta-outline {
    border-color: rgba(0, 102, 204, 0.35);
    color: #1a1a2e;
    background: rgba(0, 102, 204, 0.05);
}

body.light-theme .cta-outline:hover {
    background: rgba(0, 102, 204, 0.12);
    border-color: rgba(0, 102, 204, 0.6);
}

/* Stats row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 0.5rem;
    animation: slideDown 0.7s ease 0.4s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-stat-num {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-blend);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hero-stat-divider {
    width: 1px;
    height: 42px;
    background: rgba(0, 212, 255, 0.2);
    flex-shrink: 0;
}

body.light-theme .hero-stat-divider {
    background: rgba(0, 102, 204, 0.2);
}

/* ---- RIGHT: Visual ---- */
.hero-visual {
    position: relative;
    height: 1100px;
    animation: slideDown 0.8s ease 0.15s both;
}

/* Main large image */
.hero-img-main {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 212, 255, 0.15);
}

body.light-theme .hero-img-main {
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 102, 204, 0.15);
}

.hero-img-main img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 620px;
    object-fit: contain;
    transition: transform 0.8s ease;
}

.hero-img-main:hover img {
    transform: scale(1.04);
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 14, 39, 0.5) 100%);
    border-radius: 24px;
}

body.light-theme .hero-img-overlay {
    background: linear-gradient(180deg, transparent 50%, rgba(0, 50, 120, 0.1) 100%);
}

/* Secondary smaller images */
.hero-img-secondary {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 180px;
    max-height: 180px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 3px rgba(0, 212, 255, 0.2);
    animation: float 7s ease-in-out infinite;
    z-index: 2;
}

/* First secondary image - top left */
.hero-img-secondary:nth-of-type(1) {
    top: 0;
    left: 0;
}

/* Second secondary image - bottom left, below first */
.hero-img-secondary:nth-of-type(2) {
    bottom: 0;
    left: 0;
    animation-delay: -3s;
}

body.light-theme .hero-img-secondary {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(0, 102, 204, 0.2);
}

.hero-img-secondary img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

/* Floating info cards */
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1.2rem;
    border-radius: 14px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(20, 25, 55, 0.75);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    z-index: 3;
}

body.light-theme .hero-float-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 102, 204, 0.15);
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.12);
}

.hero-float-card--1 {
    top: 8%;
    right: 0;
    left: auto;
    animation: float 6s ease-in-out infinite 1s;
}

.hero-float-card--2 {
    bottom: 15%;
    right: 5%;
    left: auto;
    top: auto;
    animation: float 8s ease-in-out infinite 0.5s;
}

.hero-float-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--accent-primary);
}

.hero-float-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.hero-float-text strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.hero-float-text small {
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-scroll:hover {
    bottom: 2.5rem;
}

.hero-scroll-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 70px;
    border-radius: 30px;
    border: 2px solid var(--accent-primary);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(143, 0, 255, 0.1) 100%);
    backdrop-filter: blur(15px);
    padding: 8px 0;
    gap: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.hero-scroll:hover .hero-scroll-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(143, 0, 255, 0.2) 100%);
    border-color: var(--accent-secondary);
    transform: scale(1.1);
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: scrollDots 1.6s ease-in-out infinite;
}

.scroll-dot:nth-child(1) {
    animation-delay: 0s;
}

.scroll-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollDots {
    0% {
        transform: translateY(-8px);
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

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

.hero-scroll:hover .scroll-dot {
    background: var(--accent-secondary);
    width: 8px;
    height: 8px;
}

.hero-scroll-line {
    display: none;
}

body.light-theme .hero-scroll-icon {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, rgba(102, 0, 204, 0.1) 100%);
}

body.light-theme .hero-scroll:hover .hero-scroll-icon {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.25) 0%, rgba(102, 0, 204, 0.2) 100%);
}

body.light-theme .scroll-dot {
    background: var(--accent-primary);
}

body.light-theme .hero-scroll:hover .scroll-dot {
    background: var(--accent-secondary);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.25);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(0, 212, 255, 0.1);
    }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

.cta-btn {
    background: var(--gradient-cyan);
    color: #0a0e27;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.8s ease 0.4s both;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-purple);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 212, 255, 0.5);
    color: var(--text-primary);
}

.cta-btn:hover::before {
    left: 0;
}

@keyframes pulseInOut {

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

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

@keyframes float {

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

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(-40px) translateX(0px);
    }

    75% {
        transform: translateY(-20px) translateX(-10px);
    }
}

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

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

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

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

/* ==================== Modal Styles ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
    box-sizing: border-box;
}

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

.modal-content {
    background: linear-gradient(180deg, #2a2f4a 0%, #252a42 100%);
    border-radius: 24px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 3rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

body.light-theme .modal-content {
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
    border-color: rgba(0, 102, 204, 0.2);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(143, 0, 255, 0.3);
    background: rgba(143, 0, 255, 0.1);
    color: #00d4ff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #8f00ff 100%);
    color: #fff;
    transform: rotate(90deg);
}

.modal-close-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem auto 0;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: none;
    background: var(--gradient-blend);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.modal-close-bottom:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

body.light-theme .modal-close-bottom {
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

body.light-theme .modal-close-bottom:hover {
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.5);
}

body.light-theme .modal-close {
    border-color: rgba(0, 102, 204, 0.3);
    background: rgba(0, 102, 204, 0.1);
    color: #6b00cc;
}

body.light-theme .modal-close:hover {
    background: linear-gradient(135deg, #0066cc 0%, #6b00cc 100%);
    color: #fff;
}

/* ==================== Infrastructure Modal Styles ==================== */
.infrastructure-content {
    text-align: center;
}

.infrastructure-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-blend);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

body.light-theme .infrastructure-content h2 {
    background: linear-gradient(135deg, #00d4ff 0%, #00b8e6 30%, #ff006e 65%, #8f00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.infrastructure-content .section-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.infrastructure-item {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.infrastructure-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.1);
}

body.light-theme .infrastructure-item {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.15);
}

body.light-theme .infrastructure-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

.infrastructure-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.infrastructure-icon i {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-theme .infrastructure-icon i {
    background: linear-gradient(135deg, #00d4ff 0%, #00b8e6 30%, #ff006e 65%, #8f00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.infrastructure-item h3 {
    font-size: 1.1rem;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.infrastructure-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.infrastructure-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

body.light-theme .infrastructure-highlights {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.15);
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-blend);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-theme .highlight-number {
    background: linear-gradient(135deg, #00d4ff 0%, #00b8e6 30%, #ff006e 65%, #8f00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Machinery Table Styles */
.machinery-section {
    margin-top: 2.5rem;
}

.machinery-header {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-blend);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

body.light-theme .machinery-header {
    background: linear-gradient(135deg, #00d4ff 0%, #00b8e6 30%, #ff006e 65%, #8f00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.machinery-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

body.light-theme .machinery-table-wrapper {
    border-color: rgba(0, 212, 255, 0.2);
}

.machinery-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.machinery-table thead {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 0, 110, 0.1));
}

body.light-theme .machinery-table thead {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 110, 0.1));
}

.machinery-table th {
    padding: 1rem 1.25rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.machinery-table td {
    padding: 0.85rem 1.25rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.machinery-table tbody tr {
    transition: all 0.2s ease;
}

.machinery-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.08);
}

body.light-theme .machinery-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.1);
}

.machinery-table tbody tr:nth-child(even) {
    background: rgba(0, 212, 255, 0.03);
}

body.light-theme .machinery-table tbody tr:nth-child(even) {
    background: rgba(0, 212, 255, 0.05);
}

.machinery-table td:first-child {
    font-weight: 600;
    color: var(--accent-primary);
}

.machinery-table td:last-child {
    font-weight: 600;
    text-align: center;
}

.machinery-table th:last-child,
.machinery-table td:last-child {
    text-align: center;
}

.machinery-table th:first-child,
.machinery-table td:first-child {
    text-align: center;
    width: 60px;
}

/* Machinery Gallery Styles */
.machinery-gallery-section {
    margin-top: 2.5rem;
}

.gallery-header {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-blend);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-align: center;
}

body.light-theme .gallery-header {
    background: linear-gradient(135deg, #00d4ff 0%, #00b8e6 30%, #ff006e 65%, #8f00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.machinery-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

body.light-theme .gallery-item {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
}

body.light-theme .gallery-item:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.gallery-caption {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
}

body.light-theme .gallery-caption {
    background: rgba(0, 212, 255, 0.1);
}

@media (max-width: 768px) {
    .infrastructure-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .infrastructure-highlights {
        flex-direction: column;
        gap: 1.5rem;
    }

    .infrastructure-content h2 {
        font-size: 1.75rem;
    }

    .machinery-header {
        font-size: 1.25rem;
    }

    .machinery-table th,
    .machinery-table td {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .machinery-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item img {
        height: 160px;
    }

    .gallery-header {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .infrastructure-grid {
        grid-template-columns: 1fr;
    }

    .highlight-number {
        font-size: 2rem;
    }

    .machinery-header {
        font-size: 1.1rem;
    }

    .machinery-table th,
    .machinery-table td {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
    }

    .machinery-table th:first-child,
    .machinery-table td:first-child {
        width: 45px;
    }

    .machinery-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item img {
        height: 180px;
    }

    .gallery-header {
        font-size: 1.1rem;
    }

    .gallery-caption {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}

/* ==================== About Section ==================== */
.about {
    padding: 100px 20px;
    background: linear-gradient(180deg, #2a2f4a 0%, #252a42 100%);
    position: relative;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(255, 0, 110, 0.1);
}

body.light-theme .about {
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
    border-top-color: rgba(0, 102, 204, 0.1);
    border-bottom-color: rgba(204, 0, 102, 0.1);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(0, 212, 255, 0.02) 0%,
            transparent 50%,
            rgba(255, 0, 110, 0.02) 100%);
    pointer-events: none;
}

body.light-theme .about::before {
    background: linear-gradient(45deg,
            rgba(0, 102, 204, 0.02) 0%,
            transparent 50%,
            rgba(204, 0, 102, 0.02) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.about-text h2,
.modal-content .about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-blend);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

body.light-theme .about-text h2,
body.light-theme .modal-content .about-text h2 {
    background: linear-gradient(135deg, #00d4ff 0%, #00b8e6 30%, #ff006e 65%, #8f00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    padding: 0;
}

.about p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.about-highlights {
    list-style: none;
    margin-top: 2.5rem;
}

.about-highlights li {
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    color: var(--text-primary);
    border-left: 3px solid var(--accent-primary);
    margin-bottom: 0.8rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 4px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

body.light-theme .about-highlights li {
    background: rgba(0, 102, 204, 0.08);
    border-left-color: var(--accent-primary);
}

.about-highlights li:last-child {
    border-bottom: none;
}

.about-highlights li:hover {
    background: rgba(0, 212, 255, 0.1);
    padding-left: 2rem;
    border-left-color: var(--accent-secondary);
}

body.light-theme .about-highlights li:hover {
    background: rgba(0, 102, 204, 0.15);
}

/* ==================== About Section - Info Grid ==================== */
.about-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    padding: 0.8rem;
    background: rgba(0, 212, 255, 0.15);
    border-radius: 0 0 16px 16px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-top: 2px solid rgba(0, 212, 255, 0.5);
    margin: 0;
    backdrop-filter: blur(10px);
    margin-top: auto;
}

.about-image .about-info-grid {
    box-shadow: var(--shadow-lg);
}

.about-info-item {
    text-align: center;
    padding: 0.5rem;
}

.about-info-item h4 {
    font-size: 0.85rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-info-item p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

body.light-theme .about-info-grid {
    background: rgba(0, 102, 204, 0.05);
    border-color: rgba(0, 102, 204, 0.15);
}

/* ==================== About Details Section ==================== */
.about-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin: 0.5rem 0;
}

.detail-section {
    padding: 0.6rem;
    background: rgba(0, 212, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--accent-primary);
}

.detail-section h4 {
    font-size: 1rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 0.2rem;
    padding-bottom: 0;
}

.detail-section p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

body.light-theme .detail-section {
    background: rgba(0, 102, 204, 0.03);
    border-left-color: var(--accent-primary);
}

body.light-theme .detail-section h4 {
    color: var(--accent-primary);
}

/* ==================== Vision & Mission Section ==================== */
.about-vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 0.5rem 0 0;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(143, 0, 255, 0.08) 100%);
    border-radius: 8px;
    border-left: 4px solid var(--accent-primary);
}

.vision h4,
.mission h4 {
    font-size: 1rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.vision p,
.mission p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

body.light-theme .about-vision-mission {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(102, 0, 204, 0.08) 100%);
    border-left-color: var(--accent-primary);
}

.placeholder-image {
    background: var(--gradient-blend);
    border-radius: 16px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.about-image {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    display: block;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

body.light-theme .placeholder-image {
    border-color: rgba(0, 102, 204, 0.2);
}

body.light-theme .about-image {
    border-color: rgba(0, 102, 204, 0.2);
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

/* ==================== Board of Directors Section ==================== */
.board-of-directors {
    margin-top: 2rem;
    text-align: center;
}

.board-header {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-blend);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.board-image-wrapper {
    background: rgba(0, 212, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.board-image-wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

body.light-theme .board-image-wrapper {
    background: rgba(0, 102, 204, 0.05);
    border-color: rgba(0, 102, 204, 0.15);
}

/* ==================== Roadmap Modal Styles ==================== */
.roadmap-content {
    text-align: center;
}

.roadmap-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-blend);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.roadmap-section {
    margin: 3rem 0;
    text-align: left;
}

.roadmap-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.roadmap-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-blend);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.roadmap-section-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-blend);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* Roadmap Cards Grid */
.roadmap-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.roadmap-card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-blend);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.roadmap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
}

.roadmap-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(143, 0, 255, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--accent-primary);
    font-size: 1.25rem;
}

.roadmap-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.roadmap-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Timeline Styles */
.roadmap-timeline {
    position: relative;
    padding-left: 2rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #00d4ff 0%, #ff006e 50%, #8f00ff 100%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 2rem;
}

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

.timeline-marker {
    position: absolute;
    left: -11px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 3px solid var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1rem;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    background: var(--gradient-blend);
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
}

.timeline-content {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* 3S Formula Section */
.roadmap-formula {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(143, 0, 255, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.roadmap-formula h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient-blend);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.formula-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.formula-card {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.formula-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.formula-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-blend);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.formula-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.formula-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Light Theme for Roadmap */
body.light-theme .roadmap-card {
    background: rgba(0, 102, 204, 0.05);
    border-color: rgba(0, 102, 204, 0.15);
}

body.light-theme .roadmap-card:hover {
    border-color: rgba(0, 102, 204, 0.3);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.1);
}

body.light-theme .timeline-content {
    background: rgba(0, 102, 204, 0.05);
    border-color: rgba(0, 102, 204, 0.15);
}

body.light-theme .timeline-item:hover .timeline-content {
    border-color: rgba(0, 102, 204, 0.3);
}

body.light-theme .roadmap-formula {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(102, 0, 204, 0.05) 100%);
    border-color: rgba(0, 102, 204, 0.15);
}

body.light-theme .formula-card {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 102, 204, 0.1);
}

body.light-theme .formula-card:hover {
    border-color: rgba(0, 102, 204, 0.3);
}

/* Responsive Roadmap */
@media (max-width: 768px) {
    .roadmap-cards {
        grid-template-columns: 1fr;
    }

    .formula-cards {
        grid-template-columns: 1fr;
    }

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

    .roadmap-section-header h3 {
        font-size: 1.5rem;
    }

    .roadmap-timeline {
        padding-left: 1.5rem;
    }

    .timeline-item {
        padding-left: 2.5rem;
    }
}

/* ==================== Products Modal Styles ==================== */
.products-modal-content {
    text-align: center;
}

.products-modal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-blend);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.products-modal-intro {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.products-modal-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Products Modal Gallery */
.products-modal-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.products-modal-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    transition: all 0.4s ease;
}

.products-modal-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.5), rgba(255, 0, 110, 0.5), rgba(143, 0, 255, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    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;
}

.products-modal-item:hover::before {
    opacity: 1;
}

.products-modal-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.products-modal-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.products-modal-item:hover img {
    transform: scale(1.05);
}

.products-modal-caption {
    padding: 1rem;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.3);
}

/* Products Categories */
.categories-header {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient-blend);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-blend);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(143, 0, 255, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--accent-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: var(--gradient-blend);
    color: #fff;
    transform: scale(1.1);
}

.category-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Light Theme Products Modal */
body.light-theme .products-modal-intro {
    background: rgba(0, 102, 204, 0.05);
    border-color: rgba(0, 102, 204, 0.15);
}

body.light-theme .products-modal-item {
    background: rgba(0, 102, 204, 0.05);
    border-color: rgba(0, 102, 204, 0.15);
}

body.light-theme .products-modal-item:hover {
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
}

body.light-theme .products-modal-caption {
    background: rgba(0, 102, 204, 0.1);
}

body.light-theme .category-card {
    background: rgba(0, 102, 204, 0.05);
    border-color: rgba(0, 102, 204, 0.15);
}

body.light-theme .category-card:hover {
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.1);
    border-color: rgba(0, 102, 204, 0.3);
}

/* Responsive Products Modal */
@media (max-width: 768px) {
    .products-modal-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

    .products-modal-item img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .products-modal-gallery {
        grid-template-columns: 1fr;
    }
}

/* ==================== Products Section ==================== */
.products {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0a0e27 0%, #0f1633 100%);
    position: relative;
}

body.light-theme .products {
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.products h2,
.capabilities h2,
.clients h2,
.contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-blend);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.5px;
}

body.light-theme .products h2,
body.light-theme .capabilities h2,
body.light-theme .clients h2,
body.light-theme .contact h2 {
    background: linear-gradient(135deg, #00d4ff 0%, #00b8e6 30%, #ff006e 65%, #8f00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Products Carousel */
.products-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
    padding: 0 60px;
}

.products-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.products-carousel-track .product-card {
    flex: 0 0 calc((100% - 4rem) / 3);
    min-width: calc((100% - 4rem) / 3);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8f00ff 0%, #00d4ff 100%);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(143, 0, 255, 0.4);
}

.carousel-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(143, 0, 255, 0.6);
}

.carousel-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-arrow:disabled:hover {
    transform: translateY(-50%) scale(1);
}

.carousel-arrow-left {
    left: 0;
}

.carousel-arrow-right {
    right: 0;
}

body.light-theme .carousel-arrow {
    background: linear-gradient(135deg, #6b00cc 0%, #0099cc 100%);
    box-shadow: 0 4px 15px rgba(107, 0, 204, 0.3);
}

body.light-theme .carousel-arrow:hover {
    box-shadow: 0 6px 20px rgba(107, 0, 204, 0.5);
}

/* Carousel responsive - mobile shows 1 product */
@media (max-width: 768px) {
    .products-carousel {
        padding: 0 45px;
    }

    .products-carousel-track {
        gap: 0;
        width: 100%;
    }

    .products-carousel-track .product-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .carousel-arrow-left {
        left: 5px;
    }

    .carousel-arrow-right {
        right: 5px;
    }

    .product-card {
        padding: 1rem;
    }

    .product-image {
        height: 180px;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    .product-card p {
        font-size: 0.9rem;
    }

    .product-specs {
        font-size: 0.85rem;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

body.light-theme .product-card {
    border-color: rgba(0, 102, 204, 0.2);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.product-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(255, 0, 110, 0.08) 50%, rgba(143, 0, 255, 0.08) 100%);
    border-left: 3px solid var(--accent-primary);
}

body.light-theme .product-card:hover {
    background: rgba(0, 102, 204, 0.12);
    border-color: rgba(0, 102, 204, 0.3);
    border-left: 3px solid var(--accent-primary);
}

.product-image {
    width: 100%;
    height: 250px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

body.light-theme .product-image {
    background: transparent;
    border-bottom: 1px solid rgba(0, 102, 204, 0.15);
}

.product-image .placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 2;
    text-align: center;
    padding: 1rem;
}

.product-image .placeholder i {
    font-size: 4rem;
    display: block;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 15px rgba(0, 212, 255, 0.3));
    transition: transform 0.5s ease;
}

@keyframes iconPulse {

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

    50% {
        transform: scale(1.15);
    }
}

body.light-theme .product-image .placeholder i {
    filter: drop-shadow(0 4px 15px rgba(0, 102, 204, 0.3));
}

.product-card:hover .product-image .placeholder i {
    transform: scale(1.25);
    animation: none;
}

.product-image::before {
    display: none;
}

.product-card h3 {
    padding: 1.8rem 1.8rem 0.5rem;
    font-size: 1.25rem;
    color: var(--accent-primary);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.product-card p {
    padding: 0 1.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.product-specs {
    list-style: none;
    padding: 1.2rem 1.8rem;
    margin-top: auto;
}

.product-specs li {
    padding: 0.6rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.product-specs li:hover {
    color: var(--accent-primary);
    padding-left: 0.5rem;
}

.product-specs li:before {
    content: "⚡ ";
    color: var(--accent-primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* ==================== Product Gallery Section ==================== */
.product-gallery-section {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(143, 0, 255, 0.03) 100%);
    border-radius: 24px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.product-gallery-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    animation: rotateGlow 20s linear infinite;
}

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

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

.product-gallery-header {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gradient-blend);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.product-gallery-header::after {
    content: 'Featured Collection';
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.5rem;
    padding: 0.4rem 1.2rem;
    background: var(--gradient-blend);
    border-radius: 50px;
    color: #fff;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    -webkit-text-fill-color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.product-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.1) 0%, rgba(143, 0, 255, 0.05) 100%);
    border: 1px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.product-gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.5), rgba(255, 0, 110, 0.5), rgba(143, 0, 255, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    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;
}

.product-gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.product-gallery-item:hover::before {
    opacity: 1;
}

.product-gallery-item:hover::after {
    left: 100%;
}

.product-gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 212, 255, 0.25),
        0 0 40px rgba(143, 0, 255, 0.15),
        inset 0 0 30px rgba(0, 212, 255, 0.05);
}

.product-gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: saturate(0.9);
}

.product-gallery-item:hover img {
    transform: scale(1.1);
    filter: saturate(1.1) brightness(1.05);
}

.product-gallery-item .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.gallery-overlay span {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-blend);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Staggered animation for items */
.product-gallery-item:nth-child(odd) {
    animation: floatUp 6s ease-in-out infinite;
}

.product-gallery-item:nth-child(even) {
    animation: floatUp 6s ease-in-out infinite 0.5s;
}

@keyframes floatUp {

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

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

.product-gallery-item:hover {
    animation: none;
}

body.light-theme .product-gallery-section {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(102, 0, 204, 0.03) 100%);
    border-color: rgba(0, 102, 204, 0.15);
}

body.light-theme .product-gallery-section::before {
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
}

body.light-theme .product-gallery-item {
    background: linear-gradient(145deg, rgba(0, 102, 204, 0.08) 0%, rgba(102, 0, 204, 0.05) 100%);
}

body.light-theme .product-gallery-item:hover {
    box-shadow:
        0 25px 50px rgba(0, 102, 204, 0.2),
        0 0 40px rgba(102, 0, 204, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-gallery-item img {
        height: 180px;
    }

    .product-gallery-header {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-gallery {
        grid-template-columns: 1fr;
    }

    .product-gallery-item img {
        height: 220px;
    }
}

/* ==================== Capabilities Section ==================== */
.capabilities {
    padding: 100px 20px;
    background: linear-gradient(180deg, #1a1f3a 0%, #0f1633 100%);
    position: relative;
}

body.light-theme .capabilities {
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
    border-top: 1px solid rgba(255, 0, 110, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.capability-item {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

body.light-theme .capability-item {
    border-color: rgba(0, 102, 204, 0.15);
}

body.light-theme .capability-item:hover {
    background: rgba(0, 102, 204, 0.12);
    border-color: rgba(0, 102, 204, 0.3);
    border-left: 3px solid var(--accent-primary);
}

body.light-theme .capability-item::before {
    background: radial-gradient(circle, rgba(0, 102, 204, 0.15) 0%, transparent 70%);
}

.capability-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.2) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.capability-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.capability-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(255, 0, 110, 0.08) 50%, rgba(143, 0, 255, 0.08) 100%);
    box-shadow: var(--shadow-lg);
    border-left: 3px solid var(--accent-primary);
}

.capability-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: transparent;
    transition: var(--transition);
    margin-left: auto;
    margin-right: auto;
}

.capability-icon i {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 15px rgba(0, 212, 255, 0.3));
    transition: transform 0.5s ease;
}

body.light-theme .capability-icon {
    background: transparent;
}

body.light-theme .capability-icon i {
    filter: drop-shadow(0 4px 15px rgba(0, 102, 204, 0.3));
}

.capability-item:hover .capability-icon {
    transform: scale(1.15);
}

.capability-item:hover .capability-icon i {
    animation: none;
}

.capability-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.capability-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ==================== Clients Section ==================== */
.clients {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0a0e27 0%, #0f1633 100%);
    position: relative;
    text-align: center;
}

body.light-theme .clients {
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
    border-bottom: 1px solid rgba(255, 0, 110, 0.1);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem auto;
}

.client-logo {
    background: transparent;
    padding: 1.25rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition);
    cursor: default;
}

body.light-theme .client-logo {
    color: var(--text-primary);
}

.client-logo:hover {
    color: var(--accent-primary);
    transform: scale(1.02);
}

body.light-theme .client-logo:hover {
    color: var(--accent-primary);
}

/* Clients OEM Image Section */
.clients-oem-section {
    margin-top: 2rem;
    text-align: center;
}

.clients-oem-image {
    max-width: 100%;
    width: auto;
    max-height: 200px;
    margin: 1rem auto;
    display: block;
    border-radius: 8px;
}

/* ==================== Contact Section ==================== */
.contact {
    padding: 100px 20px;
    background: linear-gradient(180deg, #1a1f3a 0%, #0f1633 100%);
    position: relative;
}

body.light-theme .contact {
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(255, 0, 110, 0.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition);
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.03);
}

.info-item:hover {
    background: rgba(0, 212, 255, 0.08);
    border-left: 2px solid var(--accent-primary);
    padding-left: calc(1rem + 2px);
    transform: translateX(2px);
}

.info-icon {
    font-size: 1.2rem;
    min-width: 2.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(255, 0, 110, 0.15) 100%);
    color: var(--accent-primary);
    flex-shrink: 0;
}

body.light-theme .info-icon {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, rgba(204, 0, 102, 0.15) 100%);
}

.info-text {
    flex: 1;
}

.info-item strong {
    display: block;
    color: var(--accent-primary);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.info-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.info-item a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

/* Contact Map Section */
.contact-map-section {
    margin: 1rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(143, 0, 255, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.map-container {
    margin-bottom: 0.75rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 10px;
}

.map-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.coordinates {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.coord-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.82rem;
}

.coord-item i {
    color: var(--accent-primary);
    font-size: 0.85rem;
}

.coord-item strong {
    color: var(--accent-primary);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #00d4ff 0%, #8f00ff 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.map-link i {
    font-size: 1rem;
}

body.light-theme .contact-map-section {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(107, 0, 204, 0.05) 100%);
    border-color: rgba(0, 102, 204, 0.15);
}

body.light-theme .map-container {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.light-theme .map-link {
    background: linear-gradient(135deg, #0066cc 0%, #6b00cc 100%);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

body.light-theme .map-link:hover {
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

/* Map Responsive */
@media (max-width: 768px) {
    .contact-map-section {
        padding: 0.75rem;
    }

    .map-container iframe {
        height: 180px;
    }

    .map-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .coordinates {
        flex-direction: column;
        gap: 0.4rem;
    }

    .map-link {
        width: 100%;
        justify-content: center;
    }
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    height: fit-content;
}

body.light-theme .contact-form {
    border-color: rgba(0, 102, 204, 0.2);
}

body.light-theme .info-item {
    background: rgba(0, 102, 204, 0.05);
    border-bottom-color: rgba(0, 102, 204, 0.1);
}

body.light-theme .info-item:hover {
    background: rgba(0, 102, 204, 0.12);
}

.form-group {
    margin-bottom: 1.2rem;
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1.5px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(10, 14, 39, 0.3);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.form-group input[list] {
    width: 100%;
    padding: 1rem;
    border: 1.5px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(10, 14, 39, 0.3);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.form-group input[list]:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(10, 14, 39, 0.5);
    box-shadow: var(--shadow-md);
}

/* Custom datalist dropdown styles */
input[list]::-webkit-calendar-picker-indicator {
    filter: invert(60%) sepia(100%) saturate(500%) hue-rotate(180deg);
}

/* Style datalist dropdown for Chrome/Edge */
input[list]::-webkit-input-placeholder {
    color: var(--text-secondary);
}

input[list]::-webkit-datalist-dropdown {
    width: 100% !important;
    min-width: 100% !important;
    background: var(--gradient-blend);
    color: var(--text-primary);
    border-radius: 8px;
    font-size: 1rem;
}

/* Style datalist dropdown for Firefox */
input[list]::-moz-placeholder {
    color: var(--text-secondary);
}
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: #0a0e27;
    color: var(--text-primary);
    padding: 0.5rem;
}

body.light-theme .form-group select option {
    background: #ffffff;
    color: #1a1a2e;
}

body.light-theme .form-group input,
body.light-theme .form-group textarea,
body.light-theme .form-group select {
    background: rgba(200, 200, 220, 0.3);
    border-color: rgba(0, 102, 204, 0.2);
}

body.light-theme .form-group input[list] {
    background: rgba(200, 200, 220, 0.3);
    border-color: rgba(0, 102, 204, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(10, 14, 39, 0.5);
    box-shadow: var(--shadow-md);
}

body.light-theme .form-group input:focus,
body.light-theme .form-group textarea:focus,
body.light-theme .form-group select:focus {
    background: rgba(200, 200, 220, 0.5);
}

body.light-theme .form-group input[list]:focus {
    background: rgba(200, 200, 220, 0.5);
}

/* Form Validation Styles */
.error-message {
    display: none;
    color: #ff4757;
    font-size: 0.8rem;
    margin-top: 0.4rem;
    padding-left: 0.5rem;
}

.input-error {
    border-color: #ff4757 !important;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {

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

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.submit-btn {
    width: 100%;
    background: var(--gradient-cyan);
    color: #0a0e27;
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-purple);
    transition: left 0.4s ease;
    z-index: -1;
}

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

.submit-btn:hover::before {
    left: 0;
}

/* ==================== Footer ==================== */
.footer {
    background: linear-gradient(135deg, #0a0e27 0%, #1a0a2e 50%, #0d1f3c 100%);
    color: var(--text-primary);
    padding: 2rem 20px 1rem;
    position: relative;
    overflow: hidden;
}

body.light-theme .footer {
    background: linear-gradient(135deg, #f0e6ff 0%, #e0f7ff 50%, #f5f5f7 100%);
    margin-top: 0;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, #8f00ff, #00d4ff, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    text-align: left;
}

.footer-section:first-child {
    padding-right: 1rem;
}

.footer-section h4 {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: var(--accent-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #8f00ff);
    border-radius: 2px;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.4rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent-primary);
    padding-left: 0.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(143, 0, 255, 0.15) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #8f00ff 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
    padding-left: 0;
}

body.light-theme .social-links a {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(107, 0, 204, 0.1) 100%);
    border-color: rgba(0, 102, 204, 0.3);
}

body.light-theme .social-links a:hover {
    background: linear-gradient(135deg, #0066cc 0%, #6b00cc 100%);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.6rem 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
    font-size: 0.85rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: var(--text-secondary);
}

.newsletter-form input:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

body.light-theme .newsletter-form input {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 102, 204, 0.3);
}

body.light-theme .newsletter-form input:focus {
    border-color: var(--accent-primary);
}

.newsletter-form button {
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #00d4ff 0%, #8f00ff 100%);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

body.light-theme .newsletter-form button {
    background: linear-gradient(135deg, #0066cc 0%, #6b00cc 100%);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(0, 212, 255, 0.15);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 15px 1rem;
    }

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

    .footer-section {
        text-align: center;
    }

    .footer-section:first-child {
        padding-right: 0;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* ==================== Go to Top Button ==================== */
#goToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #00d4ff 0%, #8f00ff 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    padding: 0;
    line-height: 1;
}

#goToTopBtn.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    animation: popIn 0.3s ease;
}

#goToTopBtn:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #ff006e 50%, #8f00ff 100%);
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.6);
}

#goToTopBtn:active {
    transform: scale(0.95);
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }

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

body.light-theme #goToTopBtn {
    background: linear-gradient(135deg, #0066cc 0%, #6600cc 100%);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

body.light-theme #goToTopBtn:hover {
    background: linear-gradient(135deg, #0066cc 0%, #cc0066 50%, #6600cc 100%);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.5);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 768px) {
    .navbar .container {
        justify-content: space-between !important;
    }

    .theme-toggle {
        margin-left: auto !important;
        margin-right: 10px !important;
        flex-shrink: 0 !important;
        order: 1 !important;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 6px !important;
        width: 48px !important;
        height: 48px !important;
        background: linear-gradient(135deg, #8f00ff 0%, #ff006e 50%, #8f00ff 100%) !important;
        border: 2px solid #ff006e !important;
        border-radius: 10px !important;
        cursor: pointer !important;
        padding: 10px !important;
        z-index: 1001 !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: 0 4px 15px rgba(143, 0, 255, 0.4) !important;
        flex-shrink: 0 !important;
        margin-left: 0 !important;
        order: 2 !important;
    }

    .hamburger-line {
        width: 24px !important;
        height: 3px !important;
        background: #ffffff !important;
        border-radius: 3px !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    body.light-theme .hamburger {
        background: linear-gradient(135deg, #8f00ff 0%, #ff006e 50%, #8f00ff 100%) !important;
        border-color: #ff006e !important;
    }

    body.light-theme .hamburger-line {
        background: #ffffff !important;
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        background: linear-gradient(180deg, #1a0a2e 0%, #0d1f3c 30%, #0a2540 60%, #0d0419 100%) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 80px 30px 30px !important;
        gap: 0 !important;
        margin: 0 !important;
        box-shadow: -5px 0 30px rgba(143, 0, 255, 0.3) !important;
        transition: right 0.3s ease !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        flex-wrap: nowrap !important;
        flex: none !important;
        display: flex !important;
    }

    .nav-menu.active {
        right: 0 !important;
    }

    .nav-menu li {
        width: 100% !important;
        border-bottom: 1px solid rgba(143, 0, 255, 0.3) !important;
        list-style: none !important;
    }

    .nav-menu li:last-child {
        border-bottom: none !important;
    }

    .nav-menu a {
        display: block !important;
        padding: 18px 0 !important;
        font-size: 1.2rem !important;
        width: 100% !important;
        white-space: normal !important;
        color: #ffffff !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        letter-spacing: 0.5px !important;
        transition: all 0.3s ease !important;
    }

    .nav-menu a:hover {
        color: #ff006e !important;
        padding-left: 10px !important;
    }

    .nav-menu a::after {
        display: none !important;
    }

    body.light-theme .nav-menu {
        background: linear-gradient(180deg, #f0e6ff 0%, #e0f7ff 30%, #d4f1f9 60%, #e8e0f0 100%) !important;
        box-shadow: -5px 0 30px rgba(143, 0, 255, 0.2) !important;
    }

    body.light-theme .nav-menu a {
        color: #1a0a2e !important;
    }

    body.light-theme .nav-menu a:hover {
        color: #8f00ff !important;
    }

    body.light-theme .nav-menu li {
        border-bottom-color: rgba(143, 0, 255, 0.2) !important;
    }

    /* Mobile menu overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }

    .theme-toggle {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .hero {
        padding: 110px 0 80px;
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        order: 2;
    }

    .hero-badge {
        align-self: center;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
    }

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

    .hero-visual {
        order: 1;
        height: 380px;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-float-card--1 {
        left: 2%;
        top: 5%;
    }

    .hero-float-card--2 {
        left: 2%;
        top: 42%;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about h2,
    .products h2,
    .capabilities h2,
    .clients h2,
    .contact h2 {
        font-size: 2.2rem;
    }

    .placeholder-image {
        height: 280px;
    }

    .products-grid,
    .capabilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem 1.5rem;
    }

    .clients-oem-image {
        max-height: 150px;
    }

    .product-card,
    .capability-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar .container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
        padding: 0;
    }

    .logo {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-right: auto;
        display: flex;
        align-items: center;
        height: auto;
        min-height: 50px;
    }

    .logo img {
        height: 45px;
        width: auto;
        display: block;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.8rem;
        width: 100%;
        margin-left: 0 !important;
        padding: 0.5rem 15px;
    }

    .nav-menu a {
        font-size: 0.75rem;
    }

    .theme-toggle {
        margin-left: auto;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero {
        padding: 90px 0 70px;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-stats {
        gap: 1rem;
    }

    .hero-stat-num {
        font-size: 1.6rem;
    }

    .hero-float-card {
        padding: 0.6rem 0.9rem;
        font-size: 0.8rem;
    }

    .hero-float-text strong {
        font-size: 0.78rem;
    }

    .cta-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .about-highlights li {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
        margin-bottom: 0.6rem;
    }

    .about h2,
    .products h2,
    .capabilities h2,
    .clients h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .about,
    .products,
    .capabilities,
    .clients,
    .contact {
        padding: 60px 20px;
    }

    .products-grid,
    .capabilities-grid,
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .clients-oem-image {
        max-height: 120px;
    }

    .product-card,
    .capability-item {
        padding: 1.5rem;
    }

    .client-logo {
        padding: 1rem;
    }

    .product-card h3,
    .capability-item h3,
    .capability-icon {
        font-size: 1.2rem;
    }

    .capability-icon {
        animation: pulseInOut 2s ease-in-out infinite !important;
        margin-bottom: 1rem !important;
    }

    .capability-item:hover .capability-icon {
        transform: none !important;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .submit-btn {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer {
        padding: 3rem 20px 1.5rem;
    }
}

/* ==================== Legal Modals (Privacy, Terms, Sitemap) ==================== */
.legal-modal-content {
    text-align: center;
}

.legal-modal-content h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #8f00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

body.light-theme .legal-modal-content h2 {
    background: linear-gradient(135deg, #0066cc 0%, #6b00cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-content-body {
    text-align: left;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

body.light-theme .legal-content-body {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 102, 204, 0.1);
}

.legal-content-body h3 {
    color: #00d4ff;
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.legal-content-body h3:first-child {
    margin-top: 0;
}

body.light-theme .legal-content-body h3 {
    color: #0066cc;
    border-color: rgba(0, 102, 204, 0.2);
}

.legal-content-body h4 {
    color: #8f00ff;
    font-size: 1.1rem;
    margin: 1.25rem 0 0.5rem;
}

body.light-theme .legal-content-body h4 {
    color: #6b00cc;
}

.legal-content-body p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-content-body ul {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content-body ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-content-body a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content-body a:hover {
    color: #8f00ff;
}

body.light-theme .legal-content-body a {
    color: #0066cc;
}

body.light-theme .legal-content-body a:hover {
    color: #6b00cc;
}

/* Sitemap specific styles */
.sitemap-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.sitemap-column h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

body.light-theme .sitemap-column h4 {
    color: #0066cc;
    border-color: rgba(0, 102, 204, 0.2);
}

.sitemap-column ul {
    list-style: none;
    padding: 0;
}

.sitemap-column ul li {
    margin-bottom: 0.5rem;
}

.sitemap-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.sitemap-column ul li a:hover {
    color: #00d4ff;
    padding-left: 0.5rem;
}

body.light-theme .sitemap-column ul li a:hover {
    color: #0066cc;
}

/* Legal Modal Responsive */
@media (max-width: 992px) {
    .sitemap-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .legal-modal-content h2 {
        font-size: 1.8rem;
    }

    .legal-content-body {
        padding: 1.5rem;
    }

    .legal-content-body h3 {
        font-size: 1.1rem;
    }

    .sitemap-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sitemap-content {
        grid-template-columns: 1fr;
    }

    .legal-content-body {
        padding: 1rem;
    }
}

/* ==================== SECURITY PROTECTION STYLES ==================== */
/* Prevent text selection */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Allow selection only in form inputs */
input,
textarea,
select,
[contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Prevent image dragging */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}

/* Disable highlighting on tap (mobile) */
* {
    -webkit-tap-highlight-color: transparent;
}

/* ==================== END SECURITY STYLES ==================== */