*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rethink Sans", sans-serif;
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1212px;
  margin: 0 auto;
  padding: 0 16px;
}

a {
  display: inline-block;
}

body {
  overflow-x: hidden;
  background-color: #f1f1f1;
}

img {
  vertical-align: bottom;
  display: inline-block;
}

a,
button {
  text-decoration: none;
  transition: all 0.5s ease;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

.social-icons {
    display:flex;
    gap:10px;
}
header {
  background-color: #ffffff;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
header .container > a {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav_content {
  display: flex;
  gap: 15px;
  align-items: center;
}
@media (max-width: 991px) {
  .nav_content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 1rem;
    gap: 2rem;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
  }
  .nav_content.active {
    right: 0;
  }
}

.nav_menu {
  color: #000000;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}
.nav_menu:hover {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .nav_menu {
    font-size: 1.2rem;
  }
}

.nav_btn {
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-size: 1rem;
}
.nav_btn:hover {
  background-color: #939393;
  color: #000000;
}
@media (max-width: 991px) {
  .nav_btn {
    padding: 0.8rem 1.2rem;
    font-size: 1.2rem;
  }
}

.nav_social {
  padding: 5px;
  border-radius: 10px;
  background-color: #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav_social:hover {
  background-color: #939393;
  color: #000000;
}
.nav_social img {
  width: 20px;
  height: 20px;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  z-index: 1001;
}
@media (max-width: 991px) {
  .hamburger {
    display: block;
  }
}
.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.menu-overlay.active {
  display: block;
}

.hero {
  padding: 100px 0 250px;
  text-align: center;
  background-image: url("./assets/hero_bg.webp");
  background-size: 100% 100%;
}
.hero .container {
  max-width: 700px;
}

.heading {
  font-size: 70px;
  line-height: 1.02;
}

.desc {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.5;
}

.heo_btn {
  margin-top: 50px;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 24px;
  background-color: #000000;
  border-radius: 10px;
  color: #ffffff;
}
.heo_btn:hover {
  background-color: #939393;
  color: #000000;
}

.contact {
  transform: translateY(-50%);
}
.contact .container {
  padding: 50px;
  background-color: #ffffff;
}

.sm_heading {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.sm_heading::before {
  content: "";
  width: 17px;
  height: 23px;
  background-color: #000000;
}

form {
  margin-top: 20px;
}
form .inputs {
  display: flex;
  gap: 20px;
}
form .inputs input {
  width: 100%;
  padding: 15px 20px;
  background-color: rgba(147, 147, 147, 0.6);
  border-radius: 10px;
  border: none;
  color: #000000;
  outline: none;
}
form .inputs input::-moz-placeholder {
  color: #000000;
}
form .inputs input::placeholder {
  color: #000000;
}
form button {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  background-color: transparent;
  border: none;
  padding: 10px 30px;
  width: 100%;
  border-radius: 10px;
}
form button:hover {
  background-color: #939393;
}

.service {
  text-align: center;
  padding-bottom: 100px;
}

.service_list {
  margin-top: 50px;
  display: flex;
  text-align: start;
}

.service_item:not(:last-child) {
  padding-right: 40px;
  border-right: 2px solid #000000;
}
.service_item:not(:first-child) {
  padding-left: 40px;
}

.service_name {
  font-size: 28px;
  font-weight: 700;
  margin-top: 10px;
}

.service_btn {
  margin-top: 20px;
  font-size: 18px;
  padding: 15px 24px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 5px;
}
.service_btn:hover {
  color: #000000;
  background-color: #939393;
}

.doctor {
  padding: 100px 0;
  background-color: #ffffff;
  text-align: center;
}

.doc_list {
  margin-top: 30px;
  display: flex;
  gap: 70px;
}

.doc_item {
  width: 100%;
  border: 2px solid #ccc;
  padding: 30px 45px;
  text-align: start;
  position: relative;
}

.doc_sp {
  position: absolute;
  left: 0;
  top: 100%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  background-color: white;
  padding: 5px;
  font-weight: bold;
}

.doc_name {
  font-size: 24px;
  text-transform: capitalize;
  line-height: 1;
}
.doc_name span {
  font-size: 16px;
}

.doc_detail {
  margin-top: 10px;
  font-size: 16px;
}

.about {
  padding: 100px 0;
}
.about .container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about .container .left,
.about .container .right,
.about .container .right img {
  width: 100%;
}

.subheading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 20px;
  list-style: disc;
  margin-top: 20px;
  font-size: 20px;
}

.gallery {
  text-align: center;
}

.swiper,
.swiper-wrapper {
  width: 100%;
}

.swiper-slide img {
  width: 100%;
}

.swiper {
  margin-top: 30px;
}

.gallery {
  background-color: #ffffff;
  padding: 100px 0;
}

.paras {
  padding: 100px 0;
}
.paras .heading {
  text-align: center;
}
.paras .desc {
  text-align: justify;
}
.paras .desc a {
  font-weight: 600;
  color: #000000;
}
.paras .desc a:hover {
  text-decoration: underline;
}

footer {
  background-color: #ffffff;
  padding: 2rem 0;
  font-family: Arial, sans-serif;
  color: #333;
}
footer .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  footer .container {
    grid-template-columns: 1fr 2fr 1fr;
  }
}
footer .footer_left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
footer .footer_left img {
  max-width: 150px;
  height: auto;
}
footer .footer_social {
  display: flex;
  gap: 1rem;
}
footer .footer_social a {
  display: inline-block;
  transition: transform 0.3s ease;
  background-color: #000000;
  padding: 10px;
}
footer .footer_social a:hover {
  transform: scale(1.1);
}
footer .footer_social a img {
  width: 32px;
  height: 32px;
}
footer .footer_middle {
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
  text-align: justify;
}
@media (max-width: 767px) {
  footer .footer_middle {
    order: 3;
    grid-column: 1/-1;
  }
}
footer .map {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  footer .map {
    height: 100%;
    min-height: 200px;
  }
}
@media (max-width: 767px) {
  footer .map {
    order: 2;
  }
}
@media (max-width: 767px) {
  footer .container {
    display: flex;
    flex-direction: column;
  }
  footer .footer_left {
    align-items: center;
    text-align: center;
  }
  footer .footer_social {
    justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */