/* ===================================
   GLOBAL STYLES & VARIABLES
   =================================== */
:root {
    --primary-black: #000000;
    --dark-gray: #0a0a0a;
    --medium-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --accent-color: #ffffff;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Background Grid Pattern - More Visible */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
}

/* Subtle Noise Texture - Enhanced */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.1) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
}

html {
    scroll-behavior: smooth;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    text-decoration: none;
}

.navbar-logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.navbar-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--text-white);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-black);
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    border-radius: 50%;
    animation: floatOrb 20s ease-in-out infinite;
    z-index: -1;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.12) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
    animation: floatOrb 25s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Floating Particles Background */
.hero-background::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.25), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(255, 255, 255, 0.3), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: particleMove 30s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes particleMove {
    0%, 100% { background-position: 0% 0%, 50% 50%, 100% 100%; }
    33% { background-position: 100% 50%, 0% 100%, 50% 0%; }
    66% { background-position: 50% 100%, 100% 0%, 0% 50%; }
}

/* Geometric Shapes */
.hero-background::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: 15%;
    left: 10%;
    animation: rotateSlow 40s linear infinite;
    z-index: -1;
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 85%; animation-delay: 1.5s; width: 3px; height: 3px; }
.particle:nth-child(3) { top: 80%; left: 20%; animation-delay: 3s; width: 5px; height: 5px; }
.particle:nth-child(4) { top: 30%; left: 70%; animation-delay: 4.5s; }
.particle:nth-child(5) { top: 50%; left: 5%; animation-delay: 6s; width: 3px; height: 3px; }
.particle:nth-child(6) { top: 70%; left: 90%; animation-delay: 7.5s; }
.particle:nth-child(7) { top: 15%; left: 50%; animation-delay: 9s; width: 4px; height: 4px; }
.particle:nth-child(8) { top: 40%; left: 30%; animation-delay: 10.5s; width: 3px; height: 3px; }
.particle:nth-child(9) { top: 65%; left: 60%; animation-delay: 12s; width: 5px; height: 5px; }
.particle:nth-child(10) { top: 25%; left: 80%; animation-delay: 13.5s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-40px) translateX(30px);
        opacity: 0.7;
    }
}

/* Gradient Orbs - Modern Glass Effect */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.25) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-duration: 25s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.2) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-duration: 30s;
    animation-delay: 2s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.18) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation-duration: 35s;
    animation-delay: 4s;
}

.orb-4 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    top: 15%;
    right: -150px;
    animation-duration: 28s;
}

.orb-5 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.18) 0%, transparent 70%);
    bottom: 20%;
    left: -100px;
    animation-duration: 32s;
    animation-delay: 3s;
}

.orb-6 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.2) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    animation-duration: 27s;
}

.orb-7 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.16) 0%, transparent 70%);
    bottom: 15%;
    left: -120px;
    animation-duration: 33s;
    animation-delay: 2s;
}

.orb-8 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.18) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 40s;
}

.orb-9 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation-duration: 29s;
}

.orb-10 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.17) 0%, transparent 70%);
    top: 20%;
    left: -100px;
    animation-duration: 36s;
    animation-delay: 2.5s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
        opacity: 0.7;
    }
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Additional gradient overlay */
.hero-background {
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(79, 172, 254, 0.08) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
}


@keyframes backgroundShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.05); }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.15));
    position: relative;
    z-index: 2;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.btn-primary-custom {
    background: var(--text-white);
    color: var(--primary-black);
    padding: 12px 35px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    color: var(--primary-black);
}

.btn-outline-custom {
    background: transparent;
    color: var(--text-white);
    padding: 12px 35px;
    font-weight: 600;
    border: 2px solid var(--text-white);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--text-white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--text-white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* ===================================
   SECTIONS
   =================================== */
section {
    position: relative;
    padding: 100px 0;
}

section > .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-section .section-title {
    text-align: left;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--text-white), transparent);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.contact-section .title-underline {
    margin: 0 0 2rem 0;
}

/* About Section */
.about-section {
    background: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: 10%;
    right: -150px;
    animation: rotateSlow 35s linear infinite;
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    bottom: 15%;
    left: -100px;
    border-radius: 50%;
    animation: floatOrb 18s ease-in-out infinite;
    z-index: 0;
}

.about-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-text {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.about-highlight {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 600;
    font-style: italic;
    color: var(--text-white);
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    border-left: 3px solid var(--text-white);
    text-align: left;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.about-highlight:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Services Section */
.services-section {
    background: var(--primary-black);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    border-radius: 50%;
    animation: floatOrb 22s ease-in-out infinite;
    z-index: 0;
}

.services-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    bottom: 20%;
    left: 5%;
    animation: rotateSlow 30s linear infinite reverse;
    z-index: 0;
}

.service-card {
    background: var(--medium-gray);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    top: -60px;
    right: -60px;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
    transform: scale(2.5);
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--light-gray);
    border-color: var(--text-white);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1),
                0 0 80px rgba(102, 126, 234, 0.2);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

/* Subtle animated lines in sections */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    z-index: 1;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    z-index: 1;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Stats Section */
.stats-section {
    background: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: backgroundShift 25s ease-in-out infinite;
    z-index: 0;
}

.stats-section::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -150px;
    right: 10%;
    animation: rotateSlow 40s linear infinite;
    z-index: 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.stat-card::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.stat-card:hover::before {
    opacity: 1;
    width: 180px;
    height: 180px;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.stat-label {
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background: var(--primary-black);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.12) 0%, transparent 70%);
    bottom: -275px;
    right: -275px;
    border-radius: 50%;
    animation: floatOrb 28s ease-in-out infinite;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: 10%;
    left: -150px;
    animation: rotateSlow 45s linear infinite reverse;
    z-index: 0;
}

.contact-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-gray);
    max-width: 600px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

/* Contact Logo */
.contact-logo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.contact-logo {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    transition: all 0.5s ease;
    animation: logoFloat 6s ease-in-out infinite;
}

.contact-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.contact-email {
    font-size: 1.3rem;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-email:hover {
    color: var(--text-gray);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    color: var(--text-white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: var(--text-gray);
    transform: translateY(-5px) scale(1.1);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    border-top: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 0;
}

.footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    body::before {
        background-size: 30px 30px;
        opacity: 0.3;
    }
    
    body::after {
        background-size: 20px 20px;
        opacity: 0.15;
    }
    
    .hero-section::before,
    .hero-section::after {
        width: 300px;
        height: 300px;
    }
    
    .hero-section::before {
        top: -150px;
        right: -150px;
    }
    
    .hero-section::after {
        bottom: -150px;
        left: -150px;
    }
    
    .hero-background::after {
        width: 200px;
        height: 200px;
        left: 5%;
    }
    
    .about-section::before {
        width: 250px;
        height: 250px;
        right: -100px;
    }
    
    .about-section::after {
        width: 180px;
        height: 180px;
        left: -80px;
    }
    
    .services-section::before {
        width: 350px;
        height: 350px;
        top: -175px;
        right: -175px;
    }
    
    .services-section::after {
        width: 200px;
        height: 200px;
        left: 3%;
    }
    
    .stats-section::before {
        width: 300px;
        height: 300px;
    }
    
    .stats-section::after {
        width: 220px;
        height: 220px;
        right: 5%;
    }
    
    .contact-section::before {
        width: 350px;
        height: 350px;
        bottom: -175px;
        right: -175px;
    }
    
    .contact-section::after {
        width: 250px;
        height: 250px;
        left: -100px;
    }
    
    /* Gradient Orbs Responsive */
    .gradient-orb {
        filter: blur(60px);
    }
    
    .orb-1,
    .orb-6,
    .orb-9 {
        width: 300px;
        height: 300px;
    }
    
    .orb-2,
    .orb-3,
    .orb-4,
    .orb-5,
    .orb-7,
    .orb-10 {
        width: 200px;
        height: 200px;
    }
    
    .orb-8 {
        width: 350px;
        height: 350px;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .about-highlight {
        padding: 1.5rem;
        text-align: center;
        border-left: none;
        border-top: 3px solid var(--text-white);
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===================================
   ANIMATIONS & EFFECTS
   =================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--light-gray);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-gray);
}

