:root {
  --primary: #012030;
  --secondary: #13678A;
  --accent: #9AEBA3;
  --light: #fefefe;
  --dark: #012030;
}

body {
  margin: 0;
  font-family: "Funnel Sans", sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Top Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 78px;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1000; /* keep header above */
  background: var(--light);
}

.logo img {
  width: 80px;   
}

/* Language Switcher */
.lang-switch {
  position: relative;
}

.lang-switch img{
   width: 29px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  background: var(--secondary);
  color: var(--light);
  font-weight: bold;
  cursor: pointer;
}

.lang-btn img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
}

.lang-options {
  display: none;
  position: absolute;
  top: 110%;
  right: 0;
  background: var(--light);
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  z-index: 1000;
}

.lang-options div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  color: var(--dark);
  font-weight: bold;
}

.lang-options div:hover {
  background: #f2f2f2;
}

/* Navigation */
.main-nav {
  position: static;
}

.main-nav ul {
  list-style: none;
  display: flex; 
  margin: 0;
  padding: 0;
  gap: 2.3rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: bold;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: var(--secondary);
}

/* Toggle button */
.menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--light);
  font-size: 1.5rem;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* Mobile styles */
@media(max-width:768px){
  .container {
   margin: 0;
  padding: 0;
}
  .top-bar {
    height: 73px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 3px 0px 3px;
  }
  .logo img {
    width: 82px;
  }
  .menu-toggle {
    display: block;
    order: 1;
  }
  .logo {
    order: 2;
    flex: 1;
    text-align: center;
  }
  .lang-switch {
    order: 3;
  }

  .main-nav ul {
    flex-direction: column;
    background: var(--light);
    border-top: 1px solid #ddd;
    margin: 0;
    padding: 0;
    width: 100%;
     gap: 0;
    /* Dropdown positioning */
    position: absolute;
    top: 70px;  /* adjust to header height */
    left: 0;
    right: 0;
    z-index: 999;

    /* Animation */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
  }

  .main-nav ul.show {
    max-height: 400px;
    opacity: 1;
  }

  .main-nav ul li {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
  }

  .main-nav ul li a {
    display: block;
    width: 100%;
    color: var(--dark);
  }

  .main-nav ul li a:hover {
    background: var(--secondary);
    color: var(--light);
  }
}

/* Banner */
.banner {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to right, var(--secondary), var(--primary));
  color: var(--light);
  margin-bottom: 15px;
}
.banner h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0;
}
.banner p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin: 1rem 0;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}
.btn:hover {
  background: #7fd98b;
}

/* Main content */
main {
  padding: 2rem 0;
}

.products {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.8rem;
  padding: 2px;
}

.product {
  background: var(--light);
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 4px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(168, 165, 165, 0.1);
  transition: 0.3s;
}
.product p {
  margin: 0 0 0 0;
  color: var(--dark);
}
.product:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
 .products .product img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: zoom-in;
}

.products .product img:hover {
  transform: scale(2.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding: 8px 12px;
  background: #f8f8f8;
  border-radius: 10px;
}

.product-footer .price {
  font-size: 18px;
  font-weight: bold;
  color: #f80404;
}

.product-footer .btn {
  background:#f2f2f2;
  color: #000000;
  padding: 7px 40px;
  border: 1px solid #000000;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.product-footer .btn:hover {
  background: #f3f1f1;
  box-shadow: 0 4px 12px rgba(112, 110, 110, 0.5);
  transform: translateY(-2px);
}

/* Why Choose Us Section */
 .why {
    text-align: center;
    padding: 40px 20px; 
  }

  .why h2 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
  }

  .why-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
  }

  .why-box {
    flex: 1 1 200px;
    max-width: 220px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .why-box img {
    height: 125px;
    width: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
  }

  .why-box p {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 0px 0px 6px 0px;
  }

  .why-box:hover {
    transform: scale(1.05);
  }

  @media (max-width: 768px) {
    .why-items {
      gap: 20px;
    }
    .why-box img {
      height: 50px;
    }
    .why-box p {
      font-size: 14px;
    }
  }
/* Footer */
footer {
  background: var(--primary);
  color: var(--light);
  text-align: center;
  padding: 2rem 1rem;
}
 
 .logo-strip {
      width: 100%;
      background: #f9f9f9;
      padding: 20px 0;
      overflow: hidden;
      display: flex;
      justify-content: center;
    }

    .logo-track {
      display: flex;
      gap: 60px;
      animation: moveLeftRight 8s linear infinite alternate;
    }

    .logo-strip img {
      height: 80px;
      width: auto;
      transition: transform 0.3s ease;
    }

    .logo-strip img:hover {
      transform: scale(1.1);
    }

    @keyframes moveLeftRight {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-40%); } /* adjust based on total width */
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
      .logo-strip img {
        height: 50px;
      }
      .logo-track {
        gap: 30px;
        animation: moveLeftRight 6s linear infinite alternate;
      }
    }