* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  width: 100%;
}

.navbar {
  background-color: #0202029f;
  color: #d3c2c24f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  flex-wrap: wrap;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f1ededc8;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #fefafadc;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: orange;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 0.1rem;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    
  }
}




  /* here we design hero section  */

  
  
  #hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
  }
 

  
  #hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }
  
  .hero-container {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .hero-images {
    display: flex;
    height: 100%;
    transition: transform 1s ease-in-out;
  }
  
  .hero-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
  }
  
  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    top: 0;
    left: 0;
  }
  
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 1rem;
    z-index: 2;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin: 1rem 0;
  }
  
  .hero-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1rem;
    z-index: 2;
  }
  
  .prev-btn, .next-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
  }
  
  .prev-btn:hover, .next-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .prev-btn, .next-btn {
      font-size: 1.2rem;
      padding: 8px;
    }
  }
  
  @media (max-width: 480px) {
    .hero-content h1 {
      font-size: 1.5rem;
    }
  
    .hero-content p {
      font-size: 0.9rem;
    }
  
    .prev-btn, .next-btn {
      font-size: 1rem;
      padding: 6px;
    }
  }
  

  /* here we design our service section */

.services {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #444;
}


  /* here is The End of  our service section */
  


  
.products {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.products h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 1rem;
  color: #444;
}

  /* here we design footer section */

  
/* Footer styling */
/* Footer styling */
.footer {
  background-color: #333;
  color: #fff;
  padding: 20px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
}

.footer h3 {
  margin-bottom: 15px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
 
}

.footer-section ul li a:hover {
  color: #ff9900;
}

/* Social media styling */
.social-icons a {
  color: #fff;
  font-size: 1.5em;
  margin: 0 10px;
  transition: color 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ff9900;
}

.contact-info p{
  margin-block: 5px;
  
}

/* Copyright styling */
.footer-copyright {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  font-size: 0.9em;
  color: #aaa;
}

/* here  we design footer section  */

.contactUs{
  display: flex;
  justify-content: center;
  align-items: center;
}




/*end of footer  */

  /* // here is media querries  */

  @media (max-width:500px){
    .nav-links li a{

      font-size: 12px;
    }

    .brand-name {
      font-size: 12px;
    }


  }


  @media (max-width:700px){
    .hero-section img{
      min-width: 400px;
      max-height:420px;
    }

    .hero-section {
    justify-content: center;
    }


  }

  /* Responsive styling */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
  }

 

 
}