/* S.S DIGITALS - Stitch UX Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

body {
    overflow-x: hidden;
    line-height: 1.7
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: #050510;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity .8s, visibility .8s
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden
}

.loader-box {
    text-align: center
}

.p-body {
    width: 80px;
    height: 50px;
    background: #f425af;
    border-radius: 10px 10px 0 0;
    margin: 0 auto;
    position: relative;
    animation: pp 1.5s ease-in-out infinite
}

.p-top {
    width: 60px;
    height: 10px;
    background: #06b6d4;
    border-radius: 5px 5px 0 0;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%)
}

.paper {
    width: 50px;
    background: #fff;
    border-radius: 0 0 3px 3px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 5px;
    animation: ps 1.5s ease-in-out infinite
}

.pl {
    width: 100%;
    height: 2px;
    background: #ddd;
    margin-bottom: 4px;
    border-radius: 1px
}

@keyframes pp {

    0%,
    100% {
        transform: scaleX(1)
    }

    50% {
        transform: scaleX(1.05)
    }
}

@keyframes ps {
    0% {
        height: 0;
        opacity: 0
    }

    50% {
        height: 40px;
        opacity: 1
    }

    100% {
        height: 60px;
        opacity: .5
    }
}

.loader-txt {
    font-family: "Space Grotesk";
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f425af, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    letter-spacing: 3px
}

.lbar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, .1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden
}

.lfill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #f425af, #06b6d4);
    border-radius: 2px;
    animation: lf 2s ease forwards
}

@keyframes lf {
    to {
        width: 100%
    }
}

/* Particles */
#particles-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0
}

/* Glass styles */
.glass-nav {
    background: rgba(10, 6, 9, .75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(244, 37, 175, .15)
}

.glass {
    background: rgba(26, 13, 22, .6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(244, 37, 175, .15);
    transition: all .3s ease
}

.glass:hover {
    border-color: rgba(244, 37, 175, .4)
}

.glass-card {
    background: rgba(37, 18, 31, .7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(244, 37, 175, .2);
    transition: all .4s ease
}

.glass-card:hover {
    border-color: rgba(244, 37, 175, .7);
    box-shadow: 0 0 25px rgba(244, 37, 175, .2);
    transform: translateY(-6px)
}

/* Neon effects */
.neon-glow-pink {
    box-shadow: 0 0 20px rgba(244, 37, 175, .4)
}

.neon-text {
    text-shadow: 0 0 10px rgba(244, 37, 175, .5)
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 100
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .3s
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

/* Float icons */
.float-icons {
    position: absolute;
    inset: 0;
    z-index: 1
}

.fi {
    position: absolute;
    opacity: .25;
    animation: fi 6s ease-in-out infinite
}

.fi1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s
}

.fi2 {
    bottom: 30%;
    left: 8%;
    animation-delay: 1s
}

.fi3 {
    top: 20%;
    right: 12%;
    animation-delay: .5s
}

.fi4 {
    top: 55%;
    right: 25%;
    animation-delay: 1.5s
}

.fi5 {
    bottom: 25%;
    right: 15%;
    animation-delay: 2s
}

@keyframes fi {

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

    50% {
        transform: translateY(-25px) rotate(5deg)
    }
}

/* Marquee */
.marquee-wrap {
    overflow: hidden
}

.marquee-track {
    display: flex;
    gap: 50px;
    animation: marq 25s linear infinite;
    white-space: nowrap
}

.marquee-track span {
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: 2px;
    text-transform: uppercase
}

@keyframes marq {
    0% {
        transform: translateX(0)
    }

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

/* WhatsApp pulse */
.whatsapp-pulse {
    animation: wap 2s ease-in-out infinite
}

@keyframes wap {

    0%,
    100% {
        box-shadow: 0 5px 20px rgba(34, 197, 94, .4)
    }

    50% {
        box-shadow: 0 5px 20px rgba(34, 197, 94, .7), 0 0 0 12px rgba(34, 197, 94, .1)
    }
}

.call-shake {
    animation: cs 3s ease-in-out infinite
}

@keyframes cs {

    0%,
    25%,
    100% {
        transform: rotate(0)
    }

    5% {
        transform: rotate(15deg)
    }

    10% {
        transform: rotate(-15deg)
    }

    15% {
        transform: rotate(10deg)
    }

    20% {
        transform: rotate(-5deg)
    }
}

/* AOS */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0)
}

/* Animations */
.animate-fadeIn {
    animation: fadeIn 1s ease .3s both
}

.animate-fadeUp {
    animation: fadeUp 1s ease .5s both
}

.animate-fadeUp2 {
    animation: fadeUp 1s ease .7s both
}

.animate-fadeUp3 {
    animation: fadeUp 1s ease .9s both
}

.animate-fadeUp4 {
    animation: fadeUp 1s ease 1.1s both
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

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

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: #0a0609
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#f425af, #06b6d4);
    border-radius: 4px
}

/* Back to top visible */
#backToTop.visible {
    opacity: 1 !important;
    visibility: visible !important
}

@media(max-width:768px) {
    #mobile-menu.active {
        display: flex !important
    }

    .marquee-track span {
        font-size: .75rem
    }
}