/* Custom Styles & Animations */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
    --brand-blue: #3B82F6;
    --brand-dark: #020617;
    --brand-accent: #F97316; /* Orange accent */
}

body {
    background-color: var(--brand-dark);
    color: #F8FAFC;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
}

/* Typography */
.font-display { font-family: 'Syne', sans-serif; }
.text-huge {
    font-size: clamp(3rem, 8vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0F172A; }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #475569; }

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.stagger-1 { transition-delay: 100ms; }
.stagger-2 { transition-delay: 200ms; }
.stagger-3 { transition-delay: 300ms; }

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Service List */
.service-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}
.service-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.service-item:hover { background-color: rgba(255, 255, 255, 0.02); }

/* Circular Text */
.circular-text-container {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.circular-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
}
@keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.marquee-content {
    display: inline-block;
    animation: marquee 120s linear infinite;
}
.marquee-item {
    display: inline-block;
    margin-right: 4rem;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.marquee-item:hover { opacity: 1; }
.group:hover .group-hover\:pause { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Buttons */
.btn-primary {
    background-color: var(--brand-accent);
    color: white;
    border-radius: 9999px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(249, 115, 22, 0.5);
}
.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 9999px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}
.btn-outline:hover { background-color: white; color: var(--brand-dark); }
