:root {
    --bg-soft: #f5f6f7;
    --bg-cream: #f5f6f7;
    --text-main: #1f1f1f;
    --text-muted: #4a4f55;
    --accent: #2f5d50;
    --accent-dark: #254a40;
    --slate-dark: #1c332c;
}

html, body {
    margin: 0; padding: 0; width: 100%;
    overflow-x: hidden; background: transparent; 
    color: var(--text-main); font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    font-size: 15px; /* reduced ~1pt for tighter fit */
}
*, *:before, *:after { box-sizing: border-box; }
.font-mono { font-family: 'DM Mono', monospace; }

/* 3D Canvas Layout */
#canvas-container {
    position: absolute;
    top: 0;
    left: 0; /* anchor left to avoid GSAP overwriting centering */
    width: 100%; /* prevent horizontal scrollbars */
    height: 100%;
    pointer-events: none !important;
    touch-action: none;
    user-select: none;
    will-change: transform;
}
#canvas-container canvas { position: absolute; inset: 0; }

/* REVERTED NAVBAR (Original Original Styles) */
.nav-dark { 
    color: #ffffff !important; 
    background: rgba(28,51,44,0.9) !important;
}
.nav-solid {
    background: rgba(47,93,80,0.92);
    color: #f7f6f2 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.nav-transparent {
    background: linear-gradient(180deg, rgba(47,93,80,0.65), rgba(47,93,80,0));
    color: #f7f6f2;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}
.nav-solid a, .nav-transparent a { color: #f7f6f2; }
.nav-links a {
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}
.logo-mark {
    height: 72px;
    width: auto;
    border-radius: 10px;
    padding: 0;                /* avoid casting shadow on padding box */
    background: transparent;
    border: none;
    box-shadow: none;          /* remove box shadow around full rect */
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.28)); /* shadow follows logo alpha */
    object-fit: contain;
}
.logo-mark.small { height: 56px; }

/* Mobile menu */
.mobile-menu-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center; 
    gap: 4px;
    padding: 10px;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.mobile-menu-btn span {
    display: block;
    height: 3px; /* Slightly thicker for better visibility */
    background: #f7f6f2;
    border-radius: 1px;
    transition: all 0.3s ease;
}
/* THE ROOF PEAK (Top Bar) */
.mobile-menu-btn span:nth-child(1) {
    width: 28px;
    height: 10px; /* Taller to allow for the peak */
    background: #f7f6f2;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    margin-bottom: -1px; /* Tucks the roof onto the walls */
}
/* THE MAIN WALLS (Middle Bar) */
.mobile-menu-btn span:nth-child(2) {
    width: 24px;
    height: 2px;
}
/* THE BASE/FLOOR (Bottom Bar) */
.mobile-menu-btn span:nth-child(3) {
    width: 24px;
    height: 2px;
}
/* Hover Effect */
.mobile-menu-btn:hover span {
    background: #fbbf24; /* Effective Designs accent yellow */
    transform: scale(1.1);
}
.mobile-menu-btn.is-active span:nth-child(1) {
    clip-path: none;
    transform: translateY(7px) rotate(45deg);
    width: 24px;
}
.mobile-menu-btn.is-active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 24px;
}
.mobile-drawer {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 78vw;
    max-width: 320px;
    background: rgba(15, 24, 20, 0.96);
    color: #f7f6f2;
    z-index: 120;
    transform: translateX(110%);
    transition: transform 240ms ease;
    box-shadow: -18px 0 40px rgba(0,0,0,0.25);
    padding: 18px 16px;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-close {
    background: none;
    border: none;
    color: #f7f6f2;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}
.mobile-drawer__links {
    margin-top: 22px;
    display: grid;
    gap: 14px;
}
.mobile-drawer__links a {
    color: #f7f6f2;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.mobile-dim {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 110;
}

/* REVERTED HERO (Original Original Styles) */
header .hero-text {
    position: relative;
    max-width: 720px;
}
.hero-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #0f1216;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease-in-out, transform 3.6s ease;
    transform: scale(1.04);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.nav-solid .logo-mark {
    filter: invert(1) brightness(1.5); /* Inverts colors and boosts brightness */
}
.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 700px;           /* keep width moderate */
    padding: 34px 24px 26px;    /* increase height via vertical padding */
    color: #f7f6f2;
    backdrop-filter: blur(8px);
    background: linear-gradient(120deg, rgba(47,93,80,0.78), rgba(47,93,80,0.58));
    border-radius: 16px;
}
.hero-heading {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 10px 0;
}
.hero-sub {
    font-size: 1.05rem;
    max-width: 520px;
    color: rgba(247,246,242,0.92);
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}

/* Buttons & Pills */
.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #f7f6f2;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(47,93,80,0.26);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.primary-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(28,51,44,0.30);
}

.ghost-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 17px;
    border-radius: 999px;
    border: 1.6px solid var(--accent);
    color: var(--accent);
    background: rgba(47,93,80,0.06);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 150ms ease, background 150ms ease, transform 150ms ease;
}
.ghost-btn:hover {
    background: var(--accent);
    color: #f7f6f2;
    transform: translateY(-2px);
}

/* Ensure hero overlay ghost CTA stays legible on dark glass */
.hero-overlay .ghost-btn {
    color: #f7f6f2;
    border-color: #f7f6f2;
    background: rgba(255,255,255,0.08);
}
.hero-overlay .ghost-btn:hover {
    background: #f7f6f2;
    color: var(--accent-dark);
}

.link-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(47,93,80,0.08);
    color: var(--accent-dark);
    font-weight: 600;
    text-decoration: none;
    transition: background 150ms ease, transform 150ms ease;
}
.link-pill::after {
    content: "→";
    font-size: 0.9em;
}
.link-pill:hover {
    background: rgba(47,93,80,0.14);
    transform: translateY(-1px);
}

.badge, .badge-dark {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.badge {
    background: rgba(47,93,80,0.12);
    color: var(--accent-dark);
    border: 1px solid rgba(47,93,80,0.18);
}
.badge-dark {
    background: var(--accent);
    color: #f7f6f2;
    border: 1px solid rgba(247,246,242,0.18);
}

.pill-stat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--bg-soft);
    border: 1px solid #e3e5e8;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

/* Curtain Sections */
.curtain-section {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    will-change: transform;
    box-shadow: 0px -20px 50px rgba(0,0,0,0.10);
}
#services { z-index: 20; background-color: var(--bg-soft); }
#why      { z-index: 30; background-color: #ffffff; }

/* Process Section - High Impact Layering */
#process {
    position: relative;
    z-index: 40;
    background: radial-gradient(circle at 20% 20%, rgba(80,120,103,0.35), transparent 45%), #0c1814;
    min-height: 100vh; /* section equals viewport; scroll runway handled by pin spacer */
    overflow: hidden;
}
.process-visual {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100vw;
    z-index: 10; /* Keeps WebGL under overlay */
    pointer-events: none;
}
.process-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between; /* spread to left and right edges */
    padding: clamp(8px, 1.8vw, 12px);
    z-index: 20;
    pointer-events: none;
}
.process-overlay-stack {
    pointer-events: auto;
    width: 100%;
    max-width: 1180px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: min-content;
    column-gap: 20px;
    row-gap: clamp(40px, 6.5vh, 88px);
    padding-top: clamp(60px, 11vh, 120px);
    padding-bottom: clamp(40px, 9vh, 90px);
    align-items: start;
    transform: translateY(-48px);
}
.glass-block {
    background: rgba(12, 24, 20, 0.58);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 55px rgba(0,0,0,0.26);
    padding: 14px 16px;
}
.process-intro {
    grid-column: 1 / span 5;
    grid-row: 1;
    margin-top: 0;
    max-width: 420px;
}
.process-card-3d[data-stage="1"] { grid-column: 8 / span 5; grid-row: 2; margin-top: 12px; }
.process-card-3d[data-stage="2"] { grid-column: 3 / span 5; grid-row: 3; margin-top: 0; }
.process-card-3d[data-stage="3"] { grid-column: 8 / span 5; grid-row: 4; margin-top: 0; }

.process-intro h2 { color: #e9f5ef; }
.process-intro p { color: #d7efe4; }
.process-card-3d {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
}
.process-card-3d h3 {
    color: #f6fffa;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.process-card-3d p {
    color: #d7efe4;
    margin: 4px 0 0;
    line-height: 1.5;
}
.process-intro,
.process-card-3d {
    opacity: 0;                /* prevent flash before GSAP applies states */
    transform: translateY(40%); /* lifted off-screen until GSAP sets yPercent */
}
.process-step-index {
    font-family: 'DM Mono', monospace;
    color: #9be5c1;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 12px;
}

#projects { z-index: 45; background-color: var(--bg-soft); }
#contact  { z-index: 50; background-color: var(--bg-cream); }

/* Projects carousel */
.project-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
    padding: 12px;
}
.project-image-frame { position: relative; overflow: hidden; margin: -12px -12px 0; }
.project-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.carousel-dots {
    display: flex;
    gap: 6px;
    padding: 10px 12px 0;
}
.carousel-dots button {
    width: 10px; height: 10px;
    border-radius: 999px;
    border: none;
    background: #d1d5db;
    cursor: pointer;
}
.carousel-dots button.active { background: #2f5d50; }

/* Enquire CTA */
.enquire-cta {
    background: linear-gradient(120deg, #1c332c, #2f5d50);
    padding: 32px 18px;
    position: relative;
    z-index: 48;
}
.enquire-cta__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.enquire-cta__btn {
    white-space: nowrap;
    background: #fbbf24;
    color: #1c332c;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.enquire-cta__btn:hover {
    background: #f59e0b;
    color: #0f1a16;
}

/* Request / Enquiry Page */
body.request-page {
    background: #f5f6f7;
    color: #1f1f1f;
}
.request-nav {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.request-nav__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.request-logo {
    height: 44px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.request-brand {
    font-weight: 700;
    letter-spacing: 0.02em;
}
.request-link {
    color: #334155;
    text-decoration: none;
    font-weight: 600;
}
.request-link:hover { color: var(--accent-dark); }

.request-wrapper {
    max-width: 1180px;
    margin: 36px auto 72px;
    padding: 0 18px;
}
.request-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.08);
    padding: clamp(22px, 3vw, 34px) clamp(22px, 3.6vw, 42px);
}
.request-heading h1 {
    margin: 6px 0 8px;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
}
.request-heading .request-kicker {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #6b7280;
    margin: 0;
}
.request-heading .request-sub {
    margin: 0;
    color: #4b5563;
    line-height: 1.5;
}
.request-form {
    margin-top: 28px;
}
.request-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--accent-dark);
    text-decoration: none;
    margin-bottom: 12px;
}
.request-back:hover { color: var(--accent); }
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: #4b5563;
}
.field span {
    font-weight: 600;
    color: #374151;
}
.field input,
.field select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #dfe3e8;
    background: #f9fafb;
    font-size: 15px;
    transition: border-color 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.field input:focus,
.field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(47,93,80,0.16);
    background: #ffffff;
}
.request-actions {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.request-submit {
    background: var(--accent);
    color: #f7f6f2;
    border: none;
    border-radius: 12px;
    padding: 12px 26px;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 14px 40px rgba(47,93,80,0.22);
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.request-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 18px 48px rgba(28,51,44,0.24);
}

@media (max-width: 900px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .request-nav__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .request-wrapper {
        margin: 24px auto 60px;
    }
}

@media (max-width: 900px) {
    #process { 
        min-height: 140vh; 
        padding: 0 !important; /* Removes the 18px gap so canvas hits the edge */
    }
    
    .process-overlay {
        /* align cards to the top so they don't cover the house */
        align-items: flex-start; 
        justify-content: center;
    }

    .process-overlay-stack {
        width: min(520px, 100%);
        grid-template-columns: 1fr;
        row-gap: 18px;
        padding-top: 120px; 
        padding-bottom: 48px;
        /* no transform here */
    }
    .process-intro,
    .process-card-3d[data-stage="1"],
    .process-card-3d[data-stage="2"],
    .process-card-3d[data-stage="3"] {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

/* --- Responsive: tablets --- */
@media (max-width: 1024px) {
    .logo-mark { height: 64px; }
    .nav-links { gap: 16px; flex-wrap: wrap; }
    .nav-links a { letter-spacing: 0.16em; font-size: 11px; }
    header .hero-text { max-width: 92vw; }
    .hero-heading { font-size: clamp(2.05rem, 4vw, 3.0rem); }
    .hero-sub { font-size: 1.02rem; }
    .section, section { padding: 60px 32px; }
}

/* --- Responsive: mobile --- */
@media (max-width: 900px) {
    .logo-mark { height: 56px; }
    nav, .nav-links { flex-wrap: wrap; }
    .nav-links { justify-content: center; gap: 12px; }
    .nav-links a { display: block; padding: 6px 0; letter-spacing: 0.12em; font-size: 10px; }
    header .hero-text { transform: translateY(clamp(-10vh, -8vw, -4vh)); }
    .hero-overlay {
        padding: clamp(32px, 5vw, 48px) clamp(22px, 6vw, 28px);
        width: min(94vw, 640px);  /* width stays tighter; height increases */
        margin: 0 auto;
        border-radius: 12px;
        backdrop-filter: blur(4px);
        background: linear-gradient(120deg, rgba(47,93,80,0.90), rgba(47,93,80,0.75)); /* restore green tone */
        box-shadow: 0 14px 32px rgba(0,0,0,0.28);
    }
    .hero-heading { font-size: clamp(1.7rem, 4.6vw, 2.35rem); margin: 6px 0 6px; line-height: 1.18; }
    .hero-sub { font-size: clamp(0.94rem, 3.8vw, 1.06rem); max-width: 100%; margin-top: 6px; line-height: 1.45; }
    /* tighten gap before buttons on mobile */
    .hero-overlay .mt-6 { margin-top: 12px !important; }
    .section, section { padding: 48px 18px; }
    /* Enquire bar text smaller on mobile */
    .enquire-cta__inner p,
    .enquire-cta__inner h3 {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    /* Ensure 3D canvas sits flush edge-to-edge on mobile */
    #process .process-visual,
    #canvas-container {
        width: 100vw;
        left: 0;
        margin: 0;
        padding: 0;
    }
    .process-overlay-stack {
        width: min(520px, 100%);
        grid-template-columns: 1fr;
        row-gap: 18px;
        /* Bring stack higher for intro card */
        padding-top: 0px !important; 
        padding-bottom: 48px;
        margin: 0 auto;
    }
    /* FORCE CENTER ALIGNMENT FOR CARDS */
    .process-intro,
    .process-card-3d {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    /* Ensure the grid doesn't force left alignment */
    .process-intro,
    .process-card-3d[data-stage="1"],
    .process-card-3d[data-stage="2"],
    .process-card-3d[data-stage="3"] {
        grid-column: 1 / -1;
        justify-self: center;
    }
    /* THE SPLIT: Push ONLY the Step cards to the bottom */
    .process-card-3d[data-stage="1"] {
        margin-top: 40vh !important;
    }
}

/* Tablet-specific tweaks (iPad landscape/portrait) */
@media (max-width: 1100px) {
    /* Hero overlay a touch roomier than phone but still compact */
    .hero-overlay {
        width: min(88vw, 700px);
        padding: 32px 24px;
        max-width: 700px;
    }
    .hero-heading { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
    .hero-sub { font-size: 0.96rem; }
}

/* Request/enquiry form fixes for tablets (email overflow, spacing) */
@media (max-width: 1100px) {
    .request-card { padding: 20px 18px; }
    .form-grid { grid-template-columns: 1fr; gap: 14px; }
    .request-actions {
        flex-wrap: wrap;
        gap: 10px;
    }
    .request-submit { width: 100%; text-align: center; }
    .request-link { display: inline-block; word-break: break-word; overflow-wrap: anywhere; font-size: 14px; }
    #contact .shadow-xl { padding: 18px 16px; }
    #contact .shadow-xl a { word-break: break-word; overflow-wrap: anywhere; font-size: 14px; }
    #contact .shadow-xl .text-lg { font-size: 1.05rem; }
}

/* COD / Tactical Map Labels */
#labels-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 15; /* Above canvas, below overlay text */
    overflow: hidden;
}

.cod-label {
    position: absolute;
    transform: translate(-50%, -50%);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.75);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.4s ease;
    backdrop-filter: blur(4px);
}

.cod-label::after {
    /* The little "stem" pointing down */
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.5);
    transform: translateX(-50%);
}

.cod-label.visible {
    opacity: 1;
}

/* Loading overlay */
#loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 24, 20, 0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #e5f2eb;
    font-weight: 700;
    letter-spacing: 0.08em;
    z-index: 200;
    transition: opacity 300ms ease, visibility 300ms ease;
}
#loading-overlay.fade {
    opacity: 0;
    visibility: hidden;
}
.loading-spinner {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 4px solid rgba(229, 242, 235, 0.25);
    border-top-color: #e5f2eb;
    animation: spin 1s linear infinite;
}
.loading-text {
    margin: 0;
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
