.topbar-lang {
    position: relative
}

.topbar-lang .dropdown-menu {
    z-index: 1031
}

@media (min-width:992px) {
    .topbar-lang:hover .dropdown-menu {
        display: block
    }
}

.navbar-brand .brand-logo {
    height: 32px;
    width: auto
}

@media (min-width:992px) {
    .navbar-brand .brand-logo {
        height: 40px
    }
}

.navbar-brand .brand-text {
    font-weight: 700;
    font-size: 18px;
    line-height: 1
}

@media (min-width:992px) {
    .navbar-brand .brand-text {
        font-size: 24px
    }
}

.cta-animate {
    transition: background-color .3s ease, border-color .3s ease
}

.cta-animate:hover {
    background-color: #32CD32;
    border-color: #32CD32
}

.cta-animate .cta-arrow {
    display: inline-block;
    transition: transform .3s ease
}

.cta-animate .cta-arrow i {
    display: inline-block;
    animation: cta-spin 3s linear infinite
}

.cta-animate .cta-arrow svg {
    display: inline-block;
    animation: cta-spin 3s linear infinite
}

.cta-openai-icon {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .25))
}

.hero-side-img {
    max-width: 100%;
    border: 2px solid rgba(255, 255, 255, .65);
    border-radius: 8px
}

@media (min-width:992px) {
    .hero-side-img {
        transform: scale(1.08);
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .25))
    }
}

.service-ai-icon {
    width: 40px;
    height: 40px
}

.service-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(270deg, rgba(50, 205, 50, .12), rgba(25, 135, 84, .12));
    background-size: 400% 400%;
    animation: service-gradient 10s ease infinite;
    border: 1px solid rgba(255, 255, 255, .15)
}

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

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

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

.service-card::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(closest-side, rgba(50, 205, 50, .25), transparent 60%), radial-gradient(closest-side, rgba(0, 123, 255, .25), transparent 60%);
    animation: service-bg-move 14s linear infinite;
    opacity: .4;
    transform: rotate(0deg);
    z-index: 0
}

@keyframes service-bg-move {
    0% {
        transform: rotate(0deg) scale(1)
    }

    50% {
        transform: rotate(180deg) scale(1.05)
    }

    100% {
        transform: rotate(360deg) scale(1)
    }
}

.service-card .service-ai-icon,
.service-card .ps-4 {
    position: relative;
    z-index: 1
}

@media (max-width:576px) {
    .service-card {
        border-radius: 10px;
        animation-duration: 14s
    }

    .service-card::before {
        opacity: .35
    }
}

@keyframes cta-spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.cta-animate:hover .cta-arrow {
    transform: translateX(6px)
}

.service-card.service-dryer {
    background: linear-gradient(270deg, rgba(255, 140, 0, .12), rgba(0, 191, 255, .12))
}

.service-card.service-dryer::before {
    background: radial-gradient(closest-side, rgba(255, 140, 0, .25), transparent 60%), radial-gradient(closest-side, rgba(0, 191, 255, .25), transparent 60%)
}

.service-card.service-press {
    background: linear-gradient(270deg, rgba(138, 43, 226, .12), rgba(0, 255, 127, .12))
}

.service-card.service-press::before {
    background: radial-gradient(closest-side, rgba(138, 43, 226, .25), transparent 60%), radial-gradient(closest-side, rgba(0, 255, 127, .25), transparent 60%)
}

.fact-animated-bg {
    background: linear-gradient(300deg, #2193b0, #6dd5ed, #cc2b5e, #753a88);
    background-size: 240% 240%;
    animation: fact-gradient 12s ease infinite;
    position: relative;
    overflow: hidden
}

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

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

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

.fact-animated-bg .container {
    position: relative;
    z-index: 2
}

.fact-animated-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .15);
    z-index: 1
}

.booking-form-bg {
    background: linear-gradient(-45deg, #020024, #090979, #00d4ff, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 400% 400%;
    animation: booking-gradient 10s ease infinite;
    position: relative;
    overflow: hidden;
    border-radius: 8px
}

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

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

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

.booking-form-bg::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, .1) 0, transparent 50%);
    animation: booking-rotate 15s linear infinite;
    z-index: 0
}

@keyframes booking-rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.booking-form-bg>* {
    position: relative;
    z-index: 1
}

.footer-animated-bg {
    background: linear-gradient(45deg, #10002b, #240046, #3c096c, #191919);
    background-size: 300% 300%;
    animation: footer-gradient 15s ease infinite;
    position: relative;
    overflow: hidden
}

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

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

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

.footer-animated-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 100%, rgba(90, 24, 154, .2), transparent 70%);
    animation: footer-pulse 8s ease-in-out infinite alternate;
    z-index: 0
}

@keyframes footer-pulse {
    0% {
        opacity: .3;
        transform: scale(1)
    }

    100% {
        opacity: .6;
        transform: scale(1.1)
    }
}

.footer-animated-bg>* {
    position: relative;
    z-index: 1
}

.btn-auth-flip {
    position: relative;
    overflow: hidden
}

.btn-auth-flip span {
    position: relative;
    z-index: 2
}

.btn-auth-flip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #6610f2;
    z-index: 0;
    transform: translateX(-100%);
    transition: transform .4s ease
}

.btn-auth-flip:hover::before {
    transform: translateX(0)
}

.btn-auth-flip .auth-txt-login,
.btn-auth-flip .auth-txt-register {
    display: inline-block;
    transition: transform .4s ease, opacity .4s ease
}

.btn-auth-flip .auth-txt-login {
    transform: translateY(0);
    opacity: 1
}

.btn-auth-flip .auth-txt-register {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 150%);
    opacity: 0;
    width: 100%;
    text-align: center
}

.btn-auth-flip:hover .auth-txt-login {
    transform: translateY(-150%);
    opacity: 0
}

.btn-auth-flip:hover .auth-txt-register {
    transform: translate(-50%, -50%);
    opacity: 1
}

.page-header-animated {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    background-size: 200% 200%;
    animation: header-gradient 10s ease infinite;
    position: relative;
    overflow: hidden
}

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

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

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

.page-header-animated::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(67, 97, 238, .15), transparent 60%);
    animation: header-pulse 6s ease-in-out infinite alternate;
    z-index: 0
}

@keyframes header-pulse {
    0% {
        transform: scale(1);
        opacity: .3
    }

    100% {
        transform: scale(1.2);
        opacity: .6
    }
}

.page-header-animated>* {
    position: relative;
    z-index: 1
}