/*
Theme Name: Utsav1o1 Consultancy Theme
Theme URI: https://beaumont.com.np
Author: Beaumont Design Team
*/

@layer base {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gsap-reveal {
    opacity: 0;
    transform: translateY(50px);
}

.gsap-scale-up {
    opacity: 0;
    transform: scale(0.9);
}

.gsap-fade {
    opacity: 0;
}

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-white {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 40s linear infinite;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee-ltr {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

.animate-marquee-ltr {
    animation: marquee-ltr 45s linear infinite;
}

.animate-marquee-ltr:hover {
    animation-play-state: paused;
}

.swiper-pagination-bullet {
    background-color: #CBD5E1 !important;
    opacity: 1 !important;
    width: 6px !important;
    height: 6px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background-color: #DB1A38 !important;
    width: 20px !important;
    border-radius: 4px !important;
}

/* Dynamic Background Patterns */
.bg-mesh {
    background-color: #061E47;
    background-image: radial-gradient(at 40% 20%, hsla(220, 100%, 34%, 0.4) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(339, 78%, 48%, 0.3) 0px, transparent 50%),
        radial-gradient(at 0% 50%, hsla(220, 100%, 34%, 0.4) 0px, transparent 50%);
}

.bg-mesh-white {
    background-color: #f8fafc;
    background-image: radial-gradient(at 40% 20%, hsla(220, 100%, 88%, 0.3) 0px, transparent 50%),
        radial-gradient(at 80% 0%, hsla(339, 78%, 88%, 0.2) 0px, transparent 50%);
}

.text-stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    color: transparent;
}

.text-stroke-dark {
    -webkit-text-stroke: 1px rgba(11, 55, 133, 0.06);
    color: transparent;
}

/* Testimonials Infinite Scroll */
@keyframes testimonial-scroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.animate-testimonial-scroll {
    animation-name: testimonial-scroll;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.animate-testimonial-scroll:hover {
    animation-play-state: paused;
}