/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background: #198754;
    /* Green background */
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-section {
    display: flex;
    align-items: center;
}

.logo-section img {
    height: 50px;
    /* Reduced logo height */
    margin-right: 10px;
}

.company-info h1 {
    margin: 0;
    font-size: 1.2rem;
}

.company-info p {
    margin: 0;
    font-size: 0.9rem;
}

/* Navigation */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Hamburger Toggle (visible on mobile only) */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Slider Section */
#slider {
    position: relative;
}

#slider img {
    width: 100%;
    /* Adjusted slider height */
    object-fit: cover;
}

/* Sections */
section {
    padding: 20px;
}

/* About Us */
.about-content {
    display: flex;
    gap: 20px;
    align-items: center;
}

.about-content img {
    max-width: 300px;
    width: 100%;
    height: auto;
}

/* Team Section */
.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.team-member {
    text-align: center;
    margin-bottom: 20px;
}

.team-member img {
    border-radius: 5%;
    width: 250px;
    height: 250px;
}

/* Products Section */
.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}

.product {
    background: #f9f9f9;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    flex: 1 1 200px;
    margin: 10px;
}

/* Gallery Section */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}

.gallery-item {
    flex: 1 1 200px;
    text-align: center;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Testimonials Section */
.testimonial-slider blockquote {
    font-style: italic;
    background: #f1f1f1;
    padding: 10px;
    border-left: 5px solid #4CAF50;
    margin: 10px 0;
}

.testimonial-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}

/* Footer */
footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #333;
    color: white;
    padding: 20px;
}

footer .footer-section {
    flex: 1 1 200px;
    margin: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    /* Show hamburger on mobile */
    .menu-toggle {
        display: block;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        display: none;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        text-align: center;
        padding: 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }

    /* About Us: stack image and text */
    .about-content {
        flex-direction: column;
    }
}
 .contact-info a {
    color: white;
    text-decoration: none;
  }

  .contact-info a:hover {
    color: lightgray; /* Change color on hover */
  }