*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}
body{
  background:#7091b3;
  color:#222;
}
h1{
    text-align: center;
    margin: 0px;
    background: #7299b1;
}
header{
  background:#0b1b5c;
  color:#fff;
  padding:10px 60px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
  text-align: center;
}

header button{
  background:#22c55e;
  border:none;
  color:#fff;
  padding:8px 16px;
  border-radius:5px;
  cursor:pointer;
}
.hero{
  background:linear-gradient(to right, #e8f6ff, #f4fbff);
  padding:80px 20px;
  text-align:center;
}
.hero h1{
  font-size:36px;
  margin-bottom:10px;
}
.hero p{
  color:#be1313;
  font-size: 33px;
}
.filters{
  display:flex;
  justify-content:center;
  gap:12px;
  margin:40px 0;
  flex-wrap:wrap;
}
.filters button{
  border:none;
  padding:10px 18px;
  border-radius:20px;
  background:#fff;
  cursor:pointer;
  box-shadow:0 2px 6px rgba(0,0,0,.1);
}
.filters .active{
  background:#22c55e;
  color:#fff;
}
.doctors{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
  gap:30px;
  padding:0 20px 80px;
}
.card{
  background:#fff;
  border-radius:15px;
  text-align:center;
  padding:30px 20px;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}
.card img{
  width:120px;
  height:120px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:15px;
}
.card h3{
  font-size:18px;
  margin-bottom:5px;
}
.card p{
  font-size:14px;
  color:#666;
  margin-bottom:15px;
}

.socials{
  display:flex;
  justify-content:center;
  gap:10px;
}
.socials span{
  width:32px;
  height:32px;
  background:#0b1b5c;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  cursor:pointer;
}
.newsletter{
  background:#0b1b5c;
  color:#fff;
  padding:50px 20px;
  display:flex;
  justify-content:center;
}
.newsletter-box{
  max-width:900px;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}

.newsletter-box input{
  padding:12px;
  width:260px;
  border:none;
  border-radius:5px;
}
.newsletter-box button{
  padding:12px 20px;
  background:#22c55e;
  border:none;
  color:#fff;
  border-radius:5px;
}
footer{
  background:#fff;
  padding:60px 20px;
}
.footer-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px,1fr));
  gap:30px;
}
footer h4{
  margin-bottom:15px;
}

footer p, footer li{
  font-size:14px;
  color:#555;
  list-style:none;
  margin-bottom:8px;
}

/* COPYRIGHT */
.copyright{
  text-align:center;
  background:#0b1b5c;
  color:#fff;
  padding:15px;
  font-size:14px;
}
