/* TOP HEADER */
.section-header {
  background-color: var(--purple);
  padding: 0.8rem 1.2rem;
  width: 100%;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.profile-image {
  background-color: var(--white);
  max-width: 50px;
  max-height: 50px;
  overflow: hidden;
  border: var(--white) 2px solid;
  border-radius: 50%;
}
.profile-image img {
  max-width: 100%;
  max-height: 100%;
}
.profile-info {
  color: var(--white);
}
.profile-info h2 {
  font-weight: 500;
}
.cart > a > img {
  width: 25px;
}
/*BOTTOM NAVIGATION BAR */
.section-navbar {
  /* overflow: hidden; */
  background-color: var(--white);
  position: fixed;
  bottom: 0;
  width: 100%;
  border-top: 1px solid var(--grey);
  border-radius: 1rem 1rem 0 0;
}

.nav-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
}

.nav-item {
  text-align: center;
}
.nav-item > a {
  text-decoration: none;
}
.nav-item > a > p {
  font-size: 12px;
  color: var(--grey);
}

.nav-item > a > .active {
  color: var(--purple);
  font-weight: 600;
}

/* SECTION APPOINTMENT */
.section-appointment,
.section-top-services {
  border-bottom: 5px solid var(--transparent-grey);
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}
.cards > a {
  text-decoration: none;
  cursor: pointer;
}
.cards > a > .card {
  text-align: center;
  border: 1px solid var(--grey);
  padding: 2rem;
  border-radius: 1rem;
  background-color: var(--white);
}

.card p {
  font-size: 12px;
}

/* FEATURED SERVICE */

.top-services {
  padding-right: 0;
}
.top-services-heading-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 2rem;
}
.top-services-heading-container a,
.heading-container a {
  color: var(--purple);
  font-weight: 500;
}
.services {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  margin-top: 2rem;
  justify-content: space-between;
}
.services::-webkit-scrollbar {
  width: 0px !important;
}
.services a {
  text-decoration: none;
}
.service {
  /* overflow: hidden; */
  min-width: 270px;
  background-color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--grey);
}

.service img {
  width: 100%;
}
.service-content {
  padding: 1rem;
}
.service h3 {
  color: var(--black);
}
.service p {
  color: var(--grey);
  font-weight: 400;
  margin: 1rem 0;
}
.service a {
  color: var(--purple);
  font-weight: 500;
}
/* PHARMACY */
.pharmacy-container {
  padding-top: 0;
}
.pharmacy {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--light-purple);
  padding: 2rem;
  border-radius: 1rem;
}

/* FEATURED PLAN */
.section-featured-plans {
  margin-bottom: 70px;
}
.heading-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.plan-card {
  padding: 0.5rem;
  border-radius: 1rem;
  border: 1px solid var(--grey);
}
.plan-card img {
  border-radius: 0.5rem;
  max-width: 100%;
}
.plan-content h4 {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.plan-content a {
  color: var(--purple);
  font-weight: 500;
}
.plan-content h3 {
  color: var(--black);
  font-weight: 500;
  margin-bottom: 0.5rem;
  margin-top: 0.7rem;
}
.action-buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.action-buttons button {
  margin-bottom: 10px;
}
.action-buttons a img {
  width: 40px;
}
/* ================================= */
/* ========= SERVICE PAGE ========= */
/* ================================= */
.section-all-services {
  margin-bottom: 70px;
}
.services-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.services-container .service {
  min-width: 100%;
}

.services-container .service h3 {
  font-size: 0.9rem;
  color: var(--purple);
}
.services-container .service p {
  font-size: 0.6rem;
}
.services-container .service a {
  font-size: 0.6rem;
}

/* ================================= */
/* ========= SINGLE SERVICE PAGE ========= */
/* ================================= */
.section-single-service {
  margin-bottom: 70px;
}
.single-service img {
  max-width: 100%;
}
.single-service-content h2 {
  font-weight: 500;
}
.single-service-content-list ul {
  padding-left: 2rem;
}
.action-button-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 1rem;
  text-align: center;
}
.action-button-container button {
  padding: 0.5rem 1.5rem;
}

/* ================================= */
/* ========= APPOINTMENTS PAGE ========= */
/* ================================= */
/* SEARCH BAR */
.search-bar {
  background-color: var(--light-grey);
  display: flex;
  padding: 0.8rem 1rem;
  gap: 1rem;
}
.search-bar input {
  width: 100%;
  background-color: #f0f0f000;
  border: none;
  height: 1.5rem;
}
/* CARDS */
.seaction-search-bar .container,
.section-consultation-types .container {
  padding-bottom: 0;
}
.single-consultation a .image {
  background: url(../images/in-person-consultation.jpg);
  min-height: 110px;
  background-size: cover;
  background-position: right;
  display: flex;
  align-items: center;
}
.single-consultation a .image h3 {
  margin-left: 1rem;
  color: var(--white);
}
.single-consultation a .image h3 {
  margin-left: 1rem;
  color: var(--white);
}
.single-consultation .content {
  background-color: #f0f0f0;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  font-size: 14px;
}
.single-consultation .content a {
  color: var(--purple);
  font-weight: 600;
}
/* ================================= */
/* ========= DOCTORS PAGE ========= */
/* ================================= */
.doctor-information {
  display: flex;
  gap: 2rem;
  background-color: var(--light-purple);
  padding: 1rem;
  align-items: center;
  border-radius: 10px;
}
.doctor-information img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}
.doctor-information h2,
.doctor h2 {
  font-weight: 600;
}
.doctor-information .designation {
  font-size: 0.6rem;
}
.doctor-information .experience {
  font-size: 0.7rem;
}
.doctor-information .details {
  color: var(--purple);
  font-weight: 600;
}
/* ================================= */
/* =========SINGLE DOCTORS PAGE ========= */
/* ================================= */
.section-appointment-time {
  margin-bottom: 70px;
}
.single-doctor-information img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}
.doctor {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.doctor .designation {
  font-size: 0.7rem;
}
.doctor-summary-wrapper {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.experience {
  margin-top: 1rem;
}
.experience p {
  font-size: 16px;
  margin-bottom: 0.3rem;
  font-weight: 500;
}
.experience .details {
  padding: 0.5rem 1.3rem;
  background-color: var(--light-purple);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.experience .details img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}
.experience .details .certificate {
  width: 20px;
  height: 30px;
  object-fit: cover;
}
.biography {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--grey);
}
.section-doctor-information .container,
.section-doctors-consultation .container {
  padding-bottom: 0;
}
.types {
  display: flex;
  gap: 1rem;
}

.type input[type="radio"]:checked {
  accent-color: var(--purple);
}
.type input[type="radio"]:checked + label {
  color: var(--purple);
  font-weight: 500;
}
/* APPOINTMENT */
.appointments {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--light-purple);
  margin-top: 1rem;
}
/* APPOINTMENT TIMINGS */
.timings {
  display: flex;
  font-size: 10px;
  gap: 1rem;
  flex-wrap: wrap;
}
.timings label {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid var(--black);
  cursor: pointer;
}
.timings label:hover,
.timings label:focus {
  background-color: var(--white);
}
.timings input[type="radio"] {
  display: none;
}
.timings input[type="radio"]:checked + label {
  background-color: var(--purple);
  color: #fff;
}
.book-appointment {
  text-align: center;
}
.book-appointment .btn-primary {
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
}
