/* Veloz Gida - Modern Agency Website Styles */

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

/* CSS Variables for consistent theming */
:root {
    /* Colors */
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-blue: #00d4ff;
    --accent-gold: #ffd700;
    --accent-purple: #8b5cf6;
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --text-dark: #333333;
    --gradient-primary: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 50%, #ffd700 100%);
    --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0f3460 50%, #1a1a1a 75%, #0a0a0a 100%);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Shadows */
    --shadow-light: 0 4px 20px rgba(0, 212, 255, 0.1);
    --shadow-medium: 0 8px 40px rgba(0, 212, 255, 0.2);
    --shadow-heavy: 0 20px 60px rgba(0, 212, 255, 0.3);
    
    /* Enhanced Glossy Variables */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --neon-glow: 0 0 20px rgba(0, 212, 255, 0.5);
    --neon-glow-gold: 0 0 20px rgba(255, 215, 0, 0.5);
    --neon-glow-purple: 0 0 20px rgba(139, 92, 246, 0.5);
    --shadow-glossy: 0 10px 30px rgba(0, 212, 255, 0.3);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--gradient-hero);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* Prevent horizontal overflow on all elements */
* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2300d4ff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    color: var(--text-light);
}

h3 {
    font-size: 1.8rem;
    color: var(--accent-blue);
}

p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

/* Ensure all containers respect viewport width */
.container-fluid {
    width: 100%;
    max-width: 100vw;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

/* Enhanced Glossy Effects */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

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

.btn-primary {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    box-shadow: var(--shadow-glossy), var(--neon-glow);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium), 0 0 30px rgba(0, 212, 255, 0.6);
    color: var(--primary-dark);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
}

.btn-secondary:hover {
    background: var(--accent-blue);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium), var(--neon-glow);
}

.btn-outline {
    background: var(--glass-bg);
    color: var(--text-light);
    border: 2px solid var(--text-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-dark);
    box-shadow: var(--shadow-light);
}

/* Enhanced Glossy Effects for Cards */
.service-card,
.pricing-card,
.team-card,
.blog-card,
.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), var(--neon-glow);
    position: relative;
    overflow: hidden;
}

.service-card::before,
.pricing-card::before,
.team-card::before,
.blog-card::before,
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.service-card:hover::before,
.pricing-card:hover::before,
.team-card:hover::before,
.blog-card:hover::before,
.testimonial-card:hover::before {
    left: 100%;
}

.service-card:hover,
.pricing-card:hover,
.team-card:hover,
.blog-card:hover,
.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy), 0 0 40px rgba(0, 212, 255, 0.4);
    border-color: rgba(0, 212, 255, 0.5);
}

/* Enhanced Header Glossy Effect - More Translucent */
.header {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition-fast);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: var(--shadow-heavy), var(--neon-glow);
    border-bottom-color: rgba(0, 212, 255, 0.5);
}

/* Enhanced Form Glossy Effects */
.contact-form,
.application-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow), var(--neon-glow);
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: var(--transition-fast);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2), var(--neon-glow);
    outline: none;
}

/* Enhanced Navigation Glossy Effects */
.nav-menu {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.nav-menu a {
    position: relative;
    transition: var(--transition-fast);
}

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

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

.nav-menu a:hover {
    color: var(--accent-blue);
    text-shadow: var(--neon-glow);
}

/* Enhanced Footer Glossy Effects */
.footer {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Enhanced Section Glossy Effects */
.section {
    position: relative;
}

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

/* ========================================
   MODERN iOS-STYLE NAVIGATION BAR
   ======================================== */

/* Header Container - Enhanced Glossy Effects */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.05) 0%, 
        rgba(255, 215, 0, 0.05) 50%, 
        rgba(0, 212, 255, 0.05) 100%);
    pointer-events: none;
    z-index: -1;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    pointer-events: none;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 20px rgba(0, 212, 255, 0.1);
}

.header.scrolled::before {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.08) 0%, 
        rgba(255, 215, 0, 0.08) 50%, 
        rgba(0, 212, 255, 0.08) 100%);
}

/* Navigation Container - Enhanced Glossy */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 70px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.02) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
    z-index: -1;
}

/* Logo Styling - Enhanced Glossy */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.logo img {
    height: 55px;
    width: auto;
    margin-right: 0.75rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 212, 255, 0.3));
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 212, 255, 0.5));
}

.logo:hover .logo-text {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Navigation Menu - Enhanced Glossy */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-gold));
    opacity: 0;
    border-radius: 12px;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 0.15;
}

.nav-link:hover::after {
    left: 100%;
}

.nav-link:hover {
    color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 212, 255, 0.3),
        0 0 15px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

.nav-link.active {
    color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 
        0 4px 15px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.2);
}

/* Search Container - Enhanced Glossy */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.search-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 0.5rem 1rem 0.5rem 3rem;
    color: var(--text-light);
    font-size: 0.9rem;
    width: 200px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 
        0 0 0 3px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 20px rgba(0, 212, 255, 0.2);
    width: 250px;
    background: rgba(255, 255, 255, 0.1);
}

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

.search-btn {
    position: absolute;
    left: 0.75rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2;
    padding: 0.25rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-btn:hover {
    color: var(--accent-blue);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.search-results.show {
    display: block;
    animation: slideDown 0.3s ease;
}

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

/* Mobile Menu Toggle - Enhanced Glossy */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(255, 215, 0, 0.1) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.mobile-menu-toggle:hover::before {
    opacity: 1;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-blue);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text-light);
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--accent-blue);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--accent-blue);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Mobile Navigation Menu - Professional Clean Design */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
}

.mobile-nav-menu.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

/* Mobile Menu Close Button */
.mobile-nav-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-blue);
    transform: scale(1.1);
}

.mobile-nav-close::before,
.mobile-nav-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--text-light);
    border-radius: 1px;
}

.mobile-nav-close::before {
    transform: rotate(45deg);
}

.mobile-nav-close::after {
    transform: rotate(-45deg);
}

/* Ensure mobile menu is hidden on desktop */
@media (min-width: 1025px) {
    .mobile-nav-menu {
        display: none !important;
    }
    
    .mobile-nav-overlay {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}

.mobile-nav-menu .mobile-nav-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu .mobile-nav-menu-list li {
    margin: 0.25rem 0;
}

.mobile-nav-menu .mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-nav-menu .mobile-nav-link:hover,
.mobile-nav-menu .mobile-nav-link.active {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-blue);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateX(8px);
}

/* Mobile Search - Professional Clean Design */
.mobile-search-container {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.mobile-search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.75rem 3.5rem 0.75rem 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-search-input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.mobile-search-btn {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-blue);
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-search-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-50%) scale(1.05);
}

/* Search Results Styling */
.search-result-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.search-result-item:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-blue);
}

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

.search-result-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-result-title i {
    color: var(--accent-blue);
    font-size: 0.9rem;
}

.search-result-type {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 400;
    margin-left: auto;
}

.search-result-url {
    font-size: 0.8rem;
    color: var(--text-gray);
    opacity: 0.8;
}

.search-no-results {
    padding: 1rem;
    color: var(--text-gray);
    text-align: center;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 1.5rem;
    }
    
    .search-container {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo {
        padding: 0.4rem 0.8rem;
    }
    
    .logo img {
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
}

/* Mobile Navigation Bar - Professional Fix */
@media (max-width: 768px) {
    .navbar {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 1rem !important;
        height: 65px !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }
    
    .navbar .logo {
        display: flex !important;
        align-items: center !important;
        z-index: 1001 !important;
        position: relative !important;
        flex-shrink: 0 !important;
    }
    
    .navbar .logo img {
        height: 45px !important;
        margin-right: 0.5rem !important;
    }
    
    .navbar .logo-text {
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        color: var(--text-light) !important;
    }
    
    .navbar .nav-menu {
        display: none !important;
    }
    
    .navbar .search-container {
        display: none !important;
    }
    
    .navbar .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 40px !important;
        height: 40px !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        z-index: 1001 !important;
        position: relative !important;
        flex-shrink: 0 !important;
    }
    
    .navbar .mobile-menu-toggle span {
        display: block !important;
        width: 25px !important;
        height: 3px !important;
        background: var(--text-light) !important;
        margin: 3px 0 !important;
        transition: all 0.3s ease !important;
        border-radius: 2px !important;
    }
    
    .navbar .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px) !important;
        background: var(--accent-blue) !important;
    }
    
    .navbar .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }
    
    .navbar .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px) !important;
        background: var(--accent-blue) !important;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 60px !important;
        padding: 0 0.75rem !important;
    }
    
    .navbar .logo img {
        height: 40px !important;
        margin-right: 0.4rem !important;
    }
    
    .navbar .logo-text {
        font-size: 1.1rem !important;
    }
    
    .navbar .mobile-menu-toggle {
        width: 36px !important;
        height: 36px !important;
    }
    
    .navbar .mobile-menu-toggle span {
        width: 22px !important;
        height: 2.5px !important;
    }
    
    /* Ultra Mobile Hero */
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Ultra Mobile Sections */
    .section {
        padding: 50px 0;
    }
    
    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }
    
    /* Ultra Mobile Navigation */
    .mobile-nav-menu {
        width: 260px;
        padding: 4rem 1rem 1.5rem;
    }
    
    .mobile-nav-menu .mobile-nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    /* Ultra Mobile Search */
    .mobile-search-container {
        margin: 1rem 0;
        padding: 0.75rem;
    }
    
    .mobile-search-input {
        padding: 0.7rem 3rem 0.7rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .mobile-search-btn {
        right: 1rem;
        width: 28px;
        height: 28px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo img {
        height: 35px;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu-toggle span {
        width: 18px;
    }
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: var(--transition-fast);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    position: relative;
}

/* Hero Section with Advanced 3D Effects */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    perspective: 1000px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2300d4ff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

/* AI Brain System - Neural Network */
.ai-brain-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.neural-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, var(--accent-blue) 0%, rgba(0, 212, 255, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    animation: neuralPulse 3s ease-in-out infinite;
    box-shadow: 0 0 15px var(--accent-blue);
}

/* Neural Node Positions */
.node-1 { top: 20%; left: 15%; animation-delay: 0s; }
.node-2 { top: 30%; left: 35%; animation-delay: 0.5s; }
.node-3 { top: 25%; left: 55%; animation-delay: 1s; }
.node-4 { top: 35%; left: 75%; animation-delay: 1.5s; }
.node-5 { top: 50%; left: 20%; animation-delay: 2s; }
.node-6 { top: 60%; left: 40%; animation-delay: 2.5s; }
.node-7 { top: 55%; left: 60%; animation-delay: 3s; }
.node-8 { top: 65%; left: 80%; animation-delay: 3.5s; }
.node-9 { top: 75%; left: 25%; animation-delay: 4s; }
.node-10 { top: 80%; left: 45%; animation-delay: 4.5s; }
.node-11 { top: 85%; left: 65%; animation-delay: 5s; }
.node-12 { top: 90%; left: 85%; animation-delay: 5.5s; }

/* Neural Connections */
.neural-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    animation: dataFlow 4s linear infinite;
    opacity: 0.6;
}

.connection-1 { top: 25%; left: 15%; width: 20%; animation-delay: 0s; }
.connection-2 { top: 27%; left: 35%; width: 20%; animation-delay: 1s; }
.connection-3 { top: 30%; left: 55%; width: 20%; animation-delay: 2s; }
.connection-4 { top: 55%; left: 20%; width: 20%; animation-delay: 3s; }
.connection-5 { top: 57%; left: 40%; width: 20%; animation-delay: 4s; }
.connection-6 { top: 60%; left: 60%; width: 20%; animation-delay: 5s; }
.connection-7 { top: 77%; left: 25%; width: 20%; animation-delay: 6s; }
.connection-8 { top: 82%; left: 45%; width: 20%; animation-delay: 7s; }
.connection-9 { top: 52%; left: 15%; width: 15%; transform: rotate(45deg); animation-delay: 8s; }
.connection-10 { top: 62%; left: 35%; width: 15%; transform: rotate(-45deg); animation-delay: 9s; }

/* AI Brain Core */
.ai-brain-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 1;
}

.brain-lobe {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, rgba(0, 212, 255, 0.05) 70%, transparent 100%);
    animation: brainActivity 6s ease-in-out infinite;
}

.lobe-1 {
    width: 80px;
    height: 80px;
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.lobe-2 {
    width: 60px;
    height: 60px;
    top: 30px;
    right: 20px;
    animation-delay: 1.5s;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.05) 70%, transparent 100%);
}

.lobe-3 {
    width: 70px;
    height: 70px;
    bottom: 30px;
    left: 30px;
    animation-delay: 3s;
    background: radial-gradient(circle, rgba(111, 66, 193, 0.2) 0%, rgba(111, 66, 193, 0.05) 70%, transparent 100%);
}

.lobe-4 {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 30px;
    animation-delay: 4.5s;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, rgba(0, 212, 255, 0.1) 70%, transparent 100%);
}

/* Data Streams */
.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.data-stream {
    position: absolute;
    width: 1px;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--accent-blue), transparent);
    animation: streamFlow 5s linear infinite;
    opacity: 0.7;
}

.stream-1 { left: 20%; top: 0; animation-delay: 0s; }
.stream-2 { left: 40%; top: 0; animation-delay: 1s; }
.stream-3 { left: 60%; top: 0; animation-delay: 2s; }
.stream-4 { left: 80%; top: 0; animation-delay: 3s; }
.stream-5 { left: 50%; top: 0; animation-delay: 4s; }

/* Synaptic Pulses */
.synaptic-pulses {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.synapse {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: synapticFire 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-blue);
}

.synapse-1 { top: 25%; left: 30%; animation-delay: 0s; }
.synapse-2 { top: 45%; left: 50%; animation-delay: 0.3s; }
.synapse-3 { top: 65%; left: 30%; animation-delay: 0.6s; }
.synapse-4 { top: 35%; left: 70%; animation-delay: 0.9s; }
.synapse-5 { top: 55%; left: 70%; animation-delay: 1.2s; }
.synapse-6 { top: 75%; left: 50%; animation-delay: 1.5s; }

/* 3D Artificial Tech Brain */
.brain-container {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    z-index: 1;
}

.brain-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: brainRotate 8s linear infinite;
}

.brain-hemisphere {
    position: absolute;
    width: 80px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: 50px 50px 50px 50px / 60px 60px 60px 60px;
    box-shadow: var(--neon-glow);
    animation: brainPulse 2s ease-in-out infinite;
}

.brain-left {
    left: 20px;
    transform: rotateY(-15deg) rotateZ(-5deg);
}

.brain-right {
    right: 20px;
    transform: rotateY(15deg) rotateZ(5deg);
}

.neural-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.neural-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: var(--neon-glow-gold);
    animation: neuralPulse 1.5s ease-in-out infinite;
}

.neural-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
    transform-origin: left center;
    animation: neuralFlow 3s linear infinite;
}

@keyframes brainRotate {
    0% { transform: rotateY(0deg) rotateX(10deg); }
    100% { transform: rotateY(360deg) rotateX(10deg); }
}

@keyframes brainPulse {
    0%, 100% { transform: scale(1); box-shadow: var(--neon-glow); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(0, 212, 255, 0.8); }
}

@keyframes neuralPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
}

@keyframes neuralFlow {
    0% { transform: scaleX(0); opacity: 0; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0); opacity: 0; }
}

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

/* 3D Animation Keyframes */
@keyframes floatParticle {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 1;
    }
    50% { 
        transform: translateY(-10px) translateX(-15px) rotate(180deg);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-30px) translateX(5px) rotate(270deg);
        opacity: 0.9;
    }
}

@keyframes rotateRing {
    0% { 
        transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    100% { 
        transform: translate(-50%, -50%) rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}



@keyframes rotateCube {
    0% { 
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) translateZ(0px);
    }
    25% { 
        transform: rotateX(90deg) rotateY(90deg) rotateZ(90deg) translateZ(20px);
    }
    50% { 
        transform: rotateX(180deg) rotateY(180deg) rotateZ(180deg) translateZ(0px);
    }
    75% { 
        transform: rotateX(270deg) rotateY(270deg) rotateZ(270deg) translateZ(-20px);
    }
    100% { 
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg) translateZ(0px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: var(--neon-glow);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

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

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

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

/* Sections */
.section {
    padding: var(--section-padding);
    position: relative;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Enhanced Service Cards with Glossy Effects */
.service-card {
    background: var(--glass-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-medium);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--glass-shadow);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: var(--transition-medium);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium), var(--neon-glow);
    border-color: var(--accent-blue);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
    text-shadow: var(--neon-glow);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

/* Testimonials */
.testimonials {
    background: var(--secondary-dark);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-slide {
    display: none;
    padding: 3rem;
    text-align: center;
    background: var(--primary-dark);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.testimonial-content {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-blue);
}

.author-info h4 {
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--text-gray);
    margin: 0;
}

/* Contact Form with Enhanced Glossy Effects */
.contact-form {
    background: var(--glass-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--glass-shadow);
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Enhanced Form Controls - Professional White Text */
.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff !important;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
    min-height: 44px;
    font-size: 16px;
    touch-action: manipulation;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.form-control:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
    color: #ffffff !important;
}

/* Textarea specific styling */
textarea.form-control {
    min-height: 120px;
    resize: vertical;
    color: #ffffff !important;
}

textarea.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Select dropdown styling */
select.form-control {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: #ffffff !important;
    padding: 12px 15px;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

select.form-control:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    transform: translateY(-1px);
    color: #ffffff !important;
}

select.form-control:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
    background-color: rgba(0, 212, 255, 0.05);
    color: #ffffff !important;
}

select.form-control option {
    background: var(--primary-dark);
    color: #ffffff !important;
    padding: 10px 15px;
    border: none;
}

select.form-control option:hover {
    background: var(--accent-blue);
    color: var(--primary-dark) !important;
}

/* Select Dropdown Styling */
select.form-control {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-light);
    padding: 12px 15px;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

select.form-control:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    transform: translateY(-1px);
}

select.form-control:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
    background-color: rgba(0, 212, 255, 0.05);
}

select.form-control option {
    background: var(--primary-dark);
    color: #000000;
    padding: 10px 15px;
    border: none;
}

select.form-control option:hover {
    background: var(--accent-blue);
    color: #000000;
}

/* Custom dropdown arrow for better visibility */
select.form-control::-ms-expand {
    display: none;
}

/* Additional form styling for better visibility */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
    font-size: 14px;
}

.form-control {
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-light);
    padding: 12px 15px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    background-color: rgba(0, 212, 255, 0.05);
}

.form-control:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

/* Ensure form elements are visible on all devices */
@media (max-width: 768px) {
    .form-control {
        font-size: 16px !important; /* Prevent zoom on iOS */
    }
    
    select.form-control {
        font-size: 16px !important;
    }
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

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

.footer-section h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--accent-blue);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-dark);
    border-radius: 50%;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-blue);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

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

/* Pricing Tables */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--secondary-dark);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: var(--transition-medium);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent-blue);
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

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

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--text-gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--secondary-dark);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-medium);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-blue);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 3px solid var(--accent-blue);
    object-fit: cover;
}

.member-name {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.member-position {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.member-linkedin {
    color: var(--accent-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

.member-linkedin:hover {
    color: var(--text-light);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--secondary-dark);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-blue);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

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

/* Blog image overlay effects */
.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.2), rgba(255, 215, 0, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.blog-card:hover .blog-image-overlay {
    opacity: 1;
}

/* Blog card enhanced styling */
.blog-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: var(--shadow-glossy);
}

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

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

.blog-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-heavy), 0 0 40px rgba(0, 212, 255, 0.4);
    border-color: rgba(0, 212, 255, 0.5);
}

/* Blog Image Placeholder */
.blog-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.blog-image-placeholder span {
    font-size: 1rem;
    opacity: 0.9;
}

.blog-card:hover .blog-image-placeholder {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
    transform: scale(1.05);
}

/* Blog content styling */
.blog-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--accent-blue);
}

.blog-excerpt {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* Blog meta styling */
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-gray);
}

.blog-meta i {
    color: var(--accent-blue);
}

/* Blog Post Featured Image Styling */
.post-featured-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
}

.post-featured-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy), 0 0 30px rgba(0, 212, 255, 0.3);
}

.featured-image-main {
    transition: transform 0.4s ease;
}

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

.post-featured-image:hover .image-overlay {
    opacity: 1;
}

/* Image Modal for Full Size View */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.image-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.image-modal img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.image-modal-close:hover {
    background: rgba(255, 0, 0, 0.7);
    transform: scale(1.1);
}

/* Packages Grid Styling */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glossy);
}

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

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

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-heavy), 0 0 40px rgba(0, 212, 255, 0.4);
    border-color: rgba(0, 212, 255, 0.5);
}

.package-card.featured {
    border: 2px solid var(--accent-blue);
    box-shadow: var(--shadow-heavy), 0 0 30px rgba(0, 212, 255, 0.3);
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-accent);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-medium);
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-dark);
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

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

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.package-card:hover .package-title {
    color: var(--accent-blue);
}

.package-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
}

.package-description {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.package-description p {
    color: var(--text-gray);
    line-height: 1.6;
    text-align: center;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.package-features li i {
    color: var(--accent-blue);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.package-footer {
    text-align: center;
    position: relative;
    z-index: 2;
}

.package-note {
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

/* Package-specific styling */
.launch-package .package-icon {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

.growth-package .package-icon {
    background: linear-gradient(135deg, #2196F3, #03A9F4);
}

.dominance-package .package-icon {
    background: linear-gradient(135deg, #FF9800, #FFC107);
}

.ignite-package .package-icon {
    background: linear-gradient(135deg, #F44336, #FF5722);
}

.momentum-package .package-icon {
    background: linear-gradient(135deg, #9C27B0, #E91E63);
}

.velocity-package .package-icon {
    background: linear-gradient(135deg, #00BCD4, #009688);
}

.smartstart-package .package-icon {
    background: linear-gradient(135deg, #673AB7, #3F51B5);
}

.proflow-package .package-icon {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
}

.quantum-package .package-icon {
    background: linear-gradient(135deg, #00E676, #00BCD4);
}

/* Mobile responsiveness for packages */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .package-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .package-title {
        font-size: 1.3rem;
    }
    
    .package-features li {
        font-size: 0.9rem;
    }
}

/* Service Features Styling */
.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: center;
}

.service-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--accent-blue);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Service Details Page Styling */
.service-hero {
    text-align: center;
    padding: 3rem 0;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-dark);
    box-shadow: var(--shadow-heavy);
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.service-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glossy);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-blue);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.feature-card h3 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

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

.benefit-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glossy);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy), 0 0 30px rgba(0, 212, 255, 0.3);
    border-color: var(--accent-blue);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-dark);
    box-shadow: var(--shadow-medium);
}

.benefit-card h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    box-shadow: var(--shadow-medium);
}

.process-step h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.cta-content {
    text-align: center;
    padding: 3rem 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn-dark {
    background: var(--primary-dark);
    color: var(--text-light);
    border: 2px solid var(--primary-dark);
}

.btn-dark:hover {
    background: transparent;
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

.btn-outline-dark:hover {
    background: var(--primary-dark);
    color: var(--text-light);
}

/* Mobile responsiveness for service details */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .service-hero-description {
        font-size: 1rem;
    }
    
    .service-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Job Details Mobile Layout Fix */
@media (max-width: 768px) {
    .row {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .job-sidebar {
        order: -1 !important; /* Move job details above description on mobile */
    }
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.blog-title {
    color: var(--text-light);
    margin-bottom: 1rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-title:hover {
    color: var(--accent-blue);
}

.blog-excerpt {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.blog-read-more {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.blog-read-more:hover {
    color: var(--text-light);
}

/* Job Listings */
.job-listings {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.job-card {
    background: var(--secondary-dark);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-medium);
}

.job-card:hover {
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-light);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.job-title {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.job-title:hover {
    color: var(--accent-blue);
}

.job-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.job-description {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.job-apply {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.job-apply:hover {
    color: var(--text-light);
}

/* Application Form */
.application-form {
    background: var(--secondary-dark);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

/* FAQ Accordion */
.faq-accordion {
    margin-top: 3rem;
}

.faq-item {
    background: var(--secondary-dark);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.1);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-gray);
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

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

/* Enhanced FAQ styling */
.faq-question {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.1);
}

.faq-question:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

.faq-item.active .faq-question {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-blue);
}

/* Ensure FAQ items are properly styled */
.faq-item {
    background: var(--secondary-dark);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.1);
}

/* FAQ Animation Improvements */
.faq-answer {
    opacity: 0;
    transform: translateY(-10px);
}

.faq-answer.active {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure FAQ buttons are properly styled */
.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.1);
}

.faq-question:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* FAQ Answer Styling */
.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        padding: 0 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile-First Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Mobile Navbar handled in dedicated section above */
    
/* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background: rgba(0, 212, 255, 0.1);
        border: 1px solid rgba(0, 212, 255, 0.3);
        border-radius: 10px;
        color: var(--text-light);
        cursor: pointer;
        z-index: 10001;
        position: relative;
        padding: 0;
        margin: 0;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(0, 212, 255, 0.2);
        border-color: rgba(0, 212, 255, 0.5);
        transform: scale(1.05);
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 26px;
        height: 3px;
        background: var(--text-light);
        margin: 4px 0;
        transition: all 0.3s ease;
        transform-origin: center;
        border-radius: 2px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--accent-blue);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
        background: var(--accent-blue);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 5, 0.85);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        transform: translateX(-100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        display: flex;
        border: 2px solid rgba(0, 212, 255, 0.3);
        box-shadow: 0 0 50px rgba(0, 212, 255, 0.1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s ease;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.6s; }
    
    .nav-menu a {
        padding: 1.5rem 2rem;
        display: block;
        text-align: center;
        font-size: 1.3rem;
        font-weight: 500;
        color: var(--text-light);
        text-decoration: none;
        border-radius: 15px;
        transition: all 0.3s ease;
        background: rgba(0, 212, 255, 0.1);
        border: 1px solid rgba(0, 212, 255, 0.2);
        position: relative;
        overflow: hidden;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-menu a:hover::before {
        left: 100%;
    }
    
    .nav-menu a:hover {
        background: rgba(0, 212, 255, 0.2);
        border-color: rgba(0, 212, 255, 0.4);
        color: var(--accent-blue);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    }
    
    .nav-menu a.active {
        background: rgba(0, 212, 255, 0.25);
        border-color: rgba(0, 212, 255, 0.5);
        color: var(--accent-blue);
        box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
    }
    
    /* Company Story Section Mobile Fix */
    .company-story-row {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .company-story-text {
        width: 100% !important;
        flex: none !important;
    }
    
    .company-story-visual {
        width: 100% !important;
        flex: none !important;
    }
    
    .company-story-visual > div {
        height: 300px !important;
        padding: 1.5rem !important;
    }
    
    .company-story-visual h3 {
        font-size: 1.5rem !important;
    }
    
    .company-story-visual p {
        font-size: 1rem !important;
    }
    
    /* Contact Page Mobile Layout */
    .contact-container {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .contact-form-section {
        width: 100% !important;
        flex: none !important;
    }
    
    .contact-info-section {
        width: 100% !important;
        flex: none !important;
    }
    
    /* Form improvements for mobile */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem;
        border-radius: 10px;
    }
    
    /* Map container mobile fix */
    #map {
        height: 300px !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Business hours mobile layout */
    .business-hours {
        padding: 1.5rem !important;
    }
    
    .business-hours h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .business-hours .hours-row {
        flex-direction: column !important;
        gap: 0.5rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Hide desktop navigation on mobile */
    .nav-menu:not(.active) {
        display: none;
    }
    
    /* Hero Section Mobile */
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Grid Layouts Mobile */
    .services-grid,
    .pricing-grid,
    .team-grid,
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    /* Service Cards Mobile */
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Pricing Cards Mobile */
    .pricing-card {
        margin-bottom: 1.5rem;
    }
    
    /* Testimonials Mobile */
    .testimonial-slide {
        padding: 1.5rem;
    }
    
    .testimonial-content {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        width: 100%;
    }
    
    /* Section spacing mobile */
    .section {
        padding: 3rem 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
}

/* Hero Section - Mobile Optimized 3D Effects */
    .hero {
        padding: 100px 0 80px;
        text-align: center;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0;
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    /* Mobile 3D Effects Optimization */
    .hero-content {
        padding: 2rem 1rem;
        backdrop-filter: blur(1px);
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
    
    .ring:nth-child(1) { width: 150px; height: 150px; }
    .ring:nth-child(2) { width: 200px; height: 200px; }
    .ring:nth-child(3) { width: 250px; height: 250px; }
    .ring:nth-child(4) { width: 300px; height: 300px; }
    
    
    .cube {
        width: 15px;
        height: 15px;
    }

/* Ultra Mobile 3D Effects (480px and below) */
@media (max-width: 480px) {
    .hero-content {
        padding: 1.5rem 0.75rem;
    }
    
    .particle {
        width: 2px;
        height: 2px;
    }
    
    .ring:nth-child(1) { width: 100px; height: 100px; }
    .ring:nth-child(2) { width: 150px; height: 150px; }
    .ring:nth-child(3) { width: 200px; height: 200px; }
    .ring:nth-child(4) { width: 250px; height: 250px; }
    
    
    /* Sections */
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
        line-height: 1.6;
    }
    
    .services-grid,
    .pricing-grid,
    .team-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card,
    .pricing-card,
    .team-card,
    .blog-card {
        margin-bottom: 2rem;
    }
    
    /* Forms */
    .contact-form,
    .application-form {
        padding: 2rem 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-control {
        padding: 15px;
        font-size: 16px;
        border-radius: 10px;
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 1rem;
        border-radius: 50px;
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    .job-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .job-meta {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .job-meta span {
        margin: 0.5rem;
    }
    
    .testimonials-slider {
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-content {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item::before {
        left: 50%;
        transform: translateX(-50%);
    }


/* Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form,
    .application-form {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .service-card,
    .pricing-card,
    .team-card,
    .blog-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .pricing-card .price {
        font-size: 2rem;
    }
    
    .team-card img {
        width: 120px;
        height: 120px;
    }
    
    .blog-card img {
        height: 200px;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .job-card {
        padding: 1.5rem;
    }
    
    .job-title {
        font-size: 1.3rem;
    }
    
    .application-form .form-group {
        margin-bottom: 1rem;
    }
    
    .application-form label {
        font-size: 0.9rem;
    }
    
    .application-form input,
    .application-form textarea,
    .application-form select {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Extra Small Devices */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .service-card,
    .pricing-card,
    .team-card,
    .blog-card {
        padding: 1rem;
    }
    
    .contact-form,
    .application-form {
        padding: 1rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .stat-card {
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }
    
    /* Navigation */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
    }
    
    .mobile-menu-toggle span {
        width: 18px;
        height: 2px;
    }
    
    .nav-menu a {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    /* Sections */
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    /* Cards */
    .service-card,
    .pricing-card,
    .team-card,
    .blog-card {
        padding: 1.25rem 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .service-card h3,
    .pricing-card h3,
    .team-card h3,
    .blog-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card p,
    .pricing-card p,
    .team-card p,
    .blog-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Forms */
    .contact-form,
    .application-form {
        padding: 1.25rem 0.5rem;
    }
    
    .form-control {
        padding: 10px;
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    /* Stats */
    .stat-card {
        padding: 1rem 0.75rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-content {
        padding: 1.25rem 0.75rem;
    }
    
    /* FAQ */
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 1.25rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.85rem;
    }
}

/* Chat Modal Styles */
.chat-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.chat-modal-content {
    background: var(--secondary-dark);
    border-radius: 20px;
    width: 400px;
    max-width: 90vw;
    max-height: 80vh;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.chat-header {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-gold));
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    color: var(--primary-dark);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: var(--primary-dark);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

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

.chat-body {
    display: flex;
    flex-direction: column;
    height: 400px;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    display: flex;
    margin-bottom: 1rem;
}

.chat-message.bot {
    justify-content: flex-start;
}

.chat-message.user {
    justify-content: flex-end;
}

.message-content {
    max-width: 80%;
    padding: 1rem;
    border-radius: 15px;
    word-wrap: break-word;
}

.chat-message.bot .message-content {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--text-light);
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-gold));
    color: var(--primary-dark);
    font-weight: 500;
}

.chat-input {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    background: var(--primary-dark);
    color: var(--text-light);
    font-size: 0.9rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.1);
}

.chat-input button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-gold));
    border: none;
    border-radius: 25px;
    color: var(--primary-dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.chat-input button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    z-index: 1000;
    transition: var(--transition-fast);
    border: none;
    color: var(--primary-dark);
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

/* Mobile responsive chat */
@media (max-width: 768px) {
    .chat-modal-content {
        width: 95vw;
        height: 80vh;
    }
    
    .chat-body {
        height: calc(80vh - 80px);
    }
    
    .chat-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .nav-menu {
        padding: 1rem 2rem;
    }
    
    .nav-menu li {
        margin: 0.25rem 0;
    }
    
    .nav-menu a {
        padding: 0.5rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-attachment: scroll;
    }
}

/* Print Styles */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .nav-menu,
    .mobile-menu-toggle,
    .hero-buttons,
    .contact-form,
    .application-form {
        display: none !important;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
        color: black !important;
    }
    
    .section {
        padding: 20px 0;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent-blue);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: #28a745;
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: #dc3545;
}

.alert-info {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Mobile-specific enhancements */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Navbar overflow handled in mobile navbar section above */
    
    .hero {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .section {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    /* Fix any elements that might cause overflow */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, 
    .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Fix common overflow issues */
    .service-card,
    .pricing-card,
    .team-card,
    .testimonial-card,
    .blog-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .hero-buttons {
        width: 100% !important;
        max-width: 100% !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 90% !important;
        margin: 0.5rem 0 !important;
    }
    
    /* Fix text overflow */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    p, span, div {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Fix images */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Fix tables */
    table {
        width: 100% !important;
        max-width: 100% !important;
        table-layout: fixed !important;
    }
    
    /* Fix pre and code blocks */
    pre, code {
        max-width: 100% !important;
        overflow-x: auto !important;
        word-wrap: break-word !important;
    }
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px !important;
    }
    
    /* Improve tap highlights */
    * {
        -webkit-tap-highlight-color: rgba(0, 212, 255, 0.2);
    }
    
    /* Smooth scrolling for mobile */
    html {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Improve text selection */
    ::selection {
        background: var(--accent-blue);
        color: var(--primary-dark);
    }
    
    /* Better focus indicators for accessibility */
    .btn:focus,
    .form-control:focus,
    .nav-link:focus {
        outline: 2px solid var(--accent-blue);
        outline-offset: 2px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .btn:hover,
    .service-card:hover,
    .pricing-card:hover,
    .team-card:hover,
    .blog-card:hover {
        transform: none;
        box-shadow: var(--shadow-light);
    }
    
    /* Increase touch targets */
    .btn {
        padding: 18px 36px;
    }
    
    .form-control {
        padding: 18px;
    }
    
    /* Improve slider touch experience */
    .testimonials-slider {
        touch-action: pan-x;
    }
}

/* 404 Error Page Styles */
.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--accent-dark) 100%);
    padding: 2rem 0;
}

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

.error-code {
    margin-bottom: 2rem;
}

.error-code h1 {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0;
}

.error-message {
    margin-bottom: 3rem;
}

.error-message h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.error-message p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 0;
}

.error-actions {
    margin-bottom: 3rem;
}

.error-actions .btn {
    margin: 0 0.5rem;
}

.error-suggestions {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.error-suggestions h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-suggestions li {
    margin-bottom: 0.75rem;
}

.error-suggestions a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.error-suggestions a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.error-suggestions a::before {
    content: "→";
    margin-right: 0.5rem;
    transition: var(--transition-fast);
}

.error-suggestions a:hover::before {
    transform: translateX(-3px);
}

/* Responsive 404 Page */
@media (max-width: 768px) {
    .error-code h1 {
        font-size: 6rem;
    }
    
    .error-message h2 {
        font-size: 2rem;
    }
    
    .error-message p {
        font-size: 1.1rem;
    }
    
    .error-actions .btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .error-suggestions {
        padding: 1.5rem;
    }
}

/* Mobile specific styles for better responsiveness */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Company Story Section Mobile Fix */
    .company-story-row {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .company-story-text {
        width: 100% !important;
        flex: none !important;
    }
    
    .company-story-visual {
        width: 100% !important;
        flex: none !important;
    }
    
    .company-story-visual > div {
        height: 300px !important;
        padding: 1.5rem !important;
    }
    
    .company-story-visual h3 {
        font-size: 1.5rem !important;
    }
    
    .company-story-visual p {
        font-size: 1rem !important;
    }
    
    /* Contact Page Mobile Layout */
    .contact-container {
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .contact-form-section {
        width: 100% !important;
        flex: none !important;
    }
    
    .contact-info-section {
        width: 100% !important;
        flex: none !important;
    }
    
    /* Form improvements for mobile */
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem;
        border-radius: 10px;
    }
    
    /* Map container mobile fix */
    #map {
        height: 300px !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Business hours mobile layout */
    .business-hours {
        padding: 1.5rem !important;
    }
    
    .business-hours h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .business-hours .hours-row {
        flex-direction: column !important;
        gap: 0.5rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Service cards mobile improvements */
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Blog grid mobile */
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    /* Team grid mobile */
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    /* Pricing grid mobile */
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    /* Testimonials mobile */
    .testimonial-slide {
        padding: 1.5rem;
    }
    
    .testimonial-content {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        width: 100%;
    }
    
    /* Mobile menu improvements */
    .mobile-menu-toggle {
        width: 45px;
        height: 45px;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 2.5px;
    }
    
    .nav-menu {
        padding: 1.5rem;
    }
    
    .nav-menu a {
        padding: 1.25rem 1.5rem;
        font-size: 1.2rem;
    }
    
    /* Section spacing mobile */
    .section {
        padding: 3rem 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .error-code h1 {
        font-size: 4rem;
    }
    
    .error-message h2 {
        font-size: 1.75rem;
    }
    
    .error-suggestions {
        padding: 1rem;
    }
}

/* Search Bar Styles */
.search-container {
    position: relative;
    margin-left: 2rem;
    display: flex;
    align-items: center;
}

