body {
    margin: 0;
    font-family: Arial, sans-serif;
}
/* Header */
header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Logo */
.logo img {
    max-width: 120px;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

/* Active Link */
nav ul li a.active,
nav ul li a:hover {
    color: #08a816;
    border-bottom: 2px solid#35ac06;
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle div {
    width: 30px;
    height: 3px;
    background: black;
    margin: 5px;
    transition: transform 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Hide desktop menu */
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: white;
        width: 220px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        padding: 10px;
        border-radius: 5px;
    }

    /* Show menu when toggled */
    nav ul.show {
        display: flex;
    }

    /* Menu toggle button */
    .menu-toggle {
        display: flex;
    }
}
.banner {
    
    
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.banner img { 
    width: 100%;
    height: auto;
}
/* Product Section */
.products {
    display: flex;
    gap: 20px ;
    justify-content: center;
    padding-top: 20px;
}

.product {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%; /* Adjust as needed */
    
}

.product img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.product:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.overlay a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
}
/* Tablet Styles */
@media (max-width: 768px) {
    .products {
        gap: 15px;
        padding-top: 15px;
        flex-direction: column;
        align-items: center;
    }
    .product {
        width: 80%; /* Larger items on tablet */
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .products {
        gap: 5px;
        padding-top: 5px;
    }
    .product {
        width: 100%; /* One item per row */
    }
}

/* About Section */
.about_area {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

/* About Content & Stats Grid */
.about-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    gap: 40px;
}

/* About Text Content */
.about-content {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.about-content button {
    padding: 10px 20px;
    border: 1px solid black;
    background: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease;
}

.about-content button:hover {
    background: black;
    color: white;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    max-width: 900px;
}

/* Individual Stat Box */
.stats-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.stats-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: #f9f9f9;
}

/* Text Styles */
.stats-item h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #444;
}

.stats-item p {
    font-size: 22px;
    font-weight: bold;
    color: #222;
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
    .about-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-content {
        max-width: 100%;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr); /* Two per row */
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr); /* Single column */
        gap: 15px;
        justify-content: center;
    }
}



      /* Company Section */
.company-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: black;
    color: white;
    padding: 50px;
    flex-wrap: wrap;
}

/* Company Images */
.company-images {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company-images img {
    width: 100%;
    border-radius: 10px;
}

/* Company Content */
.company-content {
    width: 45%;
}

/* Steps */
.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.steps div {
    text-align: center;
    flex: 1;
    position: relative;
    font-weight: bold;
}

/* Numbered Steps */


/* Headings & Text */
.company-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.company-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Certifications Grid */
.certifications {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.certifications div {
    flex: 1 1 45%;
    padding: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .company-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px;
    }

    .company-images {
        width: 80%;
    }

    .company-content {
        width: 100%;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .steps div {
        margin-bottom: 10px;
    }

    .certifications {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .company-images {
        width: 100%;
    }

    .steps div span {
        font-size: 16px;
        padding: 4px 8px;
    }
}


        
                .our_product {
                    display: flex;
                    align-items: flex-start;
                    padding:4% 50px;
                }
                .our_product_menu {
                    width: 20%;
                }
                .our_product_menu h2 {
                    font-size: 24px;
                }
                .our_product_menu ul {
                    list-style: none;
                    padding: 0;
                }
                .our_product_menu ul li {
                    padding: 10px;
                    border-left: 3px solid transparent;
                    cursor: pointer;
                }
                .our_product_menu ul li.active {
                    border-left: 3px solid black;
                    font-weight: bold;
                }
                .our_product_menu button {
                    padding: 10px 20px;
                    border: 1px solid black;
                    background: none;
                    cursor: pointer;
                    font-size: 16px;
                    margin-top: 10px;
                }
                .our_product_display {
                    width: 70%;
                    display: none;
                }
                .our_product_display.active {
                    display: grid;
                    grid-template-columns: repeat(3, 1fr);
                    gap: 20px;
                }
                .our_product_display img {
                    width: 100%;
                    border-radius: 10px;
                }

                /* Tablet Styles */
                @media (max-width: 768px) {
                    .our_product {
                        flex-direction: column;
                        padding: 4% 20px;
                        align-items: center;
                    }
                    .our_product_menu {
                        width: 100%;
                        text-align: center;
                    }
                    .our_product_display.active {
                        grid-template-columns: repeat(2, 1fr);
                    }
                    .our_product_menu ul li {
                        text-align: center;
                    }
                    .our_product_menu button {
                        position: static;
                        display: inline-block;
                    }
                }

                /* Mobile Styles */
                @media (max-width: 480px) {
                    .our_product {
                        padding: 4% 10px;
                        align-items: center;
                    }
                    .our_product_display.active {
                        grid-template-columns: 1fr;
                    }
                    .our_product_menu ul li {
                        padding: 8px;
                        text-align: center;
                    }
                    .our_product_menu button {
                        width: 50%;
                        position: static;
                        margin-bottom: 20px;
                    }
                }


                .news_container {
                    max-width: 1200px;
                    margin: 20px auto;
                    padding: 20px;
                    background: white;
                }
                h2 {
                    text-align: center;
                }
                .news_section {
                    display: flex;
                    gap: 20px;
                    flex-wrap: wrap;
                }
                .news-card {
                    flex: 1;
                    min-width: 300px;
                    background: #fff;
                    border-radius: 5px;
                    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                    overflow: hidden;
                }
                .news-card img {
                    width: 100%;
                    height: 250px;
                    object-fit: cover;
                }
                .news-content {
                    padding: 15px;
                }
                .news-date {
                    font-size: 14px;
                    color: #777;
                }
                .news-title {
                    font-size: 18px;
                    font-weight: bold;
                    margin: 10px 0;
                }
                .news-description {
                    font-size: 14px;
                    color: #555;
                }
                .view-more {
                    display: inline-block;
                    padding: 8px 12px;
                    margin-top: 10px;
                    border: 1px solid #000;
                    text-decoration: none;
                    color: #000;
                    border-radius: 3px;
                }
                .view-more:hover {
                    background: #000;
                    color: #fff;
                }


                .info_background {
                    background: url('./Photo/news/download.webp') no-repeat center center/cover;
                    height: 40vh;
                    display: flex;
                    align-items: center;
                    justify-content: flex-end;
                    padding-right: 50px;
                }
                .info-box {
                    background: white;
                    padding: 20px;
                    border-radius: 5px;
                    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                    max-width: 350px;
                }
                .info-box h2 {
                    margin: 0 0 15px;
                    font-size: 20px;
                }
                .info-box p {
                    margin: 5px 0;
                    font-size: 14px;
                    color: #333;
                }



                .footer {
                    background-color: #111;
                    color: white;
                    padding: 0 30px;
                    display: flex;
                    justify-content: space-between;
                    align-items: flex-start;
                    flex-wrap: wrap;
                }
        
                .footer h3 {
                    font-size: 18px;
                    margin-bottom: 10px;
                    font-weight: bold;
                }
        
                .footer p, .footer a {
                    font-size: 14px;
                    color: #ccc;
                    text-decoration: none;
                    line-height: 1.6;
                }
        
                .footer a:hover {
                    color: #fff;
                    text-decoration: underline;
                }
        
                .footer_column {
                    flex: 1;
                    min-width: 200px;
                }
        
                .footer_column ul {
                    list-style: none;
                }
        
                .footer_column ul li {
                    margin-bottom: 8px;
                }
        
                .copyright {
                    text-align: center;
                    padding: 15px 0px;
                    font-size: 14px;
                    border-top: 1px solid #464646;
                    background-color: #111;
                    color: #ffffff;
                    
                }
        
                .copyright a {
                    color: #1e90ff;
                    text-decoration: none;
                }
        
                .copyright a:hover {
                    text-decoration: underline;
                }
        
                .scroll_top {
                    position: fixed;
                    bottom: 20px;
                    right: 20px;
                    background: #444;
                    color: white;
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    cursor: pointer;
                    transition: background 0.3s;
                }
        
                .scroll_top:hover {
                    background: #666;
                }





