*,
*::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: #30649d;
}

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

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

ul {
  list-style: none;
}

header {
  position: relative;
}

.top_navbar {
  background-color: #30649d;
  padding: 10px 0;
}
.top_navbar .time {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top_navbar .time #current-time {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.header_nav {
  background-color: #ffffff;
  padding: 15px 0;
}
.header_nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header {
  display: flex;
  align-items: center;
  gap: 60px;
}

.header_nav {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  text-transform: capitalize;
}
.header_nav:hover {
  color: #30649d;
}

.header_btn {
  background-image: linear-gradient(45deg, #30649d, #54779c);
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header_btn:hover {
  box-shadow: -2px -2px 24px 15px rgba(48, 101, 157, 0.4196078431);
}

.hamburger {
  display: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000000;
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 10px 0;
  transition: all 0.5s ease-in-out;
  height: 0;
}

.mobile-nav a {
  padding: 10px;
  width: 100%;
  text-align: center;
}

.top_footer {
  padding: 90px 0;
  background-color: #ffffff;
}
.top_footer .container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social_footer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social_footer a {
  padding: 10px;
  border-radius: 100%;
  background-image: linear-gradient(45deg, #30649d, #54779c);
}
.social_footer a:hover {
  box-shadow: -2px -2px 24px 15px rgba(48, 101, 157, 0.4196078431);
}

.desc {
  font-size: 16px;
}

.bottom_footer {
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
}

.hero_section {
  padding: 210px 0;
  text-align: center;
  background: url("./assets/hero_bg.webp") no-repeat center;
  background-size: 100% 100%;
}

.hero_content {
  padding: 60px 30px;
  max-width: 980px;
  margin: 0 auto;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 10px;
  color: #ffffff;
}

.hero_heading {
  font-size: 80px;
  font-weight: 500;
  line-height: 1.1;
}

.desc {
  font-size: 20px;
  margin: 20px 0 40px;
}

.hero_btn {
  font-size: 20px;
  font-weight: 600;
  padding: 20px 40px;
  border-radius: 10px;
  background-color: #30649d;
  color: #ffffff;
}
.hero_btn:hover {
  box-shadow: -2px -2px 24px 15px rgba(48, 101, 157, 0.4196078431);
}

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

.heading {
  font-size: 70px;
  line-height: 1.05;
  letter-spacing: -2px;
  word-wrap: balance;
}

.content {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  align-items: center;
}
.content .left,
.content .right {
  width: 100%;
}

.service_list > * + * {
  margin-top: 20px;
}

.service_item {
  display: flex;
  gap: 20px;
  background-color: #ffffff;
  padding: 23px;
  border-radius: 10px;
}
.service_item .texts {
  text-align: start;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
form input {
  width: 100%;
  font-size: 20px;
  padding: 26px;
  border-radius: 10px;
  border: 2px solid #000000;
  text-align: center;
}
form button {
  font-size: 26px;
  padding: 22px;
  border-radius: 10px;
  border: none;
  background-color: #30649d;
  color: #ffffff;
  cursor: pointer;
}
form button:hover {
  box-shadow: -2px -2px 24px 15px rgba(48, 101, 157, 0.4196078431);
}

.service_heading {
  font-size: 24px;
  font-weight: 600;
  color: #30649d;
}

.service_desc {
  font-size: 16px;
}

.doctor {
  padding: 100px 0 0;
}
.doctor .right img {
  width: 100%;
}
.doctor .heading {
  text-align: center;
  color: #ffffff;
}

.doctor-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 40px;
}

.doctor-item {
  position: relative;
  padding: 30px 60px 20px 20px;
  background-color: #ffffff;
  border-radius: 10px;
}

.specialization {
  padding: 6px 10px;
  border-radius: 6px;
  background-color: #86c64d;
  position: absolute;
  font-size: 20px;
  color: #ffffff;
  top: -30px;
  left: 0;
  transform: translateY(-50%);
}

.gallery {
  padding: 90px 0;
  text-align: center;
  background-color: #f2f2f2;
}

.gallery_imgs {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.gallery_imgs img {
  width: calc(25% - 15px);
}

.location {
  padding: 100px 0;
  text-align: center;
}
.location .heading {
  color: #ffffff;
}
.location .content {
  align-items: stretch;
}
.location .right {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.map {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 20px;
}

.loc_heading {
  font-size: 60px;
  line-height: 1.2;
  position: relative;
}
.loc_heading::after {
  content: "";
  width: 100px;
  height: 3px;
  background-color: #30649d;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

address p {
  font-size: 22px;
  font-style: normal;
}

.paras {
  background-color: #f2f2f2;
  padding: 100px 0;
}
.paras h2 {
  text-align: center;
}
.paras p {
  text-align: justify;
  margin: 20px 0 0;
}
.paras p a {
  color: #30649d;
  font-weight: 700;
}
.paras p a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */