/* =========================================
   DESIGN SYSTEM
   ========================================= */
:root {
    /* Colors - Blue & Orange Theme */
    --clr-dark: #0a192f;           /* Deep Blue */
    --clr-dark-surface: #112240;   /* Lighter Blue Surface */
    --clr-dark-border: #233554;    /* Blue Border */
    
    --clr-light: #ffffff;
    --clr-light-surface: #f8fafc;  /* Very Light Blue Tint */
    
    --clr-accent: #f97316;         /* Orange */
    --clr-accent-hover: #ea580c;   /* Darker Orange Hover */
    
    --clr-text-light: #ffffff;
    --clr-text-dark: #111111;
    --clr-text-muted: #888888;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Metrics */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;
    
    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --trans-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--clr-text-dark);
    background-color: var(--clr-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--trans-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section-padding {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
}

/* =========================================
   THEMES & UTILITIES
   ========================================= */
.dark-section {
    background-color: var(--clr-dark);
    color: var(--clr-text-light);
}

.light-section {
    background-color: var(--clr-light);
    color: var(--clr-text-dark);
}

.text-accent {
    color: var(--clr-accent);
}

.text-center {
    text-align: center;
}

.mt-l { margin-top: 32px; }
.max-w-lg { max-width: 600px; margin-inline: auto; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--trans-normal);
}

.btn.lrg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn.pill {
    border-radius: var(--radius-pill);
}

.btn.block-btn {
    display: flex;
    width: 100%;
}

.btn-primary {
    background-color: var(--clr-accent);
    color: var(--clr-light);
}

.btn-primary:hover {
    background-color: var(--clr-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(232, 101, 26, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-light);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--clr-light);
    background-color: rgba(255,255,255,0.05);
}

.btn-dark {
    background-color: var(--clr-dark);
    color: var(--clr-light);
}

.btn-dark:hover {
    background-color: #222;
}

/* Shadows */
.shadow-box {
    box-shadow: 0 4px 6px rgba(0,0,0,0.02), 0 12px 24px rgba(0,0,0,0.04);
}

.shadow-hover {
    transition: var(--trans-normal);
}

.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Section Typography */
.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--clr-text-muted);
    margin-bottom: 40px;
}

.eyebrow {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 16px;
    color: var(--clr-text-muted);
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    transition: var(--trans-normal);
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--clr-light);
}

.logo-mark {
    width: 32px;
    height: 32px;
    background: var(--clr-accent);
    border-radius: var(--radius-sm);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    background: rgba(255,255,255,0.05);
    padding: 10px 32px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
}

.nav-link {
    color: var(--clr-light);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
}

.nav-link:hover {
    opacity: 1;
    color: var(--clr-accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--clr-light);
    position: absolute;
    transition: var(--trans-fast);
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-btn span:nth-child(3) { bottom: 0; }

.mobile-menu-btn.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--clr-dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--trans-normal);
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--clr-light);
}

@media (max-width: 992px) {
    .nav-links { display: none; }
    .nav-actions .btn { display: none; }
    .mobile-menu-btn { display: block; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

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

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text-wrapper {
    max-width: 700px;
}

.hero-subtitle {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-pill);
    font-size: 14px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(48px, 6vw, 72px);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 2;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 15s linear infinite;
}

.scroll-ring svg {
    fill: var(--clr-light);
    letter-spacing: 2px;
}

.scroll-arrow {
    font-size: 24px;
    color: var(--clr-accent);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

/* =========================================
   ABOUT (STAT GRID)
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-text .section-title {
    margin-bottom: 24px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: var(--clr-light-surface);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.stat-card:nth-child(2) { transform: translateY(30px); }
.stat-card:nth-child(4) { transform: translateY(30px); }

.stat-num {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--clr-text-dark);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stat-card:nth-child(2) { transform: translateY(0); }
    .stat-card:nth-child(4) { transform: translateY(0); }
}

@media (max-width: 600px) {
    .about-stats { grid-template-columns: 1fr; background: var(--clr-light-surface); padding: 24px; border-radius: var(--radius-lg); gap: 0;}
    .stat-card { background: none; border:none; padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.1); border-radius: 0; box-shadow: none !important; transform: none !important;}
    .stat-card:last-child { border-bottom: none; }
}

/* =========================================
   VISION & MISSION
   ========================================= */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.featured-text {
    font-size: clamp(20px, 3vw, 28px);
    font-family: var(--font-heading);
    line-height: 1.4;
    color: var(--clr-light);
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-item {
    display: flex;
    gap: 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--clr-dark-border);
}

.process-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.process-num {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 300;
    color: var(--clr-text-muted);
}

.process-item p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

@media (max-width: 992px) {
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* =========================================
   SERVICES
   ========================================= */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--clr-light);
    padding: 40px;
    border-radius: var(--radius-xl);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--trans-normal);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--clr-accent);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 24px;
}

.card-title {
    font-size: 24px;
    margin-bottom: 16px;
}

.card-desc {
    color: var(--clr-text-muted);
}

.card-num {
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 800;
    color: rgba(0,0,0,0.03);
    line-height: 1;
    transition: var(--trans-normal);
}

.service-card:hover .card-num {
    color: rgba(232, 101, 26, 0.1);
    transform: scale(1.1);
}

/* =========================================
   MACHINERY
   ========================================= */
.machine-showcase {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.machine-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    background: var(--clr-dark-surface);
    border-radius: var(--radius-xl);
    padding: 32px;
    align-items: center;
}

.machine-card:nth-child(even) {
    grid-template-columns: 1fr 1.5fr;
}

.machine-card:nth-child(even) .machine-img-wrapper {
    order: 2;
}

.machine-card:nth-child(even) .machine-info {
    order: 1;
}

.machine-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.machine-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--trans-slow);
}

.machine-card:hover .machine-img {
    transform: scale(1.05);
}

.machine-specs-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
}

.spec-tag {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    color: var(--clr-light);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.1);
}

.machine-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.machine-info p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
}

@media (max-width: 992px) {
    .machine-card, .machine-card:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 24px;
    }
    .machine-card:nth-child(even) .machine-img-wrapper { order: 1; }
    .machine-card:nth-child(even) .machine-info { order: 2; }
}

/* =========================================
   CAPABILITIES & INDUSTRIES
   ========================================= */
.detailed-capabilities {
    padding-bottom: 60px;
}

.cap-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.cap-category-card {
    background: var(--clr-light-surface);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--trans-normal);
}

.cap-category-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: rgba(249, 115, 22, 0.2); /* Orange accent */
    transform: translateY(-5px);
}

.cap-category-title {
    font-size: 20px;
    color: var(--clr-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--clr-accent);
    display: inline-block;
}

.cap-list-detailed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cap-list-detailed li {
    padding-left: 20px;
    position: relative;
    color: var(--clr-text-muted);
    font-size: 15px;
}

.cap-list-detailed li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--clr-accent);
    font-weight: 700;
}

.industry-section {
    padding-top: 60px;
}

.ind-tags {
    background: var(--clr-light-surface);
    padding: 48px;
    border-radius: var(--radius-xl);
    text-align: center;
}

.ind-tags .eyebrow {
    margin-bottom: 32px;
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: var(--space-l);
}

@media (min-width: 768px) {
    .ind-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .ind-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ind-card {
    background: var(--clr-light);
    border-radius: var(--radius-xl);
    padding: var(--space-m);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform var(--trans-bounce), box-shadow var(--trans-fast);
    border: 1px solid rgba(0,0,0,0.05);
}

.ind-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--clr-accent);
}

.ind-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.ind-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-dark);
}

@media (max-width: 992px) {
    .cap-grid-detailed {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .ind-tags {
        padding: 32px 24px;
    }
}

/* =========================================
   QUALITY (ACCORDION)
   ========================================= */
.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.quality-img-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.accordion {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: var(--clr-dark-surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.accordion-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    font-size: 20px;
    font-weight: 500;
}

.accordion-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--clr-dark);
    position: relative;
    transition: var(--trans-normal);
}

.accordion-icon::before, .accordion-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--clr-light);
    transition: var(--trans-fast);
}

.accordion-icon::before { width: 14px; height: 2px; }
.accordion-icon::after { width: 2px; height: 14px; }

.accordion-body {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--trans-normal), padding var(--trans-normal);
}

.accordion-body p {
    color: rgba(255,255,255,0.7);
    padding-bottom: 24px;
}

.accordion-item.active .accordion-icon {
    background: var(--clr-accent);
}

.accordion-item.active .accordion-icon::after {
    height: 0;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
}

@media (max-width: 992px) {
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    display: flex;
    flex-direction: column;
}

.footer-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.footer-left {
    background: var(--clr-accent);
    color: var(--clr-light);
    padding: 120px 10%;
}

.footer-title {
    font-size: clamp(48px, 6vw, 72px);
    margin-bottom: 24px;
}

.footer-desc {
    font-size: 20px;
    opacity: 0.9;
}

.contact-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.contact-icon {
    background: rgba(255,255,255,0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item p {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-link {
    font-size: 18px;
    opacity: 0.9;
}

.contact-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-right {
    background: var(--clr-dark);
    color: var(--clr-light);
    padding: 120px 10%;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--clr-light);
}

.footer-address h3, .link-group h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--clr-text-muted);
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-group a {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

.link-group a:hover {
    color: var(--clr-accent);
}

.footer-bottom {
    background: #050505;
    color: rgba(255,255,255,0.5);
    padding: 24px 0;
    font-size: 14px;
}

.to-top {
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: var(--trans-fast);
}

.to-top:hover {
    color: var(--clr-light);
}

.footer-location-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--clr-light);
    color: var(--clr-dark) !important;
    border: none;
    font-weight: 600;
    transition: var(--trans-normal);
    padding: 12px 24px;
    margin-top: 24px;
}

.footer-location-btn:hover {
    background-color: var(--clr-accent);
    color: var(--clr-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 101, 26, 0.3);
}

.footer-location-btn .location-icon {
    font-size: 1.2em;
}

@media (max-width: 992px) {
    .footer-split {
        grid-template-columns: 1fr;
    }
    .footer-left, .footer-right {
        padding: 80px 5%;
    }
}

/* =========================================
   ANIMATIONS
   ========================================= */
/* Base reveal settings */
[class*="reveal-"] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reveal Up (Default) */
.reveal-up {
    transform: translateY(60px);
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Reveal Left (slides in from left) */
.reveal-left {
    transform: translateX(-60px);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Reveal Right (slides in from right) */
.reveal-right {
    transform: translateX(60px);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Reveal Scale (zooms in) */
.reveal-scale {
    transform: scale(0.9);
}
.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Children */
.stagger > * {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.active > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.active > *:nth-child(3) { transition-delay: 0.3s; }
.stagger.active > *:nth-child(4) { transition-delay: 0.4s; }
.stagger.active > *:nth-child(5) { transition-delay: 0.5s; }
.stagger.active > *:nth-child(6) { transition-delay: 0.6s; }
.stagger.active > *:nth-child(7) { transition-delay: 0.7s; }
.stagger.active > *:nth-child(8) { transition-delay: 0.8s; }
