:root {
  --primary: #2d3296;
  --secondary: #f41920;
  --white: #ffffff;
  --black: #000000;
  --bg: #f9f9ff;
}
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);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "PT Serif", serif;
  text-wrap: balance;
}
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  font-size: 18px;
  font-weight: 400;
}

.container {
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hide default buttons */
.swiper-button-next,
.swiper-button-prev {
  display: none;
}

/* Style the custom buttons */
.custom-swiper-button-next,
.custom-swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}

.custom-swiper-button-next {
  right: -50px;
}

.custom-swiper-button-prev {
  left: -50px;
}
.slider_container {
  position: relative;
}
/* Style the SVG icons */
.custom-swiper-button-next svg,
.custom-swiper-button-prev svg {
  width: 40px;
  height: 40px;
}

.swiper-container {
  overflow-x: hidden;
}

.topbar {
  background-color: var(--primary);
  padding: 6px 0;
}
.topbar_container {
  display: flex;
  align-items: center;
  gap: 5px;
}
#currentDateTime {
  color: var(--white);
  font-size: 14px;
}
.navbar_section {
  padding: 12px;
}
.navbar_container {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.menus {
  display: flex;
  gap: 50px;
  align-items: center;
}
.menu {
  font-weight: 600;
}
.menu:hover {
  color: var(--primary);
}
.menu_btn {
  padding: 8px 20px;
  border-radius: 80px;
  background-color: var(--secondary);
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.menu_btn:hover {
  background-color: var(--primary);
}
.hero_section {
  position: relative;
  padding: 210px 0;
}
.hero_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.hero_container {
  position: relative;
  max-width: 863px;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
}
.hero_heading {
  font-size: 76px;
  color: var(--white);
  text-transform: capitalize;
  line-height: 79px;
}
.hero_desc {
  color: var(--white);
  margin: 20px 0 60px;
}
.primary_btn {
  color: var(--white);
  padding: 20px 30px;
  border-radius: 80px;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 5px;

  width: fit-content;
  margin: 0 auto;
}
.primary_btn:hover {
  padding: 20px 50px;
  border-radius: 10px;
}

.right_socials {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  right: 55px;
  top: 50%;
  transform: translateY(-50%);
}
.right_social_icon:hover {
  transform: scale(1.2);
}
.service_section {
  padding: 100px 0;
  background-color: var(--bg);
}
.heading_container {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}
.heading {
  font-size: 44px;
}
.services {
  display: flex;
  gap: 35px;
  justify-content: center;
  flex-wrap: wrap;
}
.service {
  background-color: var(--white);
  width: calc((100% / 3) - 24px);
  padding: 40px;
  border-radius: 10px;
  box-shadow: -1px -1px 104px -14px rgba(0, 0, 0, 0.281);
  transition: all 0.5s ease-in;
  cursor: grab;
}
.service_name {
  font-size: 24px;
  margin: 20px 0 6px;
}
.n1 {
  color: #006ad3;
}
.n2 {
  color: #cca800;
}
.n3 {
  color: #d00040;
}
.n4 {
  color: #009600;
}
.n5 {
  color: #7700c2;
}
.n6 {
  color: #06595f;
}
.n7 {
  color: #80137a;
}
.n8 {
  color: #3eb806;
}
.n9 {
  color: #07546b;
}
.n10 {
  color: #af2f64;
}
.n11 {
  color: #7700c2;
}
.n12 {
  color: #b36f2f;
}
.n13 {
  color: #470a24;
}
.n14 {
  color: #1c3896;
}
.n15 {
  color: #11682e;
}
.n16 {
  color: #350b4e;
}
.n17 {
  color: #af991b;
}
.service:hover {
  background-color: #d0001c0e;
}
.about_section {
  padding: 55px 0;
  position: relative;
}
.about_container {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 999;
}
.about_desc {
  margin: 20px 0 30px;
}
.about_ul {
  list-style: none;
  padding: 40px;
  box-shadow: -1px -1px 104px -14px rgba(0, 0, 0, 0.281);
  border-radius: 15px;
  background-color: var(--white);
}
.about_li {
  display: flex;
  align-items: center;
}
.about_img {
  width: 100%;
}
.about_left,
.about_right {
  width: 100%;
  position: relative;
}
.about_bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 218px;
  background-color: var(--primary);
}
.pos {
  position: absolute;
  bottom: 45px;
  left: 56px;
}
.doctor_section {
  padding: 100px 0;
  background-color: var(--bg);
}
.doctors {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.doctor {
  width: calc(25% - 15px);
  background-color: var(--white);
  box-shadow: -1px -1px 104px -14px rgba(0, 0, 0, 0.281);
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.doctor_name {
  font-size: 22px;
  font-weight: 700;
}
.doctor_name span {
  font-size: 16px;
  font-weight: 300;
}
.doctor_degree {
  margin: 5px 0 auto;
  font-style: italic;
  color: var(--secondary);
  font-size: 14px;
}

.timetable {
  padding: 8px;
  background-color: var(--primary);
  border-radius: 6px;
  text-align: center;
}
.timetable span {
  color: var(--white);
  font-size: 16px;
  display: block;
}
.contact_section {
  padding: 65px 0;
}
.contact_container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact_container img {
  flex: 1;
}
.contact_left {
  flex: 2;
}
.contact_right {
  flex: 2;
}
.contact_desc {
  margin: 10px 0 50px;
}
.contact_socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
.call_heading {
  font-size: 14px;
  color: var(--secondary);
}
.call_anc {
  font-weight: 600;
  font-size: 22px;
}
.call_anc:hover {
  color: var(--primary);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.input {
  width: 100%;
  outline: none;
  padding: 14px 22px;
  border-radius: 10px;
  border: 1px solid var(--primary);
  margin-bottom: 20px;
  font-size: 14px;
}
.submit_btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background-color: var(--primary);
  color: var(--bg);
  font-weight: 600;
  border: none;
  font-size: 20px;
}
.gallery_section {
  padding: 100px 0;
  background-color: var(--bg);
}
.swiper-slide img {
  width: 100%;
  height: 300px;
}
.slider_container {
  background-color: var(--primary);
  padding: 20px;
  border-radius: 10px;
}
.footer_top {
  padding: 100px 0 75px;
}
.footer_container {
  display: flex;
  gap: 50px;
  justify-content: space-between;

  align-items: center;
}
.footer_left {
  flex: 1;
}
.footer_middle {
  flex: 2;
}
.footer_left p {
  margin-top: 20px;
  font-size: 14px;
}
.footer_middle {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.map {
  width: 100%;
  height: 275px;
}
address {
  position: absolute;
  width: 100%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 48px;
  color: var(--white);
}
.footer_right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer_bottom {
  background-color: var(--primary);
  padding: 5px;
  text-align: center;
}
.footer_bottom p {
  color: var(--white);
}
