body {
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.main-wrapper {
    width: 100%;
    height: 100%;
    overflow: auto;
}

.gradient-bg {
    background: linear-gradient(
        135deg,
        #10b981 0%,
        #14b8a6 25%,
        #f97316 75%,
        #1e40af 100%
    );
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.3);
}

.tech-badge {
    transition: all 0.3s ease;
}

.tech-badge:hover {
    transform: scale(1.1);
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

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

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.crystal-pattern {
    position: relative;
    overflow: hidden;
}

.crystal-pattern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(
            30deg,
            rgba(255, 255, 255, 0.1) 12%,
            transparent 12.5%,
            transparent 87%,
            rgba(255, 255, 255, 0.1) 87.5%,
            rgba(255, 255, 255, 0.1)
        ),
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.1) 12%,
            transparent 12.5%,
            transparent 87%,
            rgba(255, 255, 255, 0.1) 87.5%,
            rgba(255, 255, 255, 0.1)
        ),
        linear-gradient(
            30deg,
            rgba(255, 255, 255, 0.1) 12%,
            transparent 12.5%,
            transparent 87%,
            rgba(255, 255, 255, 0.1) 87.5%,
            rgba(255, 255, 255, 0.1)
        ),
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.1) 12%,
            transparent 12.5%,
            transparent 87%,
            rgba(255, 255, 255, 0.1) 87.5%,
            rgba(255, 255, 255, 0.1)
        );
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    pointer-events: none;
}

.icon-gradient-green {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.icon-gradient-orange {
    background: linear-gradient(135deg, #f97316, #fb923c);
}

.icon-gradient-blue {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.icon-gradient-teal {
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
}

/* ----------------------------------------------------------------------- */

/* =========================
   Shared Marquee Base
========================= */

.marquee-track,
.client-marquee {
    width: max-content;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}

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

/* =========================
   Left → Right
========================= */
@keyframes marquee-ltr {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

/* =========================
   Right → Left
========================= */
@keyframes marquee-rtl {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* =========================
   Apply Animations
========================= */
.marquee-track {
    animation-name: marquee-rtl;
    animation-duration: 30s;
}

.client-marquee {
    animation-name: marquee-ltr;
    animation-duration: 50s;
}


