:root {
    --primary-color: #ffcc00; /* Gold/Yellow accent */
    --bg-dark: #0a0a0a;
    --bg-light: #1a1a1a;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    height: 100px; /* Header Height 90-100px */
    background: rgba(11, 11, 15, 0.95); /* Background #0B0B0F with 95% transparency */
    backdrop-filter: blur(10px); /* Glass blur effect */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    padding: 20px 0; /* Logo around 20-25px padding */
}

.logo img {
    height: 80px; /* Adjusted to fit 100px navbar with padding */
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.3)); /* Subtle glow effect */
    transition: 0.3s;
}

.logo img:hover {
    filter: drop-shadow(0 0 15px rgba(255, 204, 0, 0.6)); /* Hover glow */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff; /* White text for black background */
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80'); /* Placeholder DJ Image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin: 10px;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
}

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #e6b800;
}

/* Services */
.services {
    padding: 100px 10%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    transition: 0.4s;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* Stats Section */
.stats {
    padding: 80px 10%;
    background: var(--primary-color);
    color: #000;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item {
    margin: 20px;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 700;
}

.stat-item p {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Why Choose Us */
.why-us {
    padding: 100px 10%;
    background: #111;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.why-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.why-item p {
    color: var(--text-gray);
}

/* Gallery */
.gallery {
    padding: 100px 10%;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials Slider */
.testimonials {
    padding: 100px 0; /* Vertical padding only */
    background: var(--bg-dark);
    text-align: center;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 40px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 450px; /* Fixed width for PC */
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    scroll-snap-align: center;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem; /* Smaller title for mobile */
        padding: 0 20px;
    }

    .testimonial-card {
        flex: 0 0 85vw; /* Card takes 85% of screen width on mobile */
        padding: 30px 20px;
    }

    .testimonial-card p {
        font-size: 0.95rem;
    }
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.testimonial-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stars {
    color: #ffcc00;
}

/* Process Section */
.process {
    padding: 100px 10%;
    background: #0B0B0F;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 204, 0, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* FAQ Section */
.faq {
    padding: 100px 10%;
    background: #0a0a0a;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
    text-align: left;
}

.faq-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.faq-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Contact */
.contact {
    background: var(--bg-light);
    padding: 100px 10%;
    text-align: center;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2rem;
    margin-top: 30px;
}

footer {
    padding: 40px;
    text-align: center;
    background: #000;
    color: var(--text-gray);
}

.footer-logo {
    height: 80px; /* Footer logo size increased */
    margin-bottom: 20px;
}

/* Floating Action Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 0 20px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-decoration: none;
    transition: 0.3s all ease;
}

.floating-btn span {
    font-size: 16px;
    display: inline-block;
}

.floating-btn:hover {
    transform: translateY(-5px);
    background-color: #20ba5a;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .floating-btn {
        width: 60px;
        padding: 0;
        right: 20px;
        bottom: 20px;
    }
    .floating-btn span {
        display: none; /* Mobile par sirf icon dikhega */
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .navbar {
        height: 70px; /* Mobile par header chhota kar diya */
        padding: 0 5%;
    }

    .logo {
        padding: 10px 0;
    }

    .logo img {
        height: 50px; /* Mobile logo size adjusted */
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px; /* Match new mobile navbar height */
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #0B0B0F;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.5s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        color: #fff;
    }

    .hero {
        height: 70vh; /* Mobile par Hero section ki height kam kar di */
        padding-top: 70px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
        margin: 5px;
    }

    .stats {
        flex-direction: column;
        padding: 40px 10%;
    }

    .testimonial-card {
        margin: 10px;
    }
}
