@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  --primary-color: #086d8b;
  --secondary-color: #c963a8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none !important;
  color: inherit !important;
}

ul {
  padding: 0px !important;
}

li {
  list-style: none;
  color: inherit;
}

main {
  overflow: hidden;
}

#header {
  z-index: 99;
}

/* Primary btn */
#primary-btn {
  background-color: var(--primary-color) !important;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 6px 12px;
  transition: all 0.3s ease;
}

#primary-btn:hover {
  background-color: var(--secondary-color) !important;
}

#secondary-btn {
  background-color: white;
  border: 1px solid var(--primary-color);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 6px 12px;
  transition: all 0.3s ease;
  color: var(--primary-color);
}
#secondary-btn:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color);
  color: white;
}

/* Navbar */
#nav-header {
  background-color: #ffffff;
  z-index: 9999 !important;
}

.header-logo {
  width: 60px;
}

.navbarLinks ul li a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.navbarLinks ul li a:hover {
  color: var(--secondary-color);
}

/* Footer */
.footer {
  background-color: var(--primary-color);
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

.footer-top h2 {
  color: white;
  padding: 5px;
  border-bottom: 2px solid var(--secondary-color);
  border-radius: 10px;
}

.footer-top li {
  color: white;
}

.footer-img {
  width: 120px;
}

.footer-top .brand {
  /* width: 300px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.footer-top .quick-links {
  /* width: 300px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 5px;
}

.footer-top .services {
  /* width: 300px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 5px;
}

.footer-top .support {
  /* width: 300px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 5px;
}

.support-social i {
  background-color: var(--secondary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease-out;
}

.support-social i:hover {
  transform: translateY(-5px);
}

/* .footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
} */

.footer-bottom {
  padding: 20px 10px;
  border-top: 2px solid var(--secondary-color);
  text-align: center;
}

.footer-bottom p {
  text-wrap: wrap;
  color: white;
}

.footer-bottom .brand {
  color: var(--secondary-color);
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1rem;
}

/* floating icon */

#phone {
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 9999;
  width: 50px;
  padding: 10px;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  transition: all 0.4s ease-out;
  border-radius: 10px 0 0 0;
}

#phone:hover {
  width: 150px;
}

#whatsapp {
  position: fixed;
  top: 48%;
  right: 0;
  z-index: 9999;
  width: 50px;
  padding: 10px;
  background-color: var(--secondary-color);
  color: white;
  cursor: pointer;
  transition: all 0.4s ease-out;
  border-radius: 0 0 0 10px;
}

#whatsapp:hover {
  width: 150px;
}

/* Hero Section */
#hero {
  background-color: #dbeafc;
}

.hero-wrapper {
  display: flex;
  align-items: center;
}

.hero-left {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-left-tag {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: bold;
}

.hero-left h1 {
  font-size: 3rem !important;
  font-weight: bolder;
  line-height: 4rem;
}

.hero-left .hero-highlight {
  color: var(--primary-color);
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-right {
  flex: 1;
}
.hero-right img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* About Section */
.about-left-tag {
  color: var(--secondary-color);
  font-size: 1.5rem;
  font-weight: bold;
}

.aboutSection-left h1 {
  font-size: 3rem !important;
  font-weight: bolder;
  line-height: 4rem;
}

.aboutSection-left ul li {
  color: grey;
}

.aboutSection-left .about-highlight {
  color: var(--primary-color);
}

.aboutSection-left p {
  color: grey;
}

/* doctor Section */
#doctor-section {
  background-color: #dbeafc;
}

#doctor-section .doctor-tag {
  width: fit-content;
  font-size: 2rem;
  color: var(--secondary-color);
  font-weight: 500;
  text-align: center;
  place-self: center;
  border-bottom: 2px solid var(--secondary-color);
  border-radius: 10px;
  padding: 0 10px;
}

.doctor-img {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#doctor-section .doctor-card {
  position: relative;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  border: 8px solid var(--secondary-color);
  overflow: hidden;
  box-shadow: 5px 5px 2px var(--primary-color);
}

#doctor-section .doctor-card img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.doctor-card .doctor-card-content {
  position: absolute;
  background-color: var(--primary-color);
  color: white;
  padding: 2px 4px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0; /* Start hidden */
  inset: auto; /* Start out of view */
  transition: all 0.5s ease-in-out; /* Smooth transition */
}
#doctor-section .doctor-card:hover .doctor-card-content {
  inset: 0;
  opacity: 0.9;
}

#doctor-section .doctor-card-content span {
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

#doctor-section .doctor-card-content p {
  color: grey;
  font-size: 1rem;
}

.doctor-right h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.doctor-right span {
  font-size: 1.8rem;
  padding: 20px 0;
}

.doctor-right p {
  color: grey;
}

.doctor-right p::first-letter {
  font-size: large;
}

.doctor-second-section {
  margin: 4rem 0 20px 0 !important;
}

/* Why Choose Us */
#why-container {
  background-color: var(--primary-color);
  padding: 20px 0px;
}

.why-tag {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 5px !important;
}

.why-tag h2 {
  width: fit-content;
  font-size: 2rem;
  color: var(--secondary-color);
  font-weight: 500;
  text-align: center;
  place-self: center;
  border-bottom: 2px solid var(--secondary-color);
  border-radius: 10px;
  padding: 0 10px;
}

.why-tag p {
  color: white;
  font-weight: 500;
}

.why-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px !important;
}

.why-content {
  width: 320px;
  height: 200px;
  padding: 20px;
  border-radius: 10px;
  max-width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  gap: 20px;
  background-color: white;
  box-shadow: 5px 5px 2px;
  transition: transform 0.5s ease-out;
}

.why-content:hover {
  transform: translateY(-8px);
}

.why-content i {
  color: var(--secondary-color);
}

.why-content p {
  font-weight: 400;
  text-align: center;
  color: grey;
}

/* .why-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.why-card {
  width: 250px;
  background-color: grey;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
}

.why-card img {
  width: 100px;
  object-fit: cover;
}

.why-card p {
  font-size: 1.1rem;
  color: white;
  font-weight: bold;
} */

/* CTA Section */
#cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: 20px;
  padding: 20px 20px 0px 20px;
}

.cta-left {
  flex: 2;
}

.cta-left h2 {
  font-size: 2.3rem;
  font-weight: 500;
  color: white;
}

.cta-left p {
  color: white;
}

.cta-right {
  flex: 1;
}

.cta-right img {
  width: 80%;
  height: 80%;
  object-fit: cover;
}

/* Service Section */
.new-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 368px;
  min-height: 300px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.5s ease-out;
}

.service-title {
  width: fit-content;
  color: var(--primary-color);
  padding: 10px;
  place-self: center;
  border-radius: 10px;
  border-bottom: 2px solid var(--primary-color);
}

.new-card:hover {
  transform: translateY(-8px);
}

.new-card h5 {
  font-size: 1.5rem !important;
  font-weight: bold !important;
}

.new-card p {
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  margin: 16px 0 0 0 !important;
  padding: 0 !important;
}

.new-card.new-card1 {
  background-color: #086d8b;
  color: white;
}
.new-card.new-card2 {
  background-color: #f2fbfe;
  color: black;
}
.new-card.new-card3 {
  background-color: #086d8b;
  color: white;
}

.new-card.new-card4 {
  background-color: #f2fbfe;
  color: black;
}
.new-card.new-card5 {
  background-color: #086d8b;
  color: white;
}
.new-card.new-card6 {
  background-color: #f2fbfe;
  color: black;
}

.new-card .icon-round {
  position: absolute;
  top: 0;
  width: 80px;
  height: 70px;
  border-radius: 0 0 50px 50px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-card #icon-round2 {
  background-color: #086d8b;
}

.new-card .icon-round i {
  color: black;
}

/* Expert Service Section */
.expert-service-card {
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 5px 5px 2px var(--primary-color);
  transition: all 0.5s ease-out;
  border: 2px solid var(--primary-color);
}

.expert-service-card h5 {
  text-wrap: nowrap;
}

.expert-service-card p {
  color: grey;
}

.expert-service-card:hover {
  transform: translateY(-8px);
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  box-shadow: none;
}

.expert-service-card:hover p {
  color: white;
}

/* Offer Section */
#offer-container {
  height: 50vh;
  background-image: url('../images/offer-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Gallery Section */
#gallery-img {
  border-radius: 10px;
  overflow: hidden;
  /* height: 300px; */
  transition: all 0.5s ease;
}

#gallery-img:hover {
  transform: scale(1.05);
}

#gallery-img img {
  border-radius: 10px;
  object-fit: contain;
}

/* Contact Section */
.contact-form {
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  overflow: hidden;
}

.contact-form h3 {
  background-color: var(--primary-color);
  color: white;
  padding: 10px;
}

.contact-form form select {
  color: grey;
}

.contact-form form input::placeholder,
textarea::placeholder {
  color: grey;
}

/* Contact right section */
#contact-right-section {
  border: 2px solid var(--primary-color);
  padding: 10px;
  border-radius: 10px;
}

#contact-right-section h3 {
  /* background-color: var(--primary-color); */
  color: var(--primary-color);
  font-weight: bold;
  padding: 10px;
  align-self: center;
  border-radius: 10px;
  border-bottom: 2px solid var(--primary-color);
}

@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column-reverse;
  }

  .hero-left {
    gap: 5px;
  }

  .hero-left-tag {
    font-size: 1rem;
  }

  .hero-left h1 {
    font-size: 1.1rem !important;
    line-height: 1.8rem;
  }

  .hero-left h1 br {
    display: none;
  }

  .hero-btns {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  #primary-btn {
    font-size: 1rem;
    padding: 4px;
    transition: all 0.3s ease;
  }

  #secondary-btn {
    font-weight: 500;
    font-size: 1rem;
    padding: 4px;
  }

  /* About Section */
  .about-left-tag {
    font-size: 1rem;
    font-weight: bold;
  }

  .aboutSection-left h1 {
    font-size: 1.1rem !important;
    font-weight: bolder;
    line-height: 2rem;
  }

  .doctor-right h2 {
    font-weight: 500;
  }

  .doctor-right span {
    font-size: 1.2rem;
  }

  /* cta */
  #cta-container {
    flex-direction: column;
  }
}
.breadcrumb-item+.breadcrumb-item::before {
  color: white !important;
}
