@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
}

/* header Styles */
header {
  /* background-color: rgb(6, 204, 194); */
  margin: 0 auto;
  /* left-right, top-bottom */
}
img {
  /* width: 200px; */
  /* height: 280px; */
  display: block;
  /* object-fit: cover; */
  /* padding: 20px; */
  /* margin: 0 auto; */
  border-radius: 20px;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  gap: 20px;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  /* border: 2px solid red ; */
}
ul li {
  list-style: none;
  margin-right: 20px;
}
a {
  text-decoration: none;
}
header {
  background-color: salmon;
  margin: 0 auto;
}

nav ul {
  display: flex;
  gap: 30px;
}
/* nav{
  flex-grow: 1;

} */
.primary-btn {
  background-color: rgb(6, 204, 194);
  color: white;
  padding: 10px 20px;
  border: 5px solid greenyellow;
  border-radius: 25px;
}

/* .nav-btn{
  flex-grow: 1;
} */

.logo {
  font-size: 30px;
  font-weight: bold;
  flex-grow: 1;
}

/* hero section style */

.hero {
  height: 500px;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  padding: 100px 0;
  background-color: rgb(129, 158, 25);
}
/* hero styles */
.hero-container {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  gap: 35px;
}
.hero-contant {
  flex-basis: 40%;
}
.hero-img {
  flex-basis: 60%;
  text-align: end;
}
/* .hero-contant{
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  
} */
.hero-contant p {
  margin: 30px 0;
}

/* about style */
.about {
  background-color: bisque;
  padding: 100px 0;
}
.about-container {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  gap: 35px;
}
.about-container > * {
  flex-bas/is: 100%;
}

/* .about-content, .about-img{
  flex-basis: 100%;
 } */

/* services section style */

.service {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px 40px 20px; 
}

.card {
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.card h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #555;
}

.card a {
  display: inline-block;
  margin-top: 10px;
  color: black;
  text-decoration: none;
  font-weight: bold;
}

/* footer section style */

footer {
  color: white;
  background-color: #0a8080;
  padding: 20px;
  text-align: center;
}
