:root {
  --primary: #ef70a8;
  --secondary: #0fcbd3;
  --white: #ffffff;
  --black: #000000;
  --gred_pink: linear-gradient(to bottom, #f8a8db, #ef70a8);
  --gred_blue: linear-gradient(to right, #0fcbd3, #00c0cd);
  --text: #2d2d2d;
}
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;
  vertical-align: bottom;
}
ul {
  list-style: none;
}
* {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
  color: var(--black);
  font-family: "Ubuntu", sans-seri;
}
.bg_clip {
  -webkit-background-clip: text;
  background-clip: text;
}
body {
  overflow-x: hidden;
  font-size: 18px;
}

.container {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 15px;
}
.topbar {
  background: var(--gred_blue);
  padding: 6px 0;
}
#currentDateTime {
  font-size: 16px;
  color: var(--white);
}
.navbar_section {
  padding: 22px 0;
  position: relative;
}
.navbar_container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.menus {
  display: flex;
  align-items: center;
  gap: 50px;
}
.menu:hover {
  color: var(--primary);
}
.menu_btn {
  padding: 10px 20px;
  background: var(--gred_pink);
  display: flex;
  gap: 5px;
  align-items: center;
  color: var(--white);
  border-radius: 30px;
  width: fit-content;
}
.menu_btn:hover {
  box-shadow: 2px 5px 20px #00000059;
}
/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--black);
  transition: all 0.4s ease-in;
}

.menus {
  display: flex;
  align-items: center;
  gap: 50px;
  transition: all 0.3s ease;
}

.menu {
  transition: color 0.3s ease;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.hero_section {
  padding: 106px 0 238px;
  background: url(./assets/hero_img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  background-position: top;
}
.hero_container {
  max-width: 50%;
}
.hero_heading {
  font-size: 66px;
  line-height: 78px;
  text-transform: uppercase;
  background: var(--gred_pink);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero_heading span {
  color: transparent;
  background: var(--gred_blue);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero_desc {
  margin: 10px 0 50px;
}
.hero_btns {
  display: flex;
  gap: 30px;
  align-items: center;
}
.hero_socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.social_icon:hover {
  transform: scale(1.1);
}
.infos {
  display: flex;
  flex-wrap: wrap;
}
.info:nth-child(2n) {
  background: var(--gred_blue);
}
.info:nth-child(2n-1) {
  background: var(--gred_pink);
}
.info {
  padding: 100px 50px 80px 60px;
  width: calc(100% / 4);
}
.info_inner {
  padding: 30px 10px 0 0;
  border-top: 1px dashed var(--white);
  border-right: 1px dashed var(--white);
  position: relative;
}
.info_title {
  font-size: 24px;
  color: var(--white);
}
.info_desc {
  font-size: 16px;
  margin-top: 20px;
  color: var(--white);
}
.info_icon {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, -50%);

  backdrop-filter: blur(30px);
}
.heading_container {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 70px;
}
.service_section {
  padding: 100px 0;
}
.heading {
  font-size: 66px;
  line-height: 78px;
  text-transform: uppercase;
  background: var(--gred_pink);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.heading span {
  color: transparent;
  background: var(--gred_blue);
  -webkit-background-clip: text;
  background-clip: text;
}
.desc {
  margin-top: 10px;
}
.service_container {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}
.service {
  width: calc((100% / 3) - 24px);
  text-align: center;
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
}
.service_title {
  margin: 30px 0 10px;
  font-size: 24px;
  background: var(--gred_pink);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.about_section {
  background: var(--secondary);
  padding-top: 100px;
}
.about_container {
  display: flex;
  gap: 20px;
  align-items: start;
}
.about_heading {
  font-size: 66px;
  line-height: 78px;
  text-transform: uppercase;
  color: var(--white);
}
.about_desc {
  margin: 10px 0 35px;
  color: var(--white);
}
.doctor_container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.doctor_section {
  padding: 100px 0;
}
.doctor {
  width: calc(25% - 15px);
  display: flex;
  flex-direction: column;
}
.doctor_top {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 7px 30px;

  border-radius: 5px;
  min-height: 50px;
  align-items: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.082),
    0 -4px 8px 0 rgba(0, 0, 0, 0.089), 4px 0 8px 0 rgba(0, 0, 0, 0.068),
    -4px 0 8px 0 rgba(0, 0, 0, 0.068);
}
.doctor_degi {
  font-size: 16px;
  font-weight: 500;
}
.doctor_bottom {
  margin: 0 10px;
  padding: 50px 15px;
  border-radius: 0 0 10px 10px;
  text-align: center;

  flex: 1;
}
.db_1 {
  background: var(--gred_pink);
}
.db_2 {
  background: var(--gred_blue);
}
.doctor_name {
  font-size: 24px;
  color: var(--white);
  border-bottom: 2px solid var(--white);
  padding-bottom: 10px;
}
.doctor_name span {
  font-size: 18px;
  color: var(--white);
  font-weight: 300;
}
.doctor_timeline {
  margin-top: 10px;
}
.doctor_day {
  font-size: 20px;
  color: var(--white);
}
.doctor_time {
  font-size: 20px;
  color: var(--white);
  font-weight: 500;
}
.gallery_container {
  display: flex;
  gap: 60px;
}
.gallery_left {
  flex: 1;
}
.gallery_right {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.gallery_img {
  width: 100%;
  border-radius: 20px;
}
.img_container {
  display: flex;
  gap: 20px;
}
.gallery_heading {
  margin-bottom: 40px;
  margin-top: 80px;
}
.gallery_imga {
  width: calc(50% - 10px);
  border-radius: 20px;
}
.dfd {
  margin-top: 60px;
}
.gallery_section {
  background-image: url(./assets/gallery_img.webp);
  background-repeat: no-repeat;
}
.img_container_down {
  display: flex;
  gap: 60px;
}
.gallery_imgs {
  width: calc(50% - 30px);
  border-radius: 20px;
}
.contact_section {
  padding: 100px 0;
  background-color: var(--secondary);
  margin-top: 100px;
}
.contact_heading {
  font-size: 66px;
  line-height: 78px;
  text-transform: uppercase;
  color: var(--white);
}
.contact_desc {
  color: var(--white);
}
.contact_container {
  display: flex;
  gap: 40px;
}
.contact_left,
.contact_right {
  width: 100%;
}
.contact_input {
  width: 100%;
  outline: none;
  padding: 10px 0;
  border: none;
  border-bottom: 2px solid var(--white);
  background-color: transparent;
  color: var(--white);
  margin-bottom: 20px;
}
.contact_input::placeholder {
  color: #ebebeb;
}
.contact_submit {
  width: 100%;
  padding: 14px;
  font-weight: 500;
  color: var(--primary);
  border: none;
  background-color: var(--white);
}
.contact_submit:hover {
  background-color: var(--primary);
  color: var(--white);
}
.map {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 5px;
}
.contact_right {
  position: relative;
}
address {
  font-style: normal;
  padding: 15px 13px;
  border-radius: 5px;
  background-color: var(--secondary);
  text-align: center;
  color: var(--white);
  position: absolute;
  top: 70%;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
}

.footer_top {
  padding: 80px 0;
}
.footer_container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer_left {
  max-width: 337px;
}
.footer_right {
  max-width: 250px;
}
.footer_desc {
  margin-top: 30px;
  font-size: 16px;
}
.footer_menu {
  margin-bottom: 50px;
}
.subscribe_form {
  display: flex;
  padding: 5px 0;
  border-bottom: 2px solid var(--black);
  margin-top: 30px;
}
.subscribe_input {
  flex: 1;
  background-color: transparent;
  border: none;

  outline: none;
}

.footer_heading {
  position: relative;
}
.footer_heading::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: var(--white);
  bottom: -10px;
}
.sub_btn {
  background-color: transparent;
  border-color: transparent;
}
.footer_text {
  font-size: 14px;
  color: white;
  padding: 12px 0;
  background-color: var(--secondary);
  text-align: center;
}
.sr-only,
.visually-hidden {
  position: absolute; /* Position it off-screen */
  width: 1px; /* Minimize its width */
  height: 1px; /* Minimize its height */
  margin: -1px; /* Remove margins */
  padding: 0; /* Remove padding */
  overflow: hidden; /* Hide overflow */
  clip: rect(0, 0, 0, 0); /* Clip the text */
  border: 0; /* Remove borders */
}
