 .btn-outline-light:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            padding: 7rem 0 5rem;
            position: relative;
            overflow: hidden;
            background-color: var(--dark-bg);
        }
        
        .hero-blob-1 {
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, rgba(18, 18, 18, 0) 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .hero-blob-2 {
            position: absolute;
            bottom: -300px;
            left: -300px;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(77, 91, 249, 0.1) 0%, rgba(18, 18, 18, 0) 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 20px 20px;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-image-container {
            position: relative;
            z-index: 2;
        }
        
        .hero-main-image {
            border-radius: 1rem;
            box-shadow: var(--shadow-lg);
            transition: all 0.5s ease;
        }
        
        .floating-card {
            position: absolute;
            background: rgba(30, 30, 30, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 0.8rem;
            box-shadow: var(--shadow-md);
            padding: 0.5rem;
            width: 200px;
            transition: all 0.5s ease;
            z-index: 3;
            border: 1px solid var(--dark-border);
        }
        
        .card-1 {
            top: 20%;
            left: -20px;
            animation: float 6s ease-in-out infinite;
        }
        
        .card-2 {
            top: 50%;
            right: -20px;
            animation: float 7s ease-in-out infinite 1s;
        }
        
        .card-3 {
            bottom: 20%;
            left: -20px;
            animation: float 8s ease-in-out infinite 2s;
        }
        
        .icon-box {
            width: 40px;
            height: 40px;
            border-radius: 0.6rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .bg-primary-light {
            background-color: rgba(108, 99, 255, 0.15);
        }
        
        .bg-success-light {
            background-color: rgba(0, 200, 83, 0.15);
        }
        
        .bg-warning-light {
            background-color: rgba(255, 171, 0, 0.15);
        }
        
        .avatar-group {
            display: flex;
        }
        
        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid var(--dark-bg);
            margin-left: -15px;
        }
        
        .avatar:first-child {
            margin-left: 0;
        }
        
        .avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            z-index: 2;
        }
        
        .mouse {
            width: 26px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            position: relative;
            margin: 0 auto;
        }
        
        .wheel {
            width: 4px;
            height: 8px;
            background: var(--text-primary);
            border-radius: 2px;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: scroll 2s ease infinite;
        }
        
/* Premium Slider Section */
.premium-slider-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.slider-blob-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, rgba(18, 18, 18, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.slider-blob-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(77, 91, 249, 0.08) 0%, rgba(18, 18, 18, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.premium-slider-container {
    position: relative;
    padding: 0 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.premium-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 2rem;
    padding: 1.5rem 0.5rem;
    gap: 1.5rem;
}

.premium-slider-track::-webkit-scrollbar {
    display: none;
}

.premium-slide {
    flex: 0 0 auto;
    width: 350px;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-slide:hover {
    transform: translateY(-5px);
}

.slide-inner {
    background: var(--dark-card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--dark-border);
    display: flex;
    flex-direction: column;
}

.slide-inner:hover {
    box-shadow: var(--shadow-lg);
}

.slide-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.slide-inner:hover .slide-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
}

.slide-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.slide-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    align-self: flex-start;
}

.slide-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.slide-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.slide-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.3rem 0.6rem;
    border-radius: 0.4rem;
    font-size: 0.75rem;
}

.slide-inner .btn {
    align-self: flex-start;
    margin-top: auto;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-arrow:disabled:hover {
    background: var(--dark-card);
    color: var(--text-primary);
    transform: translateY(-50%);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-pagination button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-pagination button.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .premium-slide {
        width: 320px;
    }
}

@media (max-width: 992px) {
    .premium-slider-container {
        padding: 0 40px;
    }
    
    .premium-slide {
        width: 300px;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .premium-slider-container {
        padding: 0 30px;
    }
    
    .premium-slide {
        width: 280px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slide-content {
        padding: 1.2rem;
    }
    
    .slide-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .premium-slider-section {
        padding: 3rem 0;
    }
    
    .premium-slider-container {
        padding: 0 20px;
    }
    
    .premium-slide {
        width: 260px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .slide-image {
        height: 180px;
    }
}

/* Animation for slide appearance */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-slide {
    animation: slideIn 0.5s ease forwards;
}

.premium-slide:nth-child(1) { animation-delay: 0.1s; }
.premium-slide:nth-child(2) { animation-delay: 0.2s; }
.premium-slide:nth-child(3) { animation-delay: 0.3s; }
.premium-slide:nth-child(4) { animation-delay: 0.4s; }
.premium-slide:nth-child(5) { animation-delay: 0.5s; }

/* Focus styles for accessibility */
.slider-arrow:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.slider-pagination button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading state */
.premium-slider-track.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Custom scrollbar for webkit browsers (optional) */
.premium-slider-track::-webkit-scrollbar {
    height: 6px;
}

.premium-slider-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.premium-slider-track::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.premium-slider-track::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
        
        /* About Section */
        .about-section {
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .about-blob-1 {
            position: absolute;
            top: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, rgba(18, 18, 18, 0) 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .about-blob-2 {
            position: absolute;
            bottom: -150px;
            right: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(77, 91, 249, 0.08) 0%, rgba(18, 18, 18, 0) 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .about-image-container {
            position: relative;
        }
        
        .main-image {
            border-radius: 1rem;
            box-shadow: var(--shadow-lg);
        }
        
        .stats-card {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--dark-card);
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--dark-border);
            z-index: 2;
            width: 80%;
        }
        
        .stats-inner {
            display: flex;
            justify-content: space-between;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.2rem;
        }
        
        .stat-label {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-bottom: 0;
        }
        
        .floating-element {
            position: absolute;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--dark-card);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.2rem;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--dark-border);
            z-index: 2;
            animation: float 5s ease-in-out infinite;
        }
        
        .fe-1 {
            top: 20%;
            left: -25px;
        }
        
        .fe-2 {
            top: 60%;
            right: -25px;
            animation-delay: 1s;
        }
        
        .about-tabs .nav-tabs {
            border-bottom: 1px solid var(--dark-border);
        }
        
        .about-tabs .nav-link {
            background: transparent;
            border: none;
            color: var(--text-secondary);
            padding: 0.8rem 1rem;
            border-radius: 0.5rem 0.5rem 0 0;
        }
        
        .about-tabs .nav-link.active {
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary-color);
            border-bottom: 2px solid var(--primary-color);
        }
        
        .about-tabs .tab-content {
            background: var(--dark-card);
            border-radius: 0 0 0.5rem 0.5rem;
        }
        
        .client-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .client-logo {
            opacity: 0.6;
            transition: all 0.3s ease;
            filter: grayscale(100%);
        }
        
        .client-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
        }
        
        .client-logo img {
            height: 40px;
            width: auto;
        }
        
        /* Services Section */
        .services-section {
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .services-blob-1 {
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, rgba(18, 18, 18, 0) 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .services-blob-2 {
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(77, 91, 249, 0.08) 0%, rgba(18, 18, 18, 0) 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .service-card {
            background: var(--dark-card);
            border-radius: 1rem;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid var(--dark-border);
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 0;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .service-card:hover::before {
            opacity: 0.05;
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .service-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
        
        .service-description {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .service-features {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .service-features li {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }
        
        .service-features i {
            margin-right: 0.5rem;
            font-size: 0.9rem;
        }
        
        .service-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .service-link:hover {
            color: var(--secondary-color);
        }
        
        .bg-success-light {
            background-color: rgba(0, 200, 83, 0.15);
        }
        
        .bg-warning-light {
            background-color: rgba(255, 171, 0, 0.15);
        }
        
        .bg-info-light {
            background-color: rgba(33, 150, 243, 0.15);
        }
        
        .bg-danger-light {
            background-color: rgba(255, 82, 82, 0.15);
        }
        
        .bg-purple-light {
            background-color: rgba(106, 27, 154, 0.15);
        }
        
      
        
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-section {
                padding: 6rem 0 4rem;
            }
            
            .display-3 {
                font-size: 2.5rem;
            }
            
            .floating-card {
                width: 160px;
                font-size: 0.9rem;
            }
            
            .stats-card {
                position: relative;
                bottom: 0;
                right: 0;
                margin-top: 2rem;
                width: 100%;
            }
            
            .stats-inner {
                justify-content: space-around;
            }
            
            .floating-element {
                display: none;
            }
            
            .slider-arrow {
                display: none !important;
            }
            
            .premium-slide {
                width: 300px;
            }
        }
        
        
        
        @media (max-width: 576px) {
            .hero-section {
                padding: 5rem 0 3rem;
            }
            
            .display-4 {
                font-size: 2rem;
            }
            
            .premium-slide {
                width: 280px;
            }
            
            .service-card {
                padding: 1.5rem;
            }
            
            .footer {
                padding: 3rem 0 1.5rem;
            }
        }