* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", sans-serif;
    background-color: #0A0E11;
    color: #878e99;
    overflow-x: hidden;
}

/* ============================================
HERO SECTION
   ============================================ */
.hero-section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #0A0E11;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Outfit", sans-serif;
            background-color: #0A0E11;
            color: #878e99;
            padding: 40px 20px;
        }

        /* Testimonials Section */
        .testimonials-section {
            width: 100%;
            padding: 80px 40px;
            background: linear-gradient(180deg, #0A0E11 0%, #0f1419 100%);
            overflow: hidden;
        }

        .testimonials-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .testimonials-badge {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            backdrop-filter: blur(10px);
            color: white;
            font-size: 11px;
            text-transform: uppercase;
            padding: 8px 20px;
            border-radius: 50px;
            letter-spacing: 3px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: inline-block;
            margin-bottom: 20px;
        }

        .testimonials-title {
            font-size: clamp(32px, 4vw, 42px);
            color: white;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .testimonials-subtitle {
            font-size: 16px;
            color: #878e99;
            letter-spacing: 1px;
        }

        .carousel-wrapper {
            position: relative;
            padding: 0 70px;
        }

        .carousel-container {
            overflow: hidden;
            width: 100%;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            min-width: 100%;
            max-width: 100%;
            flex-shrink: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 35px 40px;
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
            transition: left 0.6s ease;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .testimonial-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ffffff 0%, #c0c5ce 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 700;
            color: #0A0E11;
            flex-shrink: 0;
        }

        .testimonial-info {
            flex: 1;
        }

        .testimonial-name {
            font-size: 17px;
            font-weight: 600;
            color: white;
            margin-bottom: 4px;
        }

        .testimonial-role {
            font-size: 13px;
            color: #878e99;
        }

        .testimonial-category {
            display: inline-block;
            background: rgba(255, 255, 255, 0.08);
            color: #c0c5ce;
            font-size: 10px;
            text-transform: uppercase;
            padding: 5px 12px;
            border-radius: 15px;
            letter-spacing: 1px;
            margin-bottom: 18px;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.7;
            color: #a8b0c0;
            margin-bottom: 18px;
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
        }

        .testimonial-stars i {
            color: #ffd700;
            font-size: 15px;
        }

        .quote-icon {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 35px;
            color: rgba(255, 255, 255, 0.04);
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-btn:hover {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn.prev {
            left: 0;
        }

        .carousel-btn.next {
            right: 0;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 25px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            width: 25px;
            border-radius: 4px;
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 60px 20px;
            }

            .carousel-wrapper {
                padding: 0 55px;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
            }

            .testimonial-card {
                padding: 28px 25px;
            }

            .testimonial-text {
                font-size: 14px;
            }
        }

/* Hamburger Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.bar {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.bar.middle {
    width: 45px;
}

.hamburger-menu.open .bar:first-child {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.open .bar.middle {
    opacity: 0;
}

.hamburger-menu.open .bar:last-child {
    transform: translateY(-9px) rotate(-45deg);
}


/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0A0E11 0%, #1a1f26 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: left 0.5s ease;
    z-index: 99;
}

.side-menu.open {
    left: 0;
}

.menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-text {
    font-size: clamp(28px, 5vw, 48px);
    color: #878e99;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
}

.menu-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-text:hover {
    color: white;
}

.menu-text:hover::after {
    width: 100%;
}

/* Hero Content */
.hero-content {
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Eclipse Container */
.eclipse-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease;
}

.eclipse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #1a1f26, #000);
    box-shadow: 
        0 0 60px rgba(255, 255, 255, 0.3),
        0 0 120px rgba(255, 255, 255, 0.2),
        inset 0 0 40px rgba(0, 0, 0, 0.8);
    animation: float 6s ease-in-out infinite;
}

.eclipse::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 40%, rgba(255, 255, 255, 0.1) 60%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.star-top {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    filter: blur(1px);
}

.star-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    filter: blur(1px);
}

.star-bottom {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    filter: blur(2px);
}

/* Main Title */
.main-title {
    font-size: clamp(60px, 8vw, 100px);
    font-weight: 800;
    letter-spacing: 15px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: #c0c5ce;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.5s forwards;
    opacity: 0;
}

/* ============================================
   CONTENT SECTION
   ============================================ */
.content-section {
    width: 100%;
    padding: 100px 40px;
    background: linear-gradient(180deg, #0A0E11 0%, #0f1419 100%);
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Left Side - Visual Element */
.visual-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#codeCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(10, 14, 17, 0.95) 0%, rgba(15, 20, 25, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Right Side - Text Content */
.text-content {
    color: #c0c5ce;
}

.section-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 11px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin-bottom: 25px;
}

.content-title {
    font-size: clamp(32px, 4vw, 48px);
    color: white;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.content-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #a8b0c0;
}

/* Service Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 28px;
    color: white;
    margin-bottom: 15px;
}

.service-item h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-item p {
    color: #878e99;
    font-size: 14px;
    line-height: 1.5;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    color: #0A0E11;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    width: 100%;
    padding: 100px 40px;
    background: #0A0E11;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stats-header {
    text-align: center;
    margin-bottom: 70px;
}

.stats-title {
    font-size: clamp(36px, 5vw, 52px);
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

.stats-subtitle {
    font-size: 18px;
    color: #878e99;
    letter-spacing: 1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.stat-number {
    font-size: clamp(42px, 6vw, 60px);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #c0c5ce 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: block;
}

.stat-label {
    font-size: 16px;
    color: #c0c5ce;
    line-height: 1.6;
    font-weight: 500;
}

.stat-description {
    font-size: 13px;
    color: #878e99;
    margin-top: 10px;
    line-height: 1.5;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #0A0E11;
    color: #878e99;
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(135, 142, 153, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #878e99;
}

.footer-section p {
    color: #878e99;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    transition: color 0.3s ease;
    color: #878e99;
}

.footer-section li:hover {
    color: #ffffff;
}

.footer-section li::before {
    content: '▸';
    color: #ffffff;
    position: absolute;
    left: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(135, 142, 153, 0.2);
    border-radius: 8px;
    color: #878e99;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: #ffffff;
}

.footer-social a i {
    font-size: 18px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.footer-contact-item i {
    color: #ffffff;
    width: 20px;
    margin-right: 12px;
}

.footer-contact-item a {
    color: #878e99;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(135, 142, 153, 0.2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: #878e99;
    margin: 0;
}

.footer-bottom .highlight {
    color: #ffffff;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .visual-container {
        height: 400px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content,
    .content-section {
        padding: 60px 20px;
    }

    .eclipse-container {
        width: 300px;
        height: 300px;
    }

    .eclipse {
        width: 150px;
        height: 150px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 20px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        padding: 25px 20px 0;
    }
}