*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

html{
  scroll-behavior: smooth;
}

header{
  position:fixed;
  top:0;
  width:100%;
  background:#0a7c7c;
  color:white;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 20px;
  z-index:1000;
}

nav a{
  color:white;
  margin:0 10px;
  text-decoration:none;
}

section{
  padding:80px 20px;
  text-align:center;
}

.home{
  position:relative;
}

.home img{
  width:100%;
  height:90vh;
  object-fit:cover;
}

.home-text{
  position:absolute;
  top:40%;
  left:50%;
  transform:translate(-50%,-50%);
  color:white;
}

.btn{
  background:#0a7c7c;
  padding:10px 20px;
  color:white;
  text-decoration:none;
  display:inline-block;
  margin-top:10px;
}

.doctor-box{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.doctor img{
  width:200px;
  border-radius:10px;
}

ul{
  list-style:none;
}

ul li{
  padding:8px;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:10px;
}

.gallery img{
  width:100%;
  border-radius:10px;
}

.map iframe{
  width:100%;
  height:300px;
  border:0;
}

form{
  max-width:400px;
  margin:auto;
}

form input, form textarea, form button{
  width:100%;
  padding:10px;
  margin:8px 0;
}

footer{
  background:#0a7c7c;
  color:white;
  padding:10px;
}
.site-footer {
  width: 100%;
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 12px 10px;
  font-size: 14px;
}

.site-footer a {
  color: #00bcd4;
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  text-decoration: underline;
  color: #00e5ff;
}
