        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }
        
        /* Base Styles */
        body {
            background-color: #000;
            color: #fff;
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        /* Header */
        header {
            padding: 30px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: background-color 0.3s ease;
        }
        
        header.scrolled {
            background-color: rgba(0, 0, 0, 0.9);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .logo span {
            color: #ffffff;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        nav ul li a:hover {
            color: #888;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/api/placeholder/1600/900');
            background-size: cover;
            background-position: center;
            filter: brightness(0.3);
            z-index: -1;
        }
        
        .hero-content {
            max-width: 800px;
        }
        
        .hero h1 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 600px;
        }
        
        .btn {
            display: inline-block;
            background-color: transparent;
            color: #fff;
            padding: 12px 30px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: 1px solid #fff;
        }
        
        .btn:hover {
            background-color: #fff;
            color: #000;
        }
        
        /* About Section */
        section {
            padding: 100px 0;
        }
        
        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 60px;
            height: 3px;
            background-color: #fff;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .about-text {
            width: 50%;
            padding-right: 50px;
        }
        
        .about-image {
            width: 45%;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
        }
        
        /* Portfolio Section */
        .portfolio-filters {
            display: flex;
            margin-bottom: 40px;
        }
        
        .filter-btn {
            background: transparent;
            border: none;
            color: #ccc;
            margin-right: 20px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            padding: 5px 0;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .filter-btn:hover, .filter-btn.active {
            color: #fff;
        }
        
        .filter-btn.active:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #fff;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .portfolio-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            height: 300px;
        }
        
        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .portfolio-item:hover img {
            transform: scale(1.05);
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-overlay h4 {
            font-size: 20px;
            margin-bottom: 10px;
        }
        
        .portfolio-overlay p {
            font-size: 14px;
            text-align: center;
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        .service-item {
            padding: 30px;
            background-color: #111;
            transition: transform 0.3s ease;
        }
        
        .service-item:hover {
            transform: translateY(-10px);
        }
        
        .service-icon {
            font-size: 40px;
            margin-bottom: 20px;
        }
        
        .service-item h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        /* Testimonials Section */
        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial {
            text-align: center;
            padding: 0 40px;
        }
        
        .testimonial-content {
            font-size: 18px;
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: 700;
        }
        
        .testimonial-position {
            color: #ccc;
            font-size: 14px;
        }
        
        /* Contact Section */
        .contact-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 60px;
        }
        
        .contact-item {
            flex-basis: 30%;
        }
        
        .contact-item h4 {
            font-size: 18px;
            margin-bottom: 15px;
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            background-color: #111;
            border: none;
            color: #fff;
            font-size: 16px;
        }
        
        .contact-form button {
            background-color: transparent;
            color: #fff;
            border: 1px solid #fff;
            padding: 12px 30px;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .contact-form button:hover {
            background-color: #fff;
            color: #000;
        }
        
        /* Footer */
        footer {
            padding: 30px 0;
            border-top: 1px solid #222;
            text-align: center;
        }
        
        .social-links {
            margin-bottom: 20px;
        }
        
        .social-links a {
            display: inline-block;
            margin: 0 15px;
            color: #fff;
            transition: color 0.3s ease;
        }
        
        .social-links a:hover {
            color: #888;
        }
        
        .footer-text {
            color: #777;
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .portfolio-grid,
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-text,
            .about-image {
                width: 100%;
                padding-right: 0;
            }
            
            .about-image {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 42px;
            }
            
            .portfolio-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-info {
                flex-direction: column;
            }
            
            .contact-item {
                margin-bottom: 30px;
            }
            
            nav {
                display: none;
            }
        }

         /* Hero Slider Styles */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
    z-index: -1;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg.active {
    opacity: 1;
}

.hero-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

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

.slider-dot.active {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

.more-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}


.more-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none; /* Hidden by default, will be shown based on filter */
    text-decoration: none; /* Remove underline since these are now anchor tags */
    text-align: center; /* Center text */
}

.more-btn:hover {
    background-color: #fff;
    color: #000;
}

.more-btn.visible {
    display: inline-block;
}

/* Hide non-featured items by default */
.portfolio-item:not(.featured) {
    display: none;
}

/* Display transition for portfolio items */
.portfolio-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.portfolio-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Service Icons CSS for Left Alignment */
.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start; /* Left align the icons */
}

.service-icon svg {
    width: 48px;
    height: 48px;
    stroke: #fff;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon svg {
    stroke: #ccc;
    transform: scale(1.1);
}

/* Align heading and text to the left as well for consistency */
.service-item h3 {
    text-align: left;
    font-size: 22px;
    margin-bottom: 15px;
}

.service-item p {
    text-align: left;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: #ccc;
}

.view-all-link svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-all-link:hover svg {
    transform: translateX(5px);
}

.portfolio-item[data-category="music-videos"] .portfolio-overlay::after,
.portfolio-item[data-category="photography"] .portfolio-overlay::after {
    content: "View Details →";
    display: block;
    margin-top: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Update portfolio overlay CSS to add View Details for video-productions as well */
.portfolio-item[data-category="music-videos"] .portfolio-overlay::after,
.portfolio-item[data-category="photography"] .portfolio-overlay::after,
.portfolio-item[data-category="video-productions"] .portfolio-overlay::after {
    content: "View Details →";
    display: block;
    margin-top: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}