/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #4f46e5 !important;
}

.navbar-brand i {
    margin-right: 0.5rem;
    color: #7c3aed;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #374151 !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #4f46e5 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .btn {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-nav .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.25) 0%, transparent 35%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.25) 0%, transparent 35%),
        radial-gradient(circle at 40% 10%, rgba(236, 72, 153, 0.2) 0%, transparent 45%),
        radial-gradient(circle at 10% 70%, rgba(59, 130, 246, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 60% 60%, rgba(245, 158, 11, 0.15) 0%, transparent 25%);
    animation: particleFloat 30s ease-in-out infinite;
}

.hero-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 25s linear infinite;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: floatShape 12s ease-in-out infinite;
    filter: blur(2px);
}

.shape-1 {
    width: 180px;
    height: 180px;
    top: 8%;
    left: 3%;
    animation-delay: 0s;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.25), rgba(124, 58, 237, 0.15));
    animation-duration: 15s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    top: 45%;
    right: 5%;
    animation-delay: 3s;
    background: linear-gradient(45deg, rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.12));
    animation-duration: 18s;
}

.shape-3 {
    width: 140px;
    height: 140px;
    bottom: 15%;
    left: 8%;
    animation-delay: 6s;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.12));
    animation-duration: 14s;
}

.shape-4 {
    width: 220px;
    height: 220px;
    top: 25%;
    right: 15%;
    animation-delay: 1s;
    background: linear-gradient(45deg, rgba(236, 72, 153, 0.15), rgba(79, 70, 229, 0.2));
    animation-duration: 16s;
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1) rotate(0deg);
        opacity: 0.7;
    }
    16.66% { 
        transform: translateY(-40px) scale(1.15) rotate(60deg);
        opacity: 1;
    }
    33.33% { 
        transform: translateY(-20px) scale(0.85) rotate(120deg);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-60px) scale(1.1) rotate(180deg);
        opacity: 0.9;
    }
    66.66% { 
        transform: translateY(-10px) scale(0.95) rotate(240deg);
        opacity: 0.6;
    }
    83.33% { 
        transform: translateY(-50px) scale(1.05) rotate(300deg);
        opacity: 0.8;
    }
}

@keyframes gridMove {
    0% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    20% { 
        transform: translate(40px, 40px) rotate(2deg) scale(1.02);
        opacity: 0.4;
    }
    40% { 
        transform: translate(80px, 0px) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    60% { 
        transform: translate(40px, -40px) rotate(-2deg) scale(0.98);
        opacity: 0.4;
    }
    80% { 
        transform: translate(-20px, -20px) rotate(-1deg) scale(1.01);
        opacity: 0.3;
    }
    100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.2;
    }
}

@keyframes floatShape {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.5;
    }
    16.66% { 
        transform: translateY(-50px) rotate(60deg) scale(1.15);
        opacity: 0.7;
    }
    33.33% { 
        transform: translateY(-25px) rotate(120deg) scale(0.85);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-75px) rotate(180deg) scale(1.1);
        opacity: 0.6;
    }
    66.66% { 
        transform: translateY(-35px) rotate(240deg) scale(0.9);
        opacity: 0.4;
    }
    83.33% { 
        transform: translateY(-65px) rotate(300deg) scale(1.05);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.btn {
    padding: 0.875rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-showcase {
    position: relative;
    height: 500px;
}

.showcase-item {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.showcase-main {
    width: 320px;
    height: 400px;
    background: linear-gradient(135deg, #1e293b, #334155);
    top: 50px;
    left: 50px;
    animation: float 6s ease-in-out infinite;
}

.showcase-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.showcase-header {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    padding: 1rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.showcase-dots {
    display: flex;
    gap: 4px;
}

.showcase-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
}

.showcase-title {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.showcase-body {
    flex: 1;
    padding: 1.5rem;
    background: white;
    border-radius: 0 0 20px 20px;
}

.content-block {
    margin-bottom: 1rem;
}

.content-line {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 8px;
    width: 100%;
}

.content-line.short {
    width: 70%;
}

.content-line.medium {
    width: 85%;
}

.showcase-secondary {
    width: 280px;
    height: 200px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    top: 300px;
    right: 30px;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.code-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.code-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 20px 20px 0 0;
}

.code-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}

.code-content {
    flex: 1;
    padding: 1rem;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.85rem;
    line-height: 1.5;
}

.code-line {
    color: #e2e8f0;
    margin-bottom: 4px;
}

.keyword {
    color: #fbbf24;
}

.function {
    color: #60a5fa;
}

.property {
    color: #34d399;
}

.string {
    color: #f87171;
}

.indent {
    margin-left: 20px;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
    animation: floatIcon 4s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    background: #f8fafc;
}

.about-content {
    padding-right: 2rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.feature-content p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.about-visual {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 400px;
}

.image-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-item:hover {
    transform: scale(1.05);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.image-2 {
    grid-column: 2;
    grid-row: 1;
}

.image-3 {
    grid-column: 2;
    grid-row: 2;
}

/* Services Section */
.services-section {
    background: white;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border: none;
}

.service-card.featured h3,
.service-card.featured p {
    color: white;
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.service-features i {
    color: #10b981;
    font-size: 0.8rem;
}

.service-cta {
    margin-top: auto;
}

.btn-outline-primary {
    border: 2px solid #4f46e5;
    color: #4f46e5;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #4f46e5;
    color: white;
}

/* Why Choose Us Section */
.why-choose-us-section {
    background: #f8fafc;
}

.why-choose-content {
    padding-right: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-card .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.feature-card .feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-card .feature-content p {
    font-size: 0.9rem;
    margin: 0;
}

.why-choose-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 400px;
}

.stat-item-large {
    text-align: center;
}

.stat-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease;
}

.stat-circle:hover {
    transform: scale(1.1);
}

.stat-circle .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-circle .stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: white;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.95rem;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #4f46e5;
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
    color: white;
}

select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

/* Footer */
.footer {
    background: #1e293b;
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 0;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-showcase {
        height: 400px;
        margin-top: 2rem;
    }
    
    .showcase-main {
        width: 280px;
        height: 350px;
        top: 30px;
        left: 20px;
    }
    
    .showcase-secondary {
        width: 240px;
        height: 180px;
        top: 250px;
        right: 20px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .why-choose-content h3 {
        font-size: 1.5rem;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item:hover {
        transform: none;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .image-1, .image-2, .image-3 {
        grid-column: 1;
        grid-row: auto;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .why-choose-content h3 {
        font-size: 1.3rem;
    }
    
    .stat-circle {
        width: 100px;
        height: 100px;
    }
    
    .stat-circle .stat-number {
        font-size: 1.2rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #4f46e5, #7c3aed);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #3730a3, #6d28d9);
}
