
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, sans-serif;
      background: #f5f5f5;
    }

    .slider {
      position: relative;
      width: 100%;
      max-width: 2200px;
      margin: 0 auto;
      height: 120vh;
      background: #f5f5f5;
      box-shadow: 0 30px 50px #dbdbdb;
      overflow: hidden;
      transition: all 03.ms;
    
    }

    .slide {
      position: relative;
      width: 100%;
      height: 100%;
      transform: scale(30.3s);
    }

    .slide .item {
      width: 200px;
      height: 250px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      box-shadow: 0 30px 40px #50505060;
      background-position: center;
      background-size: cover;
      transition: all 0.5s;
    }

    .slide .item:nth-child(1),
    .slide .item:nth-child(2) {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transform: none;
    }

    .slide .item:nth-child(3) {
      left: 50%;
    }

    .slide .item:nth-child(4) {
      left: calc(50% + 220px);
    }

    .slide .item:nth-child(5) {
      left: calc(50% + 440px);
    }

    .slide .item:nth-child(n + 6) {
      opacity: 0;
      pointer-events: none;
    }

    .item .contents {
      position: absolute;
      top: 50%;
      left: 10%;
      width: 80%;
      color: #fff;
      text-shadow: 0 2px 10px #0008;
      transform: translateY(-50%);
      display: none;
    }

    .slide .item:nth-child(2) .contents {
      display: block;
    }

    .contents .name {
      font-size: 3vw;
      text-transform: uppercase;
      font-weight: bold;
      opacity: 0;
      animation: animate 1s ease-in-out forwards;
    }

    .contents .des {
      margin-top: 1vw;
      margin-bottom: 2vw;
      font-size: 1.2vw;
      line-height: 1.5;
      opacity: 0;
      animation: animate 1s ease-in-out 0.3s forwards;
    }

    .contents button {
      padding: 0.8em 1.6em;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      background: rgba(129, 129, 129, 0.582);
      color: #000;
      font-size: 1em;
      transition: all 0.3s;
      opacity: 0;
      animation: animate 1s ease-in-out 0.6s forwards;
    }

    .contents button:hover {
      background: #6b6969;
      transform: scale(1.05);
    }

    @keyframes animate {
      from {
        opacity: 0;
        transform: translateY(50px);
        filter: blur(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
    }

    .button {
      display: flex;
      justify-content: center;
      gap: 20px;
      position: absolute;
      bottom: 20px;
      width: 100%;
    }

    .button button {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: 2px solid #0008;
      background: rgba(255, 255, 255, 0.7);
      cursor: pointer;
      transition: 0.3s;
    }

    .button button:hover {
      transform: scale(1.1);
      background: #fff;
    }

    /* ======= 📱 Responsive ======= */
    @media (max-width: 992px) {
      .slider {
        height: 100vh;
        border-radius: 0;
      }

      .slide .item {
        width: 100%;
        height: 100%;
        left: 0 !important;
        top: 0 !important;
        transform: none !important;
        border-radius: 0;
      }

      .slide .item:nth-child(n + 3) {
        display: none;
      }

      .item .contents {
        width: 90%;
        left: 5%;
        text-align: center;
      }

      .contents .name {
        font-size: 6vw;
      }

      .contents .des {
        font-size: 3.5vw;
      }

      .contents button {
        font-size: 3.5vw;
      }

      .button {
        bottom: 10px;
      }
    }

    @media (max-width: 576px) {
      .slider {
        height: 100vh;
      }

      .contents .name {
        font-size: 6vw;
      }

      .contents .des {
        font-size: 4vw;
      }

      .contents button {
        font-size: 4vw;
        padding: 8px 16px;
      }
    }

    /* header */
    body {
    font-family: "Poppins", sans-serif;
    background: #f5f5f5;
  }

  /* Navbar */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      background-color: #000;
      color: #fff;
    }

    /* Main navbar */
    nav {
      width: 100%;
      background-color: #00000046;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 40px;
      position: fixed;
      top: 0;
      z-index: 1000;
    }

    .logo {
      color: white;
      font-size: 24px;
      font-weight: bold;
      cursor: pointer;
    }

    .nav-links {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 16px;
      padding: 6px 18px;
      border-radius: 5px;
      transition: 0.3s;
    }

    .nav-links a:hover {
      color: white;
      background-color: #222;
    }

    .nav-links a.active {
      color: white;
      border-bottom: 2px solid #fff;
    }

    .search-box {
      position: relative;
    }

    .search-box .input1 {
      padding: 6px 30px 6px 10px;
      border: none;
      border-radius: 20px;
      outline: none;
      background-color: #ffffffc4;
    }

    .search-box button {
      position: absolute;
      right: 5px;
      top: 3px;
      background: none;
      border: none;
      color: #555;
      cursor: pointer;
      font-size: 16px;
    }

    /* Hamburger icon */
    .menu-icon {
      display: none;
      font-size: 26px;
      cursor: pointer;
      color: white;
    }

    /* Mobile menu overlay */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100%;
      background: linear-gradient(to right,rgb(0, 0, 0),rgb(44, 43, 43), rgb(2, 2, 2));
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 30px;
      transform: translateX(-100%);
      transition: 0.4s ease;
      z-index: 99;
    }

    .mobile-menu.active {
      transform: translateX(0);
    }

    .mobile-menu a {
      color: #ffffff;
      font-size: 26px;
      text-decoration: none;
      transition: 0.3s;
      border-bottom: 1px solid #444;
      padding-bottom: 8px;
    }

    .mobile-menu a:hover {
      color: white;
    }

    .close-icon {
  position: absolute;
  top: 70px;
  right: 25px;
  font-size: 38px;
  color: #f8f8f8;
  cursor: pointer;
}

    /* Responsive */
    @media (max-width: 900px) {
      .nav-links, .search-box {
        display: none;
      }
      .menu-icon {
        display: block;
      }
    }
/* footer */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
     
    }

    
    footer {
      background:black;
      color: #fff;
      padding: 40px 20px;
      box-shadow: inset -1px -1px 15px 11px #958a8a !important;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }

    .footer-section {
      flex: 1 1 220px;
      min-width: 200px;
    }

    .footer-section h3 {
      margin-bottom: 15px;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #ffffff; /* رنگ طلایی-خاکی */
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section ul li {
      margin-bottom: 8px;
    }

    .footer-section ul li a {
      color: #ffffff;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-section ul li a:hover {
      color: #8b8b88;
    }

    .payment-logos img {
      width: 45px;
      margin: 5px;
      filter: brightness(0) invert(1);
    }

    .social-icons a {
      color: #fff;
      margin-right: 12px;
      font-size: 20px;
      text-decoration: none;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #8b8b88;
    }

    .newsletter {
      display: flex;
      flex-direction: column;
      margin-top: 10px;
    }

    .newsletter p {
      font-size: 14px;
      margin-bottom: 10px;
      color: #ddd;
    }

    .newsletter input[type="email"] {
      padding: 10px;
      border: 1px solid #fff;
      border-radius: 3px;
      margin-bottom: 10px;
      background-color: #000;
      color: #fff;
      outline: none;
    }

    .newsletter button {
      background-color: #000;
      color: #fff;
      border: 1px solid #fff;
      padding: 10px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .newsletter button:hover {
      background-color:#5a5a58;
      border-color: #42424179;
      color: #000;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 30px;
      font-size: 14px;
      color: #8b8b88;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        text-align: center;
      }
      .social-icons {
        justify-content: center;
      }
    }
