.home-page {
  background-image: url("../../images/banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: grid;
  align-items: center;
}
.home-contents {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.home-content {
  padding-top: 20px;
  color: #fff;
}
.home-content h4 {
  font-size: 26px;
  font-weight: 600;
}
.home-content p {
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
}
.home-content2 {
  background-color: #fff;
  width: 50%;
  padding: 5px 0 5px 15px;
  border-radius: 20px;
}
.search-tabs {
  display: flex;
  gap: 3px;
  margin-top: 70px;
  margin-left: -12px;
  /* border-bottom: 1px solid #008fff; */
}
.search-tabs button {
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 10px;
  background-color: #0a1c2a5e;
  border-radius: 5px 5px 0 0;
  /* background-color: #ffffff5e; */
}
.search-tabs button:hover {
  background-color: #0a1c2a48;
}

/* Create an active/current tablink class */
.search-tabs button.active {
  background-color: #ffffff5e;
}
/* private section  */
.private {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  padding-top: 10px;
  background-color: #f7f6f6;
}

/* consultant section starts  */
.consultant {
  background-color: #e7f5ff;
}
.details-data {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
}
.details {
  height: 123px;
  width: 500px;
}
.detail2 {
  background-color: #fff;
  padding: 30px;
}
.details img {
  width: 100%;
}
.plus-icon {
  position: relative;
  float: right;
  margin-top: -30px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #008fff;
  cursor: pointer;
}
.icon-plus {
  position: absolute;
  font-size: 20px;
  left: 11px;
  top: 10px;
  color: #fff;
}
.card-plus-icon {
  position: relative;
  float: right;
  margin-top: -20px;
  margin-bottom: -10px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: #0a5fa0;
  cursor: pointer;
}
.card-icon-plus {
  position: absolute;
  font-size: 16px;
  left: 8px;
  top: 7px;
  color: #fff;
}
.cltdoc h1 {
  font-size: 60px;
  color: #363660;
}
.doc-cards {
  display: flex;
  /* padding: 30px; */
  padding-left: 40px;
  gap: 20px;
}
.card img {
  height: 200px;
}
.doc-view {
  text-align: center;
  padding: 10px 0 20px 0;
}
.doc-view a {
  border: 1px solid rgb(201, 199, 199);
  padding: 7px 34px;
  background-color: #f7f6f6;
}

/* doctor section  */
.doctor-section {
  background-image: url("../../images/doctor.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  backdrop-filter: 1;
  height: 100vh;
}
.doctor h1 {
  padding: 80px 40px;
  font-size: 80px;
  color: #1d1d84;
}
.register {
  padding-inline: 40px;
}
.register a {
  background-color: crimson;
  color: #f7f6f6;
  padding: 15px 30px;
  border: 0;
  border-radius: 3px;
  font-size: 20px;
}
/* specializations details v */
.spec-based-result {
  display: flex;
  justify-content: space-around;
  gap: 50px;
  flex-wrap: wrap;
  padding: 30px;
}
.child {
  display: flex;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.data-holder {
  float: left;
  width: 100%;
  margin-bottom: 10px;
  padding: 20px 15px 20px 15px;
  background-color: #ebeef0;
  border: solid 1px #dedede;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tq-page {
  display: grid;
  justify-content: center;
  align-content: center;
  height: 80vh;
  text-align: center;
}

/* thank page  */

.thank-container {
  background-color: #f8f9fa;
  height: 80vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.verified-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 40px;
  text-align: center;
  width: 100%;
  max-width: 400px;
}
.verified-card .icon {
  font-size: 48px;
  color: #00c853;
  margin-bottom: 20px;
}
.verified-card h3 {
  margin-bottom: 10px;
}
.verified-card p {
  color: #6c757d;
}
.verified-card .btn-primary {
  background-color: #3f51b5;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 16px;
}
.verified-card .btn-primary:hover {
  background-color: #3949ab;
}

@media (max-width: 576px) {
  .home-contents {
    display: none;
  }
  .home-page {
    height: 70vh;
  }
}
