* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
  }

  button a{
    text-decoration: none;
    color: white;
    font-weight: 500;
  }
  header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(51, 51, 51, 0.95);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    transition: background-color 0.3s;
  }
  .logo {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
  }
  .logo span {
    color: #cc762a;
  }
 
  nav {
    display: flex;
    gap: 1.5rem;
  }
  nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
header button a{
    text-decoration: none;
    color: white;
    font-weight: 500;
}

  .quote-btn {
    background-color: #cc762a;
    border: none;
    padding: 0.5rem 1rem;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
  }
  .hero {
    padding: 9rem 2rem 12rem;
    text-align: left;
    background: #111;
  }
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .hero h1 span {
    color: #cc762a;
  }
  .hero p {
    font-size: 1rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: #ccc;
  }
  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .hero-buttons button,
  .hero-buttons input[type="text"] {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 5px;
    border: none;
  }
  .hero-buttons button {
    background-color: #cc762a;
    color: white;
    font-weight: bold;
    cursor: pointer;
  }
  .hero-buttons input[type="text"] {
    background-color: white;
    color: black;
    width: 200px;
  }

  /* Why Choose Section */
  .about {
    background: #f6f7f9;
    color: #333;
    padding: 4rem 2rem;
    text-align: center;
  }
  .about h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .about h2 span {
    color: #cc762a;
  }
  .about p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #555;
  }
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  .feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  .feature-icon {
    font-size: 2rem;
    color: #cc762a;
    margin-bottom: 1rem;
  }
  .feature h3 {
    margin-bottom: 0.5rem;
    color: #222;
  }
  .feature p {
    color: #555;
  }

  /* About Beniron Section */
  .about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 4rem 2rem;
    background-color: #fff;
    color: #333;
  }
  .about-text {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
  }
  .about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .about-text h2 span {
    color: #cc762a;
  }
  .about-text p {
    margin-bottom: 1rem;
    color: #444;
  }
  .about-text button {
    background-color: #cc762a;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
  }
  .about-image {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
  }
  .about-image img {
    width: 100%;
    border-radius: 12px;
  }

  .product-categories {
    padding: 4rem 2rem;
    background-color: #f6f7f9;
    color: #333;
    text-align: center;
  }
  .product-categories h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  .product-item img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .product-item h3 {
    margin-top: 1rem;
    color: #cc762a;
    font-size: 1.2rem;
  }
  .contact-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1622141335729-15025cf132d9');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
  }
  .contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .contact-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #ddd;
  }
  .contact-section button {
    background-color: #cc762a;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    border-radius: 5px;
    color: white;
    cursor: pointer;
  }

    /* Call to Action Section */
    .call-to-action {
        background-color: #1c1c1c;
        padding: 4rem 2rem;
        text-align: center;
      }
      .call-to-action h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
      }
      .call-to-action h2 span {
        color: #cc762a;
      }
      .call-to-action p {
        max-width: 600px;
        margin: 0 auto 2rem;
        color: #bbb;
      }
      .call-to-action .cta-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
      }
      .call-to-action .cta-buttons button,
      .call-to-action .cta-buttons input[type="text"] {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        border-radius: 5px;
        border: none;
      }
      .call-to-action .cta-buttons button {
        background-color: #cc762a;
        color: white;
        font-weight: bold;
        cursor: pointer;
      }
      .call-to-action .cta-buttons input[type="text"] {
        background-color: white;
        color: black;
        width: 200px;
      }


       /* Contact Us Styles */

    .contact-us-section {
        background-color: #1b1b1b;
        padding: 4rem 2rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        color: white;
      }
      .contact-us-section h2 {
        text-align: center;
        font-size: 2rem;
      }
      .contact-container {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
        width: 100%;
      }
      .contact-info, .contact-form {
        flex: 1 1 300px;
        background-color: #2a2a2a;
        padding: 2rem;
        border-radius: 10px;
      }
      .contact-info h3, .contact-form h3 {
        margin-bottom: 1rem;
        color: #ffa743;
      }
      .contact-info p, .contact-info a {
        margin: 0.5rem 0;
        color: #ccc;
        font-size: 0.95rem;
      }
      .contact-form input, .contact-form textarea {
        width: 100%;
        padding: 0.75rem;
        margin: 0.5rem 0 1rem;
        border: none;
        border-radius: 5px;
      }
      .contact-form button {
        background-color: #ffa743;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 5px;
        color: #000;
        cursor: pointer;
        font-weight: bold;
      }


      /*Footer*/
      footer {
        background-color: #1b1b1b;
        color: #ccc;
        padding: 4rem 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
      }
      footer .footer-col {
        flex: 1 1 200px;
      }
      footer h4 {
        color: white;
        margin-bottom: 1rem;
      }
      footer a {
        display: block;
        color: #ccc;
        text-decoration: none;
        margin-bottom: 0.5rem;
      }
      footer a:hover {
        text-decoration: underline;
      }
      footer .footer-logo {
        font-size: 1.2rem;
        font-weight: bold;
        color: #ffa743;
      }
      footer .social-icons i {
        margin-right: 0.5rem;
      }
      .copyright {
        text-align: center;
        margin-top: 2rem;
        color: #888;
        font-size: 0.875rem;
      }

/*Product Page*/
.product-listing {
    padding: 4rem 2rem;
    background-color: #f7f7f7;
    text-align: center;
  }
  .product-listing h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-content: center;
  }
  .product-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: left;
  }
  .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  .product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .product-card .price {
    color: #ffa743;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  .product-card .desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
  }
  .product-card button {
    background-color: #ffa743;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
  }


  /*Gallery Page*/
  .gallery-folders {
    padding: 4rem 2rem;
    background: #fff;
    text-align: center;
  }
  .gallery-folders h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  .folders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }
  .folder-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 2rem 1rem;
    background-color: #f9f9f9;
    transition: transform 0.2s;
    cursor: pointer;
  }
  .folder-card:hover {
    transform: translateY(-5px);
  }
  .folder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .folder-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1b1b1b;
  }
  .folder-card p {
    color: #777;
  }

  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
  }
  @media (max-width: 768px) {
    header {
      flex-wrap: wrap;
    }
    nav {
      display: none;
      flex-direction: column;
      width: 100%;
      margin-top: 1rem;
    }
    nav.show {
      display: flex;
    }
    .menu-toggle {
      display: flex;
      margin-left: 300px;
    }
    .quote-btn{
        visibility: hidden;
    }
    .hero h1 {
      font-size: 2rem;
    }
    .hero-buttons {
      flex-direction: column;
    }
  }