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

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

/* AI-Themed Dynamic Background */
body {
    background-color: #000000;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.01) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.01) 50%, transparent 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Liquid Gradient Hero Background */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    animation: liquidFlow 20s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 70% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: liquidFlow 25s ease-in-out infinite reverse;
    z-index: 1;
}

@keyframes liquidFlow {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
        filter: hue-rotate(0deg) blur(0px);
    }
    25% {
        transform: translateX(-2%) translateY(-1%) scale(1.02);
        filter: hue-rotate(10deg) blur(0.5px);
    }
    50% {
        transform: translateX(1%) translateY(-2%) scale(0.98);
        filter: hue-rotate(-5deg) blur(0.3px);
    }
    75% {
        transform: translateX(-1%) translateY(1%) scale(1.01);
        filter: hue-rotate(5deg) blur(0.2px);
    }
}

/* Additional Liquid Gradient Layers */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        conic-gradient(from 0deg at 30% 40%, 
            rgba(255, 255, 255, 0.05) 0deg,
            rgba(255, 255, 255, 0.03) 120deg,
            rgba(255, 255, 255, 0.05) 240deg,
            rgba(255, 255, 255, 0.05) 360deg);
    animation: conicRotate 30s linear infinite;
    z-index: 1;
}

@keyframes conicRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Floating Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: orbFloat 15s ease-in-out infinite;
    z-index: 1;
    --breathing-scale: 1;
    transform: scale(var(--breathing-scale));
}

.gradient-orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.gradient-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    bottom: 20%;
    left: 60%;
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.7;
    }
}



/* Hero Content Positioning */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

/* Rotating Tagline Container */
.tagline-container {
    margin-bottom: 3rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rotating-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    margin: 0;
    text-align: center;
}

.rotating-word {
    position: relative;
    display: inline-block;
    color: #ffffff;
    transition: all 0.6s ease;
    min-width: 300px;
    text-align: left;
}

/* Word transition effects */
.rotating-word.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

.rotating-word.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.rotating-word.slide-out {
    opacity: 0;
    transform: translateX(-30px);
}

.rotating-word.slide-in {
    opacity: 1;
    transform: translateX(0);
}

.rotating-word.glitch-out {
    opacity: 0;
    transform: translateX(0);
    animation: glitchExit 0.3s ease-out;
}

.rotating-word.glitch-in {
    opacity: 1;
    transform: translateX(0);
    animation: glitchEnter 0.4s ease-in;
}

@keyframes glitchExit {
    0% { 
        opacity: 1;
        transform: translateX(0);
    }
    25% { 
        transform: translateX(-2px);
    }
    50% { 
        transform: translateX(2px);
    }
    75% { 
        transform: translateX(-1px);
    }
    100% { 
        opacity: 0;
        transform: translateX(0);
    }
}

@keyframes glitchEnter {
    0% { 
        opacity: 0;
        transform: translateX(0);
    }
    25% { 
        transform: translateX(2px);
    }
    50% { 
        transform: translateX(-2px);
    }
    75% { 
        transform: translateX(1px);
    }
    100% { 
        opacity: 1;
        transform: translateX(0);
    }
}

/* CTA Button Animation */
.hero-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.cta-button {
    position: relative;
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    overflow: hidden;
    transition: all 0.4s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(255, 255, 255, 0.2),
        0 0 50px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover .btn-glow {
    left: 100%;
}

/* Animation States */

.hero-cta.show {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle Glow Effect */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
}

/* AI Background Container */
.ai-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* Neural Network Grid */
.neural-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

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

/* AI Nodes */
.ai-node {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.6;
    animation: nodePulse 3s ease-in-out infinite;
}

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

/* Neural Connections */
.neural-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: connectionFlow 4s ease-in-out infinite;
}

@keyframes connectionFlow {
    0%, 100% { 
        opacity: 0.2;
        transform: scaleX(0.5);
    }
    50% { 
        opacity: 0.8;
        transform: scaleX(1);
    }
}

/* Floating AI Particles */
.ai-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 8s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Data Streams */
.data-stream {
    position: absolute;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: dataFlow 6s linear infinite;
}

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

/* Binary Code Rain */
.binary-rain {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.1);
    animation: binaryFall 10s linear infinite;
    user-select: none;
}

/* AI Text Elements */
.ai-text {
    position: absolute;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.08);
    animation: textFloat 12s linear infinite;
    user-select: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes binaryFall {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes textFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.08;
    }
    90% {
        opacity: 0.08;
    }
    100% {
        transform: translateY(-100px) translateX(50px) rotate(5deg);
        opacity: 0;
    }
}

/* AI Circuit Patterns */
.circuit-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: circuitRotate 15s linear infinite;
}

.circuit-pattern::before,
.circuit-pattern::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.circuit-pattern::before {
    top: 50px;
    left: 50px;
    animation: circuitRotate 10s linear infinite reverse;
}

.circuit-pattern::after {
    top: 25px;
    left: 25px;
    width: 150px;
    height: 150px;
    animation: circuitRotate 20s linear infinite;
}

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

/* AI Matrix Effect */
.matrix-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    animation: matrixScroll 15s linear infinite;
}

@keyframes matrixScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

/* Holographic Glow Effect */
.holographic-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: holographicPulse 8s ease-in-out infinite;
}

@keyframes holographicPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
}

/* Performance Optimizations */
.ai-background * {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Responsive AI Background */
@media (max-width: 768px) {
    .ai-node {
        width: 3px;
        height: 3px;
    }
    
    .ai-particle {
        width: 1px;
        height: 1px;
    }
    
    .circuit-pattern {
        width: 150px;
        height: 150px;
    }
    
    .binary-rain {
        font-size: 10px;
    }
}

/* Responsive Liquid Gradient */
@media (max-width: 768px) {

    
    /* Responsive Rotating Tagline */
    .rotating-tagline {
        font-size: 2.5rem;
    }
    
    .rotating-word {
        min-width: 250px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    .gradient-orb-1 {
        width: 200px;
        height: 200px;
        filter: blur(30px);
    }
    
    .gradient-orb-2 {
        width: 180px;
        height: 180px;
        filter: blur(25px);
    }
    
    .gradient-orb-3 {
        width: 150px;
        height: 150px;
        filter: blur(20px);
    }
    
    .hero-glow {
        width: 400px;
        height: 400px;
    }
    
    .hero::before,
    .hero::after {
        animation-duration: 15s;
    }
    
    .hero-gradient-overlay {
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    /* Mobile Tagline */
    .rotating-tagline {
        font-size: 2rem;
    }
    
    .rotating-word {
        min-width: 200px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .tagline-container {
        min-height: 150px;
        margin-bottom: 2rem;
    }
    
    .gradient-orb {
        filter: blur(20px);
    }
    
    .gradient-orb-1 {
        width: 150px;
        height: 150px;
    }
    
    .gradient-orb-2 {
        width: 120px;
        height: 120px;
    }
    
    .gradient-orb-3 {
        width: 100px;
        height: 100px;
    }
    
    .hero-glow {
        width: 300px;
        height: 300px;
    }
}

/* Performance Optimizations for Liquid Gradients */
.hero::before,
.hero::after,
.hero-gradient-overlay,
.gradient-orb,
.hero-glow {
    will-change: transform, filter, opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after,
    .hero-gradient-overlay,
    .gradient-orb,
    .hero-glow {
        animation: none;
    }
    
    .hero::before,
    .hero::after {
        background: 
            radial-gradient(ellipse at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 70%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    }
}

/* Custom Cursor */
body {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.cursor-trail {
    position: fixed;
    width: 4px;
    height: 4px;
    background: #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

/* Typography - Sleek and Modern */
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 300;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}



/* Modern Card Design with Tilt Effects */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

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

/* Tilt Effect for Other Elements */
.about-visual,
.contact-form,
.hero-content {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    transform-style: preserve-3d;
}

.about-visual:hover,
.contact-form:hover {
    transform: rotateX(2deg) rotateY(2deg);
}

/* Modern Button Design */
.btn {
    position: relative;
    padding: 14px 28px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    letter-spacing: -0.02em;
}

p, span, div {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Section Headers */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    opacity: 0.8;
    margin-bottom: 3rem;
}

/* Enhanced Service Cards */
.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    color: #ffffff;
}

/* Section Transitions */
.section-header {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
}

/* Enhanced Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    padding: 3rem 0;
}

.footer-column h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.footer-column ul li a {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Floating Elements Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background: var(--pure-black);
}

/* Update color scheme to black and white only */
:root {
    --pure-white: #ffffff;
    --off-white: rgba(255, 255, 255, 0.8);
    --white-dim: rgba(255, 255, 255, 0.1);
    --pure-black: #000000;
    --off-black: rgba(0, 0, 0, 0.9);
}

/* Add an overlay pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    pointer-events: none;
    z-index: 1;
}

/* Add floating particles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 2px, transparent 2px);
    background-size: 40px 40px, 60px 60px;
    background-position: 0 0, 20px 20px;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
    z-index: 2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navbar Logo Container */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Logo Animation */
.logo-svg {
    width: 48px;
    height: 48px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

    .logo-svg:hover {
        transform: scale(1.05);
    }

/* FAQ Section */
.faq {
    padding: 40px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem;
}

.faq-item::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.5s ease;
}

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

.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.faq-question h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-answer {
    padding: 0 1rem 1rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:hover .faq-answer {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
    padding: 1rem 1rem 1rem;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    padding-top: 1rem;
}

.faq-arrow {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    transition: all 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item:hover .faq-arrow {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

/* FAQ Modal */
.faq-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.faq-modal-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.faq-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.faq-modal-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    flex: 1;
    padding-right: 1rem;
}

.faq-modal-close {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    min-width: 30px;
    text-align: center;
}

.faq-modal-close:hover {
    color: #ffffff;
    transform: scale(1.1);
    opacity: 0.8;
}

.faq-modal-body {
    padding: 1rem 2rem 2rem;
}

.faq-modal-body p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .faq-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .faq-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .faq-modal-body {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .faq-modal-body p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .faq-modal-body p {
        font-size: 0.95rem;
    }
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

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

/* Navbar Buttons */
.nav-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-button {
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    white-space: nowrap;
}

.nav-button.btn-primary {
    background: var(--pure-white);
    color: var(--pure-black);
    border: none;
    transition: all 0.3s ease;
}

.nav-button.btn-primary:hover {
    background: var(--pure-black);
    color: var(--pure-white);
    border: 1px solid var(--pure-white);
}

.nav-button.btn-outline {
    background: transparent;
    color: var(--pure-white);
    border: 1px solid var(--pure-white);
}

.nav-button.btn-outline:hover {
    background: var(--pure-white);
    color: var(--pure-black);
    transform: translateY(-1px);
}

/* Mobile Menu */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-right {
        display: none;
    }
}

.nav-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-left: 20px;
}

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

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

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0%, transparent 70%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    opacity: 0.7;
}

/* Update the hero section background */
.hero-background {
    background: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0%, transparent 70%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    opacity: 0.7;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.layer-1 {
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    transform: translateZ(0);
}

.layer-2 {
    background: radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    transform: translateZ(-1px) scale(2);
}

.layer-3 {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.01) 100%);
    transform: translateZ(-2px) scale(3);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    color: #fff;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease forwards;
}

.typewriter-container {
    display: block;
    margin-top: 10px;
}

.typewriter-text {
    display: inline-block;
    white-space: nowrap;
}

.cursor {
    animation: blink 0.75s infinite;
    color: #ffffff;
    font-weight: 400;
}

@keyframes blink {
    0%, 70% { opacity: 1; }
    71%, 100% { opacity: 0; }
}

/* Magnetic Button Styles */
.magnetic-btn {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    background: var(--pure-white);
    color: var(--pure-black);
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    will-change: transform, box-shadow;
    user-select: none;
    z-index: 1;
}

.magnetic-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    z-index: -1;
    border-radius: inherit;
}

.magnetic-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.magnetic-btn:hover::after {
    opacity: 0.5;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #888888;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease 0.6s forwards;
    line-height: 1.6;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease 0.9s forwards;
    margin-top: 50px;
    min-height: 60px;
    align-items: flex-start;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--pure-white);
    color: var(--pure-black);
    border: none;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--pure-black);
    color: var(--pure-white);
}

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

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

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-hex {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    animation: float 6s ease-in-out infinite;
}

.hex-float-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.hex-float-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.hex-float-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

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

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

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

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: #ffffff;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
}

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

/* Services Section */
.services {
    padding: 40px 0;
    background: transparent;
    position: relative;
    z-index: 3;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 2rem 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #888888;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-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.5s ease;
}

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

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.2),
        0 0 0 1px rgba(255,255,255,0.1);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.service-card p {
    color: #888888;
    line-height: 1.6;
}

.services-footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 0;
}

.services-more {
    font-size: 1.2rem;
    color: #888888;
    font-style: italic;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.services-more:hover {
    color: #ffffff;
    opacity: 1;
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 40px 0;
    background: #000000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

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

.about-background .layer-1 {
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.about-background .layer-2 {
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.about-text p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--pure-white);
}

/* Contact Section */
.contact {
    padding: 40px 0;
    background: #000000;
}

/* Contact Form Container */
.contact-form-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Contact Form Title with Beautiful Effects */
.contact-form-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    width: 100%;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.contact-form-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.contact-form-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease;
    z-index: -1;
}

.contact-form-title:hover {
    transform: translateY(-5px) rotateX(5deg) rotateY(2deg);
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.2),
        0 5px 15px rgba(255, 255, 255, 0.1);
}

.contact-form-title:hover::before {
    opacity: 1;
}

.contact-form-title:hover::after {
    width: 100%;
}

/* Calendar Appointment Section */
.calendar-appointment-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.calendar-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Google Calendar Button Styling */
#calendar-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gcal-scheduling-button {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #ffffff !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    padding: 15px 30px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.gcal-scheduling-button:hover {
    background-color: #000000 !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2) !important;
}

/* Navbar Calendar Button Styling */
#navbar-calendar-button-container {
    display: flex;
    align-items: center;
}

#navbar-calendar-button-container .gcal-scheduling-button {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #ffffff !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    padding: 10px 20px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    cursor: pointer !important;
}

#navbar-calendar-button-container .gcal-scheduling-button:hover {
    background-color: #f8f9fa !important;
    color: #000000 !important;
    border-color: #e9ecef !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25), 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}



.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-black);
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.contact-item p {
    color: #888888;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 50px 60px;
    border-radius: 20px;
    width: 100%;
    max-width: 900px;
    min-height: 500px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: var(--pure-black);
    color: var(--pure-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

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

/* Footer */
.footer {
    background: #000000;
    color: #fff;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo .logo-container {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: start;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.footer-column:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.footer-column ul li {
    margin-bottom: 2px;
}

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 0;
    align-items: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}

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

/* Add new animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

/* Add container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Center navbar content */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Center hero content */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Center services grid */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

/* Center section headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
}

/* Center about content */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Center contact content */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

/* Center footer content */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container,
    .nav-container,
    .hero-content,
    .services-grid,
    .about-content,
    .contact-content {
        padding: 1rem;
    }

    .section-header {
        padding: 3rem 1rem 1.5rem;
    }
    
    /* Mobile Navigation */
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-right {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Mobile Hero Section */
    .hero-content {
        padding: 0 1rem;
        min-height: 100vh;
    }
    
    .rotating-tagline {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .rotating-word {
        min-width: 250px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    /* Mobile Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Mobile FAQ */
    .faq-grid {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .faq-item:hover .faq-answer {
        max-height: 150px;
        padding: 1.2rem 1.5rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
        padding-top: 0.8rem;
    }
    
    /* Mobile About */
    .about-content {
        padding: 1rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    /* Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 0;
    }
    
    .footer-column:last-child {
        align-items: center;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile devices */
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-form-title {
        font-size: 2rem;
    }
    
    .calendar-description {
        font-size: 1rem;
    }
    
    /* Extra small mobile specific styles */
    .rotating-tagline {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .rotating-word {
        min-width: 200px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .nav-container {
        padding: 0.6rem 1rem;
    }
    
    .logo-svg {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
    
    .faq-item:hover .faq-answer {
        max-height: 120px;
        padding: 1rem 1.2rem 1.2rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        padding-top: 0.6rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .footer-content {
        padding: 1.5rem 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .section-header {
        padding: 2rem 1rem 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* End of CSS file */

/* End of CSS file */

.footer .logo-svg {
    width: 60px !important;
    height: 60px !important;
    display: block;
}