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

:root {
    --primary-color: #0066cc;
    --primary-dark: #004499;
    --primary-darker: #002266;
    --secondary-color: #FF6B35;
    --accent-gold: #FFD700;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: rgba(255,255,255,0.9);
    --border-color: rgba(255,255,255,0.2);
    --glass-bg: rgba(255,255,255,0.15);
    --card-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: white;
    background: #1a1a2e;
    margin: 0;
    padding: 0;
    padding-top: 80px; /* For fixed header */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #00ff88;
    font-size: 1.8rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.logo-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00ff88;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
    padding-left: 2rem;
}

.lang-btn {
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.lang-btn.active,
.lang-btn:hover {
    background: #00ff88;
    color: #1a1a2e;
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    margin: 3px 0;
    transition: 0.3s;
}

/* Enhanced Hero Section */
.hero {
    background: radial-gradient(ellipse at center, #667eea 0%, #764ba2 50%, #1a1a2e 100%);
    color: white;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Decorative Gears */
.hero-decorative-gears {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.deco-gear {
    position: absolute;
    color: rgba(0, 255, 136, 0.15);
    font-size: 3rem;
    animation: decorativeRotate 15s linear infinite;
}

.deco-gear-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    font-size: 2.5rem;
}

.deco-gear-2 {
    top: 25%;
    right: 8%;
    animation-delay: -5s;
    font-size: 2rem;
    animation-direction: reverse;
}

.deco-gear-3 {
    bottom: 30%;
    left: 8%;
    animation-delay: -10s;
    font-size: 3.5rem;
}

.deco-gear-4 {
    bottom: 15%;
    right: 5%;
    animation-delay: -7s;
    font-size: 2.8rem;
    animation-direction: reverse;
}

@keyframes decorativeRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-chip {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.2);
}

.chip-1 { top: 20%; left: 10%; animation-delay: 0s; }
.chip-2 { top: 60%; left: 85%; animation-delay: 2s; }
.chip-3 { top: 30%; left: 75%; animation-delay: 4s; }
.chip-4 { top: 70%; left: 15%; animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hero-badge i {
    color: #FFD700;
}

/* Hero Title Container */
.hero-title-container {
    position: relative;
    margin-bottom: 2rem;
}

.gear-system {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.3;
    width: 600px;
    height: 400px;
}

.mechanical-gears {
    width: 100%;
    height: 100%;
}

/* Interlocking Gear Animations */
.main-gear {
    animation: mainGearRotate 20s linear infinite;
}

.secondary-gear {
    animation: secondaryGearRotate 15s linear infinite reverse;
}

.third-gear {
    animation: thirdGearRotate 12s linear infinite;
}

@keyframes mainGearRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes secondaryGearRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes thirdGearRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.enhanced-title {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    font-family: 'Orbitron', 'Rajdhani', 'Exo 2', sans-serif;
    letter-spacing: 1px;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #FFD700 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
}

.highlight-text {
    color: #FFD700;
    font-weight: 600;
}

.hero-features {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    justify-content: space-around;
    width: 100%;
    max-width: 800px;
    margin: 2.5rem auto;
    z-index: 15;
    position: relative;
}

.floating-features .floating-item {
    animation: floatFeature 6s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.floating-item[data-delay="0.2s"] { --delay: 0.2s; }
.floating-item[data-delay="0.4s"] { --delay: 0.4s; }
.floating-item[data-delay="0.6s"] { --delay: 0.6s; }

@keyframes floatFeature {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    opacity: 0.9;
}

.feature-item i {
    color: #00ff88;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn::before {
    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.5s;
}

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

.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,107,53,0.6);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.5);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    overflow: visible;
    z-index: 5;
    position: relative;
}

.stat-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    padding: 1rem !important;
    border-radius: 10px !important;
    position: relative !important;
    z-index: 1 !important;
}

.stat-item.hover-enabled:hover {
    transform: translateY(-10px) scale(1.1) !important;
    background: rgba(0, 255, 136, 0.2) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.4) !important;
    z-index: 15 !important;
    border: 1px solid rgba(0, 255, 136, 0.5) !important;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
}

.stat-item.hover-enabled:hover .stat-number {
    color: #00ff88 !important;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5) !important;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}

/* Hero Visual - ALTECH Logo */
.hero-logo-container {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(4cm, -4cm);
}

.altech-logo {
    position: relative;
    z-index: 25;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.logo-svg {
    width: 100%;
    max-width: 450px;
    height: auto;
    animation: logoFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 25;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.altech-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,102,204,0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(0.8); 
        opacity: 0.3; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2); 
        opacity: 0.8; 
    }
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.component-card {
    position: absolute;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: cardFloat 4s ease-in-out infinite;
}

.card-1 { top: 10%; right: -10%; animation-delay: 0s; }
.card-2 { bottom: 20%; left: -15%; animation-delay: 1.5s; }
.card-3 { top: 50%; right: -20%; animation-delay: 3s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.component-card i {
    font-size: 1.5rem;
    color: #FFD700;
}

.component-card span {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
    animation: bounce 2s infinite;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
    opacity: 1;
    color: #00ff88;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-scroll-indicator span {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.hero-scroll-indicator:hover span {
    color: #00ff88;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 650px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 20;
}

/* Floating Component Cards */
.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 30;
    transform: translate(-5cm, 5cm);
}

.component-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 25px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
    animation: cardFloat 6s ease-in-out infinite;
}

.component-card i {
    color: #00ff88;
    font-size: 1.1rem;
}

.card-1 { 
    top: 1cm; 
    left: 1cm; 
    animation-delay: 0s; 
}

.card-2 { 
    bottom: 1cm; 
    right: 1cm; 
    animation-delay: 2s; 
}

.card-3 { 
    top: 2cm; 
    right: -2.8cm; 
    animation-delay: 4s; 
}

.card-4 { 
    top: 6cm; 
    right: 5cm; 
    animation-delay: 1s; 
}


@keyframes cardFloat {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-15px) scale(1.05); 
        opacity: 1;
    }
}

.about-svg {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
}

/* About Images */
.about-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.main-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.main-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.main-image:hover .image-overlay {
    transform: translateY(0);
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,102,204,0.9);
    color: white;
    padding: 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s;
}

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

/* About Highlights */
.about-highlights {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0,102,204,0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.highlight-item:hover {
    background: rgba(0,102,204,0.1);
    transform: translateX(5px);
}

.highlight-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.highlight-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.highlight-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Company Mission */
.company-mission {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052a3 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,102,204,0.3);
}

.company-mission h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.company-mission p {
    line-height: 1.8;
    opacity: 0.95;
    margin: 0;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,102,204,0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

/* Search Section */
.search-section {
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #667eea 50%, #764ba2 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.search-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255,215,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255,107,53,0.1) 0%, transparent 50%);
    animation: searchFloat 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes searchFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -10px) rotate(1deg); }
    66% { transform: translate(-10px, 15px) rotate(-1deg); }
}

.search-section .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.search-floating {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px;
    animation: float 6s ease-in-out infinite;
}

.search-chip-1 { top: 20%; left: 15%; animation-delay: 0s; }
.search-chip-2 { top: 70%; left: 80%; animation-delay: 3s; }
.search-chip-3 { top: 40%; left: 90%; animation-delay: 6s; }

@keyframes searchChipFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-25px) scale(1.1); opacity: 0.8; }
}

.search-box {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 2;
    animation: searchBoxGlow 4s ease-in-out infinite;
}

@keyframes searchBoxGlow {
    0%, 100% { box-shadow: var(--card-shadow), 0 0 0 rgba(255,215,0,0); }
    50% { box-shadow: var(--card-shadow), 0 0 30px rgba(255,215,0,0.3); }
}

.search-box input {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    background: transparent;
    color: white;
    font-size: 1.1rem;
    outline: none;
    font-weight: 500;
}

.search-box input::placeholder {
    color: rgba(255,255,255,0.7);
}

.btn-search {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 0 2.5rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

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

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

.btn-search:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: white;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    animation: titleGlow 6s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 4px 15px rgba(0,0,0,0.3); }
    50% { text-shadow: 0 4px 25px rgba(255,215,0,0.4), 0 0 30px rgba(255,215,0,0.2); }
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #667eea 50%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0,102,204,0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255,107,53,0.08) 0%, transparent 60%);
    animation: productsBgFloat 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes productsBgFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(10px, -5px) scale(1.02); }
    50% { transform: translate(-5px, 10px) scale(0.98); }
    75% { transform: translate(-8px, -8px) scale(1.01); }
}

.products .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.product-floating {
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-gold));
    border-radius: 2px;
    animation: productFloat 12s ease-in-out infinite;
    opacity: 0.6;
}

.prod-chip-1 { top: 15%; left: 10%; animation-delay: 0s; }
.prod-chip-2 { top: 25%; right: 15%; animation-delay: 4s; }
.prod-chip-3 { top: 60%; left: 20%; animation-delay: 8s; }
.prod-chip-4 { bottom: 20%; right: 25%; animation-delay: 2s; }

@keyframes productFloat {
    0%, 100% { transform: translateY(0) rotateZ(0deg); opacity: 0.4; }
    50% { transform: translateY(-30px) rotateZ(180deg); opacity: 0.8; }
}

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

.product-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.95) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,102,204,0.15);
    position: relative;
    overflow: hidden;
    animation: cardEntrance 0.6s ease-out;
}

@keyframes cardEntrance {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    margin-bottom: -1px;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-image img[src=""],
.product-image img:not([src]),
.product-image img[src="#"] {
    display: none;
}

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

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

.product-card .product-content {
    padding: 2rem;
}

.product-card h3,
.product-card ul,
.product-card .btn-view {
    position: relative;
    z-index: 2;
}

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

.product-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0,102,204,0.2);
    border-color: var(--accent-gold);
}

.product-card:hover .product-icon {
    animation-duration: 1s;
    color: white;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--secondary-color) 100%);
}

.product-card .product-icon {
    position: relative;
    top: auto;
    right: auto;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 2rem auto;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(0,102,204,0.3);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


.product-card h3 {
    color: var(--dark-color);
    margin: 1.5rem 2rem 1rem 2rem;
    font-size: 1.4rem;
}

.product-card ul {
    list-style: none;
    margin: 0 2rem 1.5rem 2rem;
}

.product-card ul li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1rem;
}

.product-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.btn-view {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s;
    margin: 0 2rem 2rem 2rem;
}

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

/* About Section */
.about {
    padding: 5rem 0;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #667eea 50%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    display: grid;
    gap: 2rem;
}

.about-text h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.about-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.8;
}


/* About Section Floating Elements */
.about-floating {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px;
    animation: float 6s ease-in-out infinite;
}

.about-chip-1 { top: 25%; left: 10%; animation-delay: 0s; }
.about-chip-2 { top: 65%; left: 85%; animation-delay: 2s; }
.about-chip-3 { top: 35%; left: 75%; animation-delay: 4s; }
.about-chip-4 { top: 75%; left: 15%; animation-delay: 1s; }

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    overflow: hidden;
    cursor: pointer;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.about-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
}

.card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.4));
    border-radius: 15px;
    transition: all 0.4s ease;
}

.card-icon i {
    font-size: 1.8rem;
    color: #00ff88;
    transition: all 0.4s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.4), rgba(0, 255, 136, 0.6));
}

.about-card:hover .card-icon i {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
}

.card-content {
    flex: 1;
    z-index: 2;
}

.card-content h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: all 0.4s ease;
}

.card-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.4s ease;
}

.about-card:hover .card-content h4 {
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.about-card:hover .card-content p {
    color: rgba(255, 255, 255, 1);
}

.feature i {
    font-size: 2rem;
    color: #00ff88;
}

.feature h4 {
    margin-bottom: 0.3rem;
    color: white;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #667eea 50%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

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

.service-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: white;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Services Section Floating Elements */
.service-floating {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px;
    animation: float 6s ease-in-out infinite;
}

.serv-chip-1 { top: 15%; left: 8%; animation-delay: 0s; }
.serv-chip-2 { top: 25%; left: 88%; animation-delay: 1.5s; }
.serv-chip-3 { top: 65%; left: 12%; animation-delay: 3s; }
.serv-chip-4 { top: 80%; left: 82%; animation-delay: 4.5s; }
.serv-chip-5 { top: 45%; left: 92%; animation-delay: 2s; }

/* Brands Section */
.brands {
    background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.brands::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0,102,204,0.02) 10px,
            rgba(0,102,204,0.02) 20px
        );
    pointer-events: none;
}

.brands-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.brand-item {
    padding: 1rem 2rem;
    background: white;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    font-weight: 500;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #667eea 50%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 40%, rgba(255,215,0,0.1) 0%, transparent 65%),
        radial-gradient(circle at 60% 60%, rgba(255,107,53,0.1) 0%, transparent 65%);
    animation: contactFloat 16s ease-in-out infinite;
    pointer-events: none;
}

@keyframes contactFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.contact .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.contact-floating {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px;
    animation: float 6s ease-in-out infinite;
}

.cont-chip-1 { top: 20%; left: 10%; animation-delay: 0s; }
.cont-chip-2 { top: 30%; right: 15%; animation-delay: 4s; }
.cont-chip-3 { bottom: 30%; left: 20%; animation-delay: 8s; }
.cont-chip-4 { bottom: 40%; right: 25%; animation-delay: 2s; }

@keyframes contactChipFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.3); opacity: 1; }
}

.contact-image {
    width: 100%;
    max-width: 400px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.contact-info h3 {
    margin-bottom: 2rem;
    color: white;
    font-size: 2rem;
    text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 35px;
    animation: infoIconGlow 4s ease-in-out infinite;
}

@keyframes infoIconGlow {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(255,215,0,0)); }
    50% { filter: drop-shadow(0 0 10px rgba(255,215,0,0.6)); }
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.info-item p {
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 2;
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: white;
    font-size: 1.8rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    color: white;
    outline: none;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 20px rgba(255,215,0,0.3);
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #0052a3;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

/* Sectors Section */
.sectors {
    padding: 5rem 0;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #667eea 50%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

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

.sector-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.15);
}

.sector-icon {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.sector-card:hover .sector-icon {
    transform: scale(1.1);
}

.sector-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.sector-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Sectors Section Floating Elements */
.sector-floating {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px;
    animation: float 6s ease-in-out infinite;
}

.sec-chip-1 { top: 10%; left: 5%; animation-delay: 0s; }
.sec-chip-2 { top: 20%; left: 90%; animation-delay: 1s; }
.sec-chip-3 { top: 40%; left: 8%; animation-delay: 2s; }
.sec-chip-4 { top: 60%; left: 87%; animation-delay: 3s; }
.sec-chip-5 { top: 75%; left: 12%; animation-delay: 4s; }
.sec-chip-6 { top: 85%; left: 85%; animation-delay: 5s; }

/* Enhanced Footer */
.footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f23 100%);
    color: white;
    padding: 4rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0,102,204,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,107,53,0.1) 0%, transparent 50%);
    animation: footerFloat 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes footerFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -25px) rotate(1deg); }
    50% { transform: translate(-20px, 35px) rotate(-1deg); }
    75% { transform: translate(-25px, -20px) rotate(0.5deg); }
}

.footer .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-floating {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(45deg, var(--accent-gold), var(--secondary-color));
    border-radius: 1px;
    animation: footerChipFloat 20s ease-in-out infinite;
    opacity: 0.4;
}

.foot-chip-1 { top: 20%; left: 5%; animation-delay: 0s; }
.foot-chip-2 { top: 60%; left: 95%; animation-delay: 7s; }
.foot-chip-3 { bottom: 30%; left: 10%; animation-delay: 14s; }
.foot-chip-4 { bottom: 70%; right: 8%; animation-delay: 3s; }
.foot-chip-5 { top: 40%; right: 50%; animation-delay: 10s; }

@keyframes footerChipFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-50px) rotate(180deg); opacity: 0.8; }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-mega-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
}

.footer-category {
    position: relative;
}

.footer-category h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-category h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-category ul {
    list-style: none;
}

.footer-category ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1rem;
}

.footer-category ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.footer-category ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-category ul li a:hover {
    color: white;
    padding-left: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0 1rem;
        min-height: calc(100vh - 80px);
        overflow-x: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    body {
        overflow-x: hidden;
        padding-top: 80px;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: auto;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin: 2rem 0 1.5rem 0;
        order: 3;
        gap: 1rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 0 1rem;
        order: 2;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0.5rem;
        padding: 0 1.5rem;
        margin: 1.5rem 0 1rem 0;
        order: 4;
        width: 100%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stat-item {
        flex: 1;
        text-align: center;
        font-size: 0.7rem;
        min-width: auto;
    }
    
    .stat-item .stat-number {
        font-size: 1rem !important;
        font-weight: 600;
        display: block;
    }
    
    .stat-item .stat-label {
        font-size: 0.6rem !important;
        margin-top: 0.2rem;
        line-height: 1.2;
    }
    
    .stat-divider {
        width: 1px;
        height: 30px;
        background: rgba(0, 255, 136, 0.3);
        flex-shrink: 0;
    }
    
    .floating-cards {
        display: none;
    }
    
    .hero-logo-container {
        position: static !important;
        transform: none !important;
        margin: 2rem auto 1.5rem auto;
        max-width: 220px;
        width: 100%;
        order: 1;
    }
    
    .logo-svg {
        width: 100% !important;
        max-width: 250px !important;
        height: auto !important;
    }
    
    .altech-logo::before {
        display: none;
    }
    
    .gear-system {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-gallery {
        grid-template-columns: 1fr;
    }
    
    .about-highlights {
        gap: 1rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .main-image img {
        height: 250px;
    }
    
    .footer-mega-menu {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.98) !important;
        backdrop-filter: blur(15px);
        width: 100% !important;
        height: calc(100vh - 80px);
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        z-index: 9999;
        border-top: 2px solid #00ff88;
        padding-top: 2rem;
        overflow-y: auto;
    }

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

    .nav-list {
        flex-direction: column !important;
        padding: 0 !important;
        gap: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        width: 100%;
    }
    
    .nav-list li {
        padding: 1rem 0 !important;
        border-bottom: 1px solid rgba(0, 255, 136, 0.2);
        width: 100%;
        margin: 0 !important;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        color: white !important;
        font-size: 1.3rem !important;
        font-weight: 600 !important;
        display: block !important;
        padding: 1rem 2rem !important;
        transition: all 0.3s ease;
        text-decoration: none !important;
        width: 100%;
        background: transparent !important;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: #00ff88 !important;
        background: rgba(0, 255, 136, 0.15) !important;
        text-shadow: 0 0 15px rgba(0, 255, 136, 0.7) !important;
        transform: translateX(10px);
    }

    .hamburger {
        display: flex;
        z-index: 10000;
        position: relative;
        background: transparent;
        border: none;
        cursor: pointer;
    }
    
    .hamburger span {
        background: rgba(255, 255, 255, 0.9);
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background: #00ff88;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background: #00ff88;
    }
    
    .lang-switcher {
        display: flex;
        gap: 0.5rem;
        margin-left: 1rem;
    }
    
    .lang-btn {
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0.3rem 0.6rem;
        border-radius: 4px;
        font-size: 0.8rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .lang-btn.active,
    .lang-btn:hover {
        background: #00ff88;
        color: #1a1a2e;
        border-color: #00ff88;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0.5rem 0 !important;
        min-height: 100vh !important;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-description {
        font-size: 0.85rem !important;
        padding: 0 0.5rem !important;
        line-height: 1.4 !important;
    }
    
    .hero-logo-container {
        max-width: 180px !important;
        margin: 1.5rem auto 1rem auto !important;
    }
    
    .logo-svg {
        max-width: 200px !important;
    }
    
    .hero-features {
        gap: 1rem !important;
    }
    
    .feature-item {
        font-size: 0.8rem !important;
    }
    
    .hero-stats {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 0.3rem !important;
        padding: 0 1rem !important;
        margin: 1rem 0 0.5rem 0 !important;
        order: 4 !important;
        width: 100% !important;
        max-width: 320px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .stat-item {
        flex: 1 !important;
        text-align: center !important;
        font-size: 0.6rem !important;
        min-width: auto !important;
    }
    
    .stat-item .stat-number {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        display: block !important;
    }
    
    .stat-item .stat-label {
        font-size: 0.55rem !important;
        margin-top: 0.1rem !important;
        line-height: 1.1 !important;
    }
    
    .stat-divider {
        width: 1px !important;
        height: 25px !important;
        background: rgba(0, 255, 136, 0.3) !important;
        flex-shrink: 0 !important;
    }
    
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .footer-mega-menu {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin: 1.5rem 0 1rem 0 !important;
        order: 3 !important;
        gap: 0.8rem !important;
    }

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

    .stats {
        justify-content: space-around;
    }

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