/* Main Styles */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tracking-tighter {
    letter-spacing: -0.02em;
}

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

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

.animate-scroll {
    animation: scroll 30s linear infinite;
}

.hero-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f3f8 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 15%, rgba(71, 0, 179, 0.08) 0, transparent 26%),
        radial-gradient(circle at 85% 15%, rgba(71, 0, 179, 0.05) 0, transparent 22%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(71, 0, 179, 0.3) 0.75px, transparent 0.75px),
        radial-gradient(rgba(71, 0, 179, 0.5) 0.75px, transparent 0.75px);
    background-size: 28px 28px;
    background-position: 0 0, 14px 14px;
    opacity: 0.18;
    pointer-events: none;
}

.hero-heading {
    line-height: 1.02;
}

.hero-subtitle {
    letter-spacing: 0.01em;
}

.google-ads {
    min-width: 100% !important;
    min-height: 90px !important;
}