* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #fff;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;  
    background-color: #1a1a1a;
    padding: 1rem 2rem;
    position: relative;
    max-width: 100%;
    transition: background-color 0.3s ease;
  }
  
  .logo img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(130, 241, 230, 0.549);
    transition: all 0.3s ease;
    object-fit: contain;
    background-color: #fff;
    border: 1px solid #ddd;
    /* margin-right: 250px; */
    margin-left: 10px;
  }
  
  .logo img:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(67, 72, 21, 0.521);
    border-color: #223523;
  }
  
  .navbar-list {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .navbar-item a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .navbar-item a:hover {
    color: #ffeb3b;
  }
  
  .navbar-item a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 3px;
    background-color: #ffeb3b;
    transition: width 0.3s ease;
  }
  
  .navbar-item a:hover::after {
    width: 100%;
  }
  
      body {
        background-color: #121212;
        color: #fff;
        font-family: Arial, sans-serif;
        padding: 40px;
      }
      .container {
        max-width: 600px;
        margin: auto;
        background-color: #1f1f1f;
        padding: 30px;
        border-radius: 10px;
      }
      h2 {
        text-align: center;
        margin-bottom: 20px;
        color: #FFD700;
      }
      label {
        display: block;
        margin-top: 15px;
        font-weight: bold;
      }
      input[type="text"], input[type="tel"], input[type="email"], textarea {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        border: none;
        border-radius: 5px;
        background-color: #2b2b2b;
        color: #fff;
      }
      textarea {
        resize: vertical;
      }
      button {
        margin-top: 20px;
        padding: 10px 20px;
        background-color: #FFD700;
        border: none;
        border-radius: 5px;
        color: #121212;
        font-size: 16px;
        cursor: pointer;
      }
      .success-message {
        text-align: center;
        color: #4CAF50;
        font-size: 18px;
        margin-top: 20px;
      }
  
  
          /* Navbar (unchanged) */
          .navbar {
              display: flex;
              justify-content: space-between;
              align-items: center;
              background-color: #181c1ca7;
              padding: 1rem 2rem;
              position: relative;
              transition: background-color 0.3s ease;
              margin-bottom: 100px;
          }
  
          .logo img {
              height: 80px;
              width: 80px;
              border-radius: 50%;
              box-shadow: 0 2px 6px rgba(130, 241, 230, 0.549);
              transition: all 0.3s ease;
              object-fit: contain;
              background-color: #fff;
              border: 1px solid #ddd;
              margin-right: 200px;
          }
  
          .logo img:hover {
              transform: scale(1.08);
              box-shadow: 0 4px 12px rgba(67, 72, 21, 0.521);
              border-color: #223523;
          }
  
          .navbar-list {
              list-style: none;
              display: flex;
              gap: 2rem;
          }
  
          .navbar-item a {
              text-decoration: none;
              color: #fff;
              font-size: 1.1rem;
              position: relative;
              transition: color 0.3s ease;
          }
  
          .navbar-item a:hover {
              color: #ffeb3b;
          }
  
          .navbar-item a::after {
              content: '';
              position: absolute;
              left: 0;
              bottom: -5px;
              width: 0%;
              height: 3px;
              background-color: #ffeb3b;
              transition: width 0.3s ease;
          }
  
          .navbar-item a:hover::after {
              width: 100%;
          }
  
          .d-flex {
    display: flex;
    align-items: center;
    margin-left: 20px;
    position: relative; /* اضافه شد */
  }
  
  .form-control {
    position: relative;
    padding: 10px 40px 10px 15px;
    border: 2px solid #444;
    border-radius: 25px;
    background-color: #2b2b2b;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 200px;
    margin-left: -39px;
  }
  
  .form-control:focus {
    outline: none;
    border-color: #ffeb3b;
    box-shadow: 0 0 8px rgba(221, 207, 76, 0.563);
    width: 250px;
  }
  
  .form-control::placeholder {
    color: #aaa;
  }
  
  .btn-outline-success {
    display: none; /* Hide the button */
  }
  
  /* Search icon inside input */
  .d-flex::after {
    content: "\f002";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px; /* تغییر از 35px به 20px */
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .form-control:focus + .btn-outline-success + ::after,
  .form-control:focus ~ ::after {
    color: #ffeb3b;
  }
  
  /* Responsive adjustments */

  
  
  
  
  
   
  
          /* Footer (unchanged) */
          .footer {
              background-color: #1e1e1e;
              color: #ccc;
              font-family: Arial, sans-serif;
              padding: 2rem;
              margin-top: 100px;
  
          }
  
          .footer-top {
              display: flex;
              justify-content: space-between;
              align-items: flex-start;
              flex-wrap: wrap;
              margin-bottom: 2rem;
              border-bottom: 1px solid #333;
              padding-bottom: 2rem;
          }
  
          .footer-logo img {
              width: 120px;
              margin-bottom: 1rem;
          }
  
          .footer-logo p {
              font-size: 0.9rem;
              color: #aaa;
          }
  
          .footer-middle {
              display: grid;
              grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
              gap: 1.5rem;
              margin-bottom: 2rem;
          }
  
          .footer-column h3 {
              color: #fff;
              margin-bottom: 1rem;
              font-size: 1.1rem;
          }
  
          .footer-column ul {
              list-style: none;
              padding: 0;
          }
  
          .footer-column li {
              margin-bottom: 0.5rem;
          }
  
          .footer-column a {
              text-decoration: none;
              color: #ccc;
              transition: color 0.3s ease;
          }
  
          .footer-column a:hover {
              color: #f5a623;
          }
  
          .social-icons a {
              display: inline-block;
              width: 40px;
              height: 40px;
              line-height: 40px;
              background-color: #2b2b2b;
              border-radius: 50%;
              text-align: center;
              margin-right: 0.5rem;
              color: #ccc;
              transition: background-color 0.3s ease;
          }
  
          .social-icons a:hover {
              background-color: #f5a623;
              color: #fff;
          }
  
          .footer-bottom {
              display: flex;
              justify-content: space-between;
              align-items: center;
              flex-wrap: wrap;
              border-top: 1px solid #333;
              padding-top: 1.5rem;
              color: #777;
              font-size: 0.9rem;
          }
  
          .footer-links a {
              color: #ccc;
              margin-left: 1rem;
              text-decoration: none;
              transition: color 0.3s ease;
          }
  
          .footer-links a:hover {
              color: #f5a623;
          }
  
  
  
          @keyframes bounce {
              0%, 80%, 100% {
                  transform: scale(0);
              }
              40% {
                  transform: scale(1.0);
              }
          }
  
          @media (max-width: 992px) {
              .product-container {
                  flex-direction: column;
                  align-items: center;
              }
              
              .product-image {
                  width: 100%;
                  max-width: 450px;
              }
          }
  
          @media (max-width: 576px) {
              .product-actions {
                  flex-direction: column;
              }
              
              .action-btn {
                  width: 100%;
              }
          }
  /* Reset default margin and padding for body and html */
  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
  }
  
  /* Navbar styling */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a1a;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  /* Footer styling */
  .footer {
    background-color: #1e1e1e;
    color: #ccc;
    font-family: Arial, sans-serif;
    padding: 2rem;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  /* Main content styling */
  .main-content {
    min-height: calc(100vh - [navbar_height] - [footer_height]);
    padding-bottom: 100px; /* برای جلوگیری از همپوشانی با فوتر */
  }
  
  