:root {
  --primary: #4385f5;
  --primary_dark: #3264b8;
  --secondary: #04ce78;
  --white: #ffffff;
  --black: #000000;
  --shadow: -4px 5px 24px 5px rgba(0, 0, 0, 0.089);
}
a,
a img,
button {
  display: inline-block;
  transition: all 0.4s ease-in;
  text-decoration: none;
  vertical-align: bottom;
  cursor: pointer;
}
img {
  display: inline-block;
}
* {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
  color: var(--black);
}

body {
  font-family: "Merriweather Sans", sans-serif;
  overflow-x: hidden;
  font-size: 16px;
  font-weight: 300;
}
.sr-only,
label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.container {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.header_container {
  max-width: 1064px;
  margin: 0 auto;
  z-index: 99999;
  position: relative;
}
.navbar_container {
  flex: 1;
}
.topbar {
  background-color: var(--secondary);
  display: flex;
  justify-content: space-between;
  align-self: center;
  padding: 12px 32px;
}
#currentDateTime {
  color: var(--white);
  line-height: 32px;
}
.socials {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social_icon:hover {
  transform: scale(1.2);
}
.menus {
  padding: 30px;
  display: flex;
  justify-content: center;
  gap: 48px;
  background-color: var(--white);
}
.menu {
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
.menu:hover {
  color: var(--secondary);
}
.menu::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: transparent;
  position: absolute;
  border-radius: 100%;
  left: -15px;
  top: 40%;
  transition: all 0.5s ease-in;
}
.menu:hover::before {
  background-color: var(--secondary);
}
/* Ensuring the hamburger icon is visible */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  cursor: pointer;
  margin: 20px 20px 20px auto;
}

.menu-bar {
  width: 100%;
  height: 3px;
  background-color: var(--white); /* Changed to white for visibility */
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.hero_section {
  margin-top: -90px;
  position: relative;
}
.hero_outer {
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding: 220px 0 270px;
}
.hero_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.hero_heading {
  font-size: 60px;
  line-height: 67px;
  color: var(--primary_dark);
  text-transform: uppercase;
  font-weight: 900;
}
.hero_desc {
  margin: 16px 0 50px;
  font-size: 20px;
}
.btns {
  display: flex;
  gap: 24px;
}
.hero_button {
  font-size: 20px;
  padding: 16px 20px;
  border-radius: 48px;
  border: 2px solid transparent;
}
.hb_1 {
  color: var(--white);
  background-color: var(--secondary);
}
.hb_2 {
  color: var(--black);
  background-color: transparent;
  border-color: var(--black);
}
.hb_1:hover {
  color: var(--black);
  background-color: transparent;
  border-color: var(--black);
}
.hb_2:hover {
  color: var(--white);
  background-color: var(--secondary);
  border-color: transparent;
}
ul {
  list-style: none;
}
.info_box {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 999;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--white);
  transform: translate(-50%, 50%);
  border-radius: 16px;
  padding: 25px;
}
.infos {
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
}
.info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.info_number {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary_dark);
}
.brs {
  position: relative;
}
.brs::before {
  content: "";
  width: 2px;
  height: 60px;
  background-color: var(--primary);
  position: absolute;
  top: 30px;
  right: -30%;
}
.service_section {
  padding: 185px 0 220px;
  position: relative;
}
.service_outer {
  background-image: url(./assets/service_right_bg.webp);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
}
.service_container {
  max-width: 934px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}
.heading {
  font-size: 48px;
  color: var(--primary);
  position: relative;
  margin-bottom: 20px;
}
.heading::before {
  content: "";
  width: 200px;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}
.services {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 50px;
}
.service {
  width: calc((100% / 3) - 22px);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background-color: var(--white);
  position: relative;
  z-index: 10;
}
.service_name {
  font-size: 28px;
  color: #232a53;
  text-transform: uppercase;
}
.service_price {
  color: #8f8f8f;
}
.service_btn {
  font-size: 20px;
  padding: 10px 18px;
  border-radius: 35px;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.service_btn:hover {
  box-shadow: var(--shadow);
}
.service_section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url(./assets/service_bottom_bg.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
.about_conteniner {
  display: flex;
  align-items: end;
  gap: 25px;
  background-image: url(./assets/about_bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-color: var(--primary_dark);
}
.about_left {
  padding: 60px 0 66px;

  margin-left: calc((100vw - 1210px) / 2);
}
.about_heading {
  color: var(--white);
  font-size: 40px;
  position: relative;
}
.about_desc {
  margin: 20px 0 30px;
  color: var(--white);
}
.sea {
  color: var(--white);
  border-color: var(--white);
}
.about_right {
  flex: 1;
  margin-right: calc((100vw - 1440px) / 2);
  position: relative;
}
.about_img {
  position: absolute;
  right: 0;
  bottom: 0;
}
.about_section {
  padding: 50px 0 50px;
}
.doctor_section {
  position: relative;
  padding: 200px 0 0;
}
.doctor_bg_top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-height: 175px;
  transform: rotate(180deg);
}
.doctor_bg_bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-height: 175px;
  transform: translateY(50%);
}
.doctor_container {
  text-align: center;
  position: relative;
}
.doctor_outer {
  background-image: url(./assets/doctor_petarm.webp);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  padding-bottom: 150px;
}
.doctors {
  margin-top: 30px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.doctor {
  width: calc((100% / 3) - 22px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  background-color: var(--white);
  box-shadow: var(--shadow);
  padding: 24px 0 0;
  border-radius: 20px;
  overflow: hidden;
}
.doctor_top {
  text-align: center;
}
.doctor_name {
  font-size: 24px;
  color: var(--primary);
  text-transform: uppercase;
}
.doctor_day {
  font-weight: 700;
}
.doctor_time {
  padding: 10px;
  background-color: var(--secondary);
  font-weight: 700;
  color: var(--white);
}
.gallery_section {
  margin: 100px 0 0;
  position: relative;
  background-image: url(./assets/service_right_bg.webp);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  padding-bottom: 100px;
}
.gallery_container {
  display: flex;
  gap: 25px;
}
.gallery_left {
  text-align: center;
  flex: 2;
}
.gallery_left .gallery_img {
  margin-top: 50px;
}
.gallery_img {
  width: 100%;
}
.gallery_middle {
  flex: 1;
}
.gallery_right {
  flex: 2;
}
.contact_section {
  padding: 100px 0;
}
.contact_container {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 20px;
}
.contact_left,
.contact_right {
  width: 100%;
}
.contact_heading {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
}
form {
  margin-top: 50px;
}
.input {
  width: 100%;
  margin-bottom: 24px;
  padding: 0 0 16px;
  border: none;
  border-bottom: 2px solid var(--black);
  outline: none;
}
.tetx {
  height: 100px;
}
.submit_btn {
  width: 100%;
  padding: 12px;
  color: var(--white);
  background-color: var(--secondary);
  border-radius: 36px;
  font-weight: 800;
  border: none;
}
.map {
  width: 100%;
  height: 564px;
  border-radius: 10px;
}
address {
  background-color: var(--primary);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 20px;
  border-radius: 36px;
}
.footer_top {
  background-image: url(./assets/new/facebook_bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
}
.footer_container {
  display: flex;
  gap: 100px;
}
.footer_middle {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.footer_middle .menu {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  text-wrap: nowrap;
}
.footer_desc {
  font-size: 14px;
  color: var(--white);
  margin-top: 30px;
}
.fd {
  color: var(--white);
  font-size: 14px;
  color: var(--white);
}
.footer_heading {
  color: var(--white);
  margin-bottom: 20px;
}
.footer_right form {
  margin-top: 10px;
  display: flex;
  border-bottom: 2px solid var(--white);
}
.footer_input {
  flex: 1;
  padding: 5px;
  outline: none;
  background-color: transparent;
  border: none;
  color: var(--white);
}
.footer_submit {
  background-color: transparent;
  border: none;
}
.footer_bottom {
  text-align: center;
  color: var(--white);
  font-size: 14px;
  background-color: #01482a;
  padding: 12px;
}
.footer_socials {
  margin-top: 50px;
  display: flex;
  gap: 25px;
  justify-content: center;
  padding: 28px;
  background-color: var(--primary);
  border-radius: 45px;
}
.footer_social_icon {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
