/* ============================================================
   GLOBAL RESET & OVERFLOW FIX
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    /* overflow-x: clip — NOT hidden. 
       overflow-x:hidden creates a new scroll container and BREAKS position:sticky.
       overflow-x:clip visually clips without creating a scroll container. */
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    background-color: #010a1c;
    color: #dde4e1;
    overflow-x: clip;
    width: 100%;
    scroll-behavior: smooth;
}

/* Prevent any element from breaking out of viewport */
img, video, canvas, svg {
    max-width: 100%;
    height: auto;
}

/* Word wrap for all headings to prevent overflow */
h1, h2, h3, h4, h5, h6, p {
    word-break: break-word;
    overflow-wrap: break-word;
}


/* ============================================================
   MOBILE NAVIGATION DRAWER
   ============================================================ */

/* DESKTOP (≥1024px): drawer and overlay are completely hidden */
#mobile-nav-drawer,
#mobile-nav-overlay {
    display: none !important;
}

/* MOBILE/TABLET (<1024px): enable drawer */
@media (max-width: 1023px) {
    #mobile-nav-overlay {
        display: block !important;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }
    #mobile-nav-overlay.open {
        opacity: 1;
        pointer-events: auto;
    }

    #mobile-nav-drawer {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 320px;
        height: 100%;
        height: 100dvh;
        background: rgba(1, 10, 28, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 999;
        /* Hidden off-screen to the right by default */
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        padding: 2rem 1.5rem;
        gap: 0;
        overflow-y: auto;
    }
    #mobile-nav-drawer.open {
        transform: translateX(0);
    }
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(221, 228, 225, 0.7);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'Geist', sans-serif;
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #0fbc9c;
    padding-left: 0.5rem;
}
.mobile-nav-link .material-symbols-outlined {
    font-size: 1.25rem;
    opacity: 0.7;
}

/* ============================================================
   DISABLE CUSTOM CURSOR ON TOUCH / MOBILE DEVICES
   ============================================================ */
@media (hover: none) and (pointer: coarse) {
    body, a, button, input, textarea, select, .magnetic-btn, .hover-target {
        cursor: auto !important;
    }
    #custom-cursor,
    #custom-cursor-follower {
        display: none !important;
    }
}

/* ============================================================
   FLUID TYPOGRAPHY — Aggressive mobile-first clamping
   Tailwind CDN injects styles dynamically so we must
   use specific selectors with !important to win.
   ============================================================ */

/* Display / Hero headline: 28px on 360px phone → 72px on 1280px desktop */
.text-display-lg {
    font-size: clamp(1.75rem, 4.5vw + 0.5rem, 4.5rem) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.01em !important;
}

/* Headline LG: 24px → 48px */
.text-headline-lg {
    font-size: clamp(1.5rem, 3.5vw + 0.25rem, 3rem) !important;
    line-height: 1.2 !important;
}

/* Headline MD: 20px → 32px */
.text-headline-md {
    font-size: clamp(1.25rem, 2.5vw + 0.25rem, 2rem) !important;
    line-height: 1.3 !important;
}

/* Kill the hard-coded 80px on services/about hero on mobile */
@media (max-width: 767px) {
    [class*="text-[80px]"],
    .text-\[80px\] {
        font-size: clamp(1.75rem, 4.5vw + 0.5rem, 4.5rem) !important;
    }
}

/* ============================================================
   OVERFLOW CONTROL — Do NOT add overflow to section/main
   as it breaks position:sticky on child elements.
   Only safe to add on footer, header.
   ============================================================ */
footer, header {
    max-width: 100%;
    overflow-x: clip;
}

/* ============================================================
   SERVICES SECTION — Sticky requires NO overflow on ancestors
   ============================================================ */
#services-section {
    position: relative;
    /* Absolutely no overflow property here — it kills sticky */
}

/* ============================================================
   CONTAINERS — Mobile only width override
   On desktop: let Tailwind's max-w-container-max (1440px) work normally
   On mobile/tablet: force 100% so no horizontal overflow
   ============================================================ */
@media (max-width: 639px) {
    .max-w-container-max {
        width: 100% !important;
        max-width: 100% !important;
    }
    .px-gutter {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .max-w-container-max {
        max-width: 100% !important;
    }
    .px-gutter {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}


/* ============================================================
   HEADER — Mobile padding safety
   ============================================================ */
@media (max-width: 767px) {
    #main-header {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
@media (max-width: 1023px) {
    /* Hide 3D dashboard on tablets too */
    #isometric-dashboard {
        display: none !important;
    }
}

@media (max-width: 767px) {
    /* Hero section full height but allow content to breathe */
    section.h-screen {
        min-height: 100svh;
        height: auto !important;
        padding-top: 6rem;
        padding-bottom: 3rem;
    }
    /* Hero text adjustments */
    .hero-subtitle {
        font-size: 1rem !important;
        max-width: 100%;
    }
    /* Hero button full width on mobile */
    .flex.flex-col.sm\:flex-row.gap-4 {
        flex-direction: column;
    }
    .hero-button {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   SERVICES SECTION (Homepage sticky columns)
   — Desktop (≥1024px): left column sticks via position:sticky top:8rem
     The left column MUST stretch full height (no align-self:start)
     so the sticky has a tall parent to scroll within.
   — Mobile/tablet (<1024px): override to static so cards stack
   ============================================================ */
@media (max-width: 1023px) {
    #services-section .sticky.top-32 {
        position: static !important;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    /* Service cards — reduce padding */
    .bg-\[\#111\].border.border-white\/5.rounded-3xl.p-10 {
        padding: 1.5rem !important;
    }
    #services-section h2 {
        font-size: clamp(2rem, 7vw, 3.5rem) !important;
    }
}

/* ============================================================
   PORTFOLIO / PROJECTS — Image height
   ============================================================ */
@media (max-width: 767px) {
    /* Reduce tall images on mobile */
    img.h-\[500px\] {
        height: 250px !important;
    }
    /* Reduce project spacing */
    .space-y-32 > * + * {
        margin-top: 3rem !important;
    }
}

/* ============================================================
   CTA SECTIONS — Giant text scaling
   ============================================================ */
@media (max-width: 767px) {
    /* "Ready to Dominate?" - index.php CTA */
    .font-display-lg.text-6xl.md\:text-8xl {
        font-size: clamp(2.5rem, 10vw, 4rem) !important;
    }
    /* About page CTA */
    .font-display-lg.text-5xl.md\:text-7xl {
        font-size: clamp(2rem, 8vw, 3.5rem) !important;
    }
    /* Projects page CTA */
    section.py-section-padding-desktop {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
@media (max-width: 767px) {
    /* Reduce main padding on mobile */
    main.pt-32.pb-section-padding-desktop.px-gutter {
        padding: 6rem 1rem 3rem !important;
    }
    /* Form panel */
    .glass-panel.p-8.md\:p-12.rounded-\[2rem\] {
        padding: 1.5rem !important;
        border-radius: 1.5rem !important;
    }
    /* Step 2 mission grid — single column on very small */
    #step-2 .grid.grid-cols-2 {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    /* Navigation buttons — stack on mobile */
    #contact-form .flex.justify-between.items-center.pt-8 {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch !important;
    }
    #contact-form .ml-auto.flex.items-center.gap-6 {
        margin-left: 0;
        flex-direction: column;
        gap: 0.5rem;
    }
    #next-btn, #submit-btn, #prev-btn {
        width: 100%;
        justify-content: center;
    }
    /* Map aspect ratio on mobile */
    .aspect-video {
        aspect-ratio: 4/3;
    }
    /* Contact info grid — full width */
    .grid.grid-cols-2.gap-4 {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   PROJECTS PAGE — Bento grid
   ============================================================ */
@media (max-width: 767px) {
    /* Make all bento items full width on mobile */
    .grid.grid-cols-1.md\:grid-cols-12 article {
        grid-column: span 12 !important;
    }
    /* Project modal — stack vertically */
    #case-study-modal .flex.flex-col.md\:flex-row {
        flex-direction: column;
    }
    #case-study-modal .w-full.md\:w-1\/2.h-80.md\:h-full {
        height: 200px;
    }
    #case-study-modal .w-full.md\:w-1\/2.p-8.md\:p-16 {
        padding: 1.5rem;
    }
    /* Filter buttons — allow wrapping and small text */
    .flex.flex-wrap.gap-4.mb-16.items-center {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    .flex.flex-wrap.gap-4.mb-16.items-center button {
        font-size: 0.625rem;
        padding: 0.375rem 0.75rem;
    }
    /* Projects hero title */
    #projects-page-title {
        font-size: clamp(2rem, 9vw, 3.5rem) !important;
    }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
@media (max-width: 767px) {
    /* About hero big title */
    .font-display-lg.text-5xl.md\:text-7xl.lg\:text-\[80px\] {
        font-size: clamp(2rem, 8vw, 3rem) !important;
    }
    /* Mission image — height constraint */
    .relative.rounded-3xl.overflow-hidden.h-\[600px\] {
        height: 280px !important;
    }
    /* Stats grid — 2 columns always */
    .grid.grid-cols-2.gap-8.mt-12 {
        gap: 1rem;
    }
    .grid.grid-cols-2.gap-8.mt-12 h3 {
        font-size: 2.5rem !important;
    }
    /* Values cards — reduce padding */
    .bg-\[\#111\].border.border-white\/5.p-10.rounded-3xl {
        padding: 1.5rem !important;
    }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
@media (max-width: 767px) {
    /* Services hero */
    main.pt-32 {
        padding-top: 6rem;
    }
    /* Services cards grid — full width on mobile, 2 cols on sm */
    .grid.grid-cols-1.md\:grid-cols-2.gap-8 .glass-card {
        padding: 1.5rem !important;
    }
}

/* ============================================================
   FOOTER — Mobile layout
   ============================================================ */
@media (max-width: 767px) {
    footer.pt-32 {
        padding-top: 4rem !important;
    }
    footer .px-gutter {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    /* Social pills — 2 per row on small */
    footer .flex.flex-wrap.justify-center.gap-4.mb-24 {
        gap: 0.5rem;
        margin-bottom: 3rem;
    }
    footer .flex.flex-wrap.justify-center.gap-4.mb-24 a {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    /* Bottom bar stack */
    footer .flex.flex-col.md\:flex-row.justify-between {
        gap: 1.25rem;
        text-align: center;
    }
}

/* ============================================================
   GENERAL — px-gutter safe override for mobile
   ============================================================ */
@media (max-width: 639px) {
    .px-gutter {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}
@media (min-width: 640px) and (max-width: 1023px) {
    .px-gutter {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

/* ============================================================
   SECTION PADDING — Scale down on mobile
   ============================================================ */
@media (max-width: 767px) {
    .py-section-padding-desktop {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    .py-32 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
    .py-40 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
    .pt-32 { padding-top: 5rem !important; }
    .pt-40 { padding-top: 6rem !important; }
    .pb-32 { padding-bottom: 4rem !important; }
    .mb-24 { margin-bottom: 2.5rem !important; }
    .mb-20 { margin-bottom: 2rem !important; }
    .mb-12 { margin-bottom: 1.5rem !important; }
    /* Inner page service cards padding */
    .p-10 { padding: 1.5rem !important; }
}

/* ============================================================
   BENTO GRID — Mobile override
   ============================================================ */
@media (max-width: 767px) {
    .bento-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }
    .bento-item-large,
    .bento-item-wide,
    .bento-item-tall,
    .bento-item-small {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

/* ============================================================
   REVIEW / TESTIMONIAL CARDS — Mobile
   ============================================================ */
@media (max-width: 767px) {
    .bg-\[\#0A0A0A\].border.border-white\/10.p-10 {
        padding: 1.5rem !important;
    }
}

/* ============================================================
   IMAGES — Prevent overflow on all devices
   ============================================================ */
img {
    max-width: 100%;
}

/* ============================================================
   TABLET (768px – 1023px) specific tweaks
   ============================================================ */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Reduce hero font a touch */
    .text-\[80px\] {
        font-size: 3.5rem !important;
    }
    /* About hero */
    .font-display-lg.text-5xl.md\:text-7xl.lg\:text-\[80px\] {
        font-size: 3.75rem !important;
    }
    /* Portfolio images */
    img.h-\[500px\] {
        height: 380px !important;
    }
    /* Services sticky — not sticky on tablets */
    #services-section .sticky.top-40 {
        position: static !important;
    }
    /* px-gutter tablet */
    .px-gutter {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

/* ============================================================
   SAFE AREA (notch) support
   ============================================================ */
@supports (padding: max(0px)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

/* Glass and Cards */
.glass-card, .glass-panel {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.glass-card:hover, .glass-panel:hover {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(87, 241, 219, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(87, 241, 219, 0.1);
}

.holographic-badge {
    background: linear-gradient(135deg, rgba(87, 241, 219, 0.1), rgba(168, 85, 247, 0.1), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

/* Buttons */
.magnetic-btn, .magnetic-button {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
}
.magnetic-button:hover {
    box-shadow: 0 0 30px rgba(87, 241, 219, 0.4);
}

/* Perspective and 3D */
.perspective-grid, .perspective-container {
    perspective: 2000px;
}
.tilt-element {
    transform-style: preserve-3d;
    will-change: transform;
}

/* Animations & FX */
.light-trail {
    position: absolute;
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0fbc9c, transparent);
    filter: blur(2px);
    opacity: 0.3;
    animation: move-trail 8s infinite linear;
}
@keyframes move-trail {
    0% { transform: translateX(-100%) translateY(0); }
    100% { transform: translateX(100vw) translateY(500px); }
}

.shimmer-text, .gradient-text {
    background: linear-gradient(90deg, #dde4e1 0%, #0fbc9c 50%, #dde4e1 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
    to { background-position: 200% center; }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.node-pulse {
    animation: pulse 3s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; box-shadow: 0 0 0 0 rgba(87, 241, 219, 0.7); }
    70% { transform: scale(1.1); opacity: 0.4; box-shadow: 0 0 0 15px rgba(87, 241, 219, 0); }
    100% { transform: scale(1); opacity: 0.8; box-shadow: 0 0 0 0 rgba(87, 241, 219, 0); }
}

/* Specific Components */
.case-study-overlay {
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.case-study-overlay.active {
    clip-path: circle(150% at 50% 50%);
}

.step-transition {
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.step-hidden {
    display: none;
    opacity: 0;
    transform: translateX(20px);
}

.input-glow:focus {
    outline: none;
    border-color: #0fbc9c;
    box-shadow: 0 0 15px rgba(87, 241, 219, 0.3);
}

.service-expand-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card[data-expanded="true"] .service-expand-content {
    max-height: 500px;
}
.service-card[data-expanded="true"] .expand-icon {
    transform: rotate(180deg);
}

.line-graph {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 3s ease-out forwards;
}
@keyframes draw {
    to { stroke-dashoffset: 0; }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #09100e;
}
::-webkit-scrollbar-thumb {
    background: #2dd4bf;
    border-radius: 10px;
}

/* 3D Flip Card */
.flip-card {
    background-color: transparent;
    perspective: 1000px;
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 1rem;
}
.flip-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Premium Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 350px);
    }
    .bento-item-large { grid-column: span 2; grid-row: span 2; }
    .bento-item-wide { grid-column: span 2; grid-row: span 1; }
    .bento-item-tall { grid-column: span 1; grid-row: span 2; }
    .bento-item-small { grid-column: span 1; grid-row: span 1; }
}

/* Deep 3D Magnetic Hover for Cards */
.magnetic-card {
    transform-style: preserve-3d;
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    will-change: transform;
}
.magnetic-card-content {
    transform: translateZ(30px); /* Pushes text forward */
}
.magnetic-card-icon {
    transform: translateZ(50px); /* Pushes icon even further forward */
}
.magnetic-card:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(87, 241, 219, 0.2);
}

/* Animated Grid Background */
.animated-grid-bg {
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

/* Swiper 3D Coverflow Tweaks */
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
    background-image: none !important; /* Remove ugly default shadows */
}

/* Swiper Custom Pagination */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.2;
}
.swiper-pagination-bullet-active {
    background: #0fbc9c;
    opacity: 1;
}

/* Gradient Backgrounds */
.gradient-wave-bg {
    background: linear-gradient(270deg, #010a1c, #0f172a, #003731, #010a1c);
    background-size: 800% 800%;
    animation: GradientBackground 15s ease infinite;
}
@keyframes GradientBackground {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

/* Custom Cursor */
body, a, button, input, textarea, select, .magnetic-btn, .hover-target {
    cursor: none !important;
}

#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #0fbc9c;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, background-color 0.3s ease;
}

#custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(15, 188, 156, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.cursor-hover #custom-cursor {
    transform: translate(-50%, -50%) scale(0.5);
    background-color: #ffffff;
}

.cursor-hover #custom-cursor-follower {
    width: 60px;
    height: 60px;
    background-color: rgba(15, 188, 156, 0.1);
    border-color: #0fbc9c;
}

/* Isometric 3D Dashboard Utility Classes */
.perspective-container {
    perspective: 2000px;
}
.transform-style-3d {
    transform-style: preserve-3d;
}
.translate-z-[-50px] {
    transform: translateZ(-50px);
}
.translate-z-[-20px] {
    transform: translateZ(-20px);
}
.translate-z-[20px] {
    transform: translateZ(20px);
}
.translate-z-[60px] {
    transform: translateZ(60px);
}
.rotate-x-[20deg] {
    transform: rotateX(20deg) rotateY(-25deg) rotateZ(5deg);
}
.hover\:rotate-x-[15deg]:hover {
    transform: rotateX(15deg) rotateY(-15deg) rotateZ(2deg);
}
.float-anim {
    animation: float 6s ease-in-out infinite;
}
.delay-100 {
    animation-delay: 100ms;
}
