/* company.css */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 10px;
}

.navbar {
    /* background-color: #00796b; */
    background-color: #9b3d3d;
    color: white;
    padding: 15px 0;
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

.btn-login {
    background-color: darkgray;
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: bold;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 100px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}
 

.hero {
    position: relative;
    background: url('https://lh3.googleusercontent.com/p/AF1QipOaUlokEI-QRm-qH5J_n3EfWIJRcynrd6IfOYVO=s1360-w1360-h1020-rw') no-repeat center 50% / cover;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(158, 2, 3, 0.5); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
}

.about, .products, .testimonials, .contact {
    padding: 60px 20px;
    background-color: #f6f2e5;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.products .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-item {
    background-color: #e0f2f1;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.testimonial-slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.testimonial {
    background-color: #fafafa;
    padding: 20px;
    border-left: 5px solid #00796b;
    border-radius: 8px;
    font-style: italic;
}

.footer {
    background-color: #9E0203;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    gap: 10px;
  }

  .logo {
    justify-content: flex-start;
    margin-bottom: 10px;
  }
}