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

/* ===== CSS RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d4ff;
    --secondary-color: #00897b;
    --accent-color: #ff6b6b;
    --dark-color: #1a1f3a;
    --darker-color: #0f1729;
    --card-dark: #242b42;
    --light-color: #e8eaf0;
    --text-color: #e8eaf0;
    --text-light: #a0a8c0;
    --text-muted: #6b7280;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    --gradient-3: linear-gradient(135deg, #667eea 0%, #4c9aff 100%);
    --gradient-4: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #00d4ff 100%);
    --gradient-5: linear-gradient(-45deg, #1a1f3a, #0a0e27, #667eea, #00d4ff);
    --gradient-6: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #667eea 100%);
    --gradient-mesh: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.7);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --glow: 0 0 30px rgba(0, 212, 255, 0.3);
    --glow-strong: 0 0 40px rgba(0, 212, 255, 0.6), 0 0 80px rgba(102, 126, 234, 0.4);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    background: #1a2332;
}

/* Animated particles background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(118, 75, 162, 0.03) 0%, transparent 50%);
    background-size: 100% 100%;
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes particleFloat {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 0%;
    }
    33% {
        background-position: 100% 50%, 0% 50%, 50% 100%;
    }
    66% {
        background-position: 50% 100%, 50% 0%, 0% 50%;
    }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, rgba(36, 43, 66, 0.4), rgba(26, 31, 58, 0.3), rgba(102, 126, 234, 0.15), rgba(0, 212, 255, 0.1));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* Parallax smooth transitions */
.section-header,
.about-image img {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Scroll offset for fixed navbar */
section {
    scroll-margin-top: 80px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 31, 58, 0.75);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 0 2px 30px rgba(0, 212, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4), 0 0 60px rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6), 0 0 80px rgba(102, 126, 234, 0.3);
}

.logo h2 {
    font-size: 1.8rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.logo span {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 2px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-menu a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}

.hamburger:hover span {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: var(--gradient-5);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/xray-digital-installation.jpeg') center/cover;
    opacity: 0.2;
    animation: zoom 20s infinite alternate;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 30px rgba(102, 126, 234, 0.3);
    animation: fadeInScale 1s ease-out forwards, float 3s ease-in-out 1s infinite;
    letter-spacing: -1px;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.typewriter-container {
    font-size: 1.5rem;
    margin: 1.5rem 0;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.typewriter-static {
    color: rgba(255, 255, 255, 0.9);
}

.typewriter-text {
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 0.5rem;
    background: linear-gradient(135deg, #00d4ff, #0099ff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 3s ease-in-out infinite;
    background-size: 200% auto;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

@keyframes shimmerText {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.typewriter-cursor {
    color: var(--primary-color);
    font-weight: 300;
    animation: blink 0.8s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4), 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    backdrop-filter: blur(10px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-2);
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.5), 0 10px 30px rgba(0, 0, 0, 0.5);
    color: white;
    filter: brightness(1.2);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4), 0 0 0 0 rgba(0, 212, 255, 0.7);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4), 0 0 0 20px rgba(0, 212, 255, 0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
    animation: float 2s infinite;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 3px;
    animation: scroll 2s infinite;
    box-shadow: 0 0 15px var(--primary-color);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 0.8s forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    background: var(--gradient-4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: none;
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.2));
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-2);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: slideShine 2s infinite;
}

@keyframes slideShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 6rem 0;
    background: var(--dark-color);
    position: relative;
    z-index: 2;
}

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

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-glass), 0 0 40px rgba(102, 126, 234, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.about-image img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 30px 70px rgba(102, 126, 234, 0.4), 0 0 60px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

/* ===== MISSION & VISION ===== */
.mission-vision {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a2332 0%, #242b42 100%);
    position: relative;
    z-index: 2;
}

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

.mv-card {
    background: rgba(36, 43, 66, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-glass), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

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

.mv-card:hover {
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.4), 0 0 60px rgba(0, 212, 255, 0.2);
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-4);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 35px rgba(102, 126, 234, 0.4), 0 0 30px rgba(0, 212, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.mv-card:hover .mv-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.6), 0 0 40px rgba(0, 212, 255, 0.4);
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== VALUES SECTION ===== */
.values {
    padding: 6rem 0;
    background: #1a2332;
    position: relative;
    z-index: 2;
}

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

.value-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 20px;
    color: white;
    border: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-glass), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s;
}

.value-card:hover::before {
    transform: scale(1);
}

.value-card:hover {
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.5), 0 0 60px rgba(102, 126, 234, 0.3);
    border-color: var(--primary-color);
    transform: translateY(-8px) scale(1.02) rotateX(2deg);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.3;
    margin-bottom: 0.5rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 3s ease-in-out infinite;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 6rem 0;
    background: var(--dark-color);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.products::before,
.products::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

.products::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.products::after {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
    animation-duration: 12s;
}

.category-section {
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.category-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    padding-left: 20px;
    border-left: 4px solid transparent;
    border-image: var(--gradient-2) 1;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 11;
    font-weight: 700;
    letter-spacing: -0.5px;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.2));
    transition: all 0.3s ease;
}

.category-section h3:hover {
    padding-left: 30px;
    filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.4));
}

.category-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-2);
}

.category-desc {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 11;
}

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

.product-card {
    background: rgba(36, 43, 66, 0.7);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-glass), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(0, 212, 255, 0.15);
    z-index: 1;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-4);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

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

.product-card:hover {
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.4), 0 0 50px rgba(0, 212, 255, 0.2);
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(0, 212, 255, 0.4);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.95);
}

.product-card:hover .product-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.product-card h4 {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-color);
    font-size: 1.1rem;
}

/* ===== PARTNERS SECTION ===== */
.partners {
    padding: 6rem 0;
    background: #1a2332;
    position: relative;
    z-index: 2;
}

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

.partner-card {
    background: rgba(36, 43, 66, 0.6);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 212, 255, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
    transition: left 0.5s;
}

.partner-card:hover::before {
    left: 100%;
}

.partner-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4), 0 0 40px rgba(0, 212, 255, 0.2);
    transform: translateY(-8px) scale(1.05);
}

.partner-card img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-card:hover img {
    filter: grayscale(0%);
}

/* ===== STOCK INVENTORY SECTION ===== */
.stock-inventory {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a2332 0%, #242b42 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.stock-inventory::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.stock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.stock-item {
    background: rgba(36, 43, 66, 0.7);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-glass), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.stock-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-4);
    transform: scaleX(0);
    transition: transform 0.3s;
    z-index: 10;
}

.stock-item:hover::before {
    transform: scaleX(1);
}

.stock-item:hover {
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.4), 0 0 50px rgba(0, 212, 255, 0.2);
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
}

.stock-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.stock-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.95);
}

.stock-item:hover .stock-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.stock-info {
    padding: 2rem;
    text-align: center;
}

.stock-info h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.stock-info p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 6rem 0;
    background: #1a2332;
    color: white;
    position: relative;
    z-index: 2;
}

.services .section-header h2 {
    color: var(--text-color);
}

.services-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.service-box {
    background: rgba(36, 43, 66, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-glass), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-box:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.4), 0 0 50px rgba(0, 212, 255, 0.2);
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-box p {
    line-height: 1.8;
    opacity: 0.9;
}

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements {
    padding: 6rem 0;
    background: var(--dark-color);
    position: relative;
    z-index: 2;
}

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

.achievement-card {
    background: rgba(36, 43, 66, 0.7);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-glass), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.achievement-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-4);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    border-radius: 15px;
}

.achievement-card:hover {
    box-shadow: 0 30px 70px rgba(102, 126, 234, 0.5), 0 0 60px rgba(0, 212, 255, 0.3);
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0, 212, 255, 0.4);
}

.achievement-card:hover::after {
    opacity: 0.05;
}

.achievement-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.95);
}

.achievement-card:hover .achievement-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

.achievement-content {
    padding: 2rem;
}

.achievement-content h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.achievement-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.clientele {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(36, 43, 66, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow: var(--shadow-glass), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.clientele h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.clients-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.client-item {
    background: var(--gradient-2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-item:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 4rem 0;
    background: var(--gradient-5);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: white;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.stats::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%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 50px rgba(255, 255, 255, 0.5);
    }
}

.stat-number::after {
    content: '+';
}

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

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 6rem 0;
    background: #1a2332;
    position: relative;
    z-index: 2;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-4);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-icon:hover {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.7), 0 0 30px rgba(0, 212, 255, 0.4);
}

.info-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(36, 43, 66, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1), 0 0 20px rgba(0, 212, 255, 0.2);
    background: rgba(36, 43, 66, 0.8);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #0f1729 0%, #0a0e1f 100%);
    color: white;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    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: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 212, 255, 0.2);
        border-top: 1px solid rgba(0, 212, 255, 0.1);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

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

/* ===== SCROLL ANIMATIONS ===== */
.fade-in,
.fade-in-up,
.fade-in-left,
.fade-in-right {
    animation-play-state: paused;
}

.animate {
    animation-play-state: running !important;
}

/* ===== RIPPLE EFFECT ===== */
.btn-primary,
.client-item {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: rippleAnimation 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===== ENHANCED ACTIVE NAV STATE ===== */
.nav-menu a.active {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

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

/* ===== SMOOTH PAGE TRANSITIONS ===== */
body.loaded {
    animation: fadeInBody 0.5s ease-out;
}

@keyframes fadeInBody {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== ENHANCED GLOW EFFECTS ===== */
@keyframes subtleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.6));
    }
}

/* ===== CARD PERSPECTIVE ===== */
.mv-card,
.value-card,
.product-card,
.achievement-card,
.partner-card,
.service-box,
.stock-item {
    transform-style: preserve-3d;
    will-change: transform;
}

/* ===== SMOOTH TRANSITIONS FOR ALL INTERACTIVE ELEMENTS ===== */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GRADIENT ANIMATION ENHANCEMENT ===== */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(10deg);
    }
    100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
}
