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

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

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;
}

header {
  padding: 1rem 0;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 100px 0;
}

.logo img {
  max-height: 50px;
  width: auto;
}

.socials {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.socials .nav_menu {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.socials .nav_menu:hover {
  color: #bd0002;
}
.socials a:last-child img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}
.socials a:last-child img:hover {
  transform: scale(1.1);
}

.menu-toggle {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000000;
  margin: 5px 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .socials {
    position: fixed;
    top: 83px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }
  .socials.active {
    left: 0;
  }
  .socials a:last-child {
    margin-top: 1rem;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .socials {
    gap: 1rem;
  }
  .socials .nav_menu {
    font-size: 0.9rem;
  }
}
.hero {
  padding: 335px 0 60px;
  text-align: center;
  background-image: url("./assets/hero_bg.webp");
  background-size: 100% 100%;
}
.hero .container {
  max-width: 1010px;
}

.socialss {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social {
  padding: 10px;
  background-color: #bd0002;
  border-radius: 10px;
}
.social:hover {
  box-shadow: -2px -2px 24px 15px rgba(189, 0, 3, 0.4196078431);
}

.hero_content {
  margin: 20px 0;
  padding: 42px 80px;
  background-color: rgba(189, 0, 3, 0.7137254902);
  color: #ffffff;
}

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

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

.hero_btn {
  padding: 10px 30px;
  background-color: #bd0002;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
  border-radius: 10px;
  margin: 0 auto;
}
.hero_btn:hover {
  box-shadow: -2px -2px 24px 15px rgba(189, 0, 3, 0.4196078431);
}

.service {
  padding: 100px 0;
  background-color: #bd0002;
}
.service .container {
  display: flex;
  gap: 60px;
}
.service .container .left,
.service .container .right {
  width: 100%;
  padding: 40px 50px;
  background-color: #ffffff;
  border-radius: 20px;
}

.sm_heading {
  font-size: 60px;
  text-transform: capitalize;
  position: relative;
}
.sm_heading::after {
  content: "";
  width: 40%;
  height: 2px;
  background-color: #bd0002;
  position: absolute;
  bottom: 0;
  left: 0;
}

form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
form input,
form textarea {
  padding: 20px 30px;
  border-radius: 20px;
  border: none;
  background-color: #f3f3f3;
  outline: none;
}
form button {
  padding: 20px;
  border: 2px solid #bd0002;
  background-color: #bd0002;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 10px;
}
form button:hover {
  box-shadow: -2px -2px 24px 15px rgba(189, 0, 3, 0.4196078431);
}

address {
  margin-top: 50px;
  background-color: #f3f3f3;
  padding: 35px;
  text-align: center;
}
address p {
  color: #8f8f8f;
  margin-top: 30px;
}

.service_list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.service_item {
  display: flex;
  padding: 20px 0;
  align-items: center;
  gap: 20px;
}
.service_item:not(:last-child) {
  border-bottom: 2px solid #e8e8e8;
}

.service_name {
  font-size: 30px;
  font-weight: 500;
  color: #bd0002;
}

.service_charge {
  color: #8f8f8f;
  font-size: 16px;
}

.doctor {
  text-align: center;
}
.doctor .desc {
  text-wrap: balance;
}

.doc_list {
  margin-top: 60px;
  display: flex;
  gap: 50px 20px;
  flex-wrap: wrap;
}

.doc_item {
  width: calc(25% - 15px);
  background-color: #ffffff;
  padding: 50px 20px 20px;
  border-radius: 20px;
  position: relative;
}
.doc_item .doc_degi {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  padding: 10px;
  background-color: #bd0002;
  color: #ffffff;
  border-radius: 10px;
}

.doc_name {
  font-size: 26px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.doc_time {
  font-size: 16px;
}

.gallery {
  background-color: #bd0002;
  color: #ffffff;
  text-align: center;
}
.gallery .desc {
  text-wrap: balance;
}

.swiper {
  width: 100%;
  margin-top: 30px;
}
.swiper .swiper-slide img {
  width: 100%;
}

.cta .container {
  background-color: #bd0002;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.cta_img,
.cta_texts,
.cta_img img {
  width: 100%;
  color: #ffffff;
  text-align: end;
}

.cta_btn {
  padding: 10px 30px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  color: #bd0002;
  border-radius: 10px;
  margin-left: auto;
  margin-top: 20px;
}
.cta_btn:hover {
  background-color: #000000;
  color: #ffffff;
}

.paras {
  padding: 100px 0;
  background-color: #bd0002;
  color: #ffffff;
}
.paras .desc {
  text-align: justify;
}
.paras .desc a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
}
.paras .desc a:hover {
  text-decoration: none;
}

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 */