@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 {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Poppins", Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: inherit;
}
p {
  margin: 0;
  margin-bottom: 1rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}
.navbar {
  background-color: #333;
  color: #fff;
  z-index: 9999;
}
.hero-section {
  background: url("https://via.placeholder.com/1920x600") no-repeat center
    center;
  background-size: cover;
  height: 60vh;
  color: #fff;
}
.hero-section h1 {
  font-size: 3rem;
  margin: 0;
}
.hero-section p {
  font-size: 1.5rem;
}
.title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}
.sub-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}
.card {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}
.card-text {
  font-size: 1rem;
  color: #ffffff;
}

.contact-details {
  padding: 20px;
  border-radius: 5px;
  line-height: 1.5;
}
.appointment-form {
  padding: 20px;
  border-radius: 10px;
}
