/*
 * Guardians of the Galaxy Inspired Design
 * Cosmic Theme with Space Background and Futuristic Elements
 * Author: GitHub Copilot
 * Date: September 3, 2025
 */

/* Import Google Fonts for Space/Sci-Fi Typography */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Exo+2:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables for Cosmic Color Palette */
:root {
    /* Primary Cosmic Colors */
    --cosmic-purple: #6B46C1;
    --cosmic-blue: #1E40AF;
    --cosmic-orange: #EA580C;
    --cosmic-yellow: #F59E0B;
    --cosmic-pink: #EC4899;
    --cosmic-teal: #0D9488;
    
    /* Background Colors */
    --space-black: #0F0F23;
    --deep-space: #1A1B3A;
    --nebula-dark: #2D1B69;
    --star-dust: #4C1D95;
    
    /* Text Colors */
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-muted: #94A3B8;
    --text-accent: #60A5FA;
    
    /* Glow Effects */
    --glow-primary: 0 0 20px rgba(107, 70, 193, 0.5);
    --glow-secondary: 0 0 15px rgba(30, 64, 175, 0.4);
    --glow-accent: 0 0 25px rgba(234, 88, 12, 0.6);
    
    /* Fonts */
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Rajdhani', sans-serif;
    --font-body: 'Exo 2', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--space-black) 0%, var(--deep-space) 50%, var(--nebula-dark) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Cosmic Background Animation */
/* Cosmic Background - DISABLED */
body::before {
    display: none !important;
    /* Disabled cosmic background
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 226, 0.1) 0%, transparent 50%);
    z-index: -2;
    animation: cosmicShift 20s ease-in-out infinite alternate;
    */
}

/* Starfield Background - DISABLED */
body::after {
    display: none !important;
    /* Disabled starfield background that looked like Matrix effect
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #FFF, transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255,255,255,0.7), transparent);
    background-repeat: repeat;
    background-size: 200px 150px;
    z-index: -1;
    animation: starTwinkle 10s ease-in-out infinite;
    */
}

@keyframes cosmicShift {
    0% { transform: translateX(-10px) translateY(-5px); }
    100% { transform: translateX(10px) translateY(5px); }
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.4; }
}

/* Cosmic Comets Animation */
.cosmic-comets {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.comet {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, var(--cosmic-orange), var(--cosmic-yellow));
    border-radius: 50%;
    box-shadow: 
        0 0 6px var(--cosmic-orange),
        0 0 12px var(--cosmic-yellow),
        0 0 18px rgba(234, 88, 12, 0.4);
}

.comet:nth-child(1) {
    top: -50px;
    left: 10%;
    animation: cometFall 15s linear infinite;
    animation-delay: 0s;
}

.comet:nth-child(2) {
    top: -50px;
    left: 30%;
    animation: cometFall 12s linear infinite;
    animation-delay: 3s;
}

.comet:nth-child(3) {
    top: -50px;
    left: 60%;
    animation: cometFall 18s linear infinite;
    animation-delay: 6s;
}

.comet:nth-child(4) {
    top: -50px;
    left: 80%;
    animation: cometFall 14s linear infinite;
    animation-delay: 9s;
}

@keyframes cometFall {
    0% {
        transform: translateY(0) translateX(0) rotate(45deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(300px) rotate(45deg);
        opacity: 0;
    }
}

/* Galaxy Particles */
.galaxy-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(107, 70, 193, 0.3);
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.75rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 2.25rem;
    color: var(--text-accent);
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.75rem;
    font-family: var(--font-secondary);
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

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

.lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Navigation */
.navbar {
    background: rgba(15, 15, 35, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 70, 193, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary) !important;
    text-shadow: var(--glow-primary);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--cosmic-purple) !important;
    text-shadow: var(--glow-accent);
    transform: scale(1.05);
}

.navbar-brand i {
    color: var(--cosmic-orange);
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

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

.navbar-nav .nav-link {
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--text-secondary) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(107, 70, 193, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-primary) !important;
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-blue));
    box-shadow: var(--glow-primary);
    transform: translateY(-2px);
}

.dropdown-menu {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.dropdown-item {
    color: var(--text-secondary);
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
    border-radius: 10px;
    margin: 0.2rem;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-blue));
    color: var(--text-primary);
    box-shadow: var(--glow-secondary);
}

/* Language Switcher */
.language-switcher .btn {
    font-family: var(--font-secondary);
    font-weight: 600;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.language-switcher .btn-primary {
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-blue));
    border: none;
    box-shadow: var(--glow-primary);
}

.language-switcher .btn-outline-light {
    border-color: rgba(107, 70, 193, 0.5);
    color: var(--text-secondary);
}

.language-switcher .btn-outline-light:hover {
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-blue));
    border-color: var(--cosmic-purple);
    color: var(--text-primary);
    box-shadow: var(--glow-primary);
}

/* Buttons */
.btn {
    font-family: var(--font-secondary);
    font-weight: 600;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-blue));
    border: none;
    color: var(--text-primary);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--cosmic-blue), var(--cosmic-purple));
    box-shadow: var(--glow-accent);
    transform: translateY(-3px) scale(1.05);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--cosmic-orange), var(--cosmic-yellow));
    border: none;
    color: var(--space-black);
    box-shadow: var(--glow-accent);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--cosmic-yellow), var(--cosmic-orange));
    color: var(--space-black);
    transform: translateY(-3px) scale(1.05);
}

.btn-outline-light {
    border: 2px solid var(--cosmic-purple);
    color: var(--text-primary);
    background: transparent;
}

.btn-outline-light:hover {
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-blue));
    border-color: var(--cosmic-purple);
    color: var(--text-primary);
    box-shadow: var(--glow-primary);
}

/* Button Ripple Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

/* Cards */
.card {
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(30, 64, 175, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        var(--glow-primary);
    border-color: var(--cosmic-purple);
}

.card-header {
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-blue));
    border: none;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-weight: 600;
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-family: var(--font-primary);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-secondary);
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--deep-space), var(--nebula-dark));
    position: relative;
    overflow: hidden;
    margin-top: 76px;
    padding: 4rem 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(107, 70, 193, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(234, 88, 12, 0.2) 0%, transparent 50%);
}

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

.page-title {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-orange), var(--cosmic-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1rem;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(107, 70, 193, 0.5)); }
    100% { filter: drop-shadow(0 0 20px rgba(234, 88, 12, 0.8)); }
}

/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    font-family: var(--font-secondary);
}

.breadcrumb-item a {
    color: var(--text-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--cosmic-orange);
    text-shadow: 0 0 5px var(--cosmic-orange);
}

.breadcrumb-item.active {
    color: var(--text-secondary);
}

/* Forms */
.form-control {
    background: rgba(15, 15, 35, 0.8);
    border: 2px solid rgba(107, 70, 193, 0.3);
    border-radius: 15px;
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(15, 15, 35, 0.9);
    border-color: var(--cosmic-purple);
    box-shadow: var(--glow-primary);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

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

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    /* DISABLED - BACKGROUND LAYER CAUSING OVERLAY
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(107, 70, 193, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(30, 64, 175, 0.2) 0%, transparent 50%);
    animation: heroAnimation 10s ease-in-out infinite alternate;
    z-index: -1;
    */
    display: none; /* Completely disable this overlay */
}

@keyframes heroAnimation {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(2deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    /* DISABLED BACKGROUND LAYER - EASY ROLLBACK
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    */
    /* Temporary replacement - just positioning */
    padding: 2rem;
    border-radius: 15px;
}


.hero-title {
    font-size: 3.5rem;
    /* DISABLED GRADIENT AND ANIMATION EFFECTS - EASY ROLLBACK
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-orange), var(--cosmic-pink), var(--cosmic-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroTextGlow 4s ease-in-out infinite alternate;
    */
    /* Simple white text styling - no shadow */
    color: white;
    font-weight: 700;
    /* text-shadow: 2px 2px 4px rgba(0,0,0,0.8); REMOVED */
    margin-bottom: 2rem;
    width: 100%;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.2;
}

@keyframes heroTextGlow {
    0% { filter: drop-shadow(0 0 20px rgba(107, 70, 193, 0.6)); }
    100% { filter: drop-shadow(0 0 30px rgba(234, 88, 12, 0.8)); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-family: var(--font-secondary);
}

/* Responsive Hero Title */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* Additional Section-Specific Styles */

/* Hero Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    display: block !important;
    visibility: visible !important;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1.0 !important;
    filter: brightness(1.0) contrast(1.0) saturate(1.0);
    transition: all 0.3s ease;
    display: block !important;
    visibility: visible !important;
}

.hero-section:hover .hero-video {
    opacity: 1.0;
    filter: brightness(1.0) contrast(1.0) saturate(1.0);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

/* Glass Effect - TEMPORARILY DISABLED */
.glass {
    /* COMMENTED OUT FOR TESTING - EASY ROLLBACK
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    */
    /* Temporary replacement - just padding and border radius */
    padding: 2rem;
    border-radius: 15px;
}

/* Title Glass Effect - TEMPORARILY DISABLED */
.title-glass {
    /* COMMENTED OUT FOR TESTING - EASY ROLLBACK
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: inline-block;
    */
    /* Temporary replacement - just padding and border radius */
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: inline-block;
}

/* Glass Effect - Only for Title Text */
.title-glass-only {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    display: inline-block;
    margin: 0 auto;
}

/* Glass Effect - Only for Subtitle Text */
.subtitle-glass-only {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    display: inline-block;
    margin: 0 auto;
    max-width: 90%;
}

/* Transparent Content Area - TEMPORARILY DISABLED */
.hero-content-transparent {
    /* COMMENTED OUT FOR TESTING - EASY ROLLBACK
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    */
    /* Temporary replacement - just padding */
    padding: 1rem;
}

/* Maximum Impact Hero Animation with Zoom Out */
.simple-fade-in {
    opacity: 0;
    transform: translateY(50px) scale(1.4);
    animation: enhanced-zoom-fade 2.5s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes enhanced-zoom-fade {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(1.4);
        filter: blur(4px);
    }
    60% {
        opacity: 0.8;
        transform: translateY(10px) scale(1.1);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

/* Enhanced hero content positioning - no background */
.hero-content {
    position: relative;
    z-index: 100;
    /* Removed glass background for direct video overlay */
}

/* Pure snow white hero title - no shadows */
.hero-title {
    position: relative;
    z-index: 100;
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em;
    color: #ffffff !important;
}

/* Enhanced subtitle with cosmic theme */
.hero-subtitle {
    font-size: 1.4rem !important;
    font-weight: 500 !important;
    margin-top: 1.5rem !important;
    color: #ffffff !important;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(138, 100, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem !important;
    }
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem !important;
    }
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
}

@keyframes blink-caret {
    from, to { 
        border-color: transparent; 
    }
    50% { 
        border-color: var(--cosmic-orange); 
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-down {
    color: var(--cosmic-orange);
    font-size: 1.5rem;
    text-decoration: none;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: var(--cosmic-yellow);
    text-shadow: 0 0 10px var(--cosmic-orange);
    transform: scale(1.2);
}

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

/* Pillars Section */
.pillars-section {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(15, 15, 35, 0.9) 0%, 
        rgba(30, 27, 75, 0.8) 50%, 
        rgba(15, 15, 35, 0.9) 100%);
}

.pillars-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(107, 70, 193, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(234, 88, 12, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.pillars-section .container-fluid {
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-orange), var(--cosmic-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Pillar Cards */
.pillar-card {
    background: rgba(15, 15, 35, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(107, 70, 193, 0.4);
    border-radius: 25px;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(107, 70, 193, 0.1) 0%, 
        rgba(30, 64, 175, 0.05) 50%, 
        rgba(234, 88, 12, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.pillar-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--cosmic-purple);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(107, 70, 193, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pillar-icon {
    font-size: 4rem;
    color: var(--cosmic-orange);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(234, 88, 12, 0.5);
    animation: iconFloat 3s ease-in-out infinite;
}

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

.pillar-card:nth-child(1) .pillar-icon { color: var(--cosmic-purple); animation-delay: 0s; }
.pillar-card:nth-child(2) .pillar-icon { color: var(--cosmic-blue); animation-delay: 1s; }
.pillar-card:nth-child(3) .pillar-icon { color: var(--cosmic-orange); animation-delay: 2s; }

/* AI Animated Text */
.ai-text--animated {
    background: linear-gradient(45deg, 
        var(--cosmic-purple), 
        var(--cosmic-blue), 
        var(--cosmic-pink), 
        var(--cosmic-orange));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: aiTextGradient 3s ease-in-out infinite;
}

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

/* Feature Lists */
.pillar-features ul li {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 5px;
}

.pillar-features ul li:hover {
    color: var(--text-primary);
    background: rgba(107, 70, 193, 0.1);
    padding-left: 1rem;
    transform: translateX(5px);
}

.pillar-features ul li i {
    color: var(--cosmic-teal);
    text-shadow: 0 0 5px rgba(13, 148, 136, 0.5);
}

/* Professional Clients Section */
.clients-section {
    background: linear-gradient(135deg, 
        rgba(30, 27, 75, 0.8) 0%, 
        rgba(15, 15, 35, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(107, 70, 193, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.clients-section .container {
    position: relative;
    z-index: 1;
}

/* Clients Carousel */
.clients-carousel-wrapper {
    overflow: hidden;
    position: relative;
    background: rgba(15, 15, 35, 0.3);
    border-radius: 20px;
    padding: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 70, 193, 0.2);
}

.clients-carousel-wrapper::before,
.clients-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, 
        rgba(15, 15, 35, 0.9) 0%, 
        rgba(15, 15, 35, 0.5) 50%,
        transparent 100%);
}

.clients-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, 
        rgba(15, 15, 35, 0.9) 0%, 
        rgba(15, 15, 35, 0.5) 50%,
        transparent 100%);
}

.clients-carousel {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 3rem;
    align-items: center;
}

.client-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 100px;
    background: rgba(15, 15, 35, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(107, 70, 193, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.client-logo:hover {
    transform: scale(1.05);
    border-color: var(--cosmic-purple);
    box-shadow: 0 5px 20px rgba(107, 70, 193, 0.3);
}

.client-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: brightness(1) contrast(1.3);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Pause animation on hover */
.clients-carousel:hover {
    animation-play-state: paused;
}

/* Professional Section Transitions */
section {
    position: relative;
    isolation: isolate;
}

section::before {
    z-index: -1;
}

/* Section Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(107, 70, 193, 0.5) 50%, 
        transparent 100%);
    margin: 0;
    border: none;
}

/* Professional Home CTA Section */
.home-cta-section {
    background: linear-gradient(135deg, 
        rgba(15, 15, 35, 0.95) 0%, 
        rgba(45, 27, 105, 0.9) 50%,
        rgba(15, 15, 35, 0.95) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.home-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(107, 70, 193, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(234, 88, 12, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(30, 64, 175, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.home-cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    background: rgba(15, 15, 35, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 25px;
    padding: 4rem 3rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(107, 70, 193, 0.2);
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    background: linear-gradient(135deg, 
        var(--cosmic-purple), 
        var(--cosmic-orange), 
        var(--cosmic-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: ctaGlow 4s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% { filter: drop-shadow(0 0 10px rgba(107, 70, 193, 0.5)); }
    100% { filter: drop-shadow(0 0 20px rgba(234, 88, 12, 0.7)); }
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-family: var(--font-secondary);
}

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

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Enhanced Section Styling */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--cosmic-purple), var(--cosmic-orange));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Professional Statistics Section */
.stats-section {
    background: rgba(15, 15, 35, 0.4);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(107, 70, 193, 0.2);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

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

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    .clients-carousel {
        gap: 2rem;
    }
    
    .client-logo {
        width: 150px;
        height: 80px;
    }
    
    .cta-content {
        padding: 3rem 2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Events Section */
.events-section {
    background: linear-gradient(135deg, 
        rgba(15, 15, 35, 0.9) 0%, 
        rgba(45, 27, 105, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(107, 70, 193, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.events-section .container {
    position: relative;
    z-index: 1;
}

/* Professional Event Cards */
.event-card {
    background: rgba(15, 15, 35, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(107, 70, 193, 0.1) 0%, 
        rgba(30, 64, 175, 0.05) 50%, 
        rgba(234, 88, 12, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

.event-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--cosmic-purple);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(107, 70, 193, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.event-date {
    background: linear-gradient(135deg, var(--cosmic-orange), var(--cosmic-yellow));
    color: var(--space-black);
    text-align: center;
    padding: 1rem;
    font-family: var(--font-primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.event-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-blue));
    color: var(--text-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.event-badge.workshop {
    background: linear-gradient(135deg, var(--cosmic-teal), var(--cosmic-blue));
}

.event-badge.conference {
    background: linear-gradient(135deg, var(--cosmic-orange), var(--cosmic-pink));
}

.event-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.event-description {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.event-meta {
    margin-bottom: 1rem;
}

.event-time,
.event-location {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
}

.event-time i,
.event-location i {
    color: var(--cosmic-orange);
    width: 16px;
    margin-right: 0.5rem;
    text-align: center;
}

/* Blog Section - Professional Design */
.blogs-section {
    background: linear-gradient(135deg, 
        rgba(30, 27, 75, 0.8) 0%, 
        rgba(15, 15, 35, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.blogs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(234, 88, 12, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(107, 70, 193, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.blogs-section .container {
    position: relative;
    z-index: 1;
}

/* Professional Blog Cards */
.blog-card {
    background: rgba(15, 15, 35, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(107, 70, 193, 0.1), 
        rgba(234, 88, 12, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

.blog-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--cosmic-purple);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(107, 70, 193, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.8) contrast(1.2);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-blue));
    color: var(--text-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-secondary);
    z-index: 2;
}

.blog-category.business {
    background: linear-gradient(135deg, var(--cosmic-orange), var(--cosmic-yellow));
    color: var(--space-black);
}

.blog-category.technology {
    background: linear-gradient(135deg, var(--cosmic-teal), var(--cosmic-blue));
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: var(--font-secondary);
}

.blog-date i,
.blog-read-time i {
    color: var(--cosmic-orange);
    margin-right: 0.5rem;
    width: 14px;
    text-align: center;
}

.blog-title {
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.blog-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.blog-title a:hover {
    color: var(--cosmic-orange);
    text-shadow: 0 0 10px rgba(234, 88, 12, 0.5);
}

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

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(107, 70, 193, 0.2);
}

.blog-author {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--font-secondary);
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 0.5rem;
    border: 2px solid var(--cosmic-purple);
}

.blog-read-more {
    color: var(--cosmic-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-family: var(--font-secondary);
}

.blog-read-more:hover {
    color: var(--cosmic-yellow);
    text-shadow: 0 0 5px var(--cosmic-orange);
    transform: translateX(5px);
}

.blog-read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* Professional Contact Section */
.contact-section {
    background: linear-gradient(135deg, 
        rgba(45, 27, 105, 0.8) 0%, 
        rgba(15, 15, 35, 0.9) 50%,
        rgba(30, 27, 75, 0.8) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(107, 70, 193, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(234, 88, 12, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(107, 70, 193, 0.4);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(107, 70, 193, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(107, 70, 193, 0.05) 0%, 
        rgba(30, 64, 175, 0.03) 50%, 
        rgba(234, 88, 12, 0.05) 100%);
    z-index: 0;
}

.contact-form-wrapper > * {
    position: relative;
    z-index: 1;
}

/* Form Header */
.form-header {
    margin-bottom: 2.5rem;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 
        0 10px 30px rgba(107, 70, 193, 0.4),
        0 0 20px rgba(107, 70, 193, 0.3);
    animation: formIconFloat 3s ease-in-out infinite;
}

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

.form-icon i {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Enhanced Form Controls */
.form-label {
    color: var(--text-accent);
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    background: rgba(15, 15, 35, 0.9);
    border: 2px solid rgba(107, 70, 193, 0.3);
    border-radius: 15px;
    color: var(--text-primary);
    padding: 1rem 1.2rem;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
}

.form-control::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

.form-control:focus {
    background: rgba(15, 15, 35, 0.95);
    border-color: var(--cosmic-purple);
    box-shadow: 
        0 0 0 0.25rem rgba(107, 70, 193, 0.2),
        var(--glow-primary),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.form-control:valid {
    border-color: var(--cosmic-teal);
    box-shadow: 0 0 0 0.25rem rgba(13, 148, 136, 0.1);
}

.form-control.is-invalid {
    border-color: var(--cosmic-pink);
    box-shadow: 0 0 0 0.25rem rgba(236, 72, 153, 0.2);
}

/* Textarea Specific */
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Form Select */
.form-select {
    background: rgba(15, 15, 35, 0.9);
    border: 2px solid rgba(107, 70, 193, 0.3);
    border-radius: 15px;
    color: var(--text-primary);
    padding: 1rem 1.2rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23EA580C' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.form-select:focus {
    border-color: var(--cosmic-purple);
    box-shadow: var(--glow-primary);
    color: var(--text-primary);
}

/* Form Validation */
.invalid-feedback {
    color: var(--cosmic-pink);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-family: var(--font-secondary);
}

.valid-feedback {
    color: var(--cosmic-teal);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-family: var(--font-secondary);
}

/* Contact Info Cards */
.contact-info-card {
    background: rgba(15, 15, 35, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(107, 70, 193, 0.1), 
        rgba(30, 64, 175, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-card:hover::before {
    opacity: 1;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: var(--cosmic-purple);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(107, 70, 193, 0.4);
}

.contact-info-card > * {
    position: relative;
    z-index: 1;
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--cosmic-orange), var(--cosmic-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--space-black);
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.4);
}

.contact-info-card h5 {
    color: var(--text-primary);
    font-family: var(--font-primary);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.contact-info-card a {
    color: var(--cosmic-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--cosmic-yellow);
    text-shadow: 0 0 5px var(--cosmic-orange);
}

/* Submit Button Enhancement */
.btn-submit {
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-blue));
    border: none;
    color: var(--text-primary);
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-secondary);
    box-shadow: 
        0 10px 30px rgba(107, 70, 193, 0.4),
        0 0 20px rgba(107, 70, 193, 0.2);
}

.btn-submit::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;
}

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

.btn-submit:hover {
    background: linear-gradient(135deg, var(--cosmic-orange), var(--cosmic-yellow));
    color: var(--space-black);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(234, 88, 12, 0.6);
}

.btn-submit:active {
    transform: translateY(-1px) scale(1.02);
}

/* Loading State */
.btn-submit.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid var(--text-primary);
    border-radius: 50%;
    animation: buttonSpin 1s linear infinite;
}

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

/* Success/Error Messages */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    font-family: var(--font-secondary);
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(13, 148, 136, 0.2);
    border: 1px solid var(--cosmic-teal);
    color: var(--cosmic-teal);
}

.form-message.error {
    background: rgba(236, 72, 153, 0.2);
    border: 1px solid var(--cosmic-pink);
    color: var(--cosmic-pink);
}

/* Mobile Responsive Improvements */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .form-icon {
        width: 60px;
        height: 60px;
    }
    
    .form-icon i {
        font-size: 1.5rem;
    }
    
    .btn-submit {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .contact-info-card {
        margin-bottom: 2rem;
    }
}

/* Professional Footer Design */
footer {
    background: linear-gradient(135deg, 
        var(--space-black) 0%, 
        var(--deep-space) 50%,
        var(--nebula-dark) 100%);
    border-top: 1px solid rgba(107, 70, 193, 0.3);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(107, 70, 193, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

/* Footer Headings */
footer h5 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(107, 70, 193, 0.3);
}

footer h5 i {
    color: var(--cosmic-orange);
    text-shadow: 0 0 10px var(--cosmic-orange);
}

footer h6 {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--text-accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Text */
footer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

footer .text-muted {
    color: var(--text-muted) !important;
}

/* Footer Links */
footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

footer ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.3rem 0;
    border-radius: 5px;
    font-family: var(--font-secondary);
}

footer ul li a:hover {
    color: var(--cosmic-orange);
    text-shadow: 0 0 5px var(--cosmic-orange);
    padding-left: 0.5rem;
    background: rgba(107, 70, 193, 0.1);
}

footer ul li a i {
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
    color: var(--cosmic-purple);
}

/* Professional Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(15, 15, 35, 0.6);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--text-primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(107, 70, 193, 0.4);
    border-color: var(--cosmic-purple);
}

/* Footer Contact Info */
.footer-contact {
    background: rgba(15, 15, 35, 0.4);
    border: 1px solid rgba(107, 70, 193, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--cosmic-orange);
    margin-right: 0.8rem;
    width: 18px;
    text-align: center;
}

.footer-contact a {
    color: var(--text-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--cosmic-orange);
    text-shadow: 0 0 5px var(--cosmic-orange);
}

/* Footer Bottom Section */
footer hr {
    border-color: rgba(107, 70, 193, 0.3) !important;
    margin: 2.5rem 0 1.5rem 0;
}

footer .small {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Language Switcher in Footer */
.language-switcher-footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
    font-weight: 500;
}

.language-switcher-footer a:hover {
    color: var(--cosmic-orange);
    text-shadow: 0 0 5px var(--cosmic-orange);
}

.language-switcher-footer i {
    color: var(--cosmic-purple);
}

/* Back to Top Button - Enhanced */
.btn-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-blue));
    border: 2px solid rgba(107, 70, 193, 0.3);
    color: var(--text-primary);
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(107, 70, 193, 0.4);
    backdrop-filter: blur(10px);
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.btn-back-to-top:hover {
    background: linear-gradient(135deg, var(--cosmic-orange), var(--cosmic-yellow));
    color: var(--space-black);
    transform: translateY(-5px) scale(1.1) rotate(15deg);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(234, 88, 12, 0.6);
    border-color: var(--cosmic-orange);
}

/* Professional Newsletter Signup */
.newsletter-signup {
    background: rgba(15, 15, 35, 0.5);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 1rem;
    backdrop-filter: blur(15px);
}

.newsletter-signup h6 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.newsletter-signup .input-group {
    margin-bottom: 1rem;
}

.newsletter-signup .form-control {
    background: rgba(15, 15, 35, 0.8);
    border: 1px solid rgba(107, 70, 193, 0.3);
    border-radius: 10px 0 0 10px;
    color: var(--text-primary);
}

.newsletter-signup .btn {
    border-radius: 0 10px 10px 0;
    padding: 0.6rem 1.2rem;
}

/* Responsive Footer Improvements */
@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        margin: 1.5rem 0;
    }
    
    .btn-back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    footer ul li a:hover {
        padding-left: 0;
        background: rgba(107, 70, 193, 0.2);
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--space-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(107, 70, 193, 0.3);
    border-top: 3px solid var(--cosmic-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

::-webkit-scrollbar-track {
    background: var(--space-black);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--cosmic-purple), var(--cosmic-blue));
    border-radius: 6px;
    border: 2px solid var(--space-black);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--cosmic-blue), var(--cosmic-orange));
}

/* Selection */
::selection {
    background: rgba(107, 70, 193, 0.6);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(107, 70, 193, 0.6);
    color: var(--text-primary);
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--cosmic-purple);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(107, 70, 193, 0.2);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    body {
        background: white !important;
        color: black !important;
    }
    
    .cosmic-comets,
    .galaxy-particles,
    .hero-video-bg,
    nav,
    footer {
        display: none !important;
    }
}

/* Clean Hero Section Styles - No Matrix Effects */
.cosmic-comets,
.galaxy-particles {
    display: none !important;
    visibility: hidden !important;
}

.hero-section-clean {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    width: 100%;
}

.hero-title-clean {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin: 0;
    line-height: 1.2;
    font-family: 'Arial', sans-serif;
}

.hero-container {
    position: relative;
    z-index: 10;
    height: 100vh;
}

.hero-content-clean {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-subtitle-clean {
    color: #CBD5E1;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title-clean {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title-clean {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title-clean {
        font-size: 2rem;
    }
}