
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');


        :root {
            --primary: #4f46e5;
            --primary-dark: #4338ca;
            --dark: #0f172a;
            --darker: #020617;
            --light: #f8fafc;
            --gray: #94a3b8;
            --gray-dark: #4b5563;
            --max-width: 1200px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--darker);
            color: var(--light);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
        }
        
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Navbar */
        .navbar {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 100;
            padding: 20px 0;
            background-color: var(--dark);
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            /* background-color: rgba(2, 6, 23, 0.95); */
            background-color: var(--dark);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }
        
        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.75rem;
            font-weight: 700;
            color: white;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .nav-link {
            color: var(--gray);
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: white;
        }
        
        .menu-toggle {
            display: none;
            color: white;
            font-size: 1.5rem;
            background: none;
            border: none;
        }
        
        .mobile-menu {
            display: none;
            background-color: var(--darker);
            padding: 20px;
            margin-top: 15px;
            border-radius: 8px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        .mobile-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            list-style: none;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
            background: radial-gradient(circle at 30% 50%, rgba(79, 70, 229, 0.2) 0%, rgba(2, 6, 23, 1) 70%);
        }
        
        .hero-container {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 2rem;
        }
        
        .hero-content {
            flex: 1;
        }
        
        .hero-headline {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-headline span {
            color: var(--primary);
        }
        
        .hero-text {
            font-size: 1.25rem;
            color: var(--gray);
            margin-bottom: 2rem;
            max-width: 600px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
        }
        
        .btn-outline {
            border: 2px solid var(--gray-dark);
            color: white;
        }
        
        .btn-outline:hover {
            border-color: white;
        }
        
        .hero-image {
            position: relative;
            flex: 1;
        }
        
        .hero-image-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom right, var(--primary), #6366f1);
            border-radius: 12px;
            filter: blur(20px);
            opacity: 0.2;
            z-index: -1;
        }
        
        .hero-img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, black, transparent);
            color: white;
            border-bottom-left-radius: 12px;
            border-bottom-right-radius: 12px;
        }
        
        /* Sections */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .section-title p {
            font-size: 1.125rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .bg-dark {
            background-color: var(--dark);
        }
        
        .bg-darker {
            background-color: var(--darker);
        }
        
        /* Features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature-card {
            background-color: var(--dark);
            border: 1px solid var(--gray-dark);
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.2);
            border-color: var(--primary);
        }
        
        .feature-icon {
            width: 56px;
            height: 56px;
            background-color: rgba(79, 70, 229, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .feature-icon svg {
            width: 24px;
            height: 24px;
            color: var(--primary);
        }
        
        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .feature-text {
            color: var(--gray);
        }
        
        /* Technologies */
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 2.5rem;
            justify-items: center;
        }
        
        .tech-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .tech-icon {
            width: 80px;
            height: 80px;
            background-color: var(--dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }
        
        .tech-icon img {
            width: 48px;
            height: 48px;
        }
        
        .tech-name {
            font-weight: 500;
        }
        
        /* Testimonials */
        /*.testimonial-container {
            position: relative;
        }
        
        .testimonial-carousel {
            display: flex;
            overflow-x: hidden;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }
        
        .testimonial-card {
            min-width: 100%;
            scroll-snap-align: start;
            background-color: var(--darker);
            padding: 2.5rem;
            border-radius: 12px;
            margin-right: 2rem;
            transition: transform 0.5s ease;
        }*/

        /* Testimonials */
.testimonial-container {
    position: relative;
    overflow: hidden; /* Ensure overflow is hidden */
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%; /* Ensure each card takes full width */
    background-color: var(--darker);
    padding: 2.5rem;
    border-radius: 12px;
    margin-right: 0; /* Remove margin-right to avoid overflow */
    transition: transform 0.5s ease;
}

        
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
        }
        
        .testimonial-info h4 {
            font-weight: 600;
        }
        
        .testimonial-info p {
            font-size: 0.875rem;
            color: var(--gray);
        }
        
        .testimonial-content {
            font-style: italic;
            color: var(--light);
            margin-bottom: 1.5rem;
        }
        
        .testimonial-rating {
            display: flex;
            gap: 0.25rem;
        }
        
        .rating-star {
            color: #f59e0b;
        }
        
        .carousel-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            pointer-events: none;
        }
        
        .carousel-btn {
            pointer-events: auto;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(79, 70, 229, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            border: none;
            transition: all 0.3s;
        }
        
        .carousel-btn:hover {
            background-color: rgba(79, 70, 229, 0.4);
        }
        
        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 0 auto;
            max-width: 1000px;
        }
        
        .price-card {
            background-color: var(--dark);
            border: 1px solid var(--gray-dark);
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.3s ease;
        }
        
        .price-card:hover {
            transform: scale(1.03);
            box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.2);
        }
        
        .price-card.featured {
            border-color: var(--primary);
            border-width: 2px;
            position: relative;
        }
        
        .featured-badge {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--primary);
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-bottom-left-radius: 8px;
            border-top-right-radius: 12px;
        }
        
        .price-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .price-subtitle {
            color: var(--gray);
            margin-bottom: 1.5rem;
        }
        
        .price-amount {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .price-interval {
            font-size: 1rem;
            color: var(--gray);
        }
        
        .price-features {
            margin-bottom: 2rem;
        }
        
        .price-feature {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
        }
        
        .price-feature svg {
            width: 20px;
            height: 20px;
            margin-right: 0.5rem;
        }
        
        .price-feature.available svg {
            color: #10b981;
        }
        
        .price-feature.unavailable svg {
            color: var(--gray-dark);
        }
        
        /* Contact */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        
        .contact-icon {
            width: 48px;
            height: 48px;
            background-color: rgba(79, 70, 229, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-icon svg {
            width: 20px;
            height: 20px;
            color: var(--primary);
        }
        
        .contact-text h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        .contact-text p {
            color: var(--gray);
        }
        
        .contact-form-container {
            background-color: var(--darker);
            border: 1px solid var(--gray-dark);
            border-radius: 12px;
            padding: 2rem;
        }
        
        .contact-form-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .contact-form {
            display: grid;
            gap: 1.5rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group.half {
            grid-column: span 1;
        }
        
        .form-label {
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        .form-input {
            background-color: var(--dark);
            border: 1px solid var(--gray-dark);
            border-radius: 8px;
            padding: 12px 16px;
            color: white;
            font-family: inherit;
            transition: all 0.3s;
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
        }
        
        textarea.form-input {
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--primary);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .submit-btn:hover {
            background-color: var(--primary-dark);
        }
        
        /* Footer */
        .footer {
            background-color: var(--darker);
            border-top: 1px solid var(--gray-dark);
            padding: 60px 0 30px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }
        
        .footer-logo span {
            color: var(--primary);
        }
        
        .footer-text {
            color: var(--gray);
            margin-bottom: 1.5rem;
            max-width: 300px;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background-color: var(--dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .social-link:hover {
            background-color: var(--primary);
        }
        
        .footer-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-link {
            color: var(--gray);
            margin-bottom: 0.75rem;
            display: block;
            transition: all 0.3s;
        }
        
        .footer-link:hover {
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--gray-dark);
            color: var(--gray);
            font-size: 0.875rem;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-headline {
                font-size: 2.75rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .hero-headline {
                font-size: 2.25rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .hero-headline {
                font-size: 2rem;
            }
            
            .btn {
                width: 100%;
            }
            
            .tech-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

         /* Accordion Styles */
        .accordion {
            border: 1px solid var(--gray-dark);
            border-radius: 8px;
        }
        .accordion-item {
            border-bottom: 1px solid var(--gray-dark);
        }
        .accordion-header {
            background-color: var(--dark);
            color: white;
            padding: 15px;
            text-align: left;
            width: 100%;
            border: none;
            outline: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        .accordion-header:hover {
            background-color: var(--primary-dark);
        }
        .accordion-content {
            padding: 15px;
            display: none; /* Hidden by default */
            background-color: var(--darker);
            color: var(--light);
        }
        .accordion-content p {
            margin: 0;
        }
    
       
