/* General Reset */

@keyframes rotateWords {
    0% { opacity: 0; transform: translateY(20px); }
    2% { opacity: 0; transform: translateY(20px); }
    5% { opacity: 1; transform: translateY(0); }
    20% { opacity: 1; transform: translateY(0); }
    25% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 0; transform: translateY(-20px); }
}




:root {
            --primary: #6610f2;
            --secondary: #818cf8;
            --dark: #1f2937;
            --light: #f9fafb;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.7;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4') center/cover;
            display: flex;
            align-items: center;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.2;
        }

        .hero .subtitle {
            display: block;
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            font-weight: 400;
            opacity: 0.9;
            margin: 1rem 0 0.5rem;
        }

        .hero p {
            font-size: 1.25rem;
            opacity: 0.9;
        }

        /* Navbar */
        .navbar {
            padding: 1.5rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }

        .navbar-brand img {
            height: 40px;
        }

        /* Features */
        .feature-card {
            padding: 3rem 2rem;
            border-radius: 20px;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
        }

        /* Testimonials */
        .testimonial-card {
            padding: 2.5rem;
            border-radius: 20px;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .testimonial-card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1.5rem;
        }

        /* Contact */
        .contact-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .form-control {
            padding: 0.8rem 1.2rem;
            border-radius: 10px;
            border: 1px solid #e5e7eb;
        }

        /* Buttons */
        .btn-primary {
            background: var(--primary);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 10px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }

        /* Animations */
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Add to the existing style section */
        .rounded-20 {
            border-radius: 20px;
        }

        .py-7 {
            padding-top: 7rem;
            padding-bottom: 7rem;
        }

        .shadow-lg {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
        }

        .lead {
            font-size: 1.1rem;
            font-weight: 400;
        }

        .bi {
            line-height: 1;
        }

        .text-primary {
            color: var(--primary) !important;
        }

        #clients {
    padding: 2rem;
    text-align: center;
      }

#clients li {
    display: inline-block;
    margin: 0 10px;
}

#clients li img {
    height: 150px !important;
    width: auto;
}

/* Add to the existing style section */
.business-type-carousel {
    display: block;
    position: relative;
    height: 60px;
    margin-top: 0.5rem;
}

.business-type {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--secondary);
    animation: rotateWords 12s linear infinite 0s;
}

/* Update the animation for smoother transitions */
@keyframes rotateWords {
    0% { opacity: 0; transform: translateY(10px); }
    3% { opacity: 1; transform: translateY(0); }
    22% { opacity: 1; transform: translateY(0); }
    25% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 0; transform: translateY(-10px); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .business-type-carousel {
        height: 45px;
    }
}

/* Replace the existing carousel styles with these */
.text-rotation-wrapper {
    margin-top: 1rem;
}

.prefix {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.text-rotation {
    position: relative;
    height: 60px;
    overflow: hidden;
}

.text-rotation span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 60px;
    width: 100%;
    opacity: 0;
    animation: rotate 12s linear infinite 0s;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
}

.text-rotation span:nth-child(2) {
    animation-delay: 3s;
}

.text-rotation span:nth-child(3) {
    animation-delay: 6s;
}

.text-rotation span:nth-child(4) {
    animation-delay: 9s;
}

@keyframes rotate {
    0% { 
        opacity: 0;
        transform: translateY(50%);
    }
    2%, 23% {
        opacity: 1;
        transform: translateY(0);
    }
    25%, 100% {
        opacity: 0;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .text-rotation {
        height: 45px;
    }
    
    .text-rotation span {
        height: 45px;
        font-size: 2rem;
    }
    
    .prefix {
        font-size: 1rem;
    }
}

/* Add to your existing styles */
.process-card {
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.business-type-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border-radius: 30px;
    font-weight: 500;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.mb-7 {
    margin-bottom: 7rem;
}

.process-step p {
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .mb-7 {
        margin-bottom: 4rem;
    }
}