        /* ==================== */
        /* BASE STYLES */
        /* ==================== */
        * {
            box-sizing: border-box;
        }
        
        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            background-color: #121212;
            color: white;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            scroll-behavior: smooth;
        
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        a {
            text-decoration: none;
        }

        /* ==================== */
        /* TYPOGRAPHY */
        /* ==================== */
        h1, h2, h3, h4, h5, h6 {
            margin-top: 0;
            font-weight: 700;
            line-height: 1.2;
        }

        h1 { font-size: 1.8rem; }
        h2 { font-size: 1.5rem; }
        h3 { font-size: 1.25rem; }

        @media (min-width: 768px) {
            h1 { font-size: 3.5rem; }
            h2 { font-size: 2.5rem; }
            h3 { font-size: 1.75rem; }
        }

        /* ==================== */
        /* UTILITY CLASSES */
        /* ==================== */
        .text-center { text-align: center; }
        .text-red { color: #dc2626; }
        .text-purple { color: #3e00a9; }
        .text-gray { color: #9ca3af; }
        .text-xl { font-size: 1.125rem; }
        .font-bold { font-weight: 700; }
        .font-medium { font-weight: 500; }
        .text-lg { font-size: 1rem; }
        .mb-2 { margin-bottom: 0.5rem; }
        .mb-4 { margin-bottom: 1rem; }
        .mb-6 { margin-bottom: 1.5rem; }
        
        .mb-10 { margin-bottom: 2.5rem; }
        .section-title { font-size: 1.8rem; }

        @media (min-width: 768px) {
            .text-xl { font-size: 1.25rem; }
            .text-lg { font-size: 1.125rem; }
            .section-title { font-size: 2.5rem; }
            .mb-8 { margin-bottom: 2rem; margin-top: -2rem; font-size: large;}
        }

        @media (max-width: 600px) {
            .mb-8 {margin-bottom: 2rem;}
        }

        /* ==================== */
        /* BUTTONS */
        /* ==================== */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        @media (min-width: 768px) {
            .btn {
                padding: 12px 24px;
                font-size: 1rem;
            }
        }

        .btn-primary {
            background: linear-gradient(135deg, #9c26dc 0%, #6a00a8 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(156, 38, 220, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(156, 38, 220, 0.4);
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #6a00a8 0%, #9c26dc 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .btn-primary:hover::after {
            opacity: 1;
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* ==================== */
        /* HERO & STATS SECTION */
        /* ==================== */

.hero {
    background: linear-gradient(135deg, #000000 0%, #121212 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
    
    background-image: radial-gradient(circle, rgb(47, 47, 47) 1px, transparent 1px);
    background-size: 100px 100px;
    background-position: center;
    background-repeat: repeat;
    
    /* Animation for the dots */
    animation: moveDots 15s infinite alternate;
}

@keyframes moveDots {
    0%, 100% {
        background-position: 0 0;
    }
    50% {
        background-position: 50px 50px; /* Adjust based on your dot size and spacing */
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.hero-text {
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    text-align: center;
    
}

.hero-buttons .btn {
    flex: 1;
    min-width: 144px;
    max-width: 200px;
    text-align: center;
}

.images-container {
    display: none;
    width: 100%;
    max-width: 400px;
}

@media (min-width: 640px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-text {
        text-align: left;
        flex: 1;
        padding-right: 2rem;
        
    }
    
    .images-container {
        display: block;
        flex: 1;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-buttons .btn {
        flex: none;
    }
}

.hero-images-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 8rem;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s ease;
    object-fit: cover;
}

.hero-image:nth-child(1) {
    transform: rotate(1deg);
}

.hero-image:nth-child(2) {
    transform: rotate(-1deg);
}

.hero-image:nth-child(3) {
    transform: rotate(0.5deg);
}

.hero-image:hover {
    transform: rotate(0deg) scale(1.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.stat-card {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .stat-card {
        padding: 1.5rem;
    }
}

.stat-icon {
    color: #9c26dc;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.stat-card p {
    font-size: 0.8rem;
    margin: 0;
}

@media (min-width: 640px) {
    .stat-icon {
        font-size: 1.875rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .stat-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 379px) {
    .hero {margin-top: 3rem;
    }
    body {background: linear-gradient(135deg, #040404 0%, #121212 100%);}
    .hero-buttons .btn {
           font-size: 10px;
}
}

@media (max-width: 639px) {
    .hero-buttons .btn {
        font-size: 10px;
    }
}



        /* ==================== */
        /* CATEGORIES SECTION */
        /* ==================== */
/* Base styles for all screen sizes */
.category-card {
    background-color: #000000;
    padding: 1rem 1rem;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

@media (min-width: 768px) {
    .category-card {
        padding: 16rem 1.5rem;
        min-height: 240px;
        border: 2px solid rgb(19, 19, 19);
    }
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 11, 11, 0.8);
    z-index: -1;
    transition: all 0.3s ease;
    
}

.category-card:hover::before {
    background-color: rgba(0, 0, 0, 0.8);
}

.category-icon {
    color: #8235ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .category-icon {
        font-size: 2rem;
    }
}

.category-card:hover .category-icon {
    color: white;
}

.category-card h3 {
    font-size: 1rem;
    margin: 0;
}

@media (min-width: 768px) {
    .category-card h3 {
        font-size: 1.125rem;
    }
}

/* Styles for the container that centers the cards */
.categories {
    background-color: #0d0d0d;
    padding: 3rem 0;
    min-height: 100vh;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
}

.container {
    width: 90%; /* Adjust as needed to fit your design needs */
    max-width: 1200px; /* Optional, for larger screens */
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}


        /* ==================== */
        /* TESTIMONIALS SECTION */
        /* ==================== */
        .testimonials {
            background-color: #0d0d0d;
            padding: 3rem 0;
            text-align: center;
            min-height: 50vh;
        }

        @media (min-width: 768px) {
            .testimonials {
                padding: 4rem 0;
            }
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1.5rem;
        }

        @media (min-width: 640px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .testimonial-card {
            background-color: #171127;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: left;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            gap: 0.75rem;
        }

        .testimonial-avatar {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .testimonial-name {
            font-weight: 700;
            margin-bottom: 0.1rem;
            font-size: 1rem;
        }

        .testimonial-role {
            color: #9ca3af;
            font-size: 0.875rem;
            margin-top: 0;
        }

        .testimonial-text {
            color: #d1d5db;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .testimonial-stars {
            color: #f59e0b;
            display: flex;
            gap: 0.25rem;
        }

        /* ==================== */
        /* CTA SECTION */
        /* ==================== */
        .cta {
            background: linear-gradient(180deg, #0d0d0d 0%, #000513 100%);
            padding: 3rem 0;
            text-align: center;
        }

        @media (min-width: 768px) {
            .cta {
                padding: 5rem 0;
            }
        }

        .cta-content {
            max-width: 48rem;
            margin: 0 auto;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
        }

        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
            }
        }

        /* ==================== */
        /* ANIMATIONS */
        /* ==================== */
        .typewriter {
            overflow: hidden;
            border-right: 0.15em solid #4b006e;
            white-space: nowrap;
            animation: 
                typing 3.5s steps(40, end),
                blink-caret 1.75s step-end infinite;
        }

        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: #7900b5; }
        }

        a {
            color: white;
        }