General Reset
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
  
  .container {
    width: 100%;
    max-width: 1400px;
    margin: auto;
  }
  
  /* Header */
  .header {
    background-image: url("assetes/nav-logo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    color: #fff;
    padding: 4rem 20px;
  }
  
  .header .container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  
  .nav {
    display: flex;
    margin-left: 20px;
    gap: 20px;
  }
  
  .nav a {
    color: #1d3d5d;
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
  }
  
  .menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* Hero */
  .hero {
    height: 80vh;
    background: url("assetes/hero-banner.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    padding: 2rem 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    width: 100%;
  }
  
  .hero .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #ff5733;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
  }
  
  /* Sections */
  /* section {
    padding: 60px 0;
  } */
  
  h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  /* About */
 .about-us {
    background-image: url("assetes/abouts-background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    color: #fff;
    padding: 2rem 20px;
    color: #1d3d5d;
 }

 .about-us div,
 .about-us h1 {
    max-width: 1400px;
    width: 100%;
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; */
 }

 .product-services {
    width: 100%;
    color: #fff;
    color: #1d3d5d;
 }
 .product-services-container-1 {
    background-image: url("./assetes/product&serives-1.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 20px;
    width: 100%;
 }

 .product-services-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 33%;
 }

 .product-services-container-2 {
    background-image: url("assetes/product-serives.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem 20px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
 }

 .product-services-2-card{
  width: 55%;
  display: flex;
  flex-direction: column;
 }
 .card{
  width: 35%
 }

 footer{
  background-image: url('./assetes/footer-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 20px;
  width: 100%;
 }

 .card>h2{
  width: 200px;
}
 /* Mobile Navigation */
@media screen and (max-width: 768px) {
  .header {
    height: auto;
    padding: 1rem 20px;
  }

  .header .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
  }

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin: 20px 0 0;
    gap: 10px;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 30px;
    right: 20px;
    color: #1d3d5d;
    font-size: 28px;
  }

  .header img {
    width: 150px;
    margin: 10px 0;
  }
  .product-services-container-1{
    height: auto;
  }
  .product-services-container-1>div{
    flex-direction: column;
  }
  .product-services-card{
    width: 100%;
  }
  .product-services-container-2{
    flex-direction: column;
  }
  .card{
    width: 100%;
  }
  .card>h2{
    width: 85% !important;
  }
  .product-services-2-card{
    width: 95%;
  }
}