    html {
  scroll-behavior: smooth;
    }
    :root {
        --primary: #6c63ff;
        --secondary: #4a42e8;
        --dark: #1a1a2e;
        --light: #f5f5f7;
        --accent: #00cfc8;
        /* Add these for dark mode */
        --dark-bg: #121212;
        --dark-card: #1e1e1e;
        --dark-text: #e0e0e0;
        --dark-secondary-text: #b0b0b0;
        --dark-border: #333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            overflow-x: hidden;
        }
        
        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        nav.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 5%;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 2rem;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .cta-button {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(108, 99, 255, 0.4);
        }
        
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 5%;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            width: 50%;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero h1 span {
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: #555;
            max-width: 80%;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .secondary-button {
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            background: transparent;
        }
        
        .secondary-button:hover {
            background: var(--primary);
            color: white;
        }
        
        .hero-image {
            position: absolute;
            right: 5%;
            width: 50%;
            height: 80%;
            background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        /* Floating Elements */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }
        
        .floating-element {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: floatElement 15s infinite linear;
        }
        
        @keyframes floatElement {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            100% {
                transform: translateY(-1000px) rotate(720deg);
            }
        }
        
        /* Services Section */
        .services {
            padding: 5rem 5%;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .section-title p {
            color: #777;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.5rem;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .service-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* Technologies Section */
        .technologies {
            padding: 5rem 5%;
            background-color: var(--light);
        }
        
        .tech-slider {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .tech-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .tech-item:hover {
            transform: scale(1.1);
        }
        
        .tech-icon {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 1rem;
        }
        
        .tech-icon img {
            width: 50%;
            height: auto;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 5rem 5%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }
        
        .cta-section p {
            max-width: 600px;
            margin: 0 auto 2rem;
            position: relative;
            z-index: 2;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            position: relative;
            z-index: 2;
        }
        
        .cta-buttons .secondary-button {
            border-color: white;
            color: white;
        }
        
        .cta-buttons .secondary-button:hover {
            background: white;
            color: var(--primary);
        }
        
        .cta-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            opacity: 0.1;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjMpIj48L3JlY3Q+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIj48L3JlY3Q+PC9zdmc+');
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 5rem 5% 2rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: var(--accent);
            bottom: -8px;
            left: 0;
        }
        
        .footer-column p {
            color: #aaa;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate {
            animation: fadeInUp 1s ease forwards;
        }
        
        .delay-1 {
            animation-delay: 0.2s;
        }
        
        .delay-2 {
            animation-delay: 0.4s;
        }
        
        .delay-3 {
            animation-delay: 0.6s;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-content {
                width: 60%;
            }
            
            .hero-image {
                width: 40%;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 1.5rem 0;
            }
            
            .hero {
                flex-direction: column;
                text-align: center;
                padding-top: 100px;
                height: auto;
            }
            
            .hero-content {
                width: 100%;
                padding: 3rem 0;
            }
            
            .hero p {
                max-width: 100%;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-image {
                position: relative;
                right: auto;
                width: 100%;
                height: 400px;
                margin-bottom: 3rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .service-card {
                padding: 1.5rem;
            }
        }

         .client-showcase {
        padding: 5rem 5%;
        background-color: white;
        text-align: center;
    }
    
    .client-slider {
        width: 100%;
        overflow: hidden;
        position: relative;
        margin: 3rem auto 0;
        max-width: 1200px;
    }
    
    .client-track {
        display: flex;
        animation: scroll 30s linear infinite;
        width: calc(200px * 16); /* Double the width for infinite effect */
    }
    
    .client-slide {
        height: 100px;
        width: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 2rem;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s ease;
    }
    
    .client-slide:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
    }
    
    .client-slide img {
        max-width: 100%;
        max-height: 60px;
        object-fit: contain;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 8)); /* Move by half the width */
        }
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .client-slide {
            width: 150px;
            padding: 0 1rem;
        }
        
        .client-track {
            width: calc(150px * 16);
            animation-duration: 25s;
        }
        
        @keyframes scroll {
            100% {
                transform: translateX(calc(-150px * 8));
            }
        }
    }
    
    @media (max-width: 576px) {
        .client-slide {
            width: 120px;
        }
        
        .client-track {
            width: calc(120px * 16);
            animation-duration: 20s;
        }
        
        @keyframes scroll {
            100% {
                transform: translateX(calc(-120px * 8));
            }
        }
        
        .client-slide img {
            max-height: 40px;
        }
    }
    /* Dark Mode Toggle Styles */
.dark-mode-toggle {
    position: relative;
    margin-right: auto;
    margin-left: 20px;
}

.toggle-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    width: 60px;
    height: 30px;
    background: var(--dark);
    border-radius: 50px;
    position: relative;
    padding: 5px;
    box-sizing: border-box;
    transition: background 0.3s ease;
}

.toggle-ball {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.toggle-checkbox:checked + .toggle-label .toggle-ball {
    transform: translateX(30px);
}

.toggle-label i {
    font-size: 14px;
    color: white;
    z-index: 1;
}

.toggle-label .fa-moon {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.toggle-label .fa-sun {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toggle-checkbox:checked + .toggle-label .fa-moon {
    opacity: 0;
}

.toggle-checkbox:checked + .toggle-label .fa-sun {
    opacity: 1;
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: #121212;
    color: #e0e0e0;
}

body.dark-mode .services,
body.dark-mode .service-card {
    background-color: #1e1e1e;
    color: #e0e0e0;
}

body.dark-mode .service-card {
    border-color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.dark-mode .service-card p,
body.dark-mode .section-title p,
body.dark-mode .hero p {
    color: #b0b0b0;
}

body.dark-mode nav.scrolled {
    background-color: rgba(30, 30, 30, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .nav-links a {
    color: #e0e0e0;
}

body.dark-mode .secondary-button {
    border-color: #6c63ff;
    color: #6c63ff;
}

body.dark-mode .secondary-button:hover {
    background: #6c63ff;
    color: white;
}

body.dark-mode .technologies {
    background-color: #121212;
}

body.dark-mode .tech-icon {
    background: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.dark-mode .client-showcase {
    background-color: #1e1e1e;
}
 /* Custom Styles */
        .bg-purple {
            background-color: #6f42c1 !important;
        }
        .text-purple {
            color: #6f42c1 !important;
        }
        
        .services-slider {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            padding: 3rem 0;
        }
        
        .services-carousel .owl-stage {
            display: flex;
            align-items: stretch;
        }
        
        .services-carousel .owl-item {
            padding: 8px;
        }
        
        .services-carousel .card {
            transition: all 0.3s ease;
            height: 100%;
            border-radius: 10px;
        }
        
        .services-carousel .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
        }
        
        .services-carousel .card-img-top {
            height: 150px;
            overflow: hidden;
        }
        
        .services-carousel .card-img-top img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .services-carousel .card:hover .card-img-top img {
            transform: scale(1.05);
        }
        
        .services-carousel .fa-arrow-right {
            transition: transform 0.3s ease;
        }
        
        .services-carousel a:hover .fa-arrow-right {
            transform: translateX(5px);
        }
        
        .owl-nav button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 35px;
            height: 35px;
            border-radius: 50% !important;
            background: rgba(255,255,255,0.9) !important;
            color: #6c63ff !important;
            font-size: 1rem !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
        }
        
        .owl-nav button:hover {
            background: #6c63ff !important;
            color: white !important;
        }
        
        .owl-prev {
            left: -15px !important;
        }
        
        .owl-next {
            right: -15px !important;
        }
        
        .owl-dots {
            display: flex;
            justify-content: center;
            margin-top: 15px;
            gap: 8px;
        }
        
        .owl-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd !important;
            transition: all 0.3s ease;
        }
        
        .owl-dot.active {
            background: #6c63ff !important;
            transform: scale(1.2);
        }
        
        .icon-box {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px !important;
        }
        
        .card-body {
            padding: 1.25rem;
        }
        
        .card-body h3 {
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }
        
        .card-body p {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }


        body.dark-mode {
    background-color: #121212;
    color: #ffffff;
    /* other dark mode styles */
}

/* Optional: Add smooth transition */
img#theme-logo {
    transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
        #services-dropdown {
            width: 100% !important;
            position: relative !important;
            box-shadow: none !important;
        }
    }
    