@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", serif;
}
.container {
  margin: 0 auto;
}
/* header start */
header {
  width: 100%;
}
.logo img {
  width: 50%;
}
nav ul li {
  list-style: none;
  margin: 0 20px;
}
nav ul li a {
  font-weight: 500;
}
nav ul li :hover {
  font-weight: bold;
  text-decoration: underline;
}
/* header end */
/* main */
/* hero content */

.hero-content {
  height: 100vh;
}

.hero-left {
  width: 100%;
}
.hero-left p {
  width: 75%;
  font-size: 20px;
}
/*  hero right */
.hero-right {
  margin-left: 5vw;
  position: relative;
  width: 450px;
  height: 450px;
}

.Baseimg {
  width: 100%;
  height: 100%;
}

.Overlap {
  position: absolute;
  top: 34%;
  left: 53%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: auto;
}
/* hero end */
/* product start */
.product-card {
    background-color: white;
    width: 350px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(151, 137, 137, 0.1);
    transition: transform 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .card-img {
    margin:  0 auto;
    background-color: #f1f1f1;
    width: 300px;
    border-radius: 20px;
  }
  
  .card-img img {
    transition: transform 0.3s ease;
  }
  
  .card-img:hover img {
    transform: scale(1.05);
  }
  /* product-end */
  /* services start */
.service-card{
    background-color: white;
    width: 550px;
    height: 130px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(150, 132, 132, 0.2);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
  }
/* main end */
