/* Basic Resets & Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /* Accent Colors (Deep Orange Palette) */
    --accent-color: #f00024;
    --accent-dark-color: #d20121;
    --accent-light-color: #ff2747; /* A lighter shade if needed */
    /* Text Colors */
    --text-color-dark: #333;
    --text-color-medium: #555;
    --text-color-soft: #666;
    --text-color-light: #fff;
    --text-color-subtle: #aaa;
    /* Background Colors */
    --background-color-light: #f8f8f8;
    --background-color-card-light: #fff;
    --background-color-section-light-grey: #f0f0f0;
    --background-color-dark: #333;
    --background-color-dark-border: #444;
    --background-color-hover-light: #ddd;
    --background-color-submenu: #f1f1f1;
    --background-color-table-even: #f9f9f9;
    --background-color-section-subtle: #fcfcfc; /* For product category overview */
    /* Border Colors */
    --border-color-light: #eee;
    --border-color-medium: #ddd;
    --border-color-dark: #ccc;
    /* Button Colors (Default Blue) */
    --button-primary-color: #007bff;
    --button-primary-hover-color: #0056b3;
    --button-secondary-color: #6c757d; /* Grey button */
    --button-secondary-hover-color: #5a6268;
    /* Success/Validation Colors */
    --success-color: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.6;
    background-color: var(--background-color-light);
    color: var(--text-color-dark);
}

h2 {
    font-weight: 300;
    line-height: 1.2;
}

h3 {
    font-weight: 400;
    line-height: 1.2;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header */
header {
    background-color: var(--background-color-card-light);
    color: var(--text-color-dark);
    padding: 1px 0;
    border-bottom: 1px solid var(--border-color-light);
    position: sticky; /* Makes the header stick */
    top: 0; /* Sticks it to the very top of the viewport */
    z-index: 1000; /* Ensures it stays above other content when scrolling */
}

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 9px 0;
        position: relative
    }

.logo img {
    height: 90px;
    position: absolute;
    top: -10px;
    box-shadow: rgba(0,0,0,.5) 0px 3px 8px
}

.logo h1 {
    font-size: 2em;
    margin: 0;
    color: var(--text-color-dark);
}

/* Navigation - General */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* For desktop menu items to be in a row */
}

    nav ul li {
        position: relative; /* Needed for dropdown positioning */
        margin-left: 20px; /* Space between main menu items */
    }

        nav ul li a {
            color: var(--text-color-medium);
            text-decoration: none;
            font-weight: bold;
            padding: 10px 15px; /* Add padding for hover effect */
            border-radius: 5px; /* Slightly rounded corners for hover */
            transition: background-color 0.3s ease, color 0.3s ease;
            display: block; /* Make the whole padding area clickable */
        }

            /* Deep Orange Hover Effect for Main Menu Items */
            nav ul li a:hover,
            nav ul li.active a { /* Optional: if you want to highlight current page */
                background-color: var(--accent-color);
                color: var(--text-color-light);
            }

/* Dropdown Specific Styles */
.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    background-color: var(--background-color-card-light);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1; /* Ensures dropdown appears above other content */
    border-radius: 5px;
    /*overflow: hidden;  For rounded corners */
    left: 0; /* Align dropdown with parent menu item */
    top: 100%; /* Position below parent menu item */
}

    .dropdown-content a {
        color: var(--text-color-dark);
        padding: 8px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
        font-weight: normal; /* Submenu links don't need to be bold */
        transition: background-color 0.2s ease, color 0.2s ease;
    }

        .dropdown-content a:hover {
            background-color: var(--background-color-hover-light);
            color: var(--text-color-dark); /* Keep text dark for better contrast on light hover */
        }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none; /* Hidden on desktop */
    font-size: 1rem;
    cursor: pointer;
    color: var(--text-color-dark);
}

/* Sub dropdown (inside a category with children) */
.sub-dropdown {
    position: relative;
}

    .sub-dropdown > a {
        display: block;
        /*        justify-content: space-between;
        align-items: center;*/
    }

/* Nested flyout */
.sub-dropdown-content {
    display: none;
    position: absolute;
    top: 0;
    /*    left: -175px;*/
    right: 195px;
    background: #fff;
    min-width: 180px;
    border-left: 1px solid #ddd;
    z-index: 9999;
    box-shadow: rgba(0,0,0,0.1) 2px 2px 5px;
    border-radius: 5px;
}

/* Show subcategories on hover */
.sub-dropdown:hover .sub-dropdown-content {
    display: block;
}

/* Styling links */
.dropdown-content a,
.sub-dropdown-content a {
    padding: 5px 12px;
    display: block;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.9rem
}

    .dropdown-content a:hover,
    .sub-dropdown-content a:hover {
        background: var(--background-color-hover-light);
    }



/* --- Hero Section (1) --- */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden; /* Ensures images don't spill out */
    margin-bottom: 10px;
}

.slider-container {
    position: relative;
    width: 100%;
    /* Aspect Ratio Control - Default for desktop */
    padding-bottom: 38%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.slide {
    display: none; /* Hidden by default */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000; /* Fallback/background for images */
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures image covers and crops as needed */
        object-position: center; /* Center align image within its frame */
        opacity: 1; /* Slightly dim the image for text readability */
    }

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-color-light);
    z-index: 0; /* Ensures content is above image */
    max-width: 80%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
    border-radius: 8px;
}

    .slide-content h2 {
        font-size: 3.5em;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .slide-content p {
        font-size: 1.3em;
        margin-bottom: 25px;
        line-height: 1.5;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

.hero-btn {
    background-color: var(--accent-color);
    color: var(--text-color-light);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .hero-btn:hover {
        background-color: var(--accent-dark-color);
        transform: translateY(-2px);
    }

/* Navigation buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: var(--text-color-light);
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
    z-index: 3; /* Above slides and content */
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
    }

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb; /* Keeping this specific grey for dots */
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    .active-dot, .dot:hover {
        background-color: #717171; /* Keeping this specific grey for dots */
    }

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}




/* --- Company Numbers Section (2) --- */
.company-numbers-section {
    background-color: var(--background-color-card-light);
    padding: 60px 0;
    text-align: center;
    /* margin-bottom: 50px; */
    border-top: 1px solid var(--border-color-light);
    border-bottom: 1px solid var(--border-color-light);
}

    .company-numbers-section h2 {
        font-size: 2.5em;
        color: var(--text-color-dark);
        margin-bottom: 40px;
    }

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-content: center;
}

.number-card {
    background-color: var(--background-color-card-light);
    border-radius: 12px; /* Rounded corners */
    padding: 30px 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* Light shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

    .number-card:hover {
        transform: translateY(-8px); /* Subtle lift effect */
        box-shadow: 0 8px 25px rgba(0,0,0,0.15); /* Slightly darker shadow */
    }

    .number-card h3 {
        font-size: 3em;
        color: var(--accent-color);
        margin-bottom: 10px;
    }

    .number-card p {
        font-size: 1.1em;
        color: var(--text-color-medium);
        font-weight: bold;
    }


/* --- Company Story Section (3) --- */
.company-story-section {
    padding: 60px 0;
    background-color: var(--background-color-section-light-grey);
    /* margin-bottom: 50px; */
    background-image: url('/images/bg01.jpg');
}

.story-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.story-image {
    flex: 1;
    min-width: 300px; /* Minimum width for the image column */
    text-align: center;
}

    .story-image img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

.story-text {
    flex: 1.5; /* Takes more space for text */
    min-width: 300px; /* Minimum width for the text column */
}

    .story-text h2 {
        font-size: 2.8em;
        color: var(--text-color-dark);
        margin-bottom: 20px;
    }

    .story-text p {
        font-size: 1.1em;
        line-height: 1.8;
        color: var(--text-color-medium);
        margin-bottom: 20px;
    }

.primary-btn { /* Reusing the general button style, making it deep orange */
    background-color: var(--accent-color);
    color: var(--text-color-light);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block; /* Allows padding */
}

    .primary-btn:hover {
        background-color: var(--accent-dark-color);
    }


/* --- Quality & Assurance Section (4) --- */
.quality-assurance-section {
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

    .quality-assurance-section h2 {
        font-size: 2.5em;
        color: var(--text-color-dark);
        margin-bottom: 40px;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: var(--background-color-card-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    }

    .feature-item i {
        font-size: 3.5em;
        color: var(--accent-color);
        margin-bottom: 20px;
    }

    .feature-item h3 {
        font-size: 1.6em;
        color: var(--text-color-dark);
        margin-bottom: 15px;
    }

    .feature-item p {
        font-size: 1em;
        color: var(--text-color-soft);
    }


/* --- Latest Blogs Section (5) --- */
.latest-blogs-section {
    padding: 60px 0;
    background-color: var(--background-color-light);
    text-align: center;
    margin-bottom: auto;
    background-image: url('/images/bg02.jpg');
}

    .latest-blogs-section h2 {
        font-size: 2.5em;
        color: var(--text-color-dark);
        margin-bottom: 40px;
    }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.blog-card {
    background-color: var(--background-color-card-light);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden; /* Ensures image corners are rounded with card */
    text-align: left; /* Align text within card */
    text-decoration: none; /* Remove underline from link */
    color: var(--text-color-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block; /* Make the whole card clickable */
}

    .blog-card:hover {
        transform: translateY(-8px); /* Subtle lift effect */
        box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* Slightly darker shadow */
    }

    .blog-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-bottom: 1px solid var(--border-color-light);
    }

    .blog-card h3 {
        font-size: 1.4em;
        color: var(--text-color-dark);
        margin: 15px 20px 10px 20px;
    }

    .blog-card p {
        font-size: 0.95em;
        color: var(--text-color-soft);
        margin: 0 20px 20px 20px;
    }


/* --- Footer (6) - Redesigned --- */
footer {
    background-color: var(--background-color-dark);
    color: var(--text-color-light);
    padding: 40px 0 20px 0; /* Adjust padding for copyright */
    font-size: 0.95em;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3, .footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-col p {
    margin-bottom: 10px;
    line-height: 1.6;
}

    .footer-col p i {
        margin-right: 8px;
        color: var(--text-color-light);
    }

.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            color: #ccc; /* Keeping this specific grey for footer links */
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .footer-col ul li a:hover {
                color: var(--accent-color);
            }

.footer-col .social-icons {
    margin-top: 20px;
}

    .footer-col .social-icons a {
        color: var(--text-color-light);
        font-size: 1.6em;
        margin-right: 15px;
        transition: color 0.3s ease;
    }

        .footer-col .social-icons a:hover {
            color: var(--accent-color);
        }

.copyright {
    text-align: center;
    border-top: 1px solid var(--background-color-dark-border);
    padding-top: 20px;
    color: var(--text-color-subtle);
}

.email-link {
    color: var( --text-color-light);
    text-decoration: none
}

    .email-link:hover {
        color: var( --accent-light-color);
    }


/* About Us Page Specific Styles */
.page-section {
    padding: 40px 0;
}

.page-title {
    font-size: 2.8rem;
    color: var(--text-color-dark);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-weight: 400
}

    .page-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background-color: var(--accent-color);
        margin: 15px auto 0;
        border-radius: 2px;
    }

.about-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap; /* Allows stacking on smaller screens */
}

    .about-section.reverse-layout {
        flex-direction: row-reverse; /* Swap image and text for variety */
    }

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

    .about-image img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

.about-text {
    flex: 1.5;
    min-width: 300px;
}

    .about-text h2 {
        font-size: 2.2em;
        color: var(--accent-color);
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 1.1em;
        line-height: 1.8;
        color: var(--text-color-medium);
        margin-bottom: 15px;
    }

/* Basic Form Styles (for contact.html) */
.contact-form {
    background-color: var(--background-color-card-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 40px auto;
}

    .contact-form label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid var(--border-color-medium);
        border-radius: 4px;
        font-size: 1em;
    }

    .contact-form textarea {
        resize: vertical;
        min-height: 120px;
    }

    .contact-form button {
        background-color: var(--button-primary-color);
        color: var(--text-color-light);
        padding: 12px 25px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
    }

        .contact-form button:hover {
            background-color: var(--button-primary-hover-color);
        }

/* Contact Us Page Specific Styles */
.contact-layout {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allows stacking */
    justify-content: center;
}

.contact-info-block, .contact-form-block {
    flex: 1; /* Both take equal space */
    min-width: 300px; /* Minimum width before stacking */
    background-color: var(--background-color-card-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    .contact-info-block h2, .contact-form-block h2 {
        font-size: 2em;
        color: var(--accent-color);
        margin-bottom: 25px;
    }

    .contact-info-block p {
        margin-bottom: 15px;
        font-size: 1.1em;
        color: var(--text-color-medium);
        line-height: 1.6;
    }

        .contact-info-block p i {
            margin-right: 10px;
            color: #777; /* Keeping this specific grey for contact info icons */
        }

    .contact-info-block h3 {
        font-size: 1.4em;
        color: var(--text-color-dark);
        margin-top: 30px;
        margin-bottom: 15px;
        border-bottom: 1px solid var(--border-color-light);
        padding-bottom: 5px;
    }

.contact-social {
    margin-top: 20px;
}

    .contact-social a {
        color: var(--text-color-medium);
        font-size: 1.8em;
        margin-right: 15px;
        transition: color 0.3s ease;
    }

        .contact-social a:hover {
            color: var(--accent-color);
        }

/* Form specific styles (already largely covered, but ensure alignment) */
.contact-form {
    display: flex;
    flex-direction: column;
}

.map-container {
    margin-top: 60px;
    text-align: center;
    background-color: var(--background-color-card-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    .map-container h2 {
        font-size: 2em;
        color: var(--text-color-dark);
        margin-bottom: 30px;
    }

    .map-container iframe {
        border-radius: 8px;
        max-width: 100%; /* Ensure responsiveness */
    }


/* Product Grid */
.product-grid {
    /*display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/ /* Responsive grid */
    /*gap: 30px;
    margin-top: 30px;*/
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    
}

.product-card {
    background-color: var(--background-color-card-light);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden; /* Ensures image corners are rounded with card */
    text-align: center;
    padding-bottom: 20px; /* Space for button */
    flex-basis: 30%
}

    .product-card img {
        width: 100%;
        height: 290px; /* Fixed height for consistent card appearance */
        object-fit: cover; /* Ensures images cover the area without distortion */
        border-bottom: 1px solid var(--border-color-light);
        margin-bottom: 15px;
    }

    .product-card h3 {
        font-size: 1.3em;
        color: var(--text-color-dark);
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .product-card .product-description {
        font-size: 0.95em;
        color: var(--text-color-soft);
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .product-card .btn {
        display: inline-block;
        background-color: var(--button-primary-color);
        color: var(--text-color-light);
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

        .product-card .btn:hover {
            background-color: var(--button-primary-hover-color);
        }

/* Product Detail Page */
.product-detail {
    display: flex;
    flex-wrap: wrap; /* Allows stacking on small screens */
    gap: 40px;
    background-color: var(--background-color-card-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-images {
    flex: 1; /* Takes available space */
    min-width: 300px; /* Minimum width before wrapping */
    text-align: center;
}

    .product-images img:first-child { /* Main product image */
        width: 100%;
        max-height: 500px;
        object-fit: contain; /* Ensures entire image is visible */
        margin-bottom: 20px;
        border: 1px solid var(--border-color-light);
        border-radius: 5px;
    }

.thumbnail-gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

    .thumbnail-gallery img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border: 2px solid var(--border-color-medium);
        border-radius: 4px;
        cursor: pointer;
        transition: border-color 0.3s ease;
    }

        .thumbnail-gallery img:hover,
        .thumbnail-gallery img.active {
            border-color: var(--button-primary-color);
        }

.product-info {
    flex: 2; /* Takes more space */
    min-width: 300px; /* Minimum width before wrapping */
}

    .product-info h1 {
        font-size: 2.5em;
        color: var(--text-color-dark);
        margin-bottom: 15px;
    }

    .product-info .product-description-full {
        font-size: 1.1em;
        color: var(--text-color-medium);
        margin-bottom: 2rem;
        border-bottom: 1px solid var(--border-color-light);
    }

        .product-info .product-description-full p {
            font-size: 1.1rem;
            color: var(--text-color-medium);
            margin-bottom: 2rem;
        }

    .product-info ul {
        list-style: disc;
        margin-left: 20px;
        margin-bottom: 20px;
    }

        .product-info ul li {
            margin-bottom: 8px;
        }

    .product-info table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 25px;
    }

        .product-info table td {
            padding: 10px;
            border: 1px solid var(--border-color-light);
        }

        .product-info table tr:nth-child(even) {
            background-color: var(--background-color-table-even);
        }

    .product-info .btn {
        margin-right: 15px;
    }

    .product-info .contact-for-quote {
        display: inline-block;
        background-color: var(--accent-color);
        color: var(--text-color-light);
        padding: 12px 25px;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        margin-right: 15px;
        font-weight: bold;
        border: none;
        cursor: pointer;
    }

        .product-info .contact-for-quote:hover {
            background-color: var(--accent-dark-color);
        }

    .product-info .back-to-products {
        display: inline-block;
        background-color: var(--background-color-section-light-grey);
        color: var(--text-color-dark);
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color 0.3s ease, color 0.3s ease;
        border: 1px solid var(--border-color-dark);
        font-weight: bold;
    }

        .product-info .back-to-products:hover {
            background-color: #e0e0e0; /* Keeping this specific grey hover as it's slightly different */
            color: var(--text-color-dark);
        }

.sku {
    color: var(--text-color-subtle);
}

.price {
    background: var(--background-color-section-light-grey);
    padding: 1rem 2rem;
    margin-bottom: 2rem
}

/* Product Page Specific Styles */
.section-intro {
    text-align: center;
    font-size: 1.1em;
    color: var(--text-color-soft);
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
}

.product-category-overview {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color-light);
    border-top: 1px solid var(--border-color-light);
    background-color: var(--background-color-section-subtle);
}

.category-link {
    background-color: var(--background-color-section-light-grey);
    color: var(--text-color-dark);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap; /* Prevent wrapping */
}

    .category-link:hover {
        background-color: var(--accent-color);
        color: var(--text-color-light);
    }

.category-heading {
    font-size: 2.5em;
    color: var(--text-color-dark);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .category-heading::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background-color: var(--accent-color);
        margin: 10px auto 0;
        border-radius: 1.5px;
    }

.category-description {
    text-align: center;
    font-size: 1em;
    color: #777; /* Keeping this specific grey for descriptions */
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}
/* Product Detail Page Specific Styles */
.product-category {
    font-size: 1.1em;
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.product-brief-description {
    font-size: 1.2em;
    color: #444; /* Keeping this specific grey */
    margin-bottom: 30px;
    font-style: italic;
}

.sub-heading {
    font-size: 1.8em;
    color: var(--text-color-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color-light);
    padding-bottom: 5px;
}

.product-info ul {
    list-style: none; /* Remove default bullet */
    margin-left: 0;
    margin-bottom: 20px;
    padding-left: 0;
}

    .product-info ul li {
        margin-bottom: 10px;
        padding-left: 25px; /* Space for custom bullet */
        position: relative;
        color: var(--text-color-medium);
    }

        .product-info ul li::before {
            content: "\f00c"; /* Font Awesome checkmark icon */
            font-family: "Font Awesome 6 Free";
            font-weight: 900; /* For solid icon */
            color: var(--success-color);
            position: absolute;
            left: 0;
            top: 0;
        }

.product-info table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    font-size: 1em;
}

    .product-info table td {
        padding: 12px 15px;
        border: 1px solid var(--border-color-medium);
        text-align: left;
    }

    .product-info table tr:nth-child(even) {
        background-color: var(--background-color-table-even);
    }

    .product-info table td:first-child {
        font-weight: bold;
        color: var(--text-color-dark);
        width: 30%;
    }





/* ---------------------------------------------------------------- media quires ------------------------------------------------------------------------- */

/* ----------------------------------------------media quires  for 1200 px ---------------------------*/
@media (max-width: 1200px) {
    .hero-section .slider-container {
        padding-bottom: 66.66%; /* Approx 4:3 for wider screens, can adjust as needed */
    }
}

/* ----------------------------------------------media quires  for 1024 px ---------------------------*/
@media (max-width: 1024px) {
    .slide-content h2 {
        font-size:2.8rem
    }
    .features-grid > :last-child {
        grid-column: 1 / -1; /* span all columns */
    }
    .numbers-grid > :last-child {
        grid-column: 1 / -1; /* span all columns */
    }

    .blog-grid > :last-child {
        grid-column: 1 / -1; /* span all columns */
    }

}

/* ----------------------------------------------media quires  for 992 px ---------------------------*/
@media (max-width: 992px) {
    .hero-section .slider-container {
        padding-bottom: 75%; /* 4:3 Aspect Ratio */
    }

    .slide-content {
        padding-bottom:5rem
    }
    .slide-content h2 {
        font-size: 2.8em;
    }


    .slide-content p {
        font-size: 1.1em;
    }

    .numbers-grid, .features-grid, .blog-grid, .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .features-grid > :last-child {
        grid-column: 1 / -1; /* span all columns */
    }
    .story-content {
        flex-direction: column; /* Stack on tablet */
        text-align: center;
    }

    .story-image, .story-text {
        min-width: unset; /* Remove min-width to allow full stacking */
        width: 100%;
    }

    .about-section, .about-section.reverse-layout {
        flex-direction: column;
        text-align: center;
    }

    .about-image, .about-text {
        min-width: unset;
        width: 100%;
    }

}
/* ----------------------------------------------media quires  for 768 px ---------------------------*/
@media (max-width: 768px) {

    .hero-section .slider-container {
        padding-bottom:70%; /* 3:4 Aspect Ratio (portrait-like) */
    }

    .slide-content h2 {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 1em;
        margin-bottom: 15px;
    }
    .slide-content {
        padding-bottom: 2rem
    }
    .hero-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .prev, .next {
        font-size: 24px;
        padding: 10px;
        margin-top: -16px;
    }

    .company-numbers-section h2,
    .company-story-section h2,
    .quality-assurance-section h2,
    .latest-blogs-section h2 {
        font-size: 2em;
    }

    .number-card h3 {
        font-size: 2.5em;
    }

    .numbers-grid, .features-grid, .blog-grid, .footer-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .footer-col {
        text-align: center;
    }

        .footer-col p {
            padding: 0 10px; /* Adjust text padding for small screens */
        }

        .footer-col .social-icons {
            justify-content: center;
            display: flex; /* Center social icons */
        }

    /* Header Container on Mobile */
    header .container {
        flex-direction: row; /* Keep logo and toggle on the same row */
        justify-content: space-between; /* Space them out */
        align-items: center; /* Vertically align them */
        padding: 10px 20px; /* Add some horizontal padding */
        position: relative; /* Make header container relative for absolutely positioned menu */
    }

    .logo h1 {
        font-size: 1.8em; /* Slightly smaller logo for mobile */
    }

    /* Navigation Area on Mobile */
    nav {
        /* Remove width: auto; or width: 100% from here */
        /* It needs to simply contain the toggle, not dictate full width */
        position: static; /* Nav itself doesn't need to be relative, container is. */
        display: block; /* Allows content to flow */
        text-align: right; /* Align hamburger to the right */
    }

        /* Mobile Menu Links (Hidden by default) */
        nav .nav-links {
            display: none; /* Hidden by default on mobile */
            flex-direction: column; /* Stack links vertically when active */
            width: 100%; /* Take full width of the screen */
            background-color: var(--background-color-card-light);
            position: absolute; /* Position absolutely relative to 'header .container' */
            top: 100%; /* Place it directly below the header */
            left: 0;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2); /* Slightly stronger shadow */
            border-top: 1px solid var(--border-color-light);
            z-index: 1000; /* Ensure it's on top of other content */
            overflow-x: hidden; /* Prevent horizontal scrollbar on the menu itself */
        }

            /* Class added by JS to show the menu */
            nav .nav-links.active {
                display: flex;
            }

    /* Hamburger Menu Toggle Icon */
    .menu-toggle {
        display: block; /* Show hamburger icon on mobile */
        font-size: 1.8em;
        cursor: pointer;
        color: var(--text-color-dark);
        padding: 5px; /* Add some padding for easier tapping */
        margin-left: auto; /* Push it to the right within its flex container */
    }

    /* Individual Menu List Items */
    nav ul li {
        margin: 0; /* Remove horizontal margin */
        width: 100%; /* Full width for each item */
        border-bottom: 1px solid var(--border-color-light); /* Separator for menu items */
    }

        nav ul li:last-child {
            border-bottom: none; /* No border for the last item */
        }

        nav ul li a {
            padding: 15px 20px; /* Larger tap area */
            text-align: center;
            width: 100%; /* Make link fill list item */
            display: block; /* Ensure padding applies to the whole area */
        }


    /* Mobile Dropdown (Products Submenu) */
    .dropdown .dropbtn .fas {
        display: inline-block; /* Show caret again for dropdown on mobile */
        margin-left: 5px;
    }

    .dropdown-content {
        position: static; /* Remove absolute positioning */
        box-shadow: none;
        border-radius: 0;
        background-color: var(--background-color-submenu);
        width: 100%;
        margin-left: 0;
    }

        .dropdown-content a {
            padding-left: 40px; /* Indent submenu items further (less than 60px to avoid overflow) */
            border-top: 1px solid var(--border-color-light); /* Separator for submenu items */
            background-color: var(--background-color-submenu); /* Ensure consistent background */
            text-align: left; /* Align submenu text to the left */
        }

    /* --- General Responsive Adjustments for other sections --- */
 

    .slide-content h2 {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 1em;
        margin-bottom: 15px;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .prev, .next {
        font-size: 24px;
        padding: 10px;
        margin-top: -16px;
    }

    .company-numbers-section h2,
    .company-story-section h2,
    .quality-assurance-section h2,
    .latest-blogs-section h2 {
        font-size: 2em;
    }

    .number-card h3 {
        font-size: 2.5em;
    }

    .numbers-grid, .features-grid, .blog-grid, .footer-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .footer-col {
        text-align: center;
    }

        .footer-col p {
            padding: 0 10px;
        }

        .footer-col .social-icons {
            justify-content: center;
            display: flex;
        }

    .section-intro {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .product-category-overview {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .category-link {
        width: 80%; /* Make category links wider on mobile */
    }

    .category-heading {
        font-size: 2em;
        margin-top: 40px;
    }

    .category-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .service-card h3 {
        font-size: 1.5em;
    }

    .contact-layout {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info-block, .contact-form-block {
        min-width: unset;
        width: 100%;
    }

        .contact-info-block h2, .contact-form-block h2 {
            font-size: 1.8em;
        }

        .contact-info-block p {
            font-size: 1em;
        }

    .page-title {
        font-size: 2.5em;
    }

    .about-text h2 {
        font-size: 1.8em;
    }

    .about-text p {
        font-size: 1em;
    }

    .product-grid {
        gap: 30px;
        flex-direction: column;
    }
    .product-card {
        padding-bottom: 20px;
        flex-basis: 32%;
    }

}


/* ----------------------------------------------media quires  for 425 px ---------------------------*/
@media (max-width: 425px) {
    .contact-info-block, .contact-form-block {
        flex: 1;
        min-width: 300px;
        padding: 15px;
        border-radius: 8px;
    }
    .container {
        width:95%;
    }

    .contact-form {
        padding:15px
    }

    .slide-content {
        padding-bottom: 0.5rem;
        padding: 10px 5px;
        max-width:100%;
        border-radius:4px
        
    }
        .slide-content h2 {
            font-size: 1.0rem;
            margin-bottom: 10px;
        }
        .slide-content p {
            font-size: .7rem;
        }
    .hero-btn {
        padding: 5px 10px;
        font-size: 0.9em;
    }
}


/* ----------------------------------------------media quires  for 375 px ---------------------------*/
@media (max-width: 375px) {
}
