:root {
    --primary-color: #FF9933;
    --secondary-color: #000000;
    --accent-color: #FFB366;
    --light-color: #FFFFFF;
    --gray-color: #F5F5F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    background: var(--light-color);
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Work Carousel */
.carousel {
    padding: 4rem 0;
    background: var(--gray-color);
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.carousel h2 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    gap: 1rem;
    padding: 1rem;
}

.carousel-item {
    flex: 0 0 300px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    padding: 20px;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.lightbox-btn {
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: background-color 0.3s;
}

.lightbox-btn:hover {
    background: var(--accent-color);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: background-color 0.3s;
}

.lightbox-close:hover {
    background: var(--accent-color);
}

/* About Section */
.about {
    padding: 4rem 0;
    background: var(--light-color);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about h2 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: var(--gray-color);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact h2 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-btn {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: bold;
}

.submit-btn:hover {
    background: var(--accent-color);
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}



        /* Social Media Section */
        .social-media {
            padding: 3rem 0;
            background: var(--light-color);
        }

        .social-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .social-container h2 {
            color: var(--secondary-color);
            margin-bottom: 2rem;
            font-size: 2.5rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .social-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--secondary-color);
            transition: transform 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-5px);
        }

        .social-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
            transition: background-color 0.3s ease;
        }

        .social-icon i {
            font-size: 24px;
            color: var(--light-color);
        }

        .social-link:hover .social-icon {
            background: var(--accent-color);
        }

        .social-link span {
            font-weight: 500;
            margin-top: 0.5rem;
        }



        /* Mobile Navigation */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--secondary-color);
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--light-color);
                padding: 1rem;
                flex-direction: column;
                align-items: center;
                gap: 1rem;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            }

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

        /* Responsive Hero Video */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .hero video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        .hero-mobile-bg {
            display: none;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background-size: cover;
            background-position: center;
        }

        @media (max-width: 768px) {
            /*.hero video {*/
            /*    display: none;*/
            /*}*/

            /*.hero-mobile-bg {*/
            /*    display: block;*/
            /*}*/
        }

        /* Responsive Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            padding: 1rem;
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 0.5rem;
                padding: 0.5rem;
            }

            .gallery-item {
                height: 150px;
            }
        }

        /* Responsive Social Media Section */
        @media (max-width: 768px) {
            .social-links {
                flex-wrap: wrap;
                gap: 1rem;
            }

            .social-icon {
                width: 50px;
                height: 50px;
            }

            .social-icon i {
                font-size: 20px;
            }
        }

        /* Responsive About Section */
        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .about h2, .contact h2 {
                font-size: 2rem;
            }
        }

        /* Responsive Contact Form */
        @media (max-width: 768px) {
            .contact-form {
                padding: 0 1rem;
            }

            .form-group input,
            .form-group textarea {
                padding: 0.5rem;
            }
        }

        /* Responsive Lightbox */
        @media (max-width: 768px) {
            .lightbox-content {
                width: 90%;
            }

            .lightbox-btn {
                padding: 10px 15px;
            }

            .lightbox-close {
                top: 10px;
                right: 10px;
            }
        }

        /* Update these CSS rules in your existing file */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        padding: 10px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px; /* Adjust based on your nav height */
        left: 0;
        width: 100%;
        background: var(--light-color);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links a {
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }
}

.footer-heading {
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #fff;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  .whatsapp-btn {
    transition: all 0.3s ease;
  }
  
  .whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .contact-info i {
    width: 20px;
    text-align: center;
  }

  

  .work-gallery {
    padding: 50px 0;
    overflow: hidden;
}

.work-container {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.work-container h2 {
    margin-bottom: 30px;
}

.work-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.work-item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.work-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.work-item:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .work-item {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .work-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

