.about-us-banner {
    background: url('/images/workshop.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.about-banner-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 20px;
    border-radius: 8px;
    max-width: 80%;
    margin: 0 auto;
}

.about-us-banner h1 {
    font-size: 2.5em;
    margin: 0;
}

.about-us-banner p {
    font-size: 1.2em;
    margin: 10px 0 20px;
}

.company-overview, .mission-vision, .team {
    padding: 30px 0;
    text-align: center;
}

.company-overview h2, .mission-vision h2, .team h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #007BFF;
}

.company-overview p, .mission-vision p, .team p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.mission-vision .text-image {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mission-vision .text-image img {
    max-width: 30%;
    height: auto;
    border-radius: 8px;
    flex: 1;
}

.mission-vision .text-image .text {
    flex: 2;
}

.mission-vision {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.team-members {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.team-member {
    text-align: center;
}

.team-member img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.team-member h3 {
    margin-top: 10px;
    font-size: 1.2em;
}

.team-member p {
    font-size: 1em;
    color: #555;
}

@media (max-width: 768px) {
    .mission-vision {
        flex-direction: column;
        align-items: center;
    }

    .team-members {
        flex-direction: column;
        align-items: center;
    }

    .mission-vision .text-image img {
        max-width: 20%;
    }
}




/* Gallery styles */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.gallery img {
    width: calc(33.333% - 10px);
    height: auto;
}


@media (max-width: 768px) {
    .gallery img {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .gallery img {
        width: 100%;
    }

    .mission-vision .text-image img {
        max-width: 100%;
    }
}
.banner, .products-banner, .about-us-banner, .certifications-banner, .market-banner, .contact-banner {
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.banner{
    background: url('/images/banner.jpg') no-repeat center center/cover;
}

.products-banner{
    background: url('/images/factory.jpg') no-repeat center center/cover;
}

.banner-content, .products-banner-content, .about-banner-content, .certifications-banner-content, .market-banner-content, .contact-banner-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 20px;
    border-radius: 8px;
    max-width: 80%;
    margin: 0 auto;
}

.banner h1, .products-banner h1, .about-us-banner h1, .certifications-banner h1, .market-banner h1, .contact-banner h1 {
    font-size: 2.5em;
    margin: 0;
}

.banner p, .products-banner p, .about-us-banner p, .certifications-banner p, .market-banner p, .contact-banner p {
    font-size: 1.2em;
    margin: 10px 0 20px;
}

.banner .btn, .products-banner .btn, .about-us-banner .btn, .certifications-banner .btn, .market-banner .btn, .contact-banner .btn {
    background: #007BFF;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.banner .btn:hover, .products-banner .btn:hover, .about-us-banner .btn:hover, .certifications-banner .btn:hover, .market-banner .btn:hover, .contact-banner .btn:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .banner h1, .products-banner h1, .about-us-banner h1, .certifications-banner h1, .market-banner h1, .contact-banner h1 {
        font-size: 1.8em;
    }

    .banner p, .products-banner p, .about-us-banner p, .certifications-banner p, .market-banner p, .contact-banner p {
        font-size: 1em;
    }
}

.certifications-banner {
    background: url('/images/certification-banner.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.certifications-banner-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 20px;
    border-radius: 8px;
    max-width: 80%;
    margin: 0 auto;
}

.certifications-banner h1 {
    font-size: 2.5em;
    margin: 0;
}

.certifications-banner p {
    font-size: 1.2em;
    margin: 10px 0 20px;
}

.certifications{
    margin: 20px 0;
}
.certifications .text-image {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.certifications .text-image img {
    max-width: 30%;
    height: auto;
    border-radius: 8px;
    flex: 1;
}

.certifications .text-image .text {
    flex: 2;
}

@media (max-width: 768px) {
    .certifications .text-image {
        flex-direction: column;
    }
    .certifications .text-image img{
        /* max-width: 100%; */
        width: 80%;
    }
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

.contact-banner {
    background-image: url('/images/contact-banner.jpg');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    background-attachment: scroll;    
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.contact-banner-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 20px;
    border-radius: 8px;
    max-width: 80%;
    margin: 0 auto;
}

.contact-banner h1 {
    font-size: 2.5em;
    margin: 0;
}

.contact-banner p {
    font-size: 1.2em;
    margin: 10px 0 20px;
}

.contact{
    margin: 20px 0;
}

.contact .text-image {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact .text-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    flex: 1;
}

.contact .text-image .text {
    flex: 2;
}

.contact .contact-info {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    text-align: left;
}

.contact .contact-info li {
    margin-bottom: 10px;
}

.contact .contact-form {
    margin: 40px 0;
    text-align: left;
}

.contact .contact-form h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #007BFF;
}

.contact .contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact .contact-form input, .contact .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact .contact-form button {
    background: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact .contact-form button:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .contact .text-image {
        flex-direction: column;
    }
}
footer {
    background: #f8f8f8;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #e7e7e7;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.footer-nav li {
    display: inline;
    margin: 0 10px;
}

.footer-nav li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.footer-nav li a:hover {
    color: #007BFF;
}

.social-media {
    margin-bottom: 20px;
}

.social-media a {
    margin: 0 10px;
}

.newsletter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter input {
    padding: 10px;
    font-size: 1em;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
}

.newsletter button {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    background: #007BFF;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter button:hover {
    background: #0056b3;
}

header {
    background: #f8f8f8;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-height: 60px;
    font-size: 2em;
    font-weight: bold;
}

.logo a{
    text-decoration: none;
    color: black;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #007BFF;
}

.nav-active {
    display: flex !important;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: black;
    margin: 4px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    /* .logo{display: none;} */
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 45px;
        left: 0;
        background-color: white;
        z-index: 999;
    }

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

    .nav-links li a{
        display: block;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2em;
    }

    .nav-links a {
        font-size: 0.9em;
    }
}
.market-banner {
    background: url('/images/market-banner.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.market-banner-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 20px;
    border-radius: 8px;
    max-width: 80%;
    margin: 0 auto;
}

.market-banner h1 {
    font-size: 2.5em;
    margin: 0;
}

.market-banner p {
    font-size: 1.2em;
    margin: 10px 0 20px;
}

.market .text-image {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.market .text-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    flex: 1;
}

.market .text-image .text {
    flex: 2;
}

.market{
    margin: 1em;
}
@media (max-width: 768px) {
    .market .text-image {
        flex-direction: column;
    }
}

.product-showcase, .product-categories {
    padding: 60px 0;
    text-align: center;
}

.product-showcase h2, .product-categories h2 {
    margin-bottom: 20px;
    font-size: 2em;
    color: #007BFF;
}

.product-grid, .category-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.product-item, .category-item {
    background: #f8f8f8;
    padding: 10px;
    border-radius: 8px;
    width: calc(33.333% - 40px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-item img, .category-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-item h3, .category-item h3 {
    margin: 10px 0;
    font-size: 1.2em;
}

.product-item p, .category-item p {
    font-size: 1em;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .product-item, .category-item {
        width: 40%;
    }

    .product-grid, .category-grid {
        /* flex-direction: column; */
        /* align-items: center; */
    }
}


.product-detail {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.product-image{
    padding: 1em;
    max-width: 50%;
    text-align: center;
}
@media (max-width: 768px) {
    .product-image {
        max-width: 96%;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .product-image {
        max-width: 50%;
    }
}

.product-info {
    flex: 1;
}
@media (min-width: 769px) and (max-width: 1200px) {
    .product-info {
        margin-left: 20px;
    }
}

.product-info h2 {
    margin-top: 0;
}

.price {
    font-size: 24px;
    color: #c00;
    margin: 10px 0;
}

.description {
    margin: 20px 0;
}

.specifications {
    list-style-type: none;
    padding: 0;
}

.specifications li {
    margin-bottom: 10px;
}

.purchase-options {
    margin-top: 20px;
}

.purchase-options button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-right: 10px;
}

.purchase-options button:hover {
    background-color: #0056b3;
}
