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

:root {
    /* Primary Colors - Green from logo */
    --primary-color: #7cbf3f;
    --primary-hover: #6aa835;
    --primary-light: #8cd149;
    
    /* Secondary Colors - Blue from logo */
    --secondary-color: #2E5C9A;
    --secondary-hover: #1e3f6f;
    --secondary-light: #4a7bc8;
    --accent-color: #10b981;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-lighter: #f1f5f9;
    --bg-gray: #e2e8f0;
    
    /* Text Colors */
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --text-light-gray: #94a3b8;
    --text-white: #ffffff;
    
    /* Gradients - Logo-inspired combinations */
    --gradient-primary: linear-gradient(135deg, #7cbf3f 0%, #8cd149 100%);
    --gradient-secondary: linear-gradient(135deg, #2E5C9A 0%, #4a7bc8 100%);
    --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    --gradient-accent: linear-gradient(135deg, #7cbf3f 0%, #2E5C9A 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(124, 191, 63, 0.15);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
}

body {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbars across all browsers */
::-webkit-scrollbar {
    display: none;
}

*::-webkit-scrollbar {
    display: none;
}

/* ====================================================================
   2. UTILITY CLASSES
   ==================================================================== */

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

.section-title {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-3xl);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: var(--radius-sm);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

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

.btn-accent {
    background: var(--gradient-accent);
    color: var(--text-white);
    border: none;
    box-shadow: 
        0 8px 20px rgba(46, 92, 154, 0.3),
        0 3px 8px rgba(124, 191, 63, 0.2);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 25px rgba(46, 92, 154, 0.4),
        0 5px 12px rgba(124, 191, 63, 0.3);
}

/* ====================================================================
   3. ENHANCED 3D NAVIGATION
   ==================================================================== */

/* Navigation Background Effects */
.navbar-background {
    display: none;
}

.nav-particles {
    display: none;
}

.nav-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: navParticleFloat 6s ease-in-out infinite;
}

.nav-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.nav-particle:nth-child(2) { top: 60%; left: 90%; animation-delay: 2s; }
.nav-particle:nth-child(3) { top: 40%; left: 70%; animation-delay: 4s; }
.nav-particle:nth-child(4) { top: 80%; left: 30%; animation-delay: 1s; }
.nav-particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 3s; }

@keyframes navParticleFloat {
    0%, 100% { transform: translateY(0px) scale(0.5); opacity: 0.3; }
    50% { transform: translateY(-10px) scale(1); opacity: 1; }
}

/* Enhanced Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: all var(--transition-slow);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, 
        rgba(124, 191, 63, 0.1) 0%, 
        rgba(46, 92, 154, 0.05) 50%, 
        rgba(124, 191, 63, 0.1) 100%); */
    z-index: -1;
    transition: all var(--transition-slow);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(124, 191, 63, 0.5) 50%, 
        transparent 100%);
    animation: navUnderlineGlow 3s ease-in-out infinite;
}

@keyframes navUnderlineGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.navbar.scrolled {
    background: rgba(30, 41, 59, 0.15);
    backdrop-filter: blur(25px) saturate(200%);
    border-bottom: 1px solid rgba(124, 191, 63, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.navbar.scrolled::before {
    background: linear-gradient(135deg, 
        rgba(124, 191, 63, 0.2) 0%, 
        rgba(46, 92, 154, 0.1) 50%, 
        rgba(124, 191, 63, 0.15) 100%);
}

/* ====================================================================
   PROFESSIONAL LOADING SCREEN
   ==================================================================== */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    letter-spacing: 2px;
}

.loading-logo .logo-accent {
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-top-color: #00d4ff;
    animation-duration: 0.8s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-top-color: rgba(255, 255, 255, 0.6);
    animation-duration: 1.2s;
}

.loading-text {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
    animation: pulse 2s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Enhanced Navigation Container */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* 3D Logo with Logo-inspired Design */
.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    padding: 0.5rem;
}

.logo-image {
    height: 75px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

/* Hover effect removed for simple logo */

/* Simple logo - no before pseudo-element needed */

/* Simple logo - no hover effects */

/* Simple logo - no hover effects */

.nav-logo .logo-accent {
    color: var(--primary-color);
    margin: 0 2px;
    font-size: 2rem;
    transition: all var(--transition-normal);
}

.nav-logo:hover .logo-accent {
    color: var(--primary-light);
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(124, 191, 63, 0.7));
}

.nav-logo i {
    margin-right: var(--spacing-sm);
    font-size: 2rem;
    transition: all var(--transition-normal);
    animation: logoRotate 8s linear infinite;
}

.nav-logo:hover i {
    transform: rotateY(360deg) scale(1.2);
    color: var(--primary-light);
    filter: drop-shadow(0 0 10px rgba(124, 191, 63, 0.7));
}

@keyframes logoRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* Enhanced Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

.nav-menu:hover::before {
    left: 100%;
}

.nav-item {
    position: relative;
    transform-style: preserve-3d;
}

/* 3D Navigation Links */
.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    position: relative;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    display: block;
    transform-style: preserve-3d;
    cursor: pointer;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transform: translateZ(-1px) scale(0);
    transition: all var(--transition-normal);
    border-radius: var(--radius-lg);
    z-index: -1;
}

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

.nav-link:hover::before,
.nav-link.active::before {
    transform: translateZ(-1px) scale(1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
    transform: translateY(-3px) translateZ(5px);
    box-shadow: 
        0 8px 25px rgba(124, 191, 63, 0.3),
        0 3px 10px rgba(124, 191, 63, 0.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Scrolled State Navigation Links */
.navbar.scrolled .nav-link {
    color: var(--text-white);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--text-white);
    text-shadow: 0 0 15px rgba(124, 191, 63, 0.8);
}

.navbar.scrolled .nav-logo {
    /* Simple logo - no special scrolled effects */
}

.navbar.scrolled .nav-logo .logo-image {
    /* Simple logo - no special scrolled effects */
}

/* Enhanced 3D Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 30px;
    justify-content: space-between;
    position: relative;
    transform-style: preserve-3d;
    transition: all var(--transition-normal);
}

.hamburger:hover {
    transform: translateZ(5px) scale(1.1);
}

.bar {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    position: relative;
    transform-style: preserve-3d;
    box-shadow: 
        0 2px 4px rgba(124, 191, 63, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: var(--radius-sm);
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
}

.hamburger:hover .bar::before {
    transform: translateX(100%);
}

.hamburger:hover .bar {
    background: var(--primary-light);
    box-shadow: 
        0 4px 8px rgba(124, 191, 63, 0.4),
        0 0 15px rgba(124, 191, 63, 0.3);
}

.navbar.scrolled .bar {
    background: var(--primary-light);
    box-shadow: 
        0 2px 4px rgba(124, 191, 63, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Mobile Menu Animation */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--accent-color);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-100%);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--accent-color);
}

/* Navigation Indicator */
.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: all var(--transition-slow);
    z-index: 3;
    box-shadow: 0 -2px 10px rgba(124, 191, 63, 0.5);
}

/* Enhanced Mobile Navigation */
.nav-menu.mobile {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: left var(--transition-slow);
    padding: var(--spacing-2xl) 0;
    gap: var(--spacing-lg);
    border-radius: 0;
    border: none;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 999;
}

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

.nav-menu.mobile::before {
    background: linear-gradient(180deg, transparent, rgba(124, 191, 63, 0.1), transparent);
    left: 0;
}

.nav-menu.mobile .nav-link {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-lg);
    font-size: 1.2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(124, 191, 63, 0.1);
}

.nav-menu.mobile .nav-link:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: var(--primary-color);
}

.navbar.scrolled .nav-menu.mobile {
    background: rgba(30, 41, 59, 0.95);
}

.navbar.scrolled .nav-menu.mobile::before {
    background: linear-gradient(180deg, transparent, rgba(124, 191, 63, 0.2), transparent);
}

/* Navigation Loading Effect */
.nav-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.nav-loading.active {
    transform: scaleX(1);
}

/* Search Integration */
.nav-search {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.nav-search:hover,
.nav-search:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(124, 191, 63, 0.3);
}

.nav-search input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    width: 200px;
    transition: all var(--transition-normal);
}

.nav-search input::placeholder {
    color: rgba(100, 116, 139, 0.7);
}

.nav-search i {
    color: var(--primary-color);
    margin-right: var(--spacing-sm);
}

.navbar.scrolled .nav-search input {
    color: var(--text-white);
}

.navbar.scrolled .nav-search input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* ====================================================================
   4. HERO SECTION
   ==================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px var(--spacing-md) 60px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 102, 255, 0.1) 0%,
        rgba(0, 170, 255, 0.05) 30%,
        transparent 70%
    );
    z-index: 4;
    animation: heroRadialGlow 8s ease-in-out infinite;
}

@keyframes heroRadialGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(1.2) contrast(0.8) saturate(0.8);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 2;
    backdrop-filter: blur(1px);
    animation: overlayPulse 6s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.2) 100%
        );
    }
    50% {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.25) 50%,
            rgba(0, 0, 0, 0.15) 100%
        );
    }
}

.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(46, 92, 154, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 92, 154, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 3;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

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

.floating-element {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #0066ff, #00aaff);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    box-shadow: 
        0 0 15px rgba(0, 102, 255, 0.6),
        0 0 30px rgba(0, 170, 255, 0.4);
}

.floating-element::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: elementGlow 4s ease-in-out infinite;
}

@keyframes elementGlow {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-30px) rotate(90deg);
        opacity: 1;
    }
    50% { 
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.9;
    }
    75% { 
        transform: translateY(-25px) rotate(270deg);
        opacity: 1;
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 5;
    position: relative;
    padding: 0 var(--spacing-md);
    animation: heroFadeInUp 1.2s ease-out;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 900px;
    animation: heroTextSlideIn 1.5s ease-out 0.3s both;
}

.hero-title {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
    color: #ffffff;
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.9),
        0 8px 16px rgba(0, 0, 0, 0.7),
        0 12px 24px rgba(0, 0, 0, 0.5),
        0 2px 4px rgba(255, 255, 255, 0.1);
    letter-spacing: -2px;
    position: relative;
    animation: heroTitleGlow 3s ease-in-out infinite alternate;
}

.gradient-text {
    color: #7cbf3f;
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.2),
        0 0 10px rgba(124, 191, 63, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.7;
    text-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.8),
        0 6px 12px rgba(0, 0, 0, 0.6),
        0 1px 2px rgba(255, 255, 255, 0.1);
    max-width: 650px;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    animation: heroSubtitleFadeIn 2s ease-out 0.8s both;
}

.hero-subtitle::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: underlineGlow 3s ease-in-out infinite;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
    animation: heroButtonsSlideUp 2s ease-out 1.2s both;
}

.hero-buttons .btn {
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 25px rgba(46, 92, 154, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: var(--spacing-lg) var(--spacing-2xl);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.hero-buttons .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.6s ease;
}

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

.hero-buttons .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(46, 92, 154, 0.5),
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-image {
    display: none; /* Hidden for cleaner video background focus */
}

.tech-illustration {
    position: relative;
    width: 400px;
    height: 400px;
}

.circuit-board {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius-lg);
    background: rgba(46, 92, 154, 0.05);
    animation: pulse 3s ease-in-out infinite;
}

.circuit-line {
    position: absolute;
    background: var(--secondary-color);
    animation: circuitFlow 2s ease-in-out infinite;
}

.circuit-line:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 80%;
    height: 2px;
}

.circuit-line:nth-child(2) {
    top: 10%;
    left: 50%;
    width: 2px;
    height: 30%;
}

.circuit-line:nth-child(3) {
    top: 60%;
    left: 20%;
    width: 60%;
    height: 2px;
}

.circuit-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: nodeGlow 2s ease-in-out infinite;
}

.circuit-node:nth-child(4) {
    top: 18%;
    left: 48%;
}

.circuit-node:nth-child(5) {
    top: 18%;
    left: 85%;
}

.circuit-node:nth-child(6) {
    top: 58%;
    left: 75%;
}

.hologram {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--secondary-color);
    animation: hologramFloat 4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(46, 92, 154, 0.5);
    filter: drop-shadow(0 0 10px rgba(46, 92, 154, 0.3));
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(46, 92, 154, 0.3); }
    50% { box-shadow: 0 0 40px rgba(46, 92, 154, 0.6); }
}

@keyframes circuitFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes nodeGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(46, 92, 154, 0.5); }
    50% { box-shadow: 0 0 20px rgba(46, 92, 154, 1); }
}

@keyframes hologramFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        text-shadow: 0 0 20px rgba(46, 92, 154, 0.5);
    }
    25% { 
        transform: translate(-50%, -50%) rotate(45deg) scale(1.05);
        text-shadow: 0 0 30px rgba(46, 92, 154, 0.8);
    }
    50% { 
        transform: translate(-50%, -50%) rotate(90deg) scale(1.1);
        text-shadow: 0 0 40px rgba(46, 92, 154, 1);
    }
    75% { 
        transform: translate(-50%, -50%) rotate(135deg) scale(1.05);
        text-shadow: 0 0 30px rgba(46, 92, 154, 0.8);
    }
}

/* ====================================================================
   HERO SECTION ANIMATIONS
   ==================================================================== */

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

@keyframes heroTextSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroTitleGlow {
    0% {
        text-shadow: 
            0 4px 8px rgba(0, 0, 0, 0.9),
            0 8px 16px rgba(0, 0, 0, 0.7),
            0 12px 24px rgba(0, 0, 0, 0.5),
            0 2px 4px rgba(255, 255, 255, 0.1);
    }
    100% {
        text-shadow: 
            0 4px 8px rgba(0, 0, 0, 0.9),
            0 8px 16px rgba(0, 0, 0, 0.7),
            0 12px 24px rgba(0, 0, 0, 0.5),
            0 2px 4px rgba(255, 255, 255, 0.3),
            0 0 20px rgba(255, 255, 255, 0.2);
    }
}

@keyframes gradientTextPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.02);
        filter: brightness(1.1);
    }
}

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

@keyframes heroSubtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.2);
    }
}

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

/* ====================================================================
   5. FEATURES SECTION
   ==================================================================== */

.features {
    padding: 100px 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(124, 191, 63, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 191, 63, 0.1), transparent);
    transition: left var(--transition-slow);
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    transition: transform var(--transition-normal);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ====================================================================
   6. TECH STACK SECTION
   ==================================================================== */

.tech-stack {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f4 50%, #e8f5e8 100%);
    position: relative;
    overflow: visible;
}

.tech-stack-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 1;
    background: radial-gradient(circle at 30% 20%, rgba(124, 191, 63, 0.1) 0%, transparent 50%), 
                radial-gradient(circle at 70% 80%, rgba(46, 92, 154, 0.1) 0%, transparent 50%),
                linear-gradient(45deg, transparent 40%, rgba(124, 191, 63, 0.03) 50%, transparent 60%);
}

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

.floating-icon {
    position: absolute;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.08;
    animation: floatTech 12s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(124, 191, 63, 0.3);
    filter: blur(0.5px);
}

.floating-icon:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    font-size: 2.5rem;
}

.floating-icon:nth-child(2) {
    top: 25%;
    right: 12%;
    animation-delay: 2s;
    font-size: 3.5rem;
}

.floating-icon:nth-child(3) {
    bottom: 35%;
    left: 15%;
    animation-delay: 4s;
    font-size: 2.8rem;
}

.floating-icon:nth-child(4) {
    bottom: 15%;
    right: 8%;
    animation-delay: 6s;
    font-size: 3.2rem;
}

.floating-icon:nth-child(5) {
    top: 55%;
    left: 65%;
    animation-delay: 8s;
    font-size: 2.6rem;
}

.floating-icon:nth-child(6) {
    top: 35%;
    right: 45%;
    animation-delay: 10s;
    font-size: 3rem;
}

@keyframes floatTech {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.08;
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.1);
        opacity: 0.12;
    }
    50% {
        transform: translateY(-15px) rotate(180deg) scale(0.9);
        opacity: 0.15;
    }
    75% {
        transform: translateY(15px) rotate(270deg) scale(1.05);
        opacity: 0.1;
    }
}

.tech-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    position: relative;
    z-index: 2;
}

.tech-header .section-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.tech-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.tech-carousel {
    position: relative;
    z-index: 2;
}

.tech-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.tech-tab {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--bg-white);
    border: 2px solid rgba(124, 191, 63, 0.3);
    border-radius: var(--radius-full);
    color: var(--text-gray);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tech-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left var(--transition-normal);
    z-index: -1;
}

.tech-tab:hover::before,
.tech-tab.active::before {
    left: 0;
}

.tech-tab:hover,
.tech-tab.active {
    color: var(--text-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.tech-tab i {
    font-size: 1.2rem;
}

.tech-content {
    position: relative;
    min-height: 500px;
}

.tech-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-slow);
}

.tech-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tech-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.tech-card {
    background: var(--bg-white);
    border: 1px solid rgba(124, 191, 63, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 191, 63, 0.1), transparent);
    transition: left 0.7s ease;
}

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

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.tech-card.featured {
    background: linear-gradient(135deg, rgba(124, 191, 63, 0.1), rgba(46, 92, 154, 0.1));
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.tech-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    font-size: 2rem;
    color: var(--text-white);
    transition: all var(--transition-normal);
}

.tech-card:hover .tech-icon {
    transform: scale(1.1) rotate(360deg);
}

.tech-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
}

.tech-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    font-size: 0.95rem;
}

.tech-level {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.tech-level span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    min-width: 80px;
}

.level-bar {
    flex: 1;
    height: 8px;
    background: rgba(124, 191, 63, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.level-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    transition: width 0.8s ease;
    position: relative;
}

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

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

/* ====================================================================
   7. CALL TO ACTION SECTION
   ==================================================================== */

.cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-white);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    color: var(--text-white);
    opacity: 0.9;
}

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

.cta .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* ====================================================================
   8. FOOTER
   ==================================================================== */

.footer {
    /* background: var(--bg-lighter); */
    padding: 60px 0 20px;
    border-top: 1px solid rgba(124, 191, 63, 0.1);
}

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

.footer-section h4 {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all var(--transition-normal);
}

.footer-logo:hover .footer-logo-image {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.footer-section p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section ul li i {
    margin-right: var(--spacing-sm);
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(124, 191, 63, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(124, 191, 63, 0.1);
    color: var(--text-gray);
}

/* ====================================================================
   9. ADDITIONAL PAGES STYLES
   ==================================================================== */

.page-hero {
    padding: 150px 0 100px;
    /* background: var(--gradient-primary); */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.page-title {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 2rem;
    color: var(--text-white);
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* ====================================================================
   ABOUT US HERO SECTION - FULL WIDTH BACKGROUND IMAGE
   ==================================================================== */

.about-hero {
    position: relative;
    width: 100vw;
    height: 80vh;
    min-height: 600px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('about us.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(30, 41, 59, 0.4) 25%,
        rgba(46, 92, 154, 0.3) 50%,
        rgba(30, 41, 59, 0.4) 75%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
    animation: overlayPulse 8s ease-in-out infinite;
}

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

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 0 var(--spacing-md);
    animation: aboutContentSlideIn 1.5s ease-out;
}

.about-hero-title {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: var(--spacing-xl);
    text-shadow: 
        0 8px 30px rgba(0,0,0,0.9),
        0 4px 15px rgba(0,0,0,0.7),
        0 2px 8px rgba(0,0,0,0.5),
        0 1px 3px rgba(0,0,0,0.3),
        0 0 20px rgba(124, 191, 63, 0.3);
    letter-spacing: -2px;
    line-height: 1.1;
    position: relative;
    animation: aboutTitleGlow 3s ease-in-out infinite alternate;
}

.about-hero-title::before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #7cbf3f, transparent);
    border-radius: 2px;
    animation: titleUnderlineGlow 2s ease-in-out infinite;
}

@keyframes aboutTitleGlow {
    0% {
        text-shadow: 
            0 8px 30px rgba(0,0,0,0.9),
            0 4px 15px rgba(0,0,0,0.7),
            0 2px 8px rgba(0,0,0,0.5),
            0 1px 3px rgba(0,0,0,0.3),
            0 0 20px rgba(124, 191, 63, 0.3);
        filter: brightness(1);
    }
    100% {
        text-shadow: 
            0 8px 30px rgba(0,0,0,0.9),
            0 4px 15px rgba(0,0,0,0.7),
            0 2px 8px rgba(0,0,0,0.5),
            0 1px 3px rgba(0,0,0,0.3),
            0 0 30px rgba(124, 191, 63, 0.6),
            0 0 40px rgba(124, 191, 63, 0.4);
        filter: brightness(1.1);
    }
}

@keyframes titleUnderlineGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.2);
    }
}

.about-hero-subtitle {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 
        0 6px 20px rgba(0,0,0,0.9),
        0 3px 12px rgba(0,0,0,0.7),
        0 2px 6px rgba(0,0,0,0.5),
        0 1px 3px rgba(0,0,0,0.3),
        0 0 15px rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    animation: aboutSubtitleFadeIn 2s ease-out 0.5s both;
}

.about-hero-subtitle::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: subtitleUnderlineFloat 3s ease-in-out infinite;
}

@keyframes aboutSubtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes subtitleUnderlineFloat {
    0%, 100% {
        opacity: 0.4;
        transform: translateX(-50%) scaleX(0.6);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scaleX(1.4);
    }
}

/* Responsive Design for About Hero */
@media (max-width: 1024px) {
    .about-hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .about-hero-bg {
        background-attachment: scroll;
    }
    
    .about-hero-title {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }
    
    .about-hero-subtitle {
        font-size: 1.3rem;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 60vh;
        min-height: 450px;
    }
    
    .about-hero-title {
        font-size: 2.8rem;
        margin-bottom: var(--spacing-lg);
        letter-spacing: 0;
    }
    
    .about-hero-subtitle {
        font-size: 1.2rem;
        max-width: 95%;
    }
    
    .about-hero-content {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
        margin-bottom: var(--spacing-md);
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* ====================================================================
   END ABOUT US HERO SECTION
   ==================================================================== */

/* ====================================================================
   PROJECTS HERO SECTION - FULL WIDTH BACKGROUND IMAGE
   ==================================================================== */

.projects-hero {
    position: relative;
    width: 100vw;
    height: 80vh;
    min-height: 600px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('project.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

.projects-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(30, 41, 59, 0.3) 25%,
        rgba(46, 92, 154, 0.2) 50%,
        rgba(30, 41, 59, 0.3) 75%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.projects-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 0 var(--spacing-md);
}

.projects-hero-title {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: var(--spacing-xl);
    text-shadow: 
        0 8px 30px rgba(0,0,0,0.9),
        0 4px 15px rgba(0,0,0,0.7),
        0 2px 8px rgba(0,0,0,0.5),
        0 1px 3px rgba(0,0,0,0.3);
    letter-spacing: -1px;
    line-height: 1.1;
    animation: heroFadeInUp 1.2s ease-out, heroTitleGlow 3s ease-in-out infinite 1.2s;
}

.projects-hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 
        0 6px 20px rgba(0,0,0,0.9),
        0 3px 12px rgba(0,0,0,0.7),
        0 2px 6px rgba(0,0,0,0.5),
        0 1px 3px rgba(0,0,0,0.3);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    animation: heroSubtitleFadeIn 1.5s ease-out 0.5s both;
}

/* Responsive Design for Projects Hero */
@media (max-width: 1024px) {
    .projects-hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .projects-hero-bg {
        background-attachment: scroll;
    }
    
    .projects-hero-title {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }
    
    .projects-hero-subtitle {
        font-size: 1.3rem;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .projects-hero {
        height: 60vh;
        min-height: 450px;
    }
    
    .projects-hero-title {
        font-size: 2.8rem;
        margin-bottom: var(--spacing-lg);
        letter-spacing: 0;
    }
    
    .projects-hero-subtitle {
        font-size: 1.2rem;
        max-width: 95%;
    }
    
    .projects-hero-content {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .projects-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .projects-hero-title {
        font-size: 2.2rem;
        margin-bottom: var(--spacing-md);
    }
    
    .projects-hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* ====================================================================
   END PROJECTS HERO SECTION
   ==================================================================== */

/* ====================================================================
   CONTACT HERO SECTION - FULL WIDTH BACKGROUND IMAGE
   ==================================================================== */

.contact-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 800px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.pinimg.com/736x/d4/ea/2c/d4ea2c33cc90678bf5f3d5ad2bc254a1.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    filter: brightness(0.8) contrast(1.1);
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(30, 41, 59, 0.4) 25%,
        rgba(46, 92, 154, 0.3) 50%,
        rgba(124, 191, 63, 0.2) 75%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 0 var(--spacing-md);
}

.contact-hero-title {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: var(--spacing-xl);
    text-shadow: 
        0 8px 30px rgba(0,0,0,0.9),
        0 4px 15px rgba(0,0,0,0.8),
        0 2px 8px rgba(0,0,0,0.6),
        0 1px 3px rgba(0,0,0,0.4);
    letter-spacing: -1px;
    line-height: 1.1;
    animation: heroFadeInUp 1.2s ease-out, heroTitleGlow 3s ease-in-out infinite 1.2s;
}

.contact-hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 
        0 6px 20px rgba(0,0,0,0.9),
        0 3px 12px rgba(0,0,0,0.8),
        0 2px 6px rgba(0,0,0,0.6),
        0 1px 3px rgba(0,0,0,0.4);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    animation: heroSubtitleFadeIn 1.5s ease-out 0.5s both;
}

/* Responsive Design for Contact Hero */
@media (max-width: 1024px) {
    .contact-hero {
        height: 85vh;
        min-height: 650px;
    }
    
    .contact-hero-bg {
        background-attachment: scroll;
    }
    
    .contact-hero-title {
        font-size: 3.5rem;
        letter-spacing: -1px;
    }
    
    .contact-hero-subtitle {
        font-size: 1.3rem;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 75vh;
        min-height: 550px;
    }
    
    .contact-hero-title {
        font-size: 2.8rem;
        margin-bottom: var(--spacing-lg);
        letter-spacing: 0;
    }
    
    .contact-hero-subtitle {
        font-size: 1.2rem;
        max-width: 95%;
    }
    
    .contact-hero-content {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .contact-hero {
        height: 65vh;
        min-height: 500px;
    }
    
    .contact-hero-title {
        font-size: 2.2rem;
        margin-bottom: var(--spacing-md);
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* ====================================================================
   END CONTACT HERO SECTION
   ==================================================================== */

/* About Page Content */
.about-content {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, rgba(124, 191, 63, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(46, 92, 154, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.about-content .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-text {
    animation: aboutTextSlideIn 1s ease-out 0.3s both;
}

.about-text h2 {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.about-text h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: var(--spacing-xl);
    position: relative;
    animation: aboutParagraphFadeIn 0.8s ease-out both;
}

.about-text p:nth-child(2) { animation-delay: 0.5s; }
.about-text p:nth-child(3) { animation-delay: 0.7s; }
.about-text p:nth-child(4) { animation-delay: 0.9s; }

.about-text p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.about-text p em {
    color: var(--secondary-color);
    font-style: normal;
    font-weight: 600;
}

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

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

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: aboutImageSlideIn 1s ease-out 0.6s both;
}

.tech-visual {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8)), 
                linear-gradient(135deg, rgba(124, 191, 63, 0.1), rgba(46, 92, 154, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-color);
    position: relative;
    box-shadow: 
        0 10px 30px rgba(124, 191, 63, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: box-shadow 0.3s ease;
}

.tech-visual:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(124, 191, 63, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.15);
}

.tech-visual i {
    font-size: 5rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
    animation: iconRotate 6s linear infinite;
}

.tech-visual:hover i {
    color: var(--secondary-color);
}

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

@keyframes aboutImageSlideIn {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: var(--bg-lighter);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
}

.mv-card {
    background: var(--bg-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(124, 191, 63, 0.1);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mv-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xl);
}

.mv-card h3 {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* ====================================================================
   TEAM SECTION
   ==================================================================== */

.team {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(124, 191, 63, 0.03) 50%, transparent 70%);
    z-index: 1;
}

.team .container {
    position: relative;
    z-index: 2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-3xl);
    margin-top: var(--spacing-3xl);
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl) var(--spacing-xl);
    text-align: center;
    border: 2px solid rgba(124, 191, 63, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 320px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 191, 63, 0.1), transparent);
    transition: left var(--transition-slow);
}

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.member-image {
    width: 180px;
    height: 180px;
    margin: 0 auto var(--spacing-xl);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-white);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 5px solid rgba(124, 191, 63, 0.3);
    box-shadow: 
        0 10px 30px rgba(124, 191, 63, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.member-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    border-radius: 50%;
}

/* Professional image overlay for better contrast */
.member-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: 50%;
    z-index: 1;
}

.team-member:hover .member-image {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(124, 191, 63, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: var(--primary-light);
}

.team-member:hover .member-image img {
    filter: brightness(1.1) contrast(1.1) saturate(1.1);
}

.team-member:hover .member-image::before {
    opacity: 1;
}

.member-image i {
    z-index: 2;
    position: relative;
    transition: transform var(--transition-normal);
    font-size: 3.5rem;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    z-index: 2;
    position: relative;
    display: block;
    filter: brightness(1.05) contrast(1.05);
    transition: all var(--transition-normal);
}

/* Professional headshot positioning for different orientations */
.member-image img[alt*="Anshuman"],
.member-image img[alt*="Kumar"],
.member-image img[alt*="Atharva"] {
    object-position: center 20%;
}

.member-image img[alt*="Guruprasad"],
.member-image img[alt*="Hitesh"] {
    object-position: center 15%;
}
}

.team-member:hover .member-image i {
    transform: scale(1.2);
}

.team-member h3 {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    transition: color var(--transition-normal);
}

.team-member:hover h3 {
    color: var(--primary-color);
}

.member-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(124, 191, 63, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.member-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transform: scale(0);
    transition: transform var(--transition-normal);
    border-radius: 50%;
}

.member-social a:hover::before {
    transform: scale(1);
}

.member-social a:hover {
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.member-social a i {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
}

/* Team member animations */
.team-member:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.team-member:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.team-member:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.team-member:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }
.team-member:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s both; }
.team-member:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.6s both; }

/* Team Section Responsive Design */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-xl);
    }
    
    .member-image {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .member-image {
        width: 140px;
        height: 140px;
    }
    
    .team-member {
        padding: var(--spacing-lg);
    }
}

/* Values Section */
.values {
    padding: 100px 0;
    background: var(--bg-lighter);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.value-card {
    background: var(--bg-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(124, 191, 63, 0.1);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.value-card h3 {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ====================================================================
   PROJECTS SECTION
   ==================================================================== */

.filter-section {
    padding: 80px 0 40px;
    background: var(--bg-light);
    border-bottom: 1px solid rgba(124, 191, 63, 0.1);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--bg-white);
    border: 2px solid rgba(124, 191, 63, 0.3);
    border-radius: var(--radius-full);
    color: var(--text-gray);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 0.95rem;
    z-index: 2;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left var(--transition-normal);
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--text-white) !important;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.projects-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}

.project-card {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid rgba(124, 191, 63, 0.3);
    transition: all var(--transition-normal);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 191, 63, 0.1), transparent);
    transition: left var(--transition-slow);
    z-index: 1;
}

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

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.project-image {
    height: 200px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    border: 2px solid rgba(124, 191, 63, 0.1);
    transition: all var(--transition-normal);
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(124, 191, 63, 0.05) 0%, 
        rgba(124, 191, 63, 0.1) 50%, 
        rgba(46, 92, 154, 0.05) 100%);
    opacity: 0;
    transition: all var(--transition-normal);
}

.project-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 191, 63, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform var(--transition-normal);
}

.project-card:hover .project-image::before {
    opacity: 1;
}

.project-card:hover .project-image::after {
    transform: scale(1);
}

.project-card:hover .project-image {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(124, 191, 63, 0.2);
    transform: translateY(-2px);
}

.project-image i {
    position: relative;
    z-index: 3;
    transition: all var(--transition-normal);
    color: var(--secondary-color);
    filter: drop-shadow(0 2px 4px rgba(46, 92, 154, 0.2));
}

.project-card:hover .project-image i {
    transform: scale(1.15);
    color: var(--primary-color);
    filter: drop-shadow(0 4px 8px rgba(124, 191, 63, 0.3));
}

.project-content {
    padding: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.project-content h3 {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    transition: color var(--transition-normal);
    position: relative;
    padding-top: var(--spacing-lg);
}

.project-content h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.project-card:hover .project-content h3 {
    color: var(--primary-color);
}

.project-card:hover .project-content h3::before {
    width: 80px;
    background: var(--primary-color);
    box-shadow: 0 2px 8px rgba(124, 191, 63, 0.3);
}

.project-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    font-size: 0.95rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.tech-tag {
    background: rgba(124, 191, 63, 0.1);
    color: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(124, 191, 63, 0.2);
    transition: all var(--transition-normal);
}

.project-card:hover .tech-tag {
   background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.project-links {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(124, 191, 63, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    border: 1px solid rgba(124, 191, 63, 0.2);
    position: relative;
    overflow: hidden;
}

.project-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left var(--transition-normal);
    z-index: 1;
}

.project-link:hover::before {
    left: 0;
}

.project-link:hover {
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.project-link i,
.project-link span {
    position: relative;
    z-index: 2;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: var(--bg-lighter);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(124, 191, 63, 0.03) 50%, transparent 70%);
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(124, 191, 63, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 191, 63, 0.1), transparent);
    transition: left var(--transition-slow);
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.stat-number {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    transition: transform var(--transition-normal);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Project animations */
.project-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.project-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.project-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.project-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }
.project-card:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s both; }
.project-card:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.6s both; }
.project-card:nth-child(7) { animation: fadeInUp 0.6s ease-out 0.7s both; }
.project-card:nth-child(8) { animation: fadeInUp 0.6s ease-out 0.8s both; }

/* ====================================================================
   10. RESPONSIVE DESIGN
   ==================================================================== */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-search {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: var(--transition-slow);
        backdrop-filter: blur(20px);
        padding: var(--spacing-2xl) 0;
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border-radius: 0;
        border: none;
        gap: var(--spacing-lg);
        height: calc(100vh - 80px);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu::before {
        background: linear-gradient(180deg, transparent, rgba(124, 191, 63, 0.1), transparent);
        left: 0;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .nav-link {
        width: 80%;
        margin: 0 auto;
        text-align: center;
        padding: var(--spacing-lg);
        font-size: 1.2rem;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(124, 191, 63, 0.1);
        display: block;
    }
    
    .nav-link:hover {
        transform: translateY(-2px) scale(1.02);
        border-color: var(--primary-color);
    }
    
    .navbar.scrolled .nav-menu {
        background: rgba(30, 41, 59, 0.95);
    }
    
    .navbar.scrolled .nav-menu::before {
        background: linear-gradient(180deg, transparent, rgba(124, 191, 63, 0.2), transparent);
    }
    
    .navbar.scrolled .nav-menu .nav-link {
        color: var(--text-white);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .tech-illustration {
        width: 300px;
        height: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tech-tab {
        width: 200px;
        justify-content: center;
    }
    
    .tech-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .tech-card {
        padding: var(--spacing-lg);
    }
    
    .tech-card.featured {
        transform: scale(1);
    }
    
    .tech-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .tech-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-grid,
    .mv-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-lg);
    }
    
    .team-member {
        padding: var(--spacing-lg);
    }
    
    .member-image {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .filter-btn {
        width: 200px;
        justify-content: center;
        position: relative;
        z-index: 2;
    }
    
    .filter-btn::before {
        z-index: -1;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .project-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .project-image {
        height: 180px;
        font-size: 3rem;
    }
    
    .project-content {
        padding: var(--spacing-lg);
    }
    
    .project-tech {
        gap: var(--spacing-xs);
    }
    
    .tech-tag {
        font-size: 0.75rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .project-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .project-link {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .stat-item {
        padding: var(--spacing-lg);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .tech-visual {
        width: 200px;
        height: 200px;
    }
    
    .tech-visual i {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.9rem;
    }
    
    .tech-illustration {
        width: 250px;
        height: 250px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .tech-stack {
        padding: 80px 0;
    }
    
    .team {
        padding: 80px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .team-member {
        padding: var(--spacing-md);
    }
    
    .member-image {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .filter-section {
        padding: 60px 0 30px;
    }
    
    .filter-buttons {
        gap: var(--spacing-xs);
    }
    
    .filter-btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.85rem;
        width: 180px;
    }
    
    .projects-section {
        padding: 60px 0;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .project-card {
        max-width: 100%;
    }
    
    .project-image {
        height: 150px;
        font-size: 2.5rem;
    }
    
    .project-content {
        padding: var(--spacing-md);
    }
    
    .project-content h3 {
        font-size: 1.3rem;
    }
    
    .project-content p {
        font-size: 0.9rem;
    }
    
    .tech-tag {
        font-size: 0.7rem;
        padding: 2px var(--spacing-xs);
    }
    
    .project-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .project-link {
        justify-content: center;
    }
    
    .stats-section {
        padding: 80px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .stat-item {
        padding: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .tech-header .section-title {
        font-size: 2rem;
    }
    
    .tech-subtitle {
        font-size: 1rem;
    }
    
    .tech-tab {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.9rem;
    }
    
    .tech-card {
        padding: var(--spacing-md);
    }
    
    .tech-card h3 {
        font-size: 1.3rem;
    }
    
    .tech-card p {
        font-size: 0.9rem;
    }
    
    .tech-level span {
        min-width: 70px;
        font-size: 0.8rem;
    }
    
    .level-bar {
        height: 6px;
    }
}

/* ====================================================================
   11. ANIMATIONS & EFFECTS
   ==================================================================== */

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

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

.feature-card,
.tech-card {
    animation: fadeInUp 0.6s ease-out;
}

.tech-card:nth-child(1) { animation-delay: 0.1s; }
.tech-card:nth-child(2) { animation-delay: 0.2s; }
.tech-card:nth-child(3) { animation-delay: 0.3s; }
.tech-card:nth-child(4) { animation-delay: 0.4s; }
.tech-card:nth-child(5) { animation-delay: 0.5s; }
.tech-card:nth-child(6) { animation-delay: 0.6s; }

/* ====================================================================
   12. PERFORMANCE OPTIMIZATIONS
   ==================================================================== */

.tech-card,
.feature-card {
    will-change: transform;
}

.btn {
    will-change: transform;
}

.nav-link::after {
    will-change: width;
}

/* ====================================================================
   CONTACT PAGE STYLES WITH 3D EFFECTS
   ==================================================================== */

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, rgba(124, 191, 63, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

/* Contact Form - Simplified */
.contact-form {
    background: var(--bg-white);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(124, 191, 63, 0.1);
}

.contact-form h2 {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-2xl);
    text-align: center;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

/* Form Groups - Simplified */
.form-group {
    margin-bottom: var(--spacing-xl);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    border: 2px solid rgba(124, 191, 63, 0.2);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--bg-light);
    color: var(--text-dark);
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(124, 191, 63, 0.1);
}

/* Submit Button - Simplified */
.contact-form .btn {
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact Info with 3D Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-info h2 {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-2xl);
    text-align: center;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(124, 191, 63, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    transform-style: preserve-3d;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 191, 63, 0.1), transparent);
    transition: left var(--transition-slow);
}

.info-item:hover::before {
    left: 100%;
}

.info-item:hover {
    transform: translateY(-5px) rotateY(5deg);
    box-shadow: 
        0 20px 30px rgba(0, 0, 0, 0.1),
        0 8px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    transition: all var(--transition-normal);
    position: relative;
    flex-shrink: 0;
}

.info-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.info-item:hover .info-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 0 20px rgba(124, 191, 63, 0.4);
}

.info-item:hover .info-icon::before {
    opacity: 1;
}

.info-content h3 {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    transition: color var(--transition-normal);
}

.info-item:hover .info-content h3 {
    color: var(--primary-color);
}

.info-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Map Section with Enhanced Creative Effects */
.map-section {
    padding: 120px 0;
    background: var(--bg-lighter);
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(124, 191, 63, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 92, 154, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(124, 191, 63, 0.05) 50%, transparent 70%);
    z-index: 1;
    animation: mapBackgroundMove 20s ease-in-out infinite;
}

@keyframes mapBackgroundMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(10px) translateY(-10px); }
    50% { transform: translateX(-5px) translateY(5px); }
    75% { transform: translateX(5px) translateY(-5px); }
}

.map-section .container {
    position: relative;
    z-index: 2;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Floating Map Icons */
.map-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.map-floating-icon {
    position: absolute;
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: mapIconFloat 8s ease-in-out infinite;
    opacity: 0.3;
}

.map-floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.map-floating-icon:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.map-floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.map-floating-icon:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

.map-floating-icon:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 1s;
}

@keyframes mapIconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(10px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-10px) rotate(270deg);
        opacity: 0.6;
    }
}

/* Enhanced Map Placeholder */
.map-placeholder {
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl);
    text-align: center;
    border: 2px solid rgba(124, 191, 63, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 10px 25px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all var(--transition-normal);
    position: relative;
    transform-style: preserve-3d;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(124, 191, 63, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    border-radius: var(--radius-xl);
    z-index: 1;
    transition: all var(--transition-normal);
}

.map-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 191, 63, 0.1), transparent);
    transition: left var(--transition-slow);
    z-index: 2;
}

.map-placeholder:hover::after {
    left: 100%;
}

.map-placeholder:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(5deg);
    box-shadow: 
        0 35px 60px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.08),
        0 0 30px rgba(124, 191, 63, 0.2);
    border-color: var(--primary-color);
}

.map-placeholder:hover::before {
    background: 
        radial-gradient(circle at 30% 30%, rgba(124, 191, 63, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
}

/* Map Content */
.map-content {
    position: relative;
    z-index: 3;
}

.map-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-xl);
}

.map-icon-container i {
    font-size: 5rem;
    color: var(--primary-color);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(124, 191, 63, 0.3));
}

.map-icon-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(124, 191, 63, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: mapIconPulse 2s ease-in-out infinite;
    z-index: 1;
}

.map-icon-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(124, 191, 63, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: mapIconPulse 2s ease-in-out infinite;
    animation-delay: 0.5s;
    z-index: 0;
}

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

.map-placeholder:hover .map-icon-container i {
    transform: scale(1.2) rotate(360deg);
    color: var(--primary-light);
    filter: drop-shadow(0 0 20px rgba(124, 191, 63, 0.5));
}

.map-placeholder h3 {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.map-placeholder:hover h3 {
    color: var(--primary-light);
    text-shadow: 0 0 10px rgba(124, 191, 63, 0.3);
}

.map-address {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    position: relative;
    z-index: 3;
}

.map-address::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

/* Enhanced Map Button */
.map-btn {
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    border: none;
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    transform-style: preserve-3d;
    box-shadow: 
        0 8px 20px rgba(124, 191, 63, 0.3),
        0 3px 8px rgba(124, 191, 63, 0.2);
}

.map-btn::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 var(--transition-normal);
}

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

.map-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(124, 191, 63, 0.4),
        0 8px 15px rgba(124, 191, 63, 0.3);
}

.map-btn i {
    margin-right: var(--spacing-sm);
    transition: transform var(--transition-normal);
}

.map-btn:hover i {
    transform: rotate(360deg);
}

/* Map Coordinates Display */
.map-coordinates {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: rgba(124, 191, 63, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    color: var(--primary-color);
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    border: 1px solid rgba(124, 191, 63, 0.2);
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.map-placeholder:hover .map-coordinates {
    opacity: 1;
    transform: scale(1.05);
}

/* Map Features Grid */
.map-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    position: relative;
    z-index: 3;
}

.map-feature {
    text-align: center;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    background: rgba(124, 191, 63, 0.05);
    border: 1px solid rgba(124, 191, 63, 0.1);
    transition: all var(--transition-normal);
}

.map-feature:hover {
    background: rgba(124, 191, 63, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 191, 63, 0.2);
}

/* New Embedded Map Styles */
.map-embed-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-xl);
}

.map-embed-container iframe {
    filter: grayscale(20%) contrast(1.1);
    transition: filter var(--transition-normal);
}

.map-embed-container:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

.map-overlay-info {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.map-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(124, 191, 63, 0.2);
    min-width: 200px;
    transform: translateY(0);
    transition: all var(--transition-normal);
}

.map-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.map-info-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.map-info-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.map-info-header h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.map-info-card p {
    margin: 0 0 var(--spacing-md) 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.map-direction-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.map-direction-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 191, 63, 0.3);
}

.map-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.map-feature span {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Responsive Design for Enhanced Map */
@media (max-width: 768px) {
    .map-placeholder {
        padding: var(--spacing-2xl);
    }
    
    .map-icon-container i {
        font-size: 4rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.8rem;
    }
    
    .map-address {
        font-size: 1.1rem;
    }
    
    .map-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .map-coordinates {
        position: static;
        display: inline-block;
        margin-top: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .map-placeholder {
        padding: var(--spacing-lg);
    }
    
    .map-icon-container i {
        font-size: 2.5rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.3rem;
    }
    
    .map-address {
        font-size: 1rem;
    }
    
    .map-btn {
        padding: var(--spacing-md) var(--spacing-xl);
        font-size: 1rem;
    }
}

/* FAQ Section with 3D Effects */
.faq-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 25%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 25% 75%, rgba(124, 191, 63, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(124, 191, 63, 0.1);
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
    transform-style: preserve-3d;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 191, 63, 0.1), transparent);
    transition: left var(--transition-slow);
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    transform: translateY(-5px) rotateX(2deg);
    box-shadow: 
        0 15px 25px rgba(0, 0, 0, 0.1),
        0 5px 10px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.faq-question {
    padding: var(--spacing-xl);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
}

.faq-question:hover {
    background: rgba(124, 191, 63, 0.05);
}

.faq-question h3 {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: color var(--transition-normal);
}

.faq-question:hover h3 {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Floating Elements for Contact Page */
.contact-floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact-floating-element {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: contactFloat 8s ease-in-out infinite;
}

.contact-floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.contact-floating-element:nth-child(2) {
    top: 60%;
    left: 85%;
    animation-delay: 2s;
}

.contact-floating-element:nth-child(3) {
    top: 40%;
    left: 70%;
    animation-delay: 4s;
}

.contact-floating-element:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes contactFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(0px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(30px) rotate(270deg);
        opacity: 0.6;
    }
}

/* Success Message Animation */
.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 2px solid var(--accent-color);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    text-align: center;
    max-width: 400px;
    transform-style: preserve-3d;
}

.success-message.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1) rotateY(0deg);
}

.success-message i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: var(--spacing-lg);
}

.success-message h3 {
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.success-message p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .contact-form,
    .contact-info {
        padding: var(--spacing-2xl);
    }
    
    .contact-form h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .info-item {
        padding: var(--spacing-lg);
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .map-placeholder {
        padding: var(--spacing-2xl);
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.5rem;
    }
    
    .map-address {
        font-size: 1.1rem;
    }
    
    .map-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .map-coordinates {
        position: static;
        display: inline-block;
        margin-top: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .contact-form,
    .contact-info {
        padding: var(--spacing-lg);
    }
    
    .contact-form h2,
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .contact-form .btn {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 1rem;
    }
    
    .info-item {
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .info-content h3 {
        font-size: 1.1rem;
    }
    
    .info-content p {
        font-size: 0.9rem;
    }
    
    .map-placeholder {
        padding: var(--spacing-lg);
    }
    
    .map-placeholder i {
        font-size: 2.5rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.3rem;
    }
    
    .faq-question {
        padding: var(--spacing-md);
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 var(--spacing-md) var(--spacing-md);
    }
    
    .success-message {
        max-width: 300px;
        padding: var(--spacing-lg);
    }
    
    .success-message i {
        font-size: 2.5rem;
    }
    
    .success-message h3 {
        font-size: 1.3rem;
    }
}

/* Hero Section Responsive Styles */
@media (max-width: 768px) {
    .hero {
        padding: 100px var(--spacing-sm) 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
    
    .hero-text {
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .tech-illustration {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px var(--spacing-xs) 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .tech-illustration {
        width: 250px;
        height: 250px;
    }
}

/* ====================================================================
   PROFESSIONAL STATISTICS SECTION
   ==================================================================== */

.stats-showcase {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.stats-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 25%, rgba(124, 191, 63, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 25% 75%, rgba(46, 92, 154, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.stats-showcase .container {
    position: relative;
    z-index: 2;
}

.stats-showcase .section-title {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}

.stat-card {
    background: var(--bg-light);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(124, 191, 63, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 191, 63, 0.1), transparent);
    transition: left 0.8s ease;
}

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

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all var(--transition-normal);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-family: "Aptos Display", "Aptos", "Segoe UI", "Roboto", sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ====================================================================
   CLIENT TESTIMONIALS SECTION
   ==================================================================== */
   ==================================================================== */

.testimonials {
    padding: 120px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials .section-title {
    color: var(--text-white);
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-xl);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 191, 63, 0.1), transparent);
    transition: left 0.8s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

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

.author-info h4 {
    margin: 0;
    color: var(--text-dark);
    font-weight: 600;
}

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

/* ====================================================================
   FLOATING BUBBLES SYSTEM
   ==================================================================== */

.floating-bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 191, 63, 0.3), rgba(46, 92, 154, 0.2));
    animation: floatBubble 15s infinite linear;
    opacity: 0.7;
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.bubble:nth-child(2) {
    width: 120px;
    height: 120px;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.bubble:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 35%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.bubble:nth-child(4) {
    width: 100px;
    height: 100px;
    left: 50%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.bubble:nth-child(5) {
    width: 90px;
    height: 90px;
    left: 65%;
    animation-delay: 8s;
    animation-duration: 13s;
}

.bubble:nth-child(6) {
    width: 70px;
    height: 70px;
    left: 75%;
    animation-delay: 10s;
    animation-duration: 17s;
}

.bubble:nth-child(7) {
    width: 110px;
    height: 110px;
    left: 85%;
    animation-delay: 12s;
    animation-duration: 15s;
}

.bubble:nth-child(8) {
    width: 50px;
    height: 50px;
    left: 95%;
    animation-delay: 14s;
    animation-duration: 11s;
}

@keyframes floatBubble {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 0.7;
        transform: translateY(-10vh) scale(1);
    }
    100% {
        transform: translateY(-10vh) scale(0);
        opacity: 0;
    }
}

/* ====================================================================
   LIVE CHAT WIDGET
   ==================================================================== */

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: "Aptos", "Segoe UI", "Roboto", sans-serif;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(124, 191, 63, 0.4);
    transition: all var(--transition-normal);
    position: relative;
    animation: chatPulse 2s infinite;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(124, 191, 63, 0.6);
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    animation: notificationBounce 2s infinite;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(124, 191, 63, 0.2);
    display: flex;
    flex-direction: column;
    transform: scale(0) translateY(20px);
    opacity: 0;
    transition: all var(--transition-normal);
    transform-origin: bottom right;
}

.chat-window.show {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.chat-header {
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-md);
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background var(--transition-normal);
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-body {
    flex: 1;
    padding: var(--spacing-md);
    overflow-y: auto;
    background: #f8f9fa;
}

.chat-message {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    animation: messageSlideIn 0.3s ease-out;
}

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

.message-content {
    flex: 1;
}

.message-content p {
    background: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 15px;
    margin: 0 0 5px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.user-message .message-content p {
    background: var(--primary-color);
    color: white;
    margin-left: auto;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-avatar {
    background: var(--accent-color);
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.chat-input-area {
    padding: var(--spacing-md);
    background: white;
    border-radius: 0 0 15px 15px;
    display: flex;
    gap: var(--spacing-sm);
    border-top: 1px solid #eee;
}

.chat-input-area input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: var(--spacing-sm) var(--spacing-md);
    outline: none;
    font-size: 0.9rem;
}

.chat-input-area input:focus {
    border-color: var(--primary-color);
}

.chat-input-area button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.chat-input-area button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

@keyframes chatPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(124, 191, 63, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(124, 191, 63, 0.8);
    }
}

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

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================================================
   SCROLL TO TOP BUTTON
   ==================================================================== */

.scroll-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(124, 191, 63, 0.3);
    transition: all var(--transition-normal);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

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

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(124, 191, 63, 0.5);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 100px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Responsive Chat Widget */
@media (max-width: 768px) {
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-window {
        width: 300px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .chat-window {
        width: 280px;
        height: 350px;
        bottom: 70px;
        right: -10px;
    }
}

/* Video Background Fallback */
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }
    
    .hero {
        background: var(--gradient-hero);
    }
    
    /* Responsive Map Styles */
    .map-embed-container {
        height: 300px;
        margin-bottom: var(--spacing-lg);
    }
    
    .map-overlay-info {
        position: relative;
        top: auto;
        right: auto;
        margin-top: var(--spacing-lg);
    }
    
    .map-info-card {
        background: rgba(255, 255, 255, 0.98);
        padding: var(--spacing-md);
        min-width: auto;
        width: 100%;
    }
    
    .map-features {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .map-embed-container {
        height: 250px;
        border-radius: 10px;
    }
    
    .map-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .map-info-card {
        padding: var(--spacing-sm);
    }
    
    .map-info-header h4 {
        font-size: 1rem;
    }
    
    .map-direction-btn {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.8rem;
    }
}

/* Enhanced Logo Responsive Design - Simple Version */
@media (max-width: 768px) {
    .logo-image {
        height: 55px;
        max-width: 200px;
    }
    
    .nav-logo {
        padding: 0.4rem;
    }
    
    .footer-logo-image {
        height: 50px;
        max-width: 160px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 45px;
        max-width: 180px;
    }
    
    .nav-logo {
        padding: 0.3rem;
    }
    
    .footer-logo-image {
        height: 40px;
        max-width: 140px;
    }
}

/* Project Section Responsive Design */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--spacing-xl);
    }
    
    .project-image {
        height: 160px;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .project-image {
        height: 140px;
        font-size: 2.5rem;
    }
    
    .project-card {
        margin: 0 var(--spacing-sm);
    }
}