/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow: hidden;
    font-family: 'Quicksand', sans-serif;
    background: #0f172a;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scroll Container */
.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    /* Prevent horizontal drifting */
    scroll-snap-type: y mandatory;
    scroll-padding-top: 0;
    position: relative;
}

.section {
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('../images/tech-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
    animation: bgFloat 60s linear infinite;
}

@keyframes bgFloat {
    0% {
        transform: translate(0, 0) scale(1.0);
    }

    33% {
        transform: translate(-2%, -2%) scale(1.05);
    }

    66% {
        transform: translate(2%, -1%) scale(1.02);
    }

    100% {
        transform: translate(0, 0) scale(1.0);
    }
}

.section>* {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Typography */
.hero-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.feature-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: #cbd5e1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #94a3b8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #007bff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-blue {
    background: linear-gradient(135deg, #007bff 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-green {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-purple {
    background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-pink {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-orange {
    background: linear-gradient(135deg, #fb923c 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-amber {
    background: linear-gradient(135deg, #f59e0b 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid;
}

.badge-primary {
    background: rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.3);
    color: #60a5fa;
}

.badge-green {
    background: rgba(52, 211, 153, 0.15);
    border-color: rgba(52, 211, 153, 0.3);
    color: #34d399;
}

.badge-indigo {
    background: rgba(129, 140, 248, 0.15);
    border-color: rgba(129, 140, 248, 0.3);
    color: #818cf8;
}

.badge-pink {
    background: rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.3);
    color: #ec4899;
}

.badge-orange {
    background: rgba(251, 146, 60, 0.15);
    border-color: rgba(251, 146, 60, 0.3);
    color: #fb923c;
}

.badge-cyan {
    background: rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
    color: #06b6d4;
}

.badge-amber {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.badge-violet {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-ai-gradient {
    background: linear-gradient(45deg, #7c3aed, #ec4899, #ef4444, #3b82f6);
    background-size: 400% 400%;
    animation: gradient-shift 6s ease infinite;
    color: white;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.6);
    /* Semi-transparent base */
}

.btn-ai-gradient::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #7c3aed, #ec4899, #ef4444, #3b82f6);
    background-size: 400% 400%;
    z-index: -1;
    border-radius: 9999px;
    animation: gradient-shift 6s ease infinite;
    filter: blur(12px);
    opacity: 0.8;
}

.btn-ai-gradient:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.6), 0 0 20px rgba(236, 72, 153, 0.4);
}

.btn-ai-gradient:active {
    transform: translateY(1px) scale(0.98);
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-grid.reverse {
        direction: rtl;
    }

    .feature-grid.reverse>* {
        direction: ltr;
    }

    .feature-grid-3 {
        grid-template-columns: 1fr 0.6fr 1fr;
        gap: 2rem;
        direction: ltr !important;
    }
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #e2e8f0;
}

.feature-list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.2);
    color: #60a5fa;
    font-weight: bold;
    flex-shrink: 0;
}

/* Feature Icon & Drawing Animation */
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.icon-wrapper {
    width: clamp(200px, 40vw, 400px);
    height: clamp(200px, 40vw, 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-wrapper svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 15px currentColor);
    opacity: 0.1;
    transition: opacity 0.5s ease;
}

/* The Drawing Animation Class */
.section.active .icon-wrapper svg {
    opacity: 0.8;
}

.section.active .icon-wrapper svg path,
.section.active .icon-wrapper svg circle,
.section.active .icon-wrapper svg rect,
.section.active .icon-wrapper svg polygon,
.section.active .icon-wrapper svg polyline,
.section.active .icon-wrapper svg line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawIcon 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes drawIcon {
    from {
        stroke-dashoffset: 1000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.section:hover .icon-wrapper {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Background Gradients */
.bg-gradient-purple {
    background: radial-gradient(ellipse at top left, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        #0f172a;
}

.bg-gradient-green {
    background: radial-gradient(ellipse at top right, rgba(52, 211, 153, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        #0f172a;
}

.bg-gradient-blue {
    background: radial-gradient(ellipse at top left, rgba(0, 123, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        #0f172a;
}

.bg-gradient-indigo {
    background: radial-gradient(ellipse at top right, rgba(129, 140, 248, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(167, 139, 250, 0.1) 0%, transparent 50%),
        #0f172a;
}

.bg-gradient-pink {
    background: radial-gradient(ellipse at top left, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(244, 63, 94, 0.1) 0%, transparent 50%),
        #0f172a;
}

.bg-gradient-orange {
    background: radial-gradient(ellipse at top right, rgba(251, 146, 60, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
        #0f172a;
}

.bg-gradient-cyan {
    background: radial-gradient(ellipse at top left, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        #0f172a;
}

.bg-gradient-amber {
    background: radial-gradient(ellipse at top right, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(251, 146, 60, 0.1) 0%, transparent 50%),
        #0f172a;
}

.bg-gradient-emerald {
    background: radial-gradient(ellipse at top left, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(52, 211, 153, 0.1) 0%, transparent 50%),
        #0f172a;
}

.bg-gradient-rose {
    background: radial-gradient(ellipse at top right, rgba(244, 63, 94, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        #0f172a;
}

.bg-gradient-violet {
    background: radial-gradient(ellipse at top left, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(167, 139, 250, 0.1) 0%, transparent 50%),
        #0f172a;
}

.bg-gradient-teal {
    background: radial-gradient(ellipse at top right, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        #0f172a;
}

.bg-gradient-fuchsia {
    background: radial-gradient(ellipse at top left, rgba(217, 70, 239, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        #0f172a;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #020617;
    /* Darker base for video contrast */
}

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

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: saturate(0.8);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #0f172a 100%);
    z-index: 1;
}

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

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

/* Business Marquee */
.marquee-container {
    width: 100%;
    padding: 2rem 0;
    background: rgba(15, 23, 42, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: scrollMarquee 30s linear infinite;
    width: fit-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #60a5fa;
    box-shadow: 0 0 10px #60a5fa;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* CTA Section */
.cta-section {
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse at bottom, rgba(0, 123, 255, 0.15) 0%, transparent 50%),
        #0f172a;
}

/* Business Verticals Section */
.verticals-section {
    padding: 8rem 0;
    background: #0f172a;
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .verticals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .verticals-grid {
        grid-template-columns: 1fr;
    }
}

.vertical-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.vertical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--vertical-color, rgba(59, 130, 246, 0.1)), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vertical-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(30, 41, 59, 0.6);
}

.vertical-card:hover::before {
    opacity: 1;
}

.vertical-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    color: var(--vertical-color, #60a5fa);
    filter: drop-shadow(0 0 8px currentColor);
}

.vertical-icon svg {
    width: 100%;
    height: 100%;
}

.vertical-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #f8fafc;
}

.vertical-description {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    background: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    color: #64748b;
    font-size: 0.875rem;
}

/* Animations */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 3rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    pointer-events: none;
    /* Allows clicking things 'under' the container space */
}

.floating-contact>* {
    pointer-events: auto;
    /* Re-enables clicking for the buttons themselves */
}

.contact-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.btn-text {
    white-space: nowrap;
}

.call-btn {
    background: #3b82f6;
    animation: glow-blue 2s infinite;
}

.whatsapp-btn {
    background: #25d366;
    animation: glow-green 2s infinite;
    animation-delay: 1s;
}

.contact-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.contact-btn svg {
    transition: transform 0.3s ease;
}

.contact-btn:hover svg {
    transform: rotate(15deg) scale(1.1);
}

@keyframes glow-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

@keyframes glow-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 1.5rem;
        left: 1rem;
        right: 1rem;
    }

    .contact-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .contact-btn svg {
        width: 20px;
        height: 20px;
    }
}



/* Visual Stack Styling */
.visual-stack {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.base-image {
    width: 100%;
    max-width: 850px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-stack:hover .base-image {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.8);
}

.floating-icon-card {
    position: absolute;
    top: 5%;
    left: -15%;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.08);
    /* Stronger glassmorphism */
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    animation: float 6s ease-in-out infinite;
}

.floating-icon-card .icon-wrapper {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 0 30px currentColor);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(3deg);
    }
}

@media (max-width: 1024px) {
    .floating-icon-card {
        top: -30px;
        left: 20px;
        width: 160px;
        height: 160px;
    }

    .floating-icon-card .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .base-image {
        transform: none;
    }
}