/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    /* Colors */
    --bg-primary: #050505; /* Matte black */
    --bg-secondary: #0a0a0a;
    --bg-card: #111010; /* Slightly warm dark charcoal */
    --text-primary: #f5f5f5; /* White typography */
    --text-secondary: #a0a0a0; /* Graphite gray */
    --accent: #ff5a1f; /* Orange accent */
    --accent-hover: #ff7543;
    --warm-gray: #242220; /* Deep warm graphite for borders */
    --soft-amber: #b0653c; /* Muted highlight for depth */
    --gradient-glow: radial-gradient(circle, rgba(255,90,31,0.06) 0%, rgba(176,101,60,0.04) 40%, rgba(5,5,5,0) 70%);
    
    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-pad: 120px 0;
    
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Cinematic Atmospheric Background Ambient Orbs */
.ambient-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    mix-blend-mode: screen;
    pointer-events: none;
    transition: opacity 1s ease;
}

.glow-1 {
    top: -10%;
    left: 20%;
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(255, 90, 31, 0.12) 0%, rgba(255, 90, 31, 0) 70%);
    animation: drift-glow-1 25s infinite alternate ease-in-out;
}

.glow-2 {
    bottom: -10%;
    right: 10%;
    width: 50vw;
    height: 50vh;
    background: radial-gradient(circle, rgba(176, 101, 60, 0.06) 0%, rgba(176, 101, 60, 0) 70%);
    animation: drift-glow-2 30s infinite alternate ease-in-out;
}

@keyframes drift-glow-1 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.10; }
    50% { transform: translate(5%, 8%) scale(1.1); opacity: 0.15; }
    100% { transform: translate(-5%, -5%) scale(0.9); opacity: 0.10; }
}

@keyframes drift-glow-2 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.05; }
    50% { transform: translate(-8%, -5%) scale(0.9); opacity: 0.08; }
    100% { transform: translate(5%, 5%) scale(1.1); opacity: 0.05; }
}

/* ========================================================================== */
   Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4, .logo {
    font-family: var(--font-sans);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: var(--section-pad);
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.line-decorator {
    width: 0px;
    height: 2px;
    background-color: var(--accent);
    margin-top: 20px;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.reveal-up.active .line-decorator, .reveal.active .line-decorator {
    width: 80px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 90, 31, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 10px 24px;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: inset 0 0 15px rgba(255, 90, 31, 0.1);
}

.nav-cta {
    font-size: 0.95rem;
    padding: 12px 28px !important; /* Slightly larger padding for a bit more presence as requested */
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 6px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 90, 31, 0.15), inset 0 0 15px rgba(255, 90, 31, 0.15) !important;
}

/* Pulse Dot */
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.7);
    animation: pulse-animation 2s infinite;
    vertical-align: middle;
}

@keyframes pulse-animation {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 90, 31, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 90, 31, 0);
    }
}

.section-curve-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.section-curve-decor svg {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(10px);
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Stagger parent containing elements to delay children dynamically */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.active > * {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.55s; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 0;
    z-index: 100;
    transition: padding 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    background-color: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    z-index: 101;
}

.brand-logo {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled .brand-logo {
    height: 46px;
}

.logo:hover .brand-logo {
    transform: scale(1.03);
    filter: drop-shadow(0 0 8px rgba(255, 90, 31, 0.15));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.98rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 101;
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger .line {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    position: absolute;
    transition: var(--transition-fast);
}

.hamburger .line:nth-child(1) { top: 0; }
.hamburger .line:nth-child(2) { bottom: 0; }

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

.hamburger.active .line:nth-child(2) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 30px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-links a {
    font-size: 2rem;
    font-family: var(--font-sans);
    color: var(--text-primary);
    text-decoration: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 160px 0 100px;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.cinematic-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 15%, rgba(255, 90, 31, 0.04) 0%, transparent 60%),
                radial-gradient(circle at 85% 85%, rgba(255, 90, 31, 0.02) 0%, transparent 60%);
    animation: visual-breathing 16s infinite ease-in-out alternate;
    pointer-events: none;
}

@keyframes visual-breathing {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.75;
    }
    50% {
        transform: scale(1.04) translate(0.5%, -0.5%);
        opacity: 1;
    }
    100% {
        transform: scale(0.98) translate(-0.5%, 0.5%);
        opacity: 0.8;
    }
}

.cinematic-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 3800px;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.cinematic-bg-lines svg {
    width: 100%;
    height: 100%;
}

.motion-path-1 {
    stroke-dasharray: 2500;
    stroke-dashoffset: 2500;
    animation: flow-line 24s infinite linear alternate;
}

.motion-path-2 {
    stroke-dasharray: 2500;
    stroke-dashoffset: 2500;
    animation: flow-line-delayed 30s infinite linear alternate;
}

.motion-path-3 {
    stroke-dasharray: 2500;
    stroke-dashoffset: 2500;
    animation: flow-line-reverse 28s infinite linear alternate;
}

@keyframes flow-line {
    0% { stroke-dashoffset: 2500; opacity: 0.04; }
    50% { opacity: 0.12; }
    100% { stroke-dashoffset: 0; opacity: 0.06; }
}

@keyframes flow-line-delayed {
    0% { stroke-dashoffset: 2500; opacity: 0.02; }
    50% { opacity: 0.08; }
    100% { stroke-dashoffset: 300; opacity: 0.04; }
}

@keyframes flow-line-reverse {
    0% { stroke-dashoffset: -2500; opacity: 0.03; }
    50% { opacity: 0.10; }
    100% { stroke-dashoffset: 0; opacity: 0.05; }
}



.growth-grid-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
    pointer-events: none;
    z-index: 2;
}

.growth-path-1 {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: draw-path 16s infinite alternate ease-in-out;
}

.growth-path-2 {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-path-2 20s infinite alternate ease-in-out;
}

@keyframes draw-path {
    0% { stroke-dashoffset: 800; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 0; }
}

@keyframes draw-path-2 {
    0% { stroke-dashoffset: 1000; }
    50% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: 0; }
}

.growth-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.g-line {
    position: absolute;
    bottom: -100px;
    width: 1px;
    height: 350px;
    background: linear-gradient(to top, transparent, rgba(255, 90, 31, 0.35), transparent);
    opacity: 0;
    animation: shoot-up 8s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes shoot-up {
    0% { transform: translateY(100px) scaleY(0.1); opacity: 0; }
    30% { opacity: 0.6; }
    80% { transform: translateY(-100vh) scaleY(1.5); opacity: 0.1; }
    100% { transform: translateY(-120vh); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 5% 80px;
}

.hero-title {
    font-size: clamp(3.5rem, 9.5vw, 7.2rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-row {
    display: block;
    opacity: 0;
    transform: translateY(40px) skewY(1.5deg);
    filter: blur(12px);
    transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.6s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content.active .title-row:nth-child(1) {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
    filter: blur(0);
    transition-delay: 0.12s;
}

.hero-content.active .title-row:nth-child(2) {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
    filter: blur(0);
    transition-delay: 0.28s;
}

.accent-text {
    font-weight: 600;
    background: linear-gradient(90deg, #fff, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}
/* Hero Italic Highlight & Dot Decorators */
.hero-italic-highlight {
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: -0.01em;
}

.accent-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-left: 6px;
    box-shadow: 0 0 10px rgba(255, 90, 31, 0.6);
}

.hero-tag-capsule {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.orange-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
    box-shadow: 0 0 8px rgba(255, 90, 31, 0.6);
}

/* Updated Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.scroll-text {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--text-secondary);
}

.scroll-line {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--accent);
    animation: scroll-line-move 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scroll-line-move {
    0% { top: -15px; }
    50%, 100% { top: 40px; }
}

/* Cinematic Marquee */
.cinematic-marquee {
    background-color: #030303;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 24px 0;
    overflow: hidden;
    width: 100%;
    display: flex;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 30s linear infinite;
    gap: 50px;
}

.marquee-track span {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    margin-left: 50px;
}

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

/* Section Tag styling */
.section-tag {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 24px;
}

.tag-line {
    width: 30px;
    height: 1px;
    background-color: var(--accent);
    margin-right: 12px;
    display: inline-block;
}

/* ==========================================================================
   About Section (Who We Are)
   ========================================================================== */
.about {
    background-color: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 100px 0;
}

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 3.5fr 8.5fr;
        gap: 60px;
    }
}

.about-heading {
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.15;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.accent-highlight {
    color: var(--accent);
}

.about-desc {
    font-family: var(--font-sans);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.7;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 800px;
}

.about-desc:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Services Section (What We Do)
   ========================================================================== */
.services-header-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: flex-end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 50px;
    margin-bottom: 60px;
}

@media (min-width: 900px) {
    .services-header-grid {
        grid-template-columns: 7fr 5fr;
        gap: 40px;
    }
}

.services-header-desc {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
}

.services-columns-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 900px) {
    .services-columns-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-column {
    position: relative;
    padding: 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.service-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-column:hover::before {
    transform: scaleX(1);
}

@media (min-width: 900px) {
    .service-column {
        padding: 60px 40px;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
    .service-column:first-child {
        padding-left: 20px;
    }
    .service-column:last-child {
        padding-right: 20px;
        border-right: none;
    }
}

.service-column:hover {
    transform: translateY(-8px) scale(1.025);
    background-color: rgba(255, 90, 31, 0.015);
    border-color: rgba(255, 90, 31, 0.2);
    box-shadow: 
        0 15px 35px rgba(255, 90, 31, 0.03),
        0 0 30px rgba(255, 90, 31, 0.01);
}

.service-col-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.service-num {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.service-col-icon {
    color: var(--accent);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.service-column:hover .service-col-icon {
    transform: scale(1.1) rotate(5deg);
    opacity: 1;
}

.service-col-title {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.service-col-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

.service-col-list {
    list-style: none;
}

.service-col-list li {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-weight: 300;
    transition: var(--transition-smooth);
}

.service-col-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.service-column:hover .service-col-list li {
    color: var(--text-primary);
}

/* ==========================================================================
   Why Choose Us Section (Why Grozera)
   ========================================================================== */
.why-us {
    background-color: var(--bg-secondary);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 0;
}

@media (min-width: 900px) {
    .why-us-grid {
        grid-template-columns: 4.5fr 7.5fr;
        gap: 80px;
    }
}

.why-us-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.why-us-desc {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
}

.features-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 600px) {
    .features-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item-new {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    transition: var(--transition-smooth);
}

@media (min-width: 600px) {
    .feature-item-new {
        padding: 40px;
    }
    .feature-item-new:nth-child(odd) {
        padding-left: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
    .feature-item-new:nth-child(even) {
        padding-right: 0;
    }
    .feature-item-new:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.feature-icon-new {
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.feature-title-new {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.feature-desc-new {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ==========================================================================
   Process Section (How It Works)
   ========================================================================== */
.process-header {
    margin-bottom: 80px;
}

.process-timeline-horizontal {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    position: relative;
}

@media (min-width: 900px) {
    .process-timeline-horizontal {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

.timeline-connecting-line {
    position: absolute;
    top: 27px;
    left: 0;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(255, 90, 31, 0.15) 100%);
    z-index: 1;
    display: none;
    transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 900px) {
    .timeline-connecting-line {
        display: block;
    }
}

.process-timeline-horizontal.active .timeline-connecting-line {
    width: 100%;
}

.timeline-step-col {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-num-container {
    margin-bottom: 24px;
    position: relative;
}

.step-num-bubble {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #030303;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: border-color 0.8s cubic-bezier(0.16, 1, 0.3, 1), color 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.step-num-bubble::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stagger active state triggers for bubbles matching the line speed */
.process-timeline-horizontal.active .timeline-step-col:nth-of-type(2) .step-num-bubble {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 90, 31, 0.15);
}
.process-timeline-horizontal.active .timeline-step-col:nth-of-type(2) .step-num-bubble::after {
    opacity: 1;
    transform: scale(1);
}

.process-timeline-horizontal.active .timeline-step-col:nth-of-type(3) .step-num-bubble {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 90, 31, 0.15);
    transition-delay: 0.5s;
}
.process-timeline-horizontal.active .timeline-step-col:nth-of-type(3) .step-num-bubble::after {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.5s;
}

.process-timeline-horizontal.active .timeline-step-col:nth-of-type(4) .step-num-bubble {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 90, 31, 0.15);
    transition-delay: 1s;
}
.process-timeline-horizontal.active .timeline-step-col:nth-of-type(4) .step-num-bubble::after {
    opacity: 1;
    transform: scale(1);
    transition-delay: 1s;
}

.process-timeline-horizontal.active .timeline-step-col:nth-of-type(5) .step-num-bubble {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 90, 31, 0.15);
    transition-delay: 1.5s;
}
.process-timeline-horizontal.active .timeline-step-col:nth-of-type(5) .step-num-bubble::after {
    opacity: 1;
    transform: scale(1);
    transition-delay: 1.5s;
}

.timeline-step-col:hover .step-num-bubble {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
    box-shadow: 0 0 20px rgba(255, 90, 31, 0.3) !important;
    transition-delay: 0s !important;
}

.timeline-step-col:hover .step-num-bubble::after {
    opacity: 1 !important;
    transform: scale(1) !important;
    transition-delay: 0s !important;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 300;
}

.step-time-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--accent);
    text-transform: uppercase;
}

/* ==========================================================================
   Contact Section & Footer
   ========================================================================== */
.contact-card {
    background-color: var(--bg-card);
    padding: 60px 80px;
    border-radius: 16px;
    border: 1px solid var(--warm-gray);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    text-align: left;
}

@media (max-width: 900px) {
    .contact-card {
        padding: 40px 30px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.contact-title {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-subtitle {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.contact-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-link:hover .contact-value {
    color: var(--accent);
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    transition: var(--transition-fast);
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
}

.social-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background-color: rgba(255, 255, 255, 0.015);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.social-btn svg {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-btn:hover {
    color: var(--text-primary);
    border-color: rgba(255, 90, 31, 0.4);
    background-color: rgba(255, 90, 31, 0.04);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 90, 31, 0.08), 0 0 15px rgba(255, 90, 31, 0.08);
}

.social-btn:hover svg {
    transform: scale(1.12);
    color: var(--accent);
}

/* Contact Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group {
    position: relative;
    margin-bottom: 32px;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.98rem;
    outline: none;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.form-label {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 0.98rem;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating label on focus or filled input */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -12px;
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.form-input:focus {
    border-bottom-color: var(--accent);
}

.contact-submit-btn {
    align-self: flex-start;
    padding: 14px 32px;
    margin-top: 10px;
    font-size: 0.95rem;
}

/* Form Fields / Success Transition */
.form-fields-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form.submitted .form-fields-wrapper {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.form-success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.contact-form.submitted .form-success-message {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Success Checkmark Animation */
.success-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    background: radial-gradient(circle, rgba(255, 90, 31, 0.08) 0%, transparent 70%);
    box-shadow: 0 0 40px rgba(255, 90, 31, 0.1);
    position: relative;
}

.success-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(255, 90, 31, 0.15);
    animation: success-ring-pulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes success-ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 1; }
}

.success-checkmark {
    color: var(--accent);
}

.success-circle {
    stroke-dasharray: 151;
    stroke-dashoffset: 151;
    animation: draw-circle 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.success-check {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: draw-check 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

@keyframes draw-circle {
    to { stroke-dashoffset: 0; }
}

@keyframes draw-check {
    to { stroke-dashoffset: 0; }
}

.success-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.success-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 340px;
}

.form-success-message .contact-submit-btn {
    align-self: center;
}

/* ==========================================================================
   Confirmation Popup Modal
   ========================================================================== */
.confirm-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.confirm-popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.confirm-popup-card {
    position: relative;
    background: rgba(20, 20, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px 48px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(255, 90, 31, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.confirm-popup-overlay.active .confirm-popup-card {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.confirm-popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.confirm-popup-close:hover {
    color: var(--accent);
    transform: scale(1.15);
}

.confirm-popup-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    background: radial-gradient(circle, rgba(255, 90, 31, 0.1) 0%, transparent 70%);
    box-shadow: 0 0 50px rgba(255, 90, 31, 0.12);
    position: relative;
}

.confirm-popup-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 90, 31, 0.12);
    animation: confirm-ring-pulse 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes confirm-ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 1; }
}

.confirm-checkmark {
    color: var(--accent);
}

.confirm-circle {
    stroke-dasharray: 151;
    stroke-dashoffset: 151;
}

.confirm-check {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
}

.confirm-popup-overlay.active .confirm-circle {
    animation: draw-circle 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.confirm-popup-overlay.active .confirm-check {
    animation: draw-check 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.confirm-popup-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.confirm-popup-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 32px;
    font-weight: 300;
}

.confirm-popup-btn {
    padding: 14px 40px;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.confirm-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 90, 31, 0.25);
}

.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    font-family: var(--font-sans);
    font-size: 1.2rem;
}

.footer-legal {
    color: var(--text-secondary);
    font-size: 0.9rem;
}


/* ==========================================================================
   Intro Screen Animation
   ========================================================================== */
.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #030303;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: opacity, transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.intro-screen.fade-out {
    opacity: 0;
    pointer-events: none;
    transform: scale3d(1.02, 1.02, 1);
}

.intro-image-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.intro-img-logo {
    height: 110px;
    width: auto;
    object-fit: contain;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    animation: reveal-logo-img 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
    filter: drop-shadow(0 0 12px rgba(255, 90, 31, 0.2));
    will-change: clip-path, opacity, transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.intro-sweeper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 2px;
    height: 0%;
    transform: translateY(-50%) translateZ(0);
    background-color: var(--accent);
    box-shadow: 0 0 15px rgba(255, 90, 31, 0.8);
    opacity: 0;
    z-index: 2;
    will-change: left, opacity, height;
    backface-visibility: hidden;
    animation: sweep-line 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

@keyframes reveal-logo-img {
    0% { clip-path: inset(0 100% 0 0); opacity: 0; transform: scale3d(0.98, 0.98, 1); }
    30% { opacity: 1; }
    100% { clip-path: inset(0 -5% 0 0); opacity: 1; transform: scale3d(1, 1, 1); }
}

@keyframes sweep-line {
    0% { left: 0%; opacity: 0; height: 0%; }
    10% { opacity: 1; height: 90%; }
    80% { left: 100%; opacity: 1; height: 90%; }
    100% { left: 100%; opacity: 0; height: 0%; }
}

body.intro-active {
    overflow: hidden;
}

body.intro-active .hero-content, body.intro-active .navbar, body.intro-active .hero-bg-elements {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
}

.hero-content, .navbar, .hero-bg-elements {
    will-change: opacity, transform;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .contact-card {
        padding: 40px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
