body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #292828;
      color: #fff;
      
    }
    nav span{
      font-family: "Odor Mean Chey", serif;
      font-weight: 400;
      font-style: normal;
    }
    header{
      font-family: "Odor Mean Chey", serif;
      font-weight: 400;
      font-style: normal;
    }
    header option{
      font-family: "Odor Mean Chey", serif;
      font-weight: 400;
      font-style: normal;
    }
    header {
      background: linear-gradient(to bottom, #3a3a3a, #1a1a1a);
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .marquee{
      font-family: "Odor Mean Chey", serif;
      font-weight: 400;
      font-style: normal;
    }

    header .logo {
    display: flex;           
    align-items: center;     
    gap: 10px;              
    }

    header .logo img {
    height: 60px;           
    }

    header .logo h1 {
    margin: 0;
    font-family: 'Odor Mean Chey', sans-serif;
    font-size: 24px;
    line-height: 1;          
    color: gold;
    }

    /* Right side (Login + Language) */
    .header-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .login input {
      background: #000;
      border: none;
      padding: 8px 12px;
      border-radius: 20px;
      color: #fff;
      outline: none;
    }

    .login button {
      background: linear-gradient(to bottom, #ffcc33, #ff9900);
      border: none;
      border-radius: 20px;
      padding: 8px 16px;
      font-weight: bold;
      cursor: pointer;
      color: #000;
    }

    /* Dropdown */
    .lang-select {
      background: #222;
      border: 1px solid #555;
      border-radius: 20px;
      padding: 6px 10px;
      color: #fff;
      font-size: 13px;
      cursor: pointer;
    }

    /* Navigation */
    nav {
      background: #111;
      display: flex;
      justify-content: center;
      gap: 120px;
      padding: 15px 0;
    }
    

    nav a {
      text-decoration: none;
      color: white;
      text-align: center;
      font-size: 14px;
    }

    nav a img {
      display: block;
      margin: 0 auto 5px;
      height: 30px;
    }

    
    nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    position: relative;
  }
    nav a::after{
    content: '';
    width: 0%;
    height: 3px;
    background-color: orange;
    display: block;
    margin: auto;
    transition: 1s all ease;
  }
  nav a:hover::after{
    width: 100%;
  }

    /* Marquee */
    .marquee {
      background: #000;
      color: white;
      padding: 8px;
      font-size: 14px;
      white-space: nowrap;
      overflow: hidden;
      position: relative;
    }

    .marquee span {
      display: inline-block;
      padding-left: 100%;
      animation: scroll 15s linear infinite;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }
    /* Hero */
    .hero {
      margin: 20px auto;
      max-width: 90%;
      position: relative;
      border-radius: 12px;
      overflow: hidden;
    }
    .slideshow-container {
      position: relative;
    }

    .slides {
      display: none;
      animation: fade 1s;
    }
    

    .slides img { width: 100%; border-radius: 12px; }

    /* Prev/Next */
    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      padding: 16px;
      margin-top: -22px;
      color: white;
      font-weight: bold;
      font-size: 24px;
      border-radius: 50%;
      background: rgba(0,0,0,0.4);
      user-select: none;
    }

    .prev { left: 10px; }
    .next { right: 10px; }

    .prev:hover, .next:hover { background: rgba(0,0,0,0.7); }

    /* Dots */
    .dot-container {
      text-align: center;
      position: absolute;
      bottom: 10px;
      width: 100%;
    }

    .dot {
      cursor: pointer;
      height: 12px;
      width: 12px;
      margin: 0 4px;
      background-color: rgba(255,255,255,0.5);
      border-radius: 50%;
      display: inline-block;
    }

    .dot.active, .dot:hover { background-color: #ffcc33; }

     /* ===================media================ */

    /* 📱 Responsive for Tablet and Mobile */
@media (max-width: 1024px) {
  nav {
    gap: 40px;
  }

  .categories {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin: 1rem auto;
    padding: 0 15px;
  }
  
}

@media (max-width: 768px) {
  /* Header layout */
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
  }

  nav {
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 0;
  }

  nav a {
    font-size: 13px;
  }

  /* Hero image smaller */
  .hero {
    margin: 10px auto;
  }

  /* Cards smaller */
  .categories {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    padding: 0 10px;
  }
  .sec1 .logo1{
    scale: 1.5;
    margin-bottom: 15%;
    }
    .sec1 .btn{
        scale: 1.3;
        /* margin-bottom: -15%; */
        margin-left: 25px;
    }
    .sec1 .cardc{
        scale: 0.5;
        margin: -30px;
        margin-left: -250px;
        margin-bottom: -20px;
    }
    
    
}

@media (max-width: 480px) {
  /* Logo text hidden for space */
  .logo h1 {
    font-size: 16px;
  }

  .login input {
    width: 100px;
    font-size: 12px;
  }

  .login button {
    padding: 6px 10px;
    font-size: 12px;
  }

  nav {
    gap: 15px;
  }

  nav a {
    font-size: 12px;
  }

  .categories {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  footer {
    font-size: 12px;
    padding: 20px 10px;
  }
  .sec1 .logo1{
    scale: 1;
    /* margin-bottom: -15%; */
    }
    .sec1 .btn{
        scale: 0.9;
        /* margin-bottom: -15%; */
    }
    .sec1 .cardc{
        scale: 0.4;
        margin: -30px;
        margin-left: -250px;
        /* margin-bottom: -20px; */
    }
  
}
