html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

.font-poppins {
    font-family: 'Poppins', sans-serif !important;
}

.font-roboto {
    font-family: 'Roboto', sans-serif !important;
}

.font-geist {
    font-family: 'Geist', sans-serif !important;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif !important;
}

.font-playfair {
    font-family: 'Playfair Display', serif !important;
}

.font-manrope {
    font-family: 'Manrope', sans-serif !important;
}

/* Animated heading styles */
.animated-heading .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

.animated-heading .word:nth-child(1) {
    animation-delay: 0.1s;
}

.animated-heading .word:nth-child(2) {
    animation-delay: 0.2s;
}

.animated-heading .word:nth-child(3) {
    animation-delay: 0.3s;
}

.animated-heading .word:nth-child(4) {
    animation-delay: 0.4s;
}

.animated-heading .word:nth-child(5) {
    animation-delay: 0.5s;
}

.animated-heading .word:nth-child(6) {
    animation-delay: 0.6s;
}

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

/* New animations from Success Stories section */
@keyframes fadeInBlur {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(20px);
    }

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

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

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

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

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

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

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

.animate-slide-left {
    animation: slideLeft 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes progressRing {
    0% {
        stroke-dashoffset: 283;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

/* Animation classes for Success Stories */
.fade-in-blur {
    animation: fadeInBlur 0.6s ease-out forwards;
}

.slide-in-scale {
    animation: slideInScale 0.8s ease-out forwards;
}

.rotate-slow {
    animation: rotate-slow 20s linear infinite;
}

.ticker {
    animation: ticker 30s linear infinite;
}

.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-400 {
    animation-delay: 400ms;
}

.delay-500 {
    animation-delay: 500ms;
}

.delay-600 {
    animation-delay: 600ms;
}

.delay-700 {
    animation-delay: 700ms;
}

.delay-800 {
    animation-delay: 800ms;
}

.delay-900 {
    animation-delay: 900ms;
}

.delay-1000 {
    animation-delay: 1000ms;
}

/* Special button fold effect */
.fold {
    position: relative;
    width: 135px;
    height: 40px;
    font-family: inherit;
    font-size: 12px;
    line-height: 40px;
    text-align: center;
    letter-spacing: 0.08em;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    border: none;
    overflow: visible;
}

.fold .points_wrapper {
    /* position: absolute; */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 60%);
}

.fold .point {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    animation: floating-points 3s infinite ease-in-out;
}

@keyframes floating-points {

    0%,
    100% {
        transform: translateY(0px);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-10px);
        opacity: 0.8;
    }
}

.fold .point:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.fold .point:nth-child(2) {
    top: 20%;
    left: 80%;
    animation-delay: 0.2s;
}

.fold .point:nth-child(3) {
    top: 60%;
    left: 10%;
    animation-delay: 0.4s;
}

.fold .point:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 0.6s;
}

.fold .point:nth-child(5) {
    top: 30%;
    left: 50%;
    animation-delay: 0.8s;
}

.fold .point:nth-child(6) {
    top: 70%;
    left: 40%;
    animation-delay: 1s;
}

.fold .point:nth-child(7) {
    top: 90%;
    left: 30%;
    animation-delay: 1.2s;
}

.fold .point:nth-child(8) {
    top: 40%;
    left: 90%;
    animation-delay: 1.4s;
}

.fold .point:nth-child(9) {
    top: 50%;
    left: 60%;
    animation-delay: 1.6s;
}

.fold .point:nth-child(10) {
    top: 5%;
    left: 5%;
    animation-delay: 1.8s;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate[data-animation="fadeInLeft"] {
    transform: translateX(-50px);
}

.scroll-animate[data-animation="fadeInRight"] {
    transform: translateX(50px);
}

.scroll-animate[data-animation="fadeInUp"] {
    transform: translateY(50px);
}

.scroll-animate[data-animation="fadeInDown"] {
    transform: translateY(-50px);
}

.scroll-animate[data-animation="zoomIn"] {
    transform: scale(0.9);
}

.scroll-animate[data-animation="rotateIn"] {
    transform: rotate(-5deg) scale(0.95);
}

.scroll-animate.active {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1) rotate(0) !important;
}

/* Stagger animation delays */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* Custom range slider styling */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    height: 6px;
    border-radius: 3px;
}

input[type="range"]::-webkit-slider-track {
    height: 6px;
    border-radius: 3px;
    background: #374151;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background: #10b981;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    transition: all 0.2s;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
}

input[type="range"]::-moz-range-thumb {
    background: #10b981;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    transition: all 0.2s;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
}


.hero-companies-wrapper {
  grid-column-gap: 1.2px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: block
}

.companies-brand {
  text-align: center;
  font-size: 2.5em;
  line-height: 1
}


.companies-wrapper {
  width: 77.5em;
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4em;
  margin-left: auto;
  margin-right: auto;
  display: flex
}

.company-wrapper {
  width: 10rem;
  height: 5rem;
  border: 1px solid var(--white);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #fff;
  border-radius: 1.5625em;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: 0 2px 80px rgba(59, 42, 130, .06);
  padding: 1rem;
}

.company-icon {
  width: 100%;
  height: 2rem;
  object-fit: contain;
}

.company-icon.is-renault {
  width: 3em;
  aspect-ratio: 47/50
}

.company-icon.is-pwc {
  width: 4em
}

.company-icon.is-starbucks {
  width: 3.8em;
  aspect-ratio: 57/58
}

.company-icon.is-adidas {
  width: 4.2em;
  aspect-ratio: 67/45
}

.company-icon.is-tiffany {
  width: 7em;
  aspect-ratio: 109/13
}

.company-icon.amazon {
  aspect-ratio: 96/29
}

.company-icon.ms {
  aspect-ratio: 96/20
}

.company-icon.rb {
  aspect-ratio: 95/23
}

.company-icon.lk {
  aspect-ratio: 96/25
}

.company-icon.ts {
  aspect-ratio: 110/23
}

.company-icon.wa {
  aspect-ratio: 103/25
}

.company-icon.rd {
  aspect-ratio: 76/27
}

.company-icon.ss {
  aspect-ratio: 106/17
}

.company-icon.gp {
  aspect-ratio: 109/17
}

.company-icon.le {
  aspect-ratio: 91/19
}
.space-100 {
  padding-bottom: 6.25em;
  display: block
}

@media screen and (max-width: 767px) {
    .companies-wrapper {
        width: auto;
    }
}