/* Reset & Base */

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.body-dark {
    font-family: 'Inter', sans-serif;
    background-color: #0C0B17;
    color: #fff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #c084fc; /* Light purple hover */
}

/* Nav Styles */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    display: block;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        gap: 15px;
        background-color: #0C0B17;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 20px;
        z-index: 1000;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav.show {
        display: flex;
    }

    .main-nav a {
        padding: 10px;
    }
}



/* Layout Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Flex Utilities */
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header */
.header {
    background-color: rgba(12, 11, 23, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo,
.logo-sm {
    height: 36px;
}

.main-nav {
    display: flex;
    gap: 30px;
    font-size: 14px;
    font-weight: 500;
}

.auth-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Button */
.btn-primary {
    background: linear-gradient(to right, #ff6a00, #a445b2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #0C0B17;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
    color: #ccc;
    font-size: 14px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #ccc;
}

.footer ul li a:hover {
    color: #fff;
}

.footer-about {
    max-width: 300px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .auth-links {
        gap: 10px;
    }

    .flex-between {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    overflow: hidden;
    text-align: center;
    z-index: 1;
}

.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #fff;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    color: #e0e0e0;
    margin-bottom: 30px;
}

.gradient-section {
    background: linear-gradient(to bottom, rgba(164, 69, 178, 0.15), rgba(12, 11, 23, 1));
    position: relative;
    z-index: 1;
}

.gradient-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
    z-index: -1;
}


.testimonial-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.testimonial-card {
    flex: 0 0 300px;
    background: #18162b;
    color: #fff;
    border-radius: 12px;
    padding: 20px;
    scroll-snap-align: start;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.03);
}

.testimonial-card .quote {
    font-size: 1rem;
    line-height: 1.5;
    color: #e0e0e0;
}

.testimonial-card .author {
    margin-top: 15px;
    font-size: 0.875rem;
    color: #a445b2;
    font-weight: 600;
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #1f1c2e;
    color: #fff;
    border: none;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.slider-arrow:hover {
    opacity: 1;
}

.slider-arrow.left {
    left: 10px;
}

.slider-arrow.right {
    right: 10px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: #2a273b;
    border: 1px solid #383552;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #a445b2;
    background: #2f2c47;
}

.btn-primary {
    background: linear-gradient(to right, #a445b2, #6638f0);
    color: white;
    font-weight: 600;
    border: none;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(to right, #8431c1, #4a2ddf);
}


