* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

#bar {
  display: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  margin-right: 8px;
}
nav ul.active {
  display: flex;
}
html,
body {
  width: 100%;
  overflow-x: hidden;
}
body {
  font-family: "Roboto", sans-serif;

}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(3, 111, 119);
  color: white;
  position: fixed;
  width: 100%;
  top: 0%;
  z-index: 100;
  height: 80px;
}
ul {
  display: flex;
}
ul li {
  list-style: none;
}
ul li a {
  text-decoration: none;
  font-size: 20px;
  color: white;
  margin-inline: 22px;
}
ul li a:hover {
  color: black;
}
.logo {
  margin-top: 5px;
  width: 110px;
  height: 110px;

  img {
    width: inherit;
    height: inherit;
  }
}
.main {
  width: 100vw;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  margin-top: 80px;
  background-color: rgb(3, 111, 119);
  color: white;
  padding: 33px;
  overflow: hidden;
}
.main img {
  width: 740px;
}
.main h1 {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: 800;
  font-size: 55px;
}
.mainText {
  margin-top: 43px;
}
.mainText p {
  margin-top: 22px;
  margin-bottom: 40px;
  b {
    letter-spacing: 2px;
  }
}
.mainText a {
  text-decoration: none;
  font-size: 20px;
  color: white;
  margin-inline: 22px;
}
.btns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.mainText button,
.form button {
  background: linear-gradient(135deg, #46949b, #27a2bb);

  color: white;

  padding: 5px 5px;
  margin-top: 80px;
  border: none;

  border-radius: 15px;

 font-size: 22px;

  font-weight: 600;

  cursor: pointer;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);

  transition: all 0.3s ease;
}

.mainText button:hover,
.form button:hover {
  background: linear-gradient(135deg, #00c6d7, #007991);

  color: white;

  transform: translateY(-3px);

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

 .offerBox {
  width: 100%;
  background: linear-gradient(135deg, #007991, #78d7e8);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.box {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60px;
  background: #20a2b9;
  color: rgb(221, 36, 36);
  font-size: 16px;
  font-weight: bold;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offerTrackBox {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding-left: 70px;
}

.offerTrack {
  display: inline-block;
  white-space: nowrap;
  color: white;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  animation: offerMove 18s linear infinite;
  will-change: transform;
}

.offerTrack span {
  display: inline-block;
  margin-right: 45px;
  cursor: pointer;
}

@keyframes offerMove {
  0% {
    transform: translateX(100vw);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 600px) {
  .offerTrackBox {
    padding-left: 65px;
  }

  .offerTrack {
    font-size: 13px;
    animation-duration: 14s;
  }

  .box {
    width: 58px;
    font-size: 14px;
  }
}
.head {
  text-align: center;
  padding: 80px;
}

 .serviceCard {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 55px;
}

.serviceCard .card {
  width: 30%;
  border: 1px solid black;
  padding: 5px;
  margin-top: 22px;
  text-align: center;
  box-sizing: border-box;
  border-radius: 20px;
}

.serviceCard .card img {
  width: 100%;
  border-radius: 20px;
}

/* Mobile View */
@media (max-width: 768px) {
  .serviceCard .card {
    width: 48%;
  }
}
.doctor {
  width: 800px;
  height: 340px;
  position: relative;
  margin: auto;
  margin-top: px;
  overflow: hidden;
}

.team {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  color: white;
  text-align: center;
  transition: all 1s ease;
}
.team img {
  width: 300px;
  height: 300px;
  margin-inline: 20px;
}
.blogs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.blogs .blogCard {
  width: 300px;
  background-color: rgb(0, 99, 99);
  text-align: center;
  color: white;
  margin-inline: 22px;
  border-radius: 20px;
  margin-top: 22px;
  padding: 22px;
}
.blogCard video {
  width: 100%;
  
  /* height: 350px; */
}

.form {
  width: 400px;
  margin: auto;
  padding: 22px;
  background-color: #dbdada;
  text-align: center;
  border-radius: 20px;
}
.form input {
  width: 90%;
  font-size: 20px;
  padding: 11px;
  margin-top: 22px;
  outline: none;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background: linear-gradient(135deg, #0f172a, #134e4a);
  color: white;
  padding: 60px;
  margin-top: 66px;
}
.footer p {
  margin-top: 15px;
}
.text a{
  color: white;
   text-decoration: none;
} 

.social i
{
  color: white;
  padding: 5px;
  
} 
  
.detailCard {
  width: 400px;
  padding: 32px;
  background-color: lightblue;
  text-align: center;
  position: fixed;
  top: 5%;
  left: 50%;
  right: 50%;
  transform: translate(-50%, 40%);

}
.detailCard p {
  margin-top: 22px;
  margin-bottom: 2px;
}
.detailCard h2 {
  margin-top: 22px;
}
.detailCard i {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: black;
  color: white;
  font-size: 22px;
  padding: 8px;
  cursor: pointer;
}

#contact {
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
.contBox1{
    display:flex ;
    
   
  }
.cont {
  width: 200px;
  height: 200px;
  word-wrap: normal;

  background-color: #f4f1f1;
  border: 2px solid #e6e8ef;
  h4 {
    color: #183e6a;
  }
}

.icon {
  width: 55px;
  height: 50px;
  background-color: #285b96;
  align-items: center;
  justify-content: center;
  margin: auto;
  border-radius: 10px;
  padding-top: 10px;
  margin-top: 15px;
  margin-bottom: 10px;
  i {
    color: #f4fbff;
    font-size: 30px;

    align-items: center;
   
  }
}

.para {
 
  color: #969191;
}
.para a {
  text-decoration: none;
  color: #969191;
}

.para a:hover,
.social a:hover {
  color: blue;
}
 

/* ---------Login Page------------- */


.main form {
  width: 30%;
  height: 420px;
  max-width: 400px;

  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.main input,
.main select {
  height: 80px;

  padding: 15px;
}
.main button {
  background: linear-gradient(135deg, #46949b, #9fe0ed);

  color: white;

  padding: 15px 35px;
  margin-top: 3px;
  border: none;

  border-radius: 15px;

  font-size: 22px;

  font-weight: 600;

  cursor: pointer;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);

  transition: all 0.3s ease;
}
.main button:hover {
  background: linear-gradient(135deg, #00c6d7, #007991);

  color: white;

  transform: translateY(-5px);

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 1100px) {
  .main {
    display: block;
    text-align: center;
  }
  .para,
.para a {
  overflow-wrap: break-word;
  word-break: break-word;
}
  
}

@media screen and (max-width: 920px) {
  .doctor {
    width: 90%;
  }
  .doctor img {
    width: 200px;
  }
  .main img {
    width: 500px;
  }
   #map {
    margin: 0;
  }
}

@media screen and (max-width: 780px) {
  .team img {
    margin-inline: 5px;
    width: 200px;
    height: 200px;
  }
  .serviceCard .card {
    width: 48%;
    
  }
  .contBox1{
    display:grid ;
  gap: 3px;
  border-radius: 15px;
   background-color: #f4f1f1;

   
  }
  .cont {
  width: 160px;
  height: 180px;
  
  }
  .para,
.para a {
  overflow-wrap: break-word;
  word-break: break-word;
}

  
}

@media screen and (max-width: 580px) {
  .team img {
    margin-inline: 2px;
    width: 30%;
    height: 100px;
  }
  .main img {
    width: 90%;
  }
  .form {
    width: 80%;
  }
  .para a {
  overflow-wrap: break-word;
  word-break: break-word;
}
.head {
    padding: 40px 10px;
  }

  .serviceCard {
    justify-content: center;
    gap: 12px;
  }

  .serviceCard .card {
    width: calc(50% - 10px);
  }

  .serviceCard .card img {
    height: 140px;
    object-fit: cover;
  }

  .serviceCard .card p {
    font-size: 14px;
  }
  .logo {
  margin-top: 5px;
  width: 90px;
  height: 90px;

  img {
    width: inherit;
    height: inherit;
  }
}
.detailCard {
  width: 300px;
  
}
.head {
    padding: 40px 10px;
  }

  .serviceCard {
    justify-content: center;
    gap: 12px;
  }

  .serviceCard .card {
    width: calc(50% - 10px);
  }

  .serviceCard .card img {
    height: 140px;
    object-fit: cover;
  }

  .serviceCard .card p {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
   .para,
.para a {
  overflow-wrap: break-word;
  word-break: break-word;
}
.serviceCard .card {
    width: 48%;
    margin-inline: 0px;
    
  }
  .head {
    padding: 40px 10px;
  }

  .serviceCard {
    justify-content: center;
    gap: 12px;
  }

  .serviceCard .card {
    width: calc(50% - 10px);
  }

  .serviceCard .card img {
    height: 140px;
    object-fit: cover;
  }

  .serviceCard .card p {
    font-size: 14px;
  }
}
#bar {
  display: none;
}

/* MOBILE */

@media screen and (max-width: 850px) {
  #bar {
    display: block;
  }
 .main {
    display: block;
    text-align: center;
  }
  nav ul {
    display: none;

    position: absolute;
    top: 80px;
    left: 0;

    width: 100%;
    background-color: teal;

    flex-direction: column;
    text-align: center;

    padding: 20px;
  }

  nav ul.show {
    display: flex;
  }
}
.status-responsive {
  width: 130px;
  max-width: 100%;
  font-size: 14px;
  padding: 4px 8px;
  margin: auto;
}

.delete-responsive {
  font-size: 14px;
  padding: 4px 10px;
  white-space: wrap;
}

@media screen and (max-width: 576px) {
  .status-responsive {
    width: 105px;
    font-size: 12px;
    padding: 3px 6px;
  }

  .delete-responsive {
    font-size: 12px;
    padding: 3px 7px;
  }

  .delete-text {
    display: grid;
  }
  .head {
    padding: 40px 10px;
  }

  .serviceCard {
    justify-content: center;
    gap: 12px;
  }

  .serviceCard .card {
    width: calc(50% - 10px);
  }

  .serviceCard .card img {
    height: 140px;
    object-fit: cover;
  }

  .serviceCard .card p {
    font-size: 14px;
  }
}
