/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
    background: #f8f8f8;
    color: #333;
  }
  

    /* Header */


       
    header {
        background-color: #ffa600;
        color: white;
        padding: 15px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
      }
  
      .logo {
        font-size: 24px;
        font-weight: bold;
      }
  
      nav {
        display: flex;
        gap: 20px;
      }
  
      nav a {
        color: white;
        text-decoration: none;
        font-size: 20px;
        transition: color 0.3s ease;
      }
  
      nav a:hover {
        color: #f1c40f;
      }
  
      .contact {
        font-size: 20px;
      }
  
      .header-group {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
        gap: 15px;
      }
  




      /* Hero Section with Image */
      .hero {
        position: relative;
        background-color: #ecf0f1;
        padding: 50px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
  
      .hero img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        margin-bottom: 20px;
      }
  
      .hero-content h1 {
        font-size: 42px;
        margin-bottom: 10px;
        color: #2c3e50;
      }
  
      .hero-content p {
        font-size: 18px;
        color: #34495e;
      }
  
      @media (max-width: 768px) {
        .hero-content h1 {
          font-size: 28px;
        }
  
        .hero-content p {
          font-size: 16px;
        }
  
        .header-group {
          flex-direction: column;
          align-items: center;
          gap: 10px;
          text-align: center;
        }
  
        nav {
          flex-wrap: wrap;
          justify-content: center;
        }
      }



  
  .btn-primary {
    background: #ffd700;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    color: #333;
    transition: background 0.3s;
  }
  
  .btn-primary:hover {
    background: #e6b800;
  }
  
/* abous us */

  .about-us {
    background-color: #e6ffcf;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .about-us .container {
    max-width: 1200px;
    margin: auto;
  }
  
  .about-us h2 {
    text-align: left;
    font-size: 36px;
    color: #2a2a2a;
  }
  
  .about-us .content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
  }
  
  .about-us .text {
    flex: 1 1 60%;
    font-size: 18px;
    color: #444;
    line-height: 1.8;
  }
  
  .about-us .text strong {
    color: #00704a;
  }
  
  .about-us .image {
    flex: 1 1 35%;
    text-align: center;
  }
  
  .about-us .image img {
    max-width: 100%;
    border-radius: 12px;
    
  }
  




/* Whys Choose us */


.choose-us {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
  }

  .choose-us h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
  }

  .choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }

  .choose-item {
    background-color: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }

  .choose-item:hover {
    transform: translateY(-5px);
  }

  .choose-item i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 15px;
  }

  .choose-item h4 {
    font-size: 1.2em;
    margin: 10px 0;
    color: #333;
  }

  .choose-item p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.5;
  }





/* Brand with us */

/* Brand With Us Section Styles */
.brand-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .brand-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
  }
  
  /* Grid container for brand items */
  .brand-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
  }
  
  /* Each brand item box */
  .brand-item {
    width: 150px;
    height: 150px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }
  
  .brand-item:hover {
    transform: scale(1.05);
  }
  
  /* Icon styling */
  .brand-item i {
    color: #28a745;
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  /* Image styling */
  .brand-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
  }
  





  /* Sections */
  .section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: rgb(134, 223, 253);
  }
  
  .products .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .product-card {
    background: #fff;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-card img {
    max-width: 100%;
    border-radius: 10px;
    height: 180px;
    object-fit: cover;
  }
  
  .section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .section p, .section ul {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .why-us ul, .market-trends ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
  }
  
  .why-us li, .market-trends li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: left;
    padding-left: 1.2rem;
    position: relative;
  }
  
  .why-us li::before, .market-trends li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: green;
  }
  
  .contact p {
    font-size: 1rem;
    margin: 0.5rem 0;
  }
  
  footer {
    background: #222;
    color: #aaa;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
  }
  


