body, h1, h2, h3, p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}
.header{
  position:fixed;
  top: 0;
  left: 0;
  height: 10%;
  width: 100%;
  padding: 1.3rem 10%;
  background:black;
  /* backdrop-filter: blur(50px); */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;

}
.logo{
  font-size: 2rem;
  color: #d12f2f;
  text-decoration: none;
  font-weight: 700;
}
.navbar{
  font-size: 1.15rem;
  color: rgb(25, 103, 213);
  text-decoration: none;
  font-weight: 500;
  margin: 2.5rem;
}
/* Global styles
/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header styles */
/* header {
  background-color: #333;
  color: #fff;
  padding: 10px 0;
} */
/* 
nav ul {
  list-style: none;
} */

/* nav ul li {
  display: inline-block;
  margin-right: 300px;
  padding: 10px 20px;
} */
/* 
nav a {
  text-decoration: none;
  color: #fff;
}   */

/* Hero section styles */
#hero {
  background-color:whitesmoke;
  background-size: cover;
  background-position: center;
  color: #a81313;
  text-align: center;
  padding: 10px 0;
  margin-top: 8.5rem;
}

#hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: center;
}

#hero p {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: center;
}

.cta-button {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

/* Service section styles */
#services {
  padding: 100px 0;
  background-image: url('hos8.jpg');
}

.service {
  margin-bottom: 30px;
}

.service h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Doctor section styles */
#doctors {
  background-color: #f5f5f5;
  padding: 100px 0;
}

.doctor {
  text-align: center;
  margin-bottom: 30px;
}

.doctor img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.doctor h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

/* Contact section styles */
#contact {
  padding: 100px 0;
  text-align: center;
}

#contact p {
  font-size: 18px;
  color: #777;
}