/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #121212;
    color: #ffffff;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}


/* Logo */
.logo {
    /* font-size: 1.5rem; */
    font-weight: bold;
    color: #ffcc00;
    display: flex;
    justify-content: space-around;
    /* mix-blend-mode: multiply;  */
    /* width: 200px;
    height: 100px; */
    overflow: hidden;

    /* filter: invert(1);
    mix-blend-mode: screen; */
}




/* Add space below the header */
.main-content {
    padding-top: 100px; /* Adjust based on header height */
}

/* Ensure the logo doesn't get covered */
.logo img {
    max-width: 100%;
    height: 60px;
    display: block;
}


/* Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff6600;
}

/* Job Button */
.job-btn {
    padding: 10px 15px;
    background: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.job-btn:hover {
    background: #e65c00;
}


.menu-toggle {
    display: none; /* Hidden by default */
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    color: #333;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show hamburger menu */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        text-align: center;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex; /* Show menu when active */
    }

    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid #ddd;
    }
}


/* Call-to-Action Button */
.cta-btn {
    background-color: #ffcc00;
    color: #121212;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background-color: #ffaa00;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 0 10%;
    background-color: #1a1a1a;
}

/* Left Text Content */
.hero-content {
    max-width: 50%;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #ffcc00;
    animation: fadeIn 1.5s ease-in-out;
}

.hero p {
    font-size: 1.2rem;
    margin: 10px 0 20px;
    opacity: 0.9;
    animation: fadeIn 2s ease-in-out;
}

/* Right Image Content */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* overflow:hidden; */
}

.hero-image img {
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Fade-In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        justify-content: center;
        margin-top: 20px;
    }

    .hero-image img {
        width: 100%;
        max-width: 400px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
}


/* Featured Products Section */
.featured-products {
    text-align: center;
    padding: 60px 20px;
    background-color: #121212;
}

.featured-products h2 {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Product Card */
.product-card {
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
    padding-bottom: 20px;
    min-height: 500px; /* Extra space for text */
}

.product-card img {
    width: 100%;
    height: 250px; /* Ensures all images are same size */
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 6px 15px rgba(255, 204, 0, 0.3);
}

/* Image Container (For Multiple Images) */
.image-container {
    position: relative;
    width: 100%;
    height: 250px; /* Fixed height */
    overflow: hidden;
    
}

.image-container img {
    width: 100%;
    height: 250px; /* Ensures all images are same size */
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Hover Effect for Multiple Images */
.image-container img.hover-img {
    opacity: 0;
}

.image-container:hover img.hover-img:nth-child(2) {
    opacity: 1;
}
.image-container:hover img.hover-img:nth-child(3) {
    opacity: 0.75;
}
.image-container:hover img.hover-img:nth-child(4) {
    opacity: 0.5;
}

/* Product Info */
.product-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px; /* Ensures enough space */
}

.product-info h3 {
    font-size: 1.5rem;
    color: #ffcc00;
}

.product-info p {
    font-size: 1rem;
    color: #bbbbbb;
    margin: 5px 0;
    line-height: 1.4;
}

/* Price */
.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffcc00;
    display: block;
    margin-bottom: 10px;
}

/* Order Now Button */
.order-btn {
    display: inline-block;
    background-color: #ffcc00;
    color: #121212;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    margin-top: auto; /* Push button to bottom */
}

.order-btn:hover {
    background-color: #ffaa00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 550px;
    }

    .product-info {
        min-height: 220px;
    }
}

/* Production Process Section */
.production-process {
    text-align: center;
    padding: 60px 20px;
    background-color: #121212;
}

.production-process h2 {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Process Step */
.process-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(255, 204, 0, 0.3);
}

/* Process Step Image */
.process-step img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

/* Step Info */
.step-info {
    max-width: 500px;
    text-align: left;
    padding: 15px;
}

.step-info h3 {
    font-size: 1.5rem;
    color: #ffcc00;
    margin-bottom: 10px;
}

.step-info p {
    font-size: 1rem;
    color: #bbbbbb;
    line-height: 1.4;
}

/* Quality Assurance Badges */
.badges {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.badges img {
    width: 60px;
    height: a
}


/* Testimonials Section */
.testimonials {
    text-align: center;
    padding: 60px 20px;
    background-color: #121212;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
}

/* Testimonial Slider */
.testimonial-slider {
    max-width: 600px;
    margin: 0 auto 40px;
    overflow: hidden;
    position: relative;
}

.slide {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(255, 204, 0, 0.3);
}

.slide p {
    font-size: 1.1rem;
    color: #bbbbbb;
    margin-bottom: 10px;
}

.slide h4 {
    font-size: 1rem;
    color: #ffcc00;
}

/* Video Testimonials */
.video-testimonials {
    margin-top: 50px;
}

.video-testimonials h3 {
    color: #ffcc00;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.video-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.video-grid iframe {
    width: 350px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
}

/* B2B Clients */

.client-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.company {
    text-align: center;
    background: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    width: 180px;
    transition: transform 0.3s;
}

.company:hover {
    transform: scale(1.1);
}

.company img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.company p {
    font-size: 1.2em;
    font-weight: bold;
}

.stars {
    font-size: 1.5em;
    color: #ffcc00;
}



.client-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.client-logos img {
    width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.client-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-slider {
        max-width: 90%;
    }

    .video-grid iframe {
        width: 100%;
        height: 180px;
    }

    .client-logos img {
        width: 100px;
    }
}


/* Dark Theme Styles */
.contact-section {
    background-color: #121212;
    color: #fff;
    padding: 50px 10%;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #ffcc00;
}

.section-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ccc;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.contact-form,
.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.contact-form h3,
.contact-info h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #ffcc00;
}

.contact-form label {
    display: block;
    text-align: left;
    margin-top: 10px;
    font-size: 1em;
    color: #ddd;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    background: #222;
    color: #fff;
    border: 1px solid #ffcc00;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form textarea {
    resize: none;
}

.submit-btn {
    margin-top: 15px;
    padding: 12px;
    width: 100%;
    background: #ffcc00;
    color: #121212;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #e6b800;
}

/* Contact Info */
.contact-info p {
    font-size: 1.1em;
    margin: 10px 0;
}

.contact-info a {
    color: #ffcc00;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Google Map */
.map iframe {
    width: 100%;
    border-radius: 5px;
}

/* Social Links */
.social-links {
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    background: #333;
    color: #ffcc00;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.social-icon:hover {
    background: #ffcc00;
    color: #121212;
}


/* Dark Theme Background */
body {
    background-color: #121212;
    color: white;
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Dark Theme */
body {
    background-color: #121212;
    color: white;
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Dark Theme */
body {
    background-color: #121212;
    color: white;
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Contact Section */
.contact-social {
    margin-top: 50px;
}

.contact-social h2 {
    font-size: 26px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Social Buttons */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Button Styles */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

/* Colors */
.whatsapp {
    background: #25D366;
}

.instagram {
    background: linear-gradient(45deg, #F56040, #F77737, #FCAF45);
}

.facebook {
    background: #1877F2;
}

/* Icon Styles */
.social-btn i {
    margin-right: 8px;
    font-size: 22px;
}

/* Hover Effect */
.social-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 600px) {
    .social-buttons {
        flex-direction: column;
        gap: 15px;
    }
}


/* Footer Section - Dark Theme */
.footer {
    background-color: #121212;
    color: #fff;
    padding: 40px 10%;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.footer-about, 
.footer-links, 
.footer-contact {
    flex: 1;
    min-width: 250px;
    margin: 10px;
    text-align: left;
}

.footer h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #ffcc00;
}

.footer p, .footer a {
    font-size: 1em;
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: #ffcc00;
}

/* Quick Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 8px 0;
}

.footer-links a {
    display: block;
    color: #ccc;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffcc00;
}

/* Social Media */
.footer-bottom {
    margin-top: 20px;
    text-align: center;
}

.social-links {
    margin-bottom: 10px;
}

.social-icon {
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    background: #222;
    color: #ffcc00;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.social-icon:hover {
    background: #ffcc00;
    color: #121212;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-about, 
    .footer-links, 
    .footer-contact {
        text-align: center;
    }
}



.overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        /* Popup container */
        .popup {
            display: none;
            position: fixed;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background: rgb(20, 19, 19);
            padding: 20px;
            width: 300px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            text-align: center;
        }

        /* Show popup when active */
        .popup.active, .overlay.active {
            display: block;
        }

        /* Close button */
        .close-btn {
            cursor: pointer;
            background: red;
            color: white;
            padding: 5px 10px;
            border: none;
            border-radius: 5px;
        }

        /* Job details */
        .job-title {
            font-size: 18px;
            font-weight: bold;
        }

        .contact {
            font-size: 16px;
            margin-top: 10px;
        }
  

        .job-btn {
            background: #ff9800;
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s;
        }
    
        .job-btn:hover {
            background: #e68900;
        }
    
        /* Popup Styling */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }
    
        
        .close-btn {
            cursor: pointer;
            background: red;
            color: white;
            padding: 5px 10px;
            border: none;
            border-radius: 5px;
        }
    
        .job-title {
            font-size: 18px;
            font-weight: bold;
        }
    
        .contact {
            font-size: 16px;
            margin-top: 10px;
        }



        /* General Styles */
.seasonal-specials {
    text-align: center;
    background: #121212;
    color: #fff;
    padding: 50px 20px;
}

.seasonal-specials h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #ff8c00, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 30px;
}

/* Specials Container */
.specials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Seasonal Boxes */
.specials-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    width: 45%;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease-in-out;
}

.specials-box:hover {
    transform: translateY(-5px);
}

.specials-box h3 {
    font-size: 1.8rem;
    background: linear-gradient(90deg, #ffcc00, #ff6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

/* Special Items */
.special-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.special-item {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
}

.special-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
}

.special-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid #fff;
}

/* Item Info */
.item-info {
    text-align: left;
}

.item-info h4 {
    font-size: 1.3rem;
    margin: 0;
    color: #fff;
}

.item-info p {
    font-size: 0.9rem;
    color: #ccc;
}

.price {
    font-weight: bold;
    color: #ffcc00;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .specials-container {
        flex-direction: column;
    }
    .specials-box {
        width: 90%;
    }
    .special-item {
        flex-direction: column;
        text-align: center;
    }
    .special-item img {
        margin-bottom: 10px;
    }
}


body {
    font-family: 'Poppins', sans-serif;
    background: #121212;
    color: #f5f5f5;
    text-align: center;
    padding: 20px;
}

.review-section {
    max-width: 800px;
    margin: auto;
    background: #1e1e1e;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 15px rgba(255, 180, 0, 0.2);
}

h2 {
    color: #ffb400;
}

.section-subtitle {
    font-size: 16px;
    color: #bbb;
}

#reviewForm input, #reviewForm textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background: #222;
    border: none;
    border-radius: 5px;
    color: #f5f5f5;
}

#reviewForm button {
    width: 100%;
    background: #ffb400;
    color: #121212;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

#reviewForm button:hover {
    background: #ff9000;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 30px;
    color: #555;
    cursor: pointer;
}

.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
    color: #ffb400;
}

.review {
    background: #222;
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
    box-shadow: 0px 0px 10px rgba(255, 180, 0, 0.15);
}

.review h3 {
    color: #ffb400;
}

.review p {
    color: #ddd;
}

.star {
    color: #ffb400;
    font-size: 18px;
}




