* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #0b0f19;
    color: white;
}

/* ========== NAVBAR ========== */
nav, .navbar {
    background: #111827;
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    height: 45px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #00f5d4;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* ========== HERO SECTION ========== */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(-45deg, #0f0f1a, #1a1a40, #1e1b4b, #3b0764);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero h1 {
    font-size: 3.5rem;
    background: linear-gradient(to right, #3b82f6, #8b5cf6, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    margin: 20px 0;
    font-size: 1.2rem;
}

.btn {
    padding: 12px 30px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6, #f97316);
    border: none;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.1);
}

/* ========== SERVICES SECTION ========== */
.services, .services-page {
    padding: 100px 10%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    width: 300px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-15px);
    background: rgba(139, 92, 246, 0.2);
}

/* Service Boxes (for services.html) */
.service-box {
    background: #111827;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    transition: 0.4s;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #00f5d4;
}

.service-box img {
    max-width: 100%;
    margin-top: 20px;
    border-radius: 8px;
}

/* YouTube section within services */
.youtube-section {
    text-align: center;
}

.youtube-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.yt-icon {
    width: 30px;
    height: 30px;
}

/* ========== SHOP SECTION ========== */
.shop {
    padding: 100px 10%;
    text-align: center;
}

.shop h1 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #111827;
    padding: 30px;
    border-radius: 12px;
    transition: 0.4s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #00f5d4;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00f5d4;
}

.product-card p {
    margin-bottom: 20px;
    color: #ccc;
}

.product-card button {
    padding: 12px 25px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    border: none;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.product-card button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #3b82f6;
}

/* ========== YOUTUBE PAGE ========== */
.youtube-page {
    padding: 100px 10%;
    text-align: center;
}

.youtube-page h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(to right, #ff0000, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subscribe-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #00f5d4;
    color: black;
    border-radius: 30px;
    text-decoration: none;
    margin: 20px 0 40px;
    font-weight: 600;
    transition: 0.3s;
}

.subscribe-btn:hover {
    box-shadow: 0 0 15px #00f5d4;
    transform: scale(1.05);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-placeholder {
    background: #1f2937;
    padding: 100px 20px;
    text-align: center;
    border-radius: 10px;
    border: 2px dashed #00f5d4;
    color: #ccc;
    font-size: 1.2rem;
    transition: 0.3s;
}

.video-placeholder:hover {
    background: #2d3748;
    transform: translateY(-5px);
}

/* ========== CONTACT PAGE ========== */
.section {
    padding: 60px 10%;
    text-align: center;
    min-height: 60vh;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: linear-gradient(to right, #3b82f6, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

form input,
form textarea,
form select {
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #1e1e2f;
    color: white;
    font-size: 1rem;
}

form select {
    cursor: pointer;
}

form select option {
    background: #1e1e2f;
    color: white;
}

form textarea {
    min-height: 120px;
    resize: vertical;
}

form button {
    padding: 15px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6, #f97316);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #f97316;
}

/* ========== ABOUT PAGE ========== */
.section p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
}

/* ========== FOOTER ========== */
footer {
    text-align: center;
    padding: 20px;
    background: #111827;
    margin-top: 40px;
}

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    nav, .navbar {
        padding: 15px 5%;
    }

    .nav-links {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #111827;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title,
    .shop h1,
    .youtube-page h1,
    .section h2 {
        font-size: 2rem;
    }

    .services, .services-page,
    .shop, .youtube-page,
    .section {
        padding: 60px 5%;
    }

    .card {
        width: 100%;
        max-width: 350px;
    }

    .video-placeholder {
        padding: 60px 20px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .btn, .subscribe-btn {
        padding: 10px 20px;
    }

    .product-card {
        padding: 20px;
    }
}