/* Reset */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: "Raleway", sans-serif; line-height: 1.6; color: #333; }

  /* Header */
 /* Header base */
header {
  background: #6e9f9c;
  color: white;
  position: relative;
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Desktop header layout */
.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.left-menu,
.right-menu {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 18px;
}

nav a:hover {
  color: #ffb347;
}

/* Logo */
.logo img {
  vertical-align: middle;
}

/* MOBILE HEADER (hidden on desktop) */
.mobile-header {
  display: none; /* hidden by default (for desktop) */
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  width: 100%;
}

/* Hamburger icon */
.menu-toggle {
  display: none; /* hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  transition: 0.3s;
}

/* Toggle animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile dropdown */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #6e9f9c;
  width: 100%;
  text-align: center;
  position: absolute;
  /*top: 60px;*/
  left: 0;
  z-index: 1000;
}

.mobile-menu a {
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.mobile-menu a:hover {
  background: rgba(255,255,255,0.1);
}

.mobile-menu.active {
  display: flex;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .header-inner {
    display: none; /* Hide desktop header */
  }

  .mobile-header {
    display: flex; /* Show mobile header */
  }

  .menu-toggle {
    display: flex; /* Show hamburger only on mobile */
  }
}


    /* Banner (Fade Slider) */
    .banner {
      position: relative;
      overflow: hidden;
      height: 450px;
    }
    .banner img {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      animation: fade 16s infinite;
    }
    .banner img:nth-child(1) { animation-delay: 0s; }
    .banner img:nth-child(2) { animation-delay: 4s; }
    .banner img:nth-child(3) { animation-delay: 8s; }
    .banner img:nth-child(4) { animation-delay: 12s; }

    @keyframes fade {
      0% { opacity: 0; }
      5% { opacity: 1; }
      25% { opacity: 1; }
      30% { opacity: 0; }
      100% { opacity: 0; }
    }

     
    /* Footer */
    footer {
      text-align: center;
      background: #333;
      color: white;
      padding: 15px;
      margin-top: 40px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      header { flex-direction: column; text-align: center; }
      nav { margin-top: 10px; }
      .about { flex-direction: column; text-align: center; }
      .banner { height: 250px; }
    }
    
    .container
    {
        width:1170px;
        margin:auto;
    }
    
  /* Banner Section */
  

.inner-banner {
  width: 100%;
  height: auto;
  max-height: 500px; /* optional: limit for large screens */
  object-fit: cover;
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .inner-banner {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .inner-banner {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .inner-banner {
    max-height: 220px;
  }
}

/* Price Section */
.price-section {
  text-align: center;
  margin: 40px auto 20px;
  color: #333;
  font-family: 'Raleway', sans-serif;
}

.price-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #4b7a77;
  margin-bottom: 8px;
}

.price-section .shipping {
  font-size: 1rem;
  color: #555;
}

/* Gallery Wrapper */
.gallery-wrapper {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: center;
}

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  width: 100%;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease, transform 0.3s;
  cursor: pointer;
  background: #fff;
}

.gallery img.active {
  opacity: 1;
  transform: translateY(0);
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  font-weight: bold;
  transition: color 0.3s;
}
.lightbox .close:hover {
  color: #ff4c4c;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .price-section h2 {
    font-size: 1.6rem;
  }
  .price-section .shipping {
    font-size: 0.9rem;
  }
  .gallery {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }

  .price-section h2 {
    font-size: 1.4rem;
  }

  .price-section .shipping {
    font-size: 0.85rem;
  }
}

    
    /* Responsive */
    @media (max-width: 768px) {
      .price-section h2 {
        font-size: 22px;
      }
      .gallery {
        gap: 15px;
      }
    }
    
    
/* Business */
h2 {
      text-align: center;
      color: #e94d1a;
      margin-bottom: 20px;
    }

    .content {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }

    .content .text {
      /*flex: 1 1 400px;*/
      /*font-size: 16px;*/
    flex: 10 1 1px;
    font-size: 16px;
    margin-bottom: 101px;
      
    }

    .content .image {
      flex: 1 1 300px;
      text-align: center;
      padding-top:50px;
    }

    .content .image img {
      max-width: 100%;
      height: auto;
      border: 1px solid #ddd;
      border-radius: 4px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.4s ease-in-out;
    }

    .content .image img:hover {
      transform: scale(1.05);
    }

    /* Logo Slider Section */
    .logo-slider {
      background: #f2f2f2;
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      padding: 20px 0;
    }

    .logo-track {
      display: flex;
      width: max-content;
      animation: scroll 25s linear infinite;
      will-change: transform;
    }

    .logo-track img {
      height: 200px;
      margin: 0 40px;
      flex-shrink: 0;
      transition: transform 0.3s ease-in-out;
    }

    .logo-track img:hover {
      transform: scale(1.1);
    }

    @keyframes scroll {
      from { transform: translate3d(0, 0, 0); }
      to { transform: translate3d(-50%, 0, 0); }
    }

    /* Responsive */
/* Responsive Layout Adjustments */
@media (max-width: 1024px) {
  .content {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .content .text {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .content .text h2 {
    font-size: 24px;
  }

  .content .text p {
    font-size: 15px;
    line-height: 1.7;
  }

  .content .image {
    flex: 1 1 100%;
    text-align: center;
  }

  .content .image img {
    max-width: 80%;
    height: auto;
  }
  
  .container
    {
        width:100%;
        margin:auto;
    }
    
}

/* Tablet View */
@media (max-width: 768px) {
    .container
    {
        width:100%;
        margin:auto;
    }
  .content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .content .text {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .content .image img {
    max-width: 85%;
  }

  .logo-slider {
    padding: 15px 0;
  }

  .logo-track img {
    height: 80px;
    margin: 0 25px;
  }

  /* Slower animation for tablet */
  .logo-track {
    animation: scroll 35s linear infinite;
  }
}

/* Mobile View */
@media (max-width: 480px) {
  .container
    {
        width:100%;
        margin:auto;
    }
    
  .content {
    padding: 0 15px;
  }

  .content .text h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .content .text p {
    font-size: 14px;
  }

  .content .image img {
    max-width: 95%;
  }

  .logo-slider {
    padding: 10px 0;
  }

  .logo-track img {
    height: 60px;
    margin: 0 15px;
  }

  /* Even slower scroll on mobile for better readability */
  .logo-track {
    animation: scroll 45s linear infinite;
  }
}

    /* About Section */
    .aboutme {
      display: flex;
      flex-wrap: wrap;
      padding: 50px 10%;
      align-items: center;
      gap: 30px;
      background-color: #323c48;
   	  color: #ffffff;
    }
    .aboutme-text {
      flex: 1;
    }
    .aboutme-text h2 {
      margin-bottom: 20px;
      font-size: 28px;
      color: #5f8a87;
    }
    .aboutme img {
      flex: 1;
      max-width: 100%;
      border-radius: 10px;
    }