/* Reset default styles */
* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base styles */
body {
    font-family: 'Poppins', sans-serif, Arial, Helvetica, sans-serif;
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
    line-height: 1.6;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #000000; /* Black background */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff; /* White text for logo */
}

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

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

.nav-links a {
    color: #ffffff; /* White text */
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #cccccc; /* Light gray for hover */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ffffff; /* White hamburger lines */
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff; /* White text */
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #ffffff; /* White text */
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #FFD700; /* Bright yellow */
    color: #000000; /* Black text on button */
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #aaaaaa; /* Darker gray on hover */
}

/* Services Section */
.services, .portfolio, .about, .contact {
    padding: 80px 5%;
    text-align: center;
    background-color: #000000; /* Black background */
}

.services h2, .portfolio h2, .about h2, .contact h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #ffffff; /* White text */
}

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

.service-card {
    background-color: #1a1a1a; /* Slightly lighter black for contrast */
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card h3, .service-card p {
    color: #ffffff; /* White text */
}

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

/* Portfolio Section (Improved) */
.portfolio {
    text-align: center;
    padding: 80px 5%;
    background-color: #000000; /* Black background */
}

.portfolio-description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
}

.portfolio-featured {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.portfolio-featured video {
    width: 100%;
    max-width: 960px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    background-color: #000; /* Black background fallback */
}

/* About Section */
.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #ffffff; /* White text */
}

.brands-worked-with {
  background: #000;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.brands-worked-with h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide-track {
  display: flex;
  width: max-content; /* ✅ Automatically adapts to content */
  animation: scroll 30s linear infinite;
}

.slide {
  width: 250px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.slide img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Contact Section */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    background-color: #1a1a1a; /* Slightly lighter black */
    border: none;
    border-radius: 5px;
    color: #ffffff; /* White text */
    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #000000; /* Black background */
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .services h2, .portfolio h2, .about h2, .contact h2 {
        font-size: 28px;
    }
}