:root {
    --bg: #0e0e0e;
    --grid-line: #222222;
    --accent: #FF4D00;
    --teal: #1A474D;
    --text: #FFFFFF;
    --secondary-text: #888888;
    --card-bg: #161616;
    --card-border: rgba(255, 255, 255, 0.08);
    --modal-bg: rgba(0, 0, 0, 0.95);
    --brand-orange: #FF4D00;
    --text-main: #FFFFFF;
    --text-muted: #888888;
    --bg-dark: #1A1A1A; /* Adjusted to match dark grey gradient in ref */
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

/* --- BACKGROUND GRADIENT EFFECT --- */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 50%, rgba(255, 77, 0, 0.08) 0%, rgba(26, 71, 77, 0.05) 40%, rgba(14, 14, 14, 1) 100%);
    z-index: -1;
    pointer-events: none;
}

/* --- UPDATED NAVIGATION BASE --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 8%; /* Balanced spacing for the hero section */
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent; /* Invisible at start */
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- SCROLLED STATE (TRIGGERED BY JS) --- */
nav.nav-scrolled {
    padding: 18px 8%; /* Subtle "shrink" effect on scroll */
    background: rgba(8, 8, 8, 0.75); /* Dark translucent background */
    backdrop-filter: blur(20px); /* Premium Glassmorphism */
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- LOGO & LINK STYLES --- */
.logo {
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.15em;
    color: #fff;
    text-transform: uppercase;
}

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

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6); /* Muted initially */
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

/* Brighten links when background is active */
nav.nav-scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.9);
}

.nav-links a:hover {
    color: #FF4D00; /* Subtle brand touch */
}

/* --- MOBILE TWEAKS --- */
@media (max-width: 768px) {
    nav {
        padding: 20px 6%;
    }
    nav.nav-scrolled {
        padding: 15px 6%;
    }
    .nav-links {
        gap: 20px;
    }
}


/* --- GRID SECTIONS --- */
 /* Expertise Section - Card Based */
/* --- STICKY LEFT COLUMN FIX --- */

.section-grid {
    display: flex; /* Using flex is more reliable for sticky than grid in some browsers */
    align-items: flex-start; /* CRITICAL: Allows left side to be shorter than right */
    width: 100%;
    position: relative;
    gap: 60px; /* Space between label and project content */
    margin-bottom: 100px; /* Space between projects */
}

.grid-left {
    flex: 0 0 150px; /* Set a fixed width so it doesn't move or collapse */
    position: -webkit-sticky;
    position: sticky;
    top: 50px; /* The gap from the top of the screen when locked */
    z-index: 10;
}

.grid-right {
    flex: 1; /* Right side takes up remaining space */
    min-width: 0; /* Prevents layout overflow from wide images */
}

/* Ensure the label inside stays clean */
/* --- 30/70 STICKY GRID LAYOUT --- */

.section-grid {
    display: flex; 
    align-items: flex-start; /* CRITICAL: Allows grid-left to float independently */
    width: 100%;
    position: relative;
    gap: 0; /* Removing gap to ensure exact 30/70 mathematical split */
    margin-bottom: 120px;
}

.grid-left {
    flex: 0 0 25%; /* Fixed 30% width */
    position: -webkit-sticky;
    position: sticky;
    top: 80px; /* Distance from top of screen when scrolling */
    z-index: 10;
    padding-right: 40px; /* Use padding for spacing instead of gap */
    box-sizing: border-box;
}

/*Carousel parallax */
/* --- PARALLAX BOX SETTINGS --- */

.carousel-parallax-wrapper {
    position: relative;
    overflow: hidden; /* Hide the image edges as they shift */
    border-radius: 4px; /* Matches your current card style */
    width: 100%;
    height: 100%;
}

.carousel-wrapper {
    /* We apply the transform to this container */
    transition: transform 0.1s ease-out; 
    will-change: transform;
}

.grid-right {
    flex: 0 0 75%; /* Fixed 70% width */
    width: 75%;
    min-width: 0; /* Prevents layout breaking from large images */
    box-sizing: border-box;
}

/* Label Styling inside the 30% column */
.grid-left .label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #555;
    font-weight: 700;
    margin-left: 14em;
    margin-top: 40px;
}

/* --- HERO SECTION BASE --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: #080808;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8%;
    overflow: hidden;
}

/* 6. Noise Grain Overlay */
.noise-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.04;
    pointer-events: none;
    z-index: 2;
}

/* 5. Mouse-Follow Glow */
.cursor-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 77, 0, 0.08) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: width 0.3s, height 0.3s;
}

/* 1. Status Indicator */
.hero-status-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #28a745;
    border-radius: 50%;
    box-shadow: 0 0 8px #28a745;
}

/* --- ENHANCED TYPOGRAPHY & TRANSITION --- */

/* --- SWAPPED TYPOGRAPHY STYLE --- */

.hero-header {
    font-size: clamp(55px, 9vw, 115px);
    font-weight: 900; /* Extra bold is required for this effect */
    line-height: 0.85; 
    letter-spacing: -0.05em;
    color: #fff;
}

/* 1. Building as Outlined Text */
.line-static-outline {
    display: block;
    color: #080808; /* Match your background color exactly to "hollow" the text */
    
    /* 1. Stacked Shadow for Pixel Effect (No Blur) */
    /* This creates a hard 2px outline around every corner */
    text-shadow: 
        -2px -2px 0 rgba(255, 255, 255, 0.4),  
         2px -2px 0 rgba(255, 255, 255, 0.4),
        -2px  2px 0 rgba(255, 255, 255, 0.4),
         2px  2px 0 rgba(255, 255, 255, 0.4),
         0px -2px 0 rgba(255, 255, 255, 0.4),
         0px  2px 0 rgba(255, 255, 255, 0.4),
        -2px  0px 0 rgba(255, 255, 255, 0.4),
         2px  0px 0 rgba(255, 255, 255, 0.4);

    margin-bottom: 0.28em;
    text-transform: capitalize;
    
}

.rotate-wrapper {
    display: inline-grid;
    height: 1.1em;
    overflow: hidden;
    position: relative;
}

/* 2. Retain the solid look for the rotating text */
.rotate-text {
    grid-area: 1 / 1;
    color: #FFFFFF; 
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.85s cubic-bezier(0.76, 0, 0.24, 1);
    /* Ensure no shadows on the solid text */
    text-shadow: none; 
}

.rotate-text.active {
    opacity: 1;
    transform: translateY(0);
}

.rotate-text.exit {
    opacity: 0;
    transform: translateY(-100%);
}

/* Subtle brand touch: hovering the header makes the keywords pop */
.hero-header:hover .rotate-text.active {
    text-shadow: 0 0 30px rgba(255, 77, 0, 0.2);
}

/* 3. Tagline */
.hero-tagline {
    font-size: 18px;
    color: #888;
    max-width: 500px;
    margin: 24px 0;
    line-height: 1.6;
}

.hero-actions {
    margin-top: 32px;
  }

/* 4. Ghost Button */
.btn-ghost {
    display: inline-block;
    padding: 18px 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border-radius: 16px;
}

.btn-ghost:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Mobile Fallback: Stack when screen is too narrow for 30/70 */
@media (max-width: 991px) {
    .section-grid {
        display: block;
    }
    .grid-left {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }
    .grid-right {
        width: 100%;
    }
}

.grid-right { grid-column: span 9; padding: 60px 40px; }


.mission-statement {
    font-size: clamp(20px, 3vw, 32px); margin-bottom: 60px; max-width: 900px;
    color: var(--text); font-weight: 500;
}

.expertise-container {
    display: flex; flex-direction: column; gap: 20px;
}

.expertise-card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 20px; padding: 40px; transition: transform 0.3s ease;
}

.card-header { display: flex; align-items: center; gap: 20px; margin-bottom: 15px; }

.icon-box {
    width: 50px; height: 50px; background: #ffffff08; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}

.expertise-card h2 { font-size: 24px; font-weight: 600; }

.expertise-card p { color: var(--secondary-text); margin-bottom: 20px; max-width: 600px; }

.bullet-list { 
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    padding-left: 0;
}

.bullet-list li {
    display: flex;          /* This creates the two-column effect */
    align-items: flex-start; /* Keeps the bullet at the top if text wraps */
    gap: 12px;              /* Adjust this for the space between bullet and text */
    text-align: left;
}

.bullet-list li::before {
    content: "•";           /* Your bullet character */
    flex-shrink: 0;         /* Prevents the bullet from getting squashed */
    margin-top: 2px;
}

/* Specific bullet colors from Screenshot 2026-05-05 at 1.31.40 PM.png */
.orange-bullets li::before { color: #ff6a00; }
.teal-bullets li::before { color: #008080; }
.grey-bullets li::before { color: #555555; }

.tip-pill {
    display: inline-flex; align-items: center; background: #e0f2f110;
    color: #b2dfdb; padding: 8px 16px; border-radius: 50px; font-size: 13px;
}

/* --- PROCESS SECTION STYLES --- */
.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

.accent-text {
    color: var(--teal); /* Blends mood board teal with brand structure */
}

.process-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.process-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -25px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}



/* Colors from Screen Shot 2026-05-05 at 1.31.40 PM.png */
.step-teal { background: var(--teal); }
.step-orange { background: var(--orange); }
.step-grey { background: #444; }

.process-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-card p {
    font-size: 15px;
    color: var(--secondary-text);
    line-height: 1.6;
}

/* Responsive collapse for mobile */
@media (max-width: 1100px) {
    .process-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .step-number {
        right: auto;
        left: 20px;
    }
}

/* --- CAROUSEL FIXES --- */
.carousel-wrapper {
    position: relative;
    padding: 40px 0;
    background: #000;
}

.carousel-mask {
    overflow: hidden;
    margin: 0 60px;
}

.carousel-container {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-out;
}

.carousel-image-square {
    width: 460px !important;
    height: 460px !important;
    object-fit: contain; /* Full detail, no stretching[cite: 1] */
    background: #1a1a1a;
    flex-shrink: 0;
    cursor: zoom-in;
}

/* NAVIGATION ARROWS */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(40, 40, 40, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    z-index: 50; /* Below modal, above images */
    font-size: 24px;
}
.nav-arrow.prev { left: 10px; }
.nav-arrow.next { right: 10px; }
.nav-arrow:hover { background: #FF4D00; border-color: #FF4D00; }

/* MODAL FIX */
.modal-overlay {
    display: none; 
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000; /* Absolute top */
    align-items: center;
    justify-content: center;
}

.modal-img-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

.close-modal-btn {
    position: absolute;
    top: 20px; right: 30px;
    color: white;
    font-size: 60px;
    cursor: pointer;
    z-index: 10001;
}

/* --- WORK CARD DETAILS REDESIGN --- */

.work-card-details {
    padding: 60px;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.details-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Left Column Styling */
.details-identity {
    flex: 0 0 35%;
}

.project-title {
    font-size: 32px;
    font-weight: 800;
    margin: 8px 0;
    letter-spacing: -0.03em;
    color: #fff;
}

.project-categories {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* Right Column Styling */
.details-narrative {
    flex: 1;
}

.employer-description {
    color: #999;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

/* Call to Action Accent */
.view-live-link {
    color: #FF4D00 !important; /* Brand Accent Color */
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    border-bottom: 1px solid rgba(255, 77, 0, 0.2);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.view-live-link:hover {
    border-bottom: 1px solid #FF4D00;
    padding-right: 5px;
}

/* --- UNIFIED PROJECT CARD --- */
.project-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* CHANGE: Card hover is now white, not orange */
.project-card:hover {
    border-color: #FFFFFF !important;
    transform: translateY(-5px);
}

.carousel-wrapper {
    position: relative;
    padding: 60px 0;
    background: transparent;
}

/* CHANGE: Widened to show 2.5 thumbnails (480px width each) */
.carousel-mask {
    overflow: hidden;
    width: 1200px; /* (480px * 2.5) */
    margin: 0 auto;
}

.carousel-container {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-out;
}

.carousel-image-square {
    width: 460px !important;
    height: 460px !important;
    object-fit: contain;
    background: #1a1a1a;
    flex-shrink: 0;
    border-radius: 12px;
    cursor: zoom-in;
}

/* Navigation Arrow Placement for WIDER mask */
.nav-arrow.prev { left: calc(50% - 660px); }
.nav-arrow.next { right: calc(50% - 660px); }

/* Unified Work Card Details */
.work-card-details {
    padding: 60px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile Responsiveness */
@media (max-width: 1300px) {
    .carousel-mask {
        width: 100%;
        padding: 0 20px;
    }
    .carousel-image-square {
        width: calc(50vw - 40px) !important; /* Show 2 images on tablet */
        height: auto !important;
        aspect-ratio: 1/1;
    }
}
@media (max-width: 768px) {
    .carousel-image-square {
        width: calc(100vw - 80px) !important; /* Show 1 image on mobile */
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .carousel-mask {
        width: 100%; /* Go full width on small screens */
        padding: 0 20px;
    }
    .carousel-image-square {
        width: calc(100vw - 80px) !important; /* Scale relative to mobile viewport */
        height: auto !important;
        aspect-ratio: 1/1;
    }
    .nav-arrow {
        display: none; /* Swipe is better on mobile */
    }
}

/* --- MODAL NAVIGATION ONLY --- */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 35px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001; /* Ensure it sits above the modal image */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    user-select: none;
}

.modal-nav-btn:hover {
    background: #FF4D00; /* Your brand accent color */
    border-color: #FF4D00;
}

.modal-nav-btn.prev { left: 30px; }
.modal-nav-btn.next { right: 30px; }

/* Ensure the image doesn't overlap buttons on smaller screens */
.modal-img-content {
    max-width: 80vw; 
    position: relative;
    z-index: 9999;
}

/* Contact us and footer
/* --- CONTACT SECTION RE-DESIGN --- */

.contact-section {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    padding: 160px 40px 60px;
    color: #fff;
    text-align: center;
}

.tag-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #FF4D00;
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-title {
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 800;
    margin: 0;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.accent-text {
    color: #FF4D00;
}

.contact-subtitle {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 400;
    color: #fff;
    margin: 15px 0 30px;
    letter-spacing: -0.01em;
}

.contact-lead {
    color: #888;
    max-width: 580px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.6;
}

/* Button & Social Link */
.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.main-cta-btn {
    background: #FF4D00;
    color: #fff;
    text-decoration: none;
    padding: 24px 50px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(255, 77, 0, 0.25);
}

.main-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(255, 77, 0, 0.4);
}

.secondary-social-link {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.secondary-social-link:hover {
    color: #fff;
}

/* Meta / Status Bar */
.contact-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    font-size: 13px;
    color: #555;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.meta-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.1);
}

/* Footer Section */
.minimal-footer {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
}

.legal-copy, .legal-nav a {
    font-size: 13px;
    color: #444;
    text-decoration: none;
}

.legal-nav {
    display: flex;
    gap: 30px;
}

.legal-nav a:hover { color: #fff; }

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    .rotate-wrapper {
        display: inline-grid;
        height: 1.8em;
        overflow: hidden;
        position: relative;
      }
      .pulse-dot {
        display: none;
      }
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* --- MOBILE --- */
@media (max-width: 900px) {
    .grid-col-left, .grid-col-right {
        grid-column: span 12;
        border-right: none;
    }
    .grid-col-left {
        border-bottom: 1px solid var(--grid-line);
        padding-bottom: 20px;
    }
    .details-split {
        flex-direction: column;
        gap: 30px;
    }
    
    .work-card-details {
        padding: 40px;
    }
}

/* --- UNIFIED CARD STYLES (Expertise, Process, & Project) --- */

.expertise-card, 
.process-card,
.project-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover State: White Border & Lift */
.expertise-card:hover, 
.process-card:hover,
.project-card:hover {
    transform: translateY(-8px); /* Subtle lift */
    border-color: #FFFFFF !important; /* White border highlight */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); /* Adds depth on hover */
}

/* Internal Expertise Card Adjustments */
.expertise-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures all cards in a row have equal height */
}

/* Optional: Slight glow for the icons on hover */
.expertise-card:hover .icon-box {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}