/* Reset */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: "Raleway", sans-serif; line-height: 1.6; color: #333; }

    /* Header */
    header {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px 30px;
      background: #6e9f9c;
      color: white;
      flex-wrap: wrap;
    }
    .logo {
      font-size: 22px;
      font-weight: bold;
    }
    
    .logo img{
     width:170px !important;
    }
    nav {
      display: flex;
      gap: 20px;
    }
    nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 19px;
    }
    nav a:hover {
      color: #ffb347;
    }

    /* 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;
    }
    
    .inner-banner
    {
        width:100%;
    }
    /* Price Section */
    .price-section {
      text-align: center;
      margin-bottom: 30px;
    }
    .price-section h2 {
      color: #e74c3c;
      font-size: 26px;
      margin-bottom: 8px;
    }
    .price-section p {
      font-size: 16px;
      color: #444;
    }
    .price-section .shipping {
      margin-top: 5px;
      font-size: 14px;
      color: #666;
    }

    /* Gallery Wrapper */
    .gallery-wrapper {
      width: 100%;
      max-width: 1200px;
      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: 8px;
      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;
    }

    .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);
    }

    /* Close button */
    .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 */
    @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;
    }

    .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 */
    @media (max-width: 768px) {
      .content {
        flex-direction: column;
        text-align: center;
      }
      .logo-track img {
        height: 60px;
        margin: 0 20px;
      }
    }

    @media (max-width: 480px) {
      .logo-track img {
        height: 50px;
        margin: 0 15px;
      }
    }
    
    /* 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;
    }