/* Global Styles for Nesoi Technology */
/* These styles override or supplement Tailwind classes where necessary */

/* Swiper Continuous Linear Transition and Padding Fix */
.clients-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    padding-top: 1.5rem;
    /* Equivalent to py-6 */
    padding-bottom: 1.5rem;
}

body {
    font-family: 'Figtree', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
    font-family: 'Darker Grotesque', sans-serif;
}

/* Make Darker Grotesque headings completely seamless with tailwind tracking */
h1 {
    letter-spacing: -0.02em;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Optional: Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F8F9FE;
}

::-webkit-scrollbar-thumb {
    background: #5A4FCF;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3E82F7;
}