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);
}