/*
 Theme Name: MediCore - Medical Center HTML Template
 Author: abdo
 Version: 1.0
 File Description: Main CSS File
*/

/*
 Table of Contents
 01. General
 02. Preloader
 03. Navbar
 04. Top Bar
 05. Hero
 06. Features
 07. Welcome
 08. Departments
 09. Appointment
 10. Doctors
 11. Hotline
 12. News
 13. Footer
 14. Inner Banner
 15. Doctors Page
 16. Blog
 17. Blog Details
 18. Contact
 19. Components
 20. Forms
 21. Utilities
 22. Bootstrap Overrides
 23. Departments Page
 24. Departments Overrides
 25. Departments Banner
 26. Shared Inner Pages
 27. Doctor Details
 28. Appointment Page
 29. FAQ
 30. 404
 31. Inner Pages
 32. About Page
 33. Blog Page
 34. Blog Details Page
 35. Contact Page
 36. Contact Overrides
 37. Contact Form
 38. Contact Contrast
 39. Responsive
*/

@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");
@import url("https://fonts.googleapis.com/css?family=Ubuntu:400,500,700");

/* 01. General */
body {
  color: #777;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
}
h1 {
  color: #222;
  font-family: "Ubuntu", sans-serif;
  font-size: 45px !important;
  font-weight: 700;
}
h2 {
  color: #222;
  font-family: "Ubuntu", sans-serif;
  font-size: 36px !important;
  font-weight: 700;
}
h3 {
  color: #222;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px !important;
  font-weight: 700;
  text-transform: uppercase;
}
h4 {
  color: #222;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px !important;
  font-weight: 400;
}
h5 {
  color: #777;
  font-family: "Roboto", sans-serif;
  text-transform: capitalize;
  font-size: 14px !important;
  font-weight: 400;
}
h6 {
  color: #777;
  font-size: 12px !important;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a:hover,
a:focus {
  text-decoration: none;
}
input:focus,
textarea:focus {
  outline: none;
}

/* 02. Preloader */
.spinner {
  width: 40px;
  height: 40px;
  margin: 100px auto;
  background-color: #244cfd;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 5;
}
.preloader .spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* 03. Navbar */
.medicore-navbar {
  min-height: 76px;
  padding: 10px 0;
}
.medicore-navbar .container {
  display: flex;
  align-items: center;
}
.medicore-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  text-decoration: none;
}
.medicore-brand img {
  display: block;
  width: 32px;
  height: 32px;
}
.medicore-brand .brand-name {
  color: #18212f;
  font-family: "Ubuntu", sans-serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
}
.medicore-brand .brand-name span {
  color: #244cfd;
}
.medicore-navbar .navbar-nav {
  gap: 4px;
}
.medicore-navbar .nav-link {
  position: relative;
  padding: 13px 11px !important;
  color: #273142;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
  transition: color 0.25s ease;
}
.medicore-navbar .nav-link:hover,
.medicore-navbar .nav-link:focus,
.medicore-navbar .nav-link.active,
.medicore-navbar .show > .nav-link {
  color: #244cfd;
}
.medicore-navbar .nav-item > .nav-link::before {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 5px;
  height: 2px;
  background: linear-gradient(90deg, #244cfd 0%, #24d8f8 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.medicore-navbar .nav-link:hover::before,
.medicore-navbar .nav-link.active::before,
.medicore-navbar .show > .nav-link::before {
  transform: scaleX(1);
}
.medicore-navbar .dropdown-toggle::after {
  content: "\f107";
  margin-left: 6px;
  border: 0;
  vertical-align: 1px;
  color: currentColor;
  font-family: FontAwesome;
  font-size: 11px;
}
.medicore-navbar .dropdown-menu {
  min-width: 190px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid rgba(36, 76, 253, 0.08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(20, 35, 70, 0.12);
}
.medicore-navbar .dropdown-item {
  padding: 9px 12px;
  border-radius: 7px;
  color: #465064;
  font-size: 13px;
  font-weight: 500;
  transition: 0.2s ease;
}
.medicore-navbar .dropdown-item:hover,
.medicore-navbar .dropdown-item:focus {
  color: #244cfd;
  background: #f2f5ff;
}
.nav-appointment-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 17px;
  border-radius: 7px;
  color: #fff !important;
  background: linear-gradient(90deg, #244cfd 0%, #24d8f8 100%);
  box-shadow: 0 8px 20px rgba(36, 76, 253, 0.18);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.nav-appointment-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(36, 76, 253, 0.25);
}
.medicore-navbar .navbar-toggler {
  padding: 7px 9px;
  border: 1px solid #e1e7f0;
  border-radius: 7px;
}
.medicore-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(36, 76, 253, 0.12);
}

/* 04. Top Bar */
.header-area {
  position: relative;
  z-index: 1000;
}
.header-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid rgba(33, 47, 70, 0.08);
  background: rgba(255, 255, 255, 0.97);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 24px;
}
.topbar-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 25px;
}
.topbar-contact a,
.topbar-social a {
  text-decoration: none;
}
.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #697386;
  font-size: 12px;
  font-weight: 500;
  transition: color 0.25s ease;
}
.topbar-contact a i {
  color: #244cfd;
  font-size: 14px;
}
.topbar-contact a:hover {
  color: #244cfd;
}
.topbar-social {
  display: flex;
  align-items: center;
  gap: 5px;
}
.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #748094;
  font-size: 12px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}
.topbar-social a:hover {
  color: #244cfd;
  background: #eef2ff;
}
#header {
  position: fixed;
  top: 45px;
  right: 0;
  left: 0;
  z-index: 997;
  padding: 0;
  border-bottom: 1px solid rgba(33, 47, 70, 0.06);
  background: rgba(255, 255, 255, 0.93);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition:
    top 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}
#header.header-scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 7px 24px rgba(23, 34, 56, 0.09);
}
@media (min-width: 992px) {
  .medicore-navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .header-top {
    display: none;
  }
  #header {
    top: 0;
    background: rgba(255, 255, 255, 0.98);
  }
  .medicore-navbar {
    min-height: 68px;
  }
  .medicore-navbar .navbar-collapse {
    margin-top: 10px;
    padding: 10px 0 16px;
    border-top: 1px solid #edf0f5;
  }
  .medicore-navbar .navbar-nav {
    gap: 0;
  }
  .medicore-navbar .nav-link {
    padding: 11px 4px !important;
  }
  .medicore-navbar .nav-item > .nav-link::before {
    display: none;
  }
  .medicore-navbar .dropdown-menu {
    margin: 0 0 7px;
    padding: 3px 8px;
    border: 0;
    box-shadow: none;
    background: #f8faff;
  }
  .nav-appointment-btn {
    margin-top: 8px;
    margin-left: 0 !important;
  }
}
@media (max-width: 575.98px) {
  .medicore-brand .brand-name {
    font-size: 26px;
  }
}

/* 05. Hero */
.banner-area {
  background-color: #b0b0b0;
  background-image: url("../images/banner-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.home-banner {
  min-height: 690px;
  padding: 105px 0 155px;
  display: flex;
  align-items: center;
  background-color: #eef4f8;
  background-image: url("../images/banner-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.home-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 34%, rgba(255, 255, 255, 0.58) 56%, rgba(255, 255, 255, 0.05) 78%);
}
.home-banner::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  z-index: -1;
  background: radial-gradient(circle, rgba(36, 76, 253, 0.08) 0%, rgba(36, 76, 253, 0) 68%);
}
.banner-content {
  position: relative;
  z-index: 1;
  max-width: 630px;

  transform: translateY(34px);
}
.banner-content h1 {
  max-width: 600px;
  margin: 0;
  color: #172033;
  font-size: 60px !important;
  line-height: 1.06;
  letter-spacing: -2.2px;
}
.banner-content h1 span {
  color: #244cfd;
}
.hero-text {
  max-width: 580px;
  margin: 24px 0 0;
  color: #647084;
  font-size: 17px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}
.hero-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #244cfd 0%, #18cbea 100%);
  box-shadow: 0 12px 30px rgba(36, 76, 253, 0.22);
}
.hero-btn-primary:hover,
.hero-btn-primary:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(36, 76, 253, 0.29);
}
.hero-btn-secondary {
  color: #273142;
  border-color: #dbe2ed;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(23, 32, 51, 0.06);
}
.hero-btn-secondary:hover,
.hero-btn-secondary:focus {
  color: #244cfd;
  border-color: #bfcdfd;
  background: #fff;
  transform: translateY(-2px);
}
.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  color: #5d6879;
  font-size: 12px;
  font-weight: 600;
}
.hero-trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-trust-list i {
  color: #20bfa9;
  font-size: 15px;
}

@media (max-width: 1199.98px) {
  .home-banner {
    min-height: 650px;
    padding: 95px 0 145px;
    background-position: 56% center;
  }
  .banner-content h1 {
    font-size: 54px !important;
  }
}
@media (max-width: 991.98px) {
  .banner-content {
    transform: translateY(24px);
  }
  .home-banner {
    min-height: 620px;
    padding: 90px 0 135px;
    background-position: 61% center;
  }
  .home-banner::before {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.94) 52%,
      rgba(255, 255, 255, 0.64) 76%,
      rgba(255, 255, 255, 0.34) 100%
    );
  }
  .banner-content h1 {
    max-width: 540px;
    font-size: 49px !important;
  }
}
@media (max-width: 767.98px) {
  .banner-content {
    transform: translateY(14px);
  }
  .home-banner {
    min-height: auto;
    padding: 78px 0 125px;
    background-position: 68% center;
  }
  .home-banner::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 62%, rgba(255, 255, 255, 0.82) 100%);
  }
  .banner-content h1 {
    font-size: 43px !important;
    letter-spacing: -1.5px;
  }
  .hero-text {
    max-width: 520px;
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .banner-content {
    transform: translateY(8px);
  }
  .home-banner {
    padding: 65px 0 115px;
    background-position: 63% center;
  }
  .banner-content h1 {
    font-size: 38px !important;
    line-height: 1.1;
    letter-spacing: -1.1px;
  }
  .hero-text {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.7;
  }
  .hero-actions {
    margin-top: 26px;
  }
  .hero-btn {
    width: 100%;
  }
  .hero-trust-list {
    gap: 10px 16px;
    margin-top: 23px;
  }
}

/* 06. Features */
/* Feature Cards */
.single-feature {
  background: #f9f9fd;
  border-radius: 5px;
  transition: 0.5s;
}
.single-feature img {
  margin-bottom: 40px;
}
.single-feature:hover {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Home Features */
.home-feature-area {
  position: relative;
  z-index: 2;
  margin-top: -72px;
  padding: 0 0 105px;
}
.home-feature-area .feature-grid > div {
  display: flex;
}
.home-feature-area .single-feature {
  width: 100%;
  min-height: 226px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 28px;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(31, 50, 81, 0.09);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.home-feature-area .single-feature:hover {
  border-color: #cfdbff;
  background: #fff;
  transform: translateY(-7px);
  box-shadow: 0 24px 52px rgba(31, 50, 81, 0.14);
}
.home-feature-area .feature-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 14px;
  color: #244cfd;
  background: linear-gradient(135deg, #eef2ff 0%, #e9fbfe 100%);
  font-size: 24px;
  box-shadow: inset 0 0 0 1px rgba(36, 76, 253, 0.06);
  transition:
    color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}
.home-feature-area .single-feature:hover .feature-icon {
  color: #fff;
  background: linear-gradient(135deg, #244cfd 0%, #18cbea 100%);
  transform: scale(1.04);
}
.home-feature-area .single-feature h3 {
  margin: 0 0 11px;
  color: #1b2537;
  font-size: 17px !important;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
}
.home-feature-area .single-feature p {
  margin: 0;
  color: #6d7788;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1199.98px) {
  .home-feature-area {
    margin-top: -62px;
    padding-bottom: 90px;
  }
  .home-feature-area .single-feature {
    min-height: 205px;
  }
}
@media (max-width: 767.98px) {
  .home-feature-area {
    margin-top: -55px;
    padding-bottom: 80px;
  }
  .home-feature-area .single-feature {
    min-height: 0;
    padding: 27px 25px;
  }
}
@media (max-width: 575.98px) {
  .home-feature-area {
    margin-top: -46px;
    padding-bottom: 70px;
  }
}

/* 07. Welcome */
.medicore-welcome {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
  background: #fff;
}
.medicore-welcome::before {
  content: "";
  position: absolute;
  top: 70px;
  right: -180px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 203, 234, 0.08) 0%, rgba(24, 203, 234, 0) 70%);
  pointer-events: none;
}
.welcome-visual {
  position: relative;
  max-width: 610px;
  padding: 18px 34px 34px 0;
}
.welcome-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #eef6fb;
  box-shadow: 0 28px 65px rgba(25, 47, 84, 0.13);
}
.welcome-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: inherit;
  pointer-events: none;
}
.welcome-image-frame img {
  width: 100%;
  min-height: 485px;
  display: block;
  object-fit: cover;
  object-position: center;
}
.welcome-visual::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 82%;
  border: 2px solid #edf2f8;
  border-radius: 28px;
  z-index: -1;
}
.welcome-floating-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(320px, 78%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 19px;
  border: 1px solid #e4ebf5;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: #677285;
  font-size: 13px;
  line-height: 1.55;
  box-shadow: 0 18px 42px rgba(24, 45, 78, 0.15);
  backdrop-filter: blur(10px);
}
.welcome-floating-card strong {
  display: block;
  color: #182237;
  font-size: 14px;
}
.welcome-floating-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #244cfd 0%, #18cbea 100%);
  font-size: 20px;
  box-shadow: 0 10px 24px rgba(36, 76, 253, 0.22);
}
.medicore-welcome .section-eyebrow,
.medicore-departments .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #244cfd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.45px;
  line-height: 1;
  text-transform: uppercase;
}
.medicore-welcome .section-eyebrow::before,
.medicore-departments .section-eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #244cfd 0%, #18cbea 100%);
}
.welcome-content {
  max-width: 585px;
  padding-left: 18px;
}
.welcome-content h2 {
  max-width: 550px;
  margin: 0;
  color: #172033;
  font-size: 46px !important;
  line-height: 1.12;
  letter-spacing: -1.35px;
}
.welcome-content h2 span {
  color: #244cfd;
}
.welcome-content > p {
  margin: 18px 0 0;
  color: #6a7588;
  font-size: 15px;
  line-height: 1.8;
}
.welcome-content .welcome-lead {
  margin-top: 22px;
  color: #4e5a6d;
  font-size: 16px;
}
.welcome-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}
.welcome-highlight {
  min-height: 148px;
  padding: 18px 16px;
  border: 1px solid #e7edf5;
  border-radius: 15px;
  background: #fbfcfe;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.welcome-highlight:hover {
  transform: translateY(-4px);
  border-color: #d6e1ff;
  background: #fff;
  box-shadow: 0 14px 32px rgba(31, 50, 81, 0.08);
}
.highlight-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  border-radius: 10px;
  color: #244cfd;
  background: linear-gradient(135deg, #eef3ff 0%, #eafcff 100%);
  font-size: 16px;
}
.welcome-highlight h4 {
  margin: 0 0 6px;
  color: #1b2537;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 1.35;
}
.welcome-highlight p {
  margin: 0;
  color: #7a8494;
  font-size: 12px;
  line-height: 1.55;
}
.welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.welcome-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}
.welcome-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #244cfd 0%, #18cbea 100%);
  box-shadow: 0 12px 26px rgba(36, 76, 253, 0.19);
}
.welcome-btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(36, 76, 253, 0.25);
}
.welcome-btn-secondary {
  color: #2a3446;
  border-color: #dfe6ef;
  background: #fff;
}
.welcome-btn-secondary:hover {
  color: #244cfd;
  border-color: #cbd7fb;
  transform: translateY(-2px);
}

@media (max-width: 1199.98px) {
  .welcome-content h2 {
    font-size: 41px !important;
  }
  .welcome-highlights {
    grid-template-columns: 1fr;
  }
  .welcome-highlight {
    min-height: auto;
    display: flex;
    align-items: flex-start;
    gap: 13px;
  }
  .highlight-icon {
    flex: 0 0 38px;
    margin-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .medicore-welcome {
    padding: 95px 0;
  }
  .welcome-visual {
    max-width: 680px;
    margin: 0 auto;
  }
  .welcome-content {
    max-width: 680px;
    margin: 0 auto;
    padding-left: 0;
  }
  .welcome-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .welcome-highlight {
    min-height: 148px;
    display: block;
  }
  .highlight-icon {
    margin-bottom: 13px;
  }
}
@media (max-width: 767.98px) {
  .medicore-welcome {
    padding: 82px 0;
  }
  .welcome-image-frame img {
    min-height: 390px;
  }
  .welcome-content h2 {
    font-size: 36px !important;
  }
  .welcome-highlights {
    grid-template-columns: 1fr;
  }
  .welcome-highlight {
    min-height: auto;
    display: flex;
  }
  .highlight-icon {
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .welcome-visual {
    padding: 10px 14px 58px 0;
  }
  .welcome-image-frame {
    border-radius: 18px;
  }
  .welcome-image-frame img {
    min-height: 330px;
  }
  .welcome-floating-card {
    right: 0;
    width: 90%;
    padding: 14px;
  }
  .welcome-content h2 {
    font-size: 32px !important;
    letter-spacing: -0.9px;
  }
  .welcome-actions .welcome-btn {
    width: 100%;
  }
}

/* 08. Departments */
.medicore-departments {
  position: relative;
  padding: 112px 0 125px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f9fd 0%, #f9fbfe 100%);
}
.medicore-departments::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -160px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 76, 253, 0.07) 0%, rgba(36, 76, 253, 0) 70%);
  pointer-events: none;
}
.department-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 52px;
}
.department-heading h2 {
  max-width: 690px;
  margin: 0;
  color: #172033;
  font-size: 43px !important;
  line-height: 1.13;
  letter-spacing: -1.25px;
}
.department-heading h2 span {
  color: #244cfd;
}
.department-heading p {
  max-width: 650px;
  margin: 18px 0 0;
  color: #6a7588;
  font-size: 15px;
  line-height: 1.75;
}
.departments-all-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid #dbe4ef;
  border-radius: 10px;
  background: #fff;
  color: #253147;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(32, 49, 80, 0.05);
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.departments-all-link:hover {
  color: #244cfd;
  border-color: #cbd7fb;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(32, 49, 80, 0.09);
}
.medicore-departments .department-slider .owl-stage {
  display: flex;
  padding: 8px 0 20px;
}
.medicore-departments .department-slider .owl-item {
  display: flex;
}
.medicore-departments .single-slide {
  width: 100%;
  margin: 0 8px;
  overflow: hidden;
  border: 1px solid #e3eaf3;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(24, 45, 78, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.medicore-departments .single-slide:hover {
  border-color: #cfdbff;
  transform: translateY(-7px);
  box-shadow: 0 22px 46px rgba(24, 45, 78, 0.13);
}
.medicore-departments .slide-img {
  position: relative;
  height: 238px;
  display: block;
  overflow: hidden;
  border-radius: 0;
  background: #eaf1f6;
}
.medicore-departments .slide-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 24, 44, 0) 48%, rgba(12, 24, 44, 0.18) 100%);
  opacity: 0.75;
  transition: opacity 0.3s ease;
}
.medicore-departments .slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.medicore-departments .single-slide:hover .slide-img img {
  transform: scale(1.045);
}
.department-icon {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #244cfd 0%, #18cbea 100%);
  font-size: 19px;
  box-shadow: 0 10px 26px rgba(36, 76, 253, 0.23);
  transition: transform 0.3s ease;
}
.medicore-departments .single-slide:hover .department-icon {
  transform: translateY(-3px) rotate(-3deg);
}
.medicore-departments .single-department.item-padding {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 27px 28px 28px;
  background: #fff;
  box-shadow: none;
  text-align: left;
}
.department-kicker {
  margin-bottom: 8px;
  color: #244cfd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.3;
  text-transform: uppercase;
}
.medicore-departments .single-department h3 {
  margin: 0 0 11px;
  color: #182237;
  font-size: 21px !important;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
}
.medicore-departments .single-department p {
  margin: 0 0 20px;
  color: #727d8e;
  font-size: 14px;
  line-height: 1.7;
}
.department-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #263248;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.department-link i {
  color: #244cfd;
  transition: transform 0.25s ease;
}
.department-link:hover {
  color: #244cfd;
}
.department-link:hover i {
  transform: translateX(4px);
}
.medicore-departments .single-slide:hover .item-padding {
  box-shadow: none;
}
.medicore-departments .department-slider.owl-carousel .owl-nav {
  display: none;
}
.medicore-departments .department-slider.owl-carousel .owl-dots {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  transform: none;
}
.medicore-departments .department-slider.owl-carousel .owl-dots .owl-dot {
  width: 9px;
  height: 9px;
  margin: 0;
  border-radius: 999px;
  background: #cdd6e2;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}
.medicore-departments .department-slider.owl-carousel .owl-dots .owl-dot.active {
  width: 28px;
  background: linear-gradient(90deg, #244cfd 0%, #18cbea 100%);
}

@media (max-width: 991.98px) {
  .medicore-departments {
    padding: 92px 0 105px;
  }
  .department-heading {
    margin-bottom: 38px;
  }
  .department-heading h2 {
    font-size: 38px !important;
  }
}
@media (max-width: 767.98px) {
  .department-heading h2 {
    font-size: 34px !important;
  }
  .medicore-departments .slide-img {
    height: 225px;
  }
}
@media (max-width: 575.98px) {
  .medicore-departments {
    padding: 78px 0 90px;
  }
  .department-heading h2 {
    font-size: 31px !important;
    letter-spacing: -0.8px;
  }
  .departments-all-link {
    width: 100%;
  }
  .medicore-departments .single-slide {
    margin: 0 3px;
  }
  .medicore-departments .single-department.item-padding {
    min-height: 0;
    padding: 24px;
  }
}

/* 09. Appointment */
.medicore-care-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.medicore-care-section:before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -220px;
  bottom: -210px;
  border-radius: 50%;
  background: rgba(36, 76, 253, 0.045);
  pointer-events: none;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #244cfd;
  background: #eef4ff;
  border: 1px solid #dce7ff;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.care-copy > h2,
.specialists-title {
  margin: 0 0 18px;
  color: #111b31;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.8px;
}
.care-copy > h2 span,
.specialists-title span {
  color: #244cfd;
}
.care-lead,
.specialists-intro {
  max-width: 620px;
  color: #667085;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.testimonial-stack {
  display: grid;
  gap: 16px;
}
.testimonial-card {
  padding: 22px;
  border: 1px solid #e9edf5;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(17, 27, 49, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(17, 27, 49, 0.09);
}
.testimonial-card-secondary {
  margin-left: 34px;
}
.testimonial-top {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 4px #eef4ff;
}
.testimonial-top h3 {
  margin: 0 0 3px;
  color: #111b31;
  font-size: 16px;
  text-transform: none;
}
.testimonial-top span {
  color: #8a94a6;
  font-size: 13px;
}
.testimonial-rating {
  display: flex;
  gap: 3px;
  color: #f8b84e;
  font-size: 13px;
}
.testimonial-card > p {
  color: #667085;
  line-height: 1.7;
  margin: 0;
}
.appointment-card {
  position: relative;
  padding: 38px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(145deg, #10224a 0%, #244cfd 100%);
  box-shadow: 0 26px 70px rgba(36, 76, 253, 0.22);
}
.appointment-card:before,
.appointment-card:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.appointment-card:before {
  width: 230px;
  height: 230px;
  top: -120px;
  right: -90px;
  background: rgba(21, 228, 253, 0.18);
}
.appointment-card:after {
  width: 170px;
  height: 170px;
  bottom: -100px;
  left: -70px;
  background: rgba(255, 255, 255, 0.07);
}
.appointment-card-head,
.appointment-modern-form {
  position: relative;
  z-index: 1;
}
.appointment-card-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.appointment-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 21px;
}
.appointment-kicker {
  display: block;
  color: #8feaff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.appointment-card-head h3 {
  color: #fff !important;
  font-size: 30px !important;
  margin: 0 0 7px;
  text-transform: none;
}
.appointment-card-head p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin: 0;
}
.appointment-modern-form label {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 7px;
}
.field-wrap {
  position: relative;
}
.field-wrap > i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #244cfd;
  z-index: 2;
}
.field-textarea-wrap > i {
  top: 18px;
  transform: none;
}
.appointment-modern-form input,
.appointment-modern-form select,
.appointment-modern-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  outline: none;
  border-radius: 12px;
  background: #fff;
  color: #344054;
  padding: 13px 14px 13px 42px;
  font-size: 14px;
  box-shadow: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.appointment-modern-form textarea {
  min-height: 108px;
  resize: vertical;
}
.appointment-modern-form input:focus,
.appointment-modern-form select:focus,
.appointment-modern-form textarea:focus {
  border-color: #72dcff;
  box-shadow: 0 0 0 4px rgba(21, 228, 253, 0.12);
}

.field-select-wrap select.appointment-native-select {
  display: block !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 42px;
  cursor: pointer;
  line-height: 1.35;
}
.field-select-wrap:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: 2px solid #667085;
  border-bottom: 2px solid #667085;
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 2;
}

.field-select-wrap > .nice-select {
  display: none !important;
}
.appointment-submit {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 14px 18px;
  color: #10224a;
  background: linear-gradient(to right, #ffffff, #c9f8ff);
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.appointment-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.appointment-submit i {
  margin-left: 8px;
}
.appointment-note {
  margin: 12px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}
.appointment-note i {
  margin-right: 5px;
}

/* 10. Doctors */
.medicore-specialists {
  background: #f7f9fd;
}
.specialists-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #dbe3f0;
  border-radius: 12px;
  color: #111b31;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: 0.25s ease;
}
.specialists-all-link:hover {
  color: #fff;
  border-color: #244cfd;
  background: #244cfd;
}
.doctor-card-modern {
  overflow: hidden;
  border: 1px solid #e7ebf3;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(17, 27, 49, 0.055);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.doctor-card-modern:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(17, 27, 49, 0.11);
}
.doctor-photo-wrap {
  position: relative;
  overflow: hidden;
  background: #eef3f9;
  aspect-ratio: 4 / 3.55;
}
.doctor-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.doctor-card-modern:hover .doctor-photo-wrap img {
  transform: scale(1.035);
}
.doctor-availability {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #087b5b;
  background: rgba(255, 255, 255, 0.94);
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 5px 18px rgba(17, 27, 49, 0.1);
}
.doctor-availability i {
  color: #20c997;
  font-size: 8px;
}
.doctor-card-body {
  padding: 22px;
}
.doctor-specialty {
  display: inline-block;
  margin-bottom: 8px;
  color: #244cfd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.doctor-card-body h3 {
  margin: 0 0 4px;
  color: #111b31;
  font-size: 19px;
  line-height: 1.35;
  text-transform: none;
}
.doctor-role {
  color: #7c8799;
  font-size: 13px;
  min-height: 38px;
  margin: 0 0 15px;
}
.doctor-meta {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  margin-bottom: 14px;
  border-top: 1px solid #eef1f6;
  border-bottom: 1px solid #eef1f6;
  color: #657086;
  font-size: 12px;
}
.doctor-meta i {
  color: #244cfd;
  margin-right: 5px;
}
.doctor-meta .fa-star {
  color: #f4b543;
}
.doctor-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.doctor-profile-link {
  color: #111b31;
  font-size: 13px;
  font-weight: 800;
}
.doctor-profile-link:hover {
  color: #244cfd;
}
.doctor-book-link {
  width: 39px;
  height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #244cfd, #15cdea);
  box-shadow: 0 8px 18px rgba(36, 76, 253, 0.2);
}
.doctor-book-link:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* 11. Hotline */
.medicore-emergency-cta {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
  background-image: url("../images/hotline-bg.jpg");
  background-repeat: no-repeat;
  background-position: center 52%;
  background-size: cover;
  padding: 68px 0;
}
.medicore-emergency-cta:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13, 31, 73, 0.95) 0%, rgba(36, 76, 253, 0.92) 56%, rgba(21, 205, 234, 0.82) 100%);
  z-index: -1;
}
.medicore-emergency-cta:before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -120px;
  top: -180px;
  border-radius: 50%;
  border: 45px solid rgba(255, 255, 255, 0.06);
  z-index: 0;
}
.emergency-copy {
  display: flex;
  gap: 20px;
  align-items: center;
}
.emergency-icon {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 27px;
  backdrop-filter: blur(5px);
}
.emergency-kicker {
  display: block;
  color: #9fecff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.medicore-emergency-cta h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin: 0 0 8px;
}
.medicore-emergency-cta p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
  margin: 0;
}
.emergency-actions {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
}
.emergency-phone {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 14px;
  color: #122044;
  background: #fff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(6, 20, 57, 0.18);
}
.emergency-phone:hover {
  color: #244cfd;
  transform: translateY(-2px);
}
.emergency-phone i {
  color: #244cfd;
}
.emergency-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

@media (max-width: 991.98px) {
  .testimonial-card-secondary {
    margin-left: 0;
  }
  .appointment-card {
    padding: 30px;
  }
  .emergency-actions {
    align-items: flex-start;
  }
}
@media (max-width: 575.98px) {
  .care-copy > h2,
  .specialists-title {
    letter-spacing: -1px;
  }
  .testimonial-top {
    grid-template-columns: 48px 1fr;
  }
  .testimonial-rating {
    grid-column: 2;
  }
  .appointment-card {
    padding: 24px 18px;
    border-radius: 20px;
  }
  .appointment-card-head {
    gap: 12px;
  }
  .appointment-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }
  .emergency-copy {
    align-items: flex-start;
  }
  .emergency-icon {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
  .emergency-phone {
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }
  .emergency-actions {
    width: 100%;
  }
}

/* 12. News */
.home-news {
  position: relative;
  overflow: hidden;
  background: #f8faff;
  padding-top: 110px;
  padding-bottom: 120px;
}
.home-news::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -180px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 228, 253, 0.12) 0%, rgba(21, 228, 253, 0) 70%);
  pointer-events: none;
}
.news-heading-row {
  margin-bottom: 46px;
}
.news-heading-copy {
  max-width: 720px;
}
.news-heading-copy .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  padding: 7px 12px;
  border: 1px solid #dfe7ff;
  border-radius: 999px;
  color: #244cfd;
  background: #f2f6ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.news-heading-copy h2 {
  margin: 0 0 14px;
  color: #172033;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1.2px;
}
.news-heading-copy h2 span {
  color: #244cfd;
}
.news-heading-copy p {
  max-width: 680px;
  margin: 0;
  color: #677387;
  font-size: 16px;
  line-height: 1.8;
}
.news-all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid #dbe3f0;
  border-radius: 12px;
  color: #172033;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(23, 32, 51, 0.04);
  transition: all 0.25s ease;
}
.news-all-link:hover {
  color: #fff;
  border-color: #244cfd;
  background: #244cfd;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(36, 76, 253, 0.2);
}
.modern-news-card {
  overflow: hidden;
  border: 1px solid #e6ebf3;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(27, 42, 72, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.modern-news-card:hover {
  transform: translateY(-7px);
  border-color: #d5dfff;
  box-shadow: 0 24px 50px rgba(27, 42, 72, 0.12);
}
.news-card-image {
  position: relative;
  display: block;
  height: 235px;
  overflow: hidden;
  background: #edf2f9;
}
.news-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 55%, rgba(15, 23, 42, 0.16) 100%);
  pointer-events: none;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.modern-news-card:hover .news-card-image img {
  transform: scale(1.045);
}
.news-category {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #244cfd;
  background: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(8px);
}
.news-card-body {
  padding: 25px 25px 27px;
}
.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-bottom: 15px;
  color: #8a95a7;
  font-size: 12px;
  font-weight: 500;
}
.news-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.news-meta i {
  color: #244cfd;
}
.news-card-body h3 {
  margin: 0 0 13px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.42;
  text-transform: none;
}
.news-card-body h3 a {
  color: #172033;
  transition: color 0.25s ease;
}
.modern-news-card:hover .news-card-body h3 a {
  color: #244cfd;
}
.news-card-body p {
  margin: 0 0 21px;
  color: #6c7789;
  font-size: 14px;
  line-height: 1.75;
}
.modern-news-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #244cfd;
  font-size: 13px;
  font-weight: 700;
}
.modern-news-link i {
  font-size: 11px;
  transition: transform 0.25s ease;
}
.modern-news-link:hover {
  color: #172033;
}
.modern-news-link:hover i {
  transform: translateX(4px);
}
@media (max-width: 991.98px) {
  .home-news {
    padding-top: 90px;
    padding-bottom: 95px;
  }
  .news-heading-copy h2 {
    font-size: 36px;
  }
  .news-card-image {
    height: 225px;
  }
}
@media (max-width: 575.98px) {
  .home-news {
    padding-top: 75px;
    padding-bottom: 80px;
  }
  .news-heading-row {
    margin-bottom: 32px;
  }
  .news-heading-copy h2 {
    font-size: 31px;
    letter-spacing: -0.7px;
  }
  .news-heading-copy p {
    font-size: 15px;
  }
  .news-all-link {
    width: 100%;
  }
  .news-card-image {
    height: 215px;
  }
  .news-card-body {
    padding: 22px 20px 24px;
  }
}

/* 13. Footer */
.medicore-footer {
  position: relative;
  overflow: hidden;
  color: #b8c2d3;
  background: #0f1728;
}
.medicore-footer::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: -230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 76, 253, 0.26) 0%, rgba(36, 76, 253, 0) 70%);
  pointer-events: none;
}
.footer-main {
  position: relative;
  z-index: 1;
  padding: 82px 0 68px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: #fff !important;
  font-family: "Ubuntu", sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  text-transform: none !important;
}
.footer-brand img {
  width: 38px;
  height: 38px;
  margin: 0;
  object-fit: contain;
}
.footer-brand > span > span {
  color: #4b70ff;
}
.footer-brand-block > p {
  max-width: 390px;
  margin: 0 0 25px;
  color: #9aa6ba;
  font-size: 14px;
  line-height: 1.8;
}
.footer-contact-list {
  display: grid;
  gap: 12px;
}
.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d7deea;
  text-transform: none;
}
.footer-contact-list a > i {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  color: #58dcef;
  background: rgba(255, 255, 255, 0.04);
}
.footer-contact-list a span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  font-weight: 600;
}
.footer-contact-list a small {
  color: #77849a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-contact-list a:hover {
  color: #fff;
}
.footer-links-block h3,
.footer-newsletter h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
}
.footer-links-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links-block li + li {
  margin-top: 12px;
}
.footer-links-block a {
  color: #9aa6ba;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.footer-links-block a:hover {
  color: #fff;
}
.footer-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #58dcef;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-newsletter > p {
  margin: -8px 0 18px;
  color: #8e9aae;
  font-size: 13px;
  line-height: 1.7;
}
.footer-email-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 5px 5px 5px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.footer-email-wrap:focus-within {
  border-color: rgba(88, 220, 239, 0.55);
  background: rgba(255, 255, 255, 0.075);
}
.footer-email-wrap > i {
  color: #75839a;
  font-size: 13px;
}
.footer-email-wrap input {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 8px 10px;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 13px;
}
.footer-email-wrap input::placeholder {
  color: #78869b;
}
.footer-email-wrap button {
  flex: 0 0 41px;
  width: 41px;
  height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #244cfd 0%, #18cbea 100%);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.footer-email-wrap button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(36, 76, 253, 0.3);
}
.footer-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: #7e8ba0;
  font-size: 11px;
}
.footer-hours i {
  color: #58dcef;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}
.footer-bottom-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-bottom p {
  margin: 0;
  color: #758197;
  font-size: 12px;
  line-height: 1.7;
}
.footer-bottom .template-credit {
  color: #667287;
}
.footer-bottom .template-credit a {
  color: #8d9ab0;
  text-transform: none;
}
.footer-bottom .template-credit a:hover {
  color: #58dcef;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  color: #8d99ad;
  background: rgba(255, 255, 255, 0.035);
  text-transform: none;
  transition: all 0.2s ease;
}
.footer-social a:hover {
  color: #fff;
  border-color: rgba(88, 220, 239, 0.3);
  background: rgba(88, 220, 239, 0.12);
  transform: translateY(-2px);
}
@media (max-width: 991.98px) {
  .footer-main {
    padding: 70px 0 58px;
  }
  .footer-bottom-inner {
    padding: 22px 0;
    min-height: 0;
  }
}
@media (max-width: 767.98px) {
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575.98px) {
  .footer-main {
    padding: 62px 0 50px;
  }
  .footer-brand-block > p {
    font-size: 13px;
  }
  .footer-newsletter {
    margin-top: 4px;
  }
}

/* 14. Inner Banner */
.banner-area.other-page {
  padding: 220px 0 170px;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .banner-area.other-page {
    padding: 250px 0 100px;
  }
}
@media (max-width: 575.98px) {
  .banner-area.other-page {
    padding: 250px 0 100px;
  }
}
.banner-area.other-page a {
  color: #777;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.banner-area.other-page a:hover {
  color: #244cfd;
}

/* 15. Doctors Page */
.doctors-page,
.doctor-details-page {
  background: #fff;
}

.doctors-page .doctors-hero,
.doctor-details-page .doctors-hero {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-color: #eef4f8;
  background-image: url("../images/banner-bg.jpg");
  background-repeat: no-repeat;
  background-position: center 43%;
  background-size: cover;
}
.doctors-page .doctors-hero::before,
.doctor-details-page .doctors-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 43%, rgba(255, 255, 255, 0.69) 62%, rgba(255, 255, 255, 0.08) 83%);
}
.doctors-page .doctors-hero-content,
.doctor-details-page .doctors-hero-content {
  padding-top: 54px;
}
.doctors-page .doctors-hero h1,
.doctor-details-page .doctors-hero h1 {
  margin: 0 0 12px;
  color: #172033;
  font-size: 48px !important;
  line-height: 1.05;
  letter-spacing: -1.45px;
}
.doctors-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #748096;
  font-size: 13px;
  font-weight: 600;
}
.doctors-breadcrumb a {
  color: #59667b;
  text-decoration: none;
  transition: color 0.2s ease;
}
.doctors-breadcrumb a:hover {
  color: #244cfd;
}
.doctors-breadcrumb i {
  color: #aab3c0;
}

.doctors-directory {
  padding: 92px 0 105px;
  background: #f7f9fd;
}
.doctors-directory-heading {
  max-width: 660px;
  margin: 0 auto 36px;
}
.doctors-section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #244cfd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.doctors-directory-heading h2 {
  margin: 0;
  color: #172033;
  font-size: 40px !important;
  line-height: 1.12;
  letter-spacing: -1px;
}
.doctors-directory-heading p {
  margin: 12px auto 0;
  color: #6c7789;
  font-size: 14px;
  line-height: 1.7;
}

.doctor-filter-bar {
  max-width: 850px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 10px;
  margin: 0 auto 42px;
  padding: 10px;
  border: 1px solid #e2e8f1;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(25, 43, 72, 0.05);
}
.doctor-search-field,
.doctor-department-filter {
  position: relative;
  display: flex;
  align-items: center;
}
.doctor-search-field > i,
.doctor-department-filter > i {
  position: absolute;
  left: 15px;
  z-index: 2;
  color: #244cfd;
  font-size: 13px;
  pointer-events: none;
}
.doctor-search-field input,
.doctor-department-filter select {
  width: 100%;
  height: 46px;
  margin: 0;
  border: 1px solid #e8edf4;
  border-radius: 11px;
  outline: 0;
  color: #273247;
  background: #fbfcfe;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.doctor-search-field input {
  padding: 0 16px 0 40px;
}
.doctor-department-filter select {
  appearance: none;
  padding: 0 38px 0 40px;
  cursor: pointer;
}
.doctor-department-filter::after {
  content: "\f107";
  position: absolute;
  right: 15px;
  color: #7d8899;
  font-family: FontAwesome;
  font-size: 12px;
  pointer-events: none;
}
.doctor-search-field input:focus,
.doctor-department-filter select:focus {
  border-color: #cad6ff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(36, 76, 253, 0.08);
}
.doctor-search-field input::placeholder {
  color: #929cad;
}

.doctor-directory-grid > div {
  display: flex;
}
.doctor-directory-card {
  width: 100%;
  box-shadow: 0 10px 28px rgba(17, 27, 49, 0.045);
}
.doctor-directory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(17, 27, 49, 0.09);
}
.doctor-next-slot {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  margin: 0 0 15px;
  color: #687489;
  font-size: 11px;
  line-height: 1.45;
}
.doctor-next-slot i {
  color: #18bdda;
}
.doctor-directory-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}
.doctor-directory-profile,
.doctor-directory-book {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}
.doctor-directory-profile {
  flex: 1;
  padding: 0 13px;
  border: 1px solid #dce4ef;
  color: #202b3d;
  background: #fff;
}
.doctor-directory-profile:hover {
  color: #244cfd;
  border-color: #bdcaf8;
  background: #f8faff;
}
.doctor-directory-book {
  gap: 7px;
  padding: 0 13px;
  color: #fff;
  background: linear-gradient(135deg, #244cfd 0%, #18cbea 100%);
  box-shadow: 0 7px 16px rgba(36, 76, 253, 0.14);
}
.doctor-directory-book:hover {
  color: #fff;
  transform: translateY(-1px);
}
.doctor-filter-empty {
  padding: 48px 20px;
  margin-top: 8px;
  text-align: center;
  border: 1px dashed #d8e0eb;
  border-radius: 16px;
  color: #758095;
  background: #fff;
}
.doctor-filter-empty i {
  margin-bottom: 12px;
  color: #244cfd;
  font-size: 24px;
}
.doctor-filter-empty h3 {
  margin: 0 0 6px;
  color: #172033;
  font-size: 18px;
  text-transform: none;
}
.doctor-filter-empty p {
  margin: 0;
  font-size: 13px;
}
.doctors-help-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 42px;
  padding: 21px 24px;
  border: 1px solid #e0e7f1;
  border-radius: 15px;
  background: #fff;
}
.doctors-help-bar span,
.doctors-help-bar strong {
  display: block;
}
.doctors-help-bar span {
  margin-bottom: 4px;
  color: #7b8698;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.45px;
}
.doctors-help-bar strong {
  color: #1d283b;
  font-size: 14px;
}
.doctors-help-bar a {
  white-space: nowrap;
  color: #244cfd;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.doctors-help-bar a i {
  margin-left: 6px;
}

.medicore-navbar .dropdown-item.active,
.medicore-navbar .dropdown-item:active {
  color: #244cfd;
  background: #eef3ff;
}

.doctor-details-preview {
  padding: 95px 0 105px;
  background: #f7f9fd;
}
.doctor-details-preview-image {
  overflow: hidden;
  border-radius: 20px;
  background: #eef3f9;
  box-shadow: 0 16px 38px rgba(20, 38, 66, 0.08);
}
.doctor-details-preview-image img {
  width: 100%;
  display: block;
}
.doctor-details-preview h2 {
  margin: 0 0 6px;
  color: #172033;
  font-size: 38px !important;
  letter-spacing: -1px;
}
.doctor-details-role {
  margin: 0 0 20px;
  color: #244cfd;
  font-weight: 700;
}
.doctor-details-preview .col-lg-8 > p:not(.doctor-details-role) {
  max-width: 670px;
  color: #69758a;
  line-height: 1.8;
}
.doctor-details-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #244cfd;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .doctors-page .doctors-hero,
  .doctor-details-page .doctors-hero {
    min-height: 285px;
    background-position: 62% center;
  }
  .doctors-page .doctors-hero-content,
  .doctor-details-page .doctors-hero-content {
    padding-top: 32px;
  }
  .doctors-directory {
    padding: 78px 0 88px;
  }
  .doctor-filter-bar {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .doctors-page .doctors-hero,
  .doctor-details-page .doctors-hero {
    min-height: 245px;
    background-position: 68% center;
  }
  .doctors-page .doctors-hero::before,
  .doctor-details-page .doctors-hero::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 62%, rgba(255, 255, 255, 0.56) 100%);
  }
  .doctors-page .doctors-hero h1,
  .doctor-details-page .doctors-hero h1 {
    font-size: 40px !important;
  }
  .doctor-filter-bar {
    grid-template-columns: 1fr;
  }
  .doctors-help-bar {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  .doctors-page .doctors-hero,
  .doctor-details-page .doctors-hero {
    min-height: 220px;
  }
  .doctors-page .doctors-hero-content,
  .doctor-details-page .doctors-hero-content {
    padding-top: 22px;
  }
  .doctors-page .doctors-hero h1,
  .doctor-details-page .doctors-hero h1 {
    font-size: 34px !important;
  }
  .doctors-directory {
    padding: 66px 0 74px;
  }
  .doctors-directory-heading {
    margin-bottom: 28px;
  }
  .doctors-directory-heading h2 {
    font-size: 34px !important;
  }
  .doctor-filter-bar {
    margin-bottom: 30px;
  }
  .doctor-directory-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .doctor-directory-profile,
  .doctor-directory-book {
    width: 100%;
  }
  .doctor-details-preview {
    padding: 70px 0 78px;
  }
}

/* 16. Blog */
.blog_categorie_area {
  padding-top: 80px;
  padding-bottom: 80px;
}
.categories_post {
  position: relative;
  text-align: center;
  cursor: pointer;
}
.categories_post img {
  max-width: 100%;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .categories_post img {
    width: 100%;
  }
}
.categories_post .categories_details {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: rgba(1, 2, 14, 0.4);
  color: #fff;
  transition: all 0.3s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}
.categories_post .categories_details h5 {
  margin-bottom: 0px;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}
.categories_post .categories_details p {
  font-weight: 300;
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 0px;
}
.categories_post .categories_details .border_line {
  margin: 10px 0px;
  background: #fff;
  width: 100%;
  height: 1px;
}
.categories_post:hover .categories_details {
  background: rgba(36, 76, 253, 0.7);
}
.blog_item {
  margin-bottom: 40px;
}
.blog_info {
  padding-top: 30px;
}
.blog_info .post_tag {
  padding-bottom: 20px;
}
.blog_info .post_tag a {
  font: 300 14px/21px;
  color: #222;
}
.blog_info .post_tag a:hover {
  color: #244cfd;
}
.blog_info .post_tag a.active {
  color: #244cfd;
}
.blog_info .blog_meta li a {
  font: 300 14px/20px;
  color: #777777;
  vertical-align: middle;
  padding-bottom: 12px;
  display: inline-block;
}
.blog_info .blog_meta li a i {
  color: #222;
  font-size: 16px;
  font-weight: 600;
  padding-left: 15px;
  line-height: 20px;
  vertical-align: middle;
}
.blog_info .blog_meta li a:hover {
  color: #244cfd;
}
.blog_post img {
  max-width: 100%;
}
.blog_details {
  padding-top: 20px;
}
.blog_details h4 {
  font-size: 24px;
  line-height: 36px;
  color: #222;
  font-weight: 600;
  transition: all 0.3s linear;
}
.blog_details h4:hover {
  color: #244cfd;
}
.blog_details p {
  margin-bottom: 26px;
}
.blog_details .template-btn {
  color: #222 !important;
  padding: 10px 24px !important;
  background: #f9f9fd;
}
.blog_details .template-btn:hover {
  color: #fff !important;
  background: linear-gradient(to right, #244cfd, #15e4fd);
}
.blog_right_sidebar {
  border: 1px solid #f9f9f9;
  background: #f9f9fd;
  padding: 30px;
}
.blog_right_sidebar .widget_title {
  font-size: 18px;
  line-height: 25px;
  background: linear-gradient(to right, #244cfd, #15e4fd);
  text-align: center;
  color: #fff;
  padding: 8px 0px;
  margin-bottom: 30px;
}
.blog_right_sidebar .search_widget .input-group .form-control {
  font-size: 14px;
  line-height: 29px;
  border: 0px;
  width: 100%;
  font-weight: 300;
  color: #fff;
  padding-left: 20px;
  border-radius: 45px;
  z-index: 0;
  background: linear-gradient(to right, #244cfd, #15e4fd);
}
.blog_right_sidebar .search_widget .input-group .form-control:focus {
  box-shadow: none;
}
.blog_right_sidebar .search_widget .input-group .btn-default {
  position: absolute;
  right: 20px;
  background: transparent;
  border: 0px;
  box-shadow: none;
  font-size: 14px;
  color: #fff;
  padding: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.blog_right_sidebar .author_widget {
  text-align: center;
}
.blog_right_sidebar .author_widget h5 {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 5px;
  margin-top: 30px;
}
.blog_right_sidebar .author_widget p {
  margin-bottom: 0px;
}
.blog_right_sidebar .author_widget .social_icon {
  padding: 7px 0px 15px;
}
.blog_right_sidebar .author_widget .social_icon a {
  font-size: 14px;
  color: #222;
  transition: all 0.2s linear;
}
.blog_right_sidebar .author_widget .social_icon a + a {
  margin-left: 20px;
}
.blog_right_sidebar .author_widget .social_icon a:hover {
  color: #244cfd;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body {
  justify-content: center;
  align-self: center;
  padding-left: 20px;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body h5 {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
  transition: all 0.3s linear;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body h5:hover {
  color: #244cfd;
}
.blog_right_sidebar .popular_post_widget .post_item .media-body p {
  font-size: 12px;
  line-height: 21px;
  margin-bottom: 0px;
}
.blog_right_sidebar .popular_post_widget .post_item + .post_item {
  margin-top: 20px;
}
.blog_right_sidebar .post_category_widget .cat-list li {
  border-bottom: 2px dotted #eee;
  transition: all 0.3s ease 0s;
  padding-bottom: 12px;
}
.blog_right_sidebar .post_category_widget .cat-list li a {
  font-size: 14px;
  line-height: 20px;
  color: #777;
}
.blog_right_sidebar .post_category_widget .cat-list li a p {
  margin-bottom: 0px;
}
.blog_right_sidebar .post_category_widget .cat-list li + li {
  padding-top: 15px;
}
.blog_right_sidebar .post_category_widget .cat-list li:hover {
  border-color: #244cfd;
}
.blog_right_sidebar .post_category_widget .cat-list li:hover a {
  color: #244cfd;
}
.blog_right_sidebar .newsletter_widget {
  text-align: center;
}
.blog_right_sidebar .newsletter_widget .form-group {
  margin-bottom: 8px;
}
.blog_right_sidebar .newsletter_widget .input-group-prepend {
  margin-right: -1px;
}
.blog_right_sidebar .newsletter_widget .input-group-text {
  background: #fff;
  border-radius: 0px;
  vertical-align: top;
  font-size: 12px;
  line-height: 36px;
  padding: 0px 0px 0px 15px;
  border: 1px solid #eeeeee;
  border-right: 0px;
}
.blog_right_sidebar .newsletter_widget .form-control {
  font-size: 12px;
  line-height: 24px;
  color: #cccccc;
  border: 1px solid #eeeeee;
  border-left: 0px;
  border-radius: 0px;
}
.blog_right_sidebar .newsletter_widget .form-control:focus {
  outline: none;
  box-shadow: none;
}
.blog_right_sidebar .newsletter_widget .bbtns {
  color: #fff;
  background: linear-gradient(to right, #244cfd, #15e4fd);
  font-size: 12px;
  line-height: 38px;
  display: inline-block;
  font-weight: 500;
  padding: 0px 24px 0px 24px;
  border-radius: 0;
}
.blog_right_sidebar .newsletter_widget .text-bottom {
  font-size: 12px;
}
.blog_right_sidebar .tag_cloud_widget ul li {
  display: inline-block;
}
.blog_right_sidebar .tag_cloud_widget ul li a {
  color: #222;
  display: inline-block;
  border: 1px solid #eee;
  background: #fff;
  padding: 5px 13px;
  margin-bottom: 8px;
  transition: all 0.3s ease 0s;
  font-size: 12px;
}
.blog_right_sidebar .tag_cloud_widget ul li a:hover {
  background: linear-gradient(to right, #244cfd, #15e4fd);
  color: #fff;
}
.blog_right_sidebar .br {
  width: 100%;
  height: 1px;
  background: #eee;
  margin: 30px 0px;
}
.blog-pagination {
  padding-top: 25px;
  padding-bottom: 95px;
}
.blog-pagination .page-link {
  border-radius: 0;
}
.blog-pagination .page-item {
  border: none;
}
.page-link {
  background: transparent;
  font-weight: 400;
}
.blog-pagination .page-item.active .page-link {
  background: linear-gradient(to right, #244cfd, #15e4fd);
  border-color: transparent;
  color: #fff;
}
.blog-pagination .page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #8a8a8a;
  border: none;
}
.blog-pagination .page-item:last-child .page-link,
.blog-pagination .page-item:first-child .page-link {
  border-radius: 0;
}
.blog-pagination .page-link:hover {
  color: #fff;
  text-decoration: none;
  background: linear-gradient(to right, #244cfd, #15e4fd);
  border-color: #eee;
}

/* 17. Blog Details */
.single-post .social-links {
  padding-top: 10px;
}
.single-post .social-links li {
  display: inline-block;
  margin-bottom: 10px;
}
.single-post .social-links li a {
  color: #cccccc;
  padding: 7px;
  font-size: 14px;
  transition: all 0.2s linear;
}
.single-post .social-links li a:hover {
  color: #222;
}
.single-post .blog_details {
  padding-top: 26px;
}
.single-post .blog_details p {
  margin-bottom: 10px;
}
.single-post .quotes {
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 24px 35px 24px 30px;
  background-color: #fff;
  box-shadow: -20.84px 21.58px 30px 0px rgba(176, 176, 176, 0.1);
  font-size: 14px;
  line-height: 24px;
  color: #777;
  font-style: italic;
}
.single-post .arrow {
  position: absolute;
}
.single-post .arrow .lnr {
  font-size: 20px;
  font-weight: 600;
}
.single-post .thumb .overlay-bg {
  background: rgba(0, 0, 0, 0.8);
}
@media (max-width: 991px) {
  .single-post .sidebar-widgets {
    padding-bottom: 0px;
  }
}
.comments-area {
  background: #fafaff;
  border: 1px solid #eee;
  padding: 50px 30px;
  margin-top: 50px;
}
@media (max-width: 414px) {
  .comments-area {
    padding: 50px 8px;
  }
}
.comments-area h4 {
  text-align: center;
  margin-bottom: 50px;
  color: #222;
  font-size: 18px;
}
.comments-area h5 {
  font-size: 16px;
  margin-bottom: 0px;
}
.comments-area a {
  color: #222;
}
.comments-area .comment-list {
  padding-bottom: 48px;
}
.comments-area .comment-list:last-child {
  padding-bottom: 0px;
}
.comments-area .comment-list.left-padding {
  padding-left: 25px;
}
@media (max-width: 413px) {
  .comments-area .comment-list .single-comment h5 {
    font-size: 12px;
  }
  .comments-area .comment-list .single-comment .date {
    font-size: 11px;
  }
  .comments-area .comment-list .single-comment .comment {
    font-size: 10px;
  }
}
.comments-area .thumb {
  margin-right: 20px;
}
.comments-area .date {
  font-size: 13px;
  color: #cccccc;
  margin-bottom: 13px;
}
.comments-area .comment {
  color: #777777;
  margin-bottom: 0px;
}
.comments-area .btn-reply {
  background-color: #fff;
  color: #222;
  border: 1px solid #eee;
  padding: 5px 18px;
  font-size: 12px;
  display: block;
  font-weight: 600;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.comments-area .btn-reply:hover {
  background: linear-gradient(to right, #244cfd, #15e4fd);
  color: #fff !important;
}
.comment-form {
  background: #fafaff;
  text-align: center;
  border: 1px solid #eee;
  padding: 47px 30px 43px;
  margin-top: 50px;
  margin-bottom: 40px;
}
.comment-form h4 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 22px;
  color: #222;
}
.comment-form .name {
  padding-left: 0px;
}
@media (max-width: 767px) {
  .comment-form .name {
    padding-right: 0px;
    margin-bottom: 1rem;
  }
}
.comment-form .email {
  padding-right: 0px;
}
@media (max-width: 991px) {
  .comment-form .email {
    padding-left: 0px;
  }
}
.comment-form .form-control {
  padding: 8px 20px;
  background: #fff;
  border: none;
  border-radius: 0px;
  width: 100%;
  font-size: 14px;
  color: #777777;
  border: 1px solid transparent;
}
.comment-form .form-control:focus {
  box-shadow: none;
  border: 1px solid #eee;
}
.comment-form textarea.form-control {
  height: 140px;
  resize: none;
}
.comment-form ::-webkit-input-placeholder {
  font-size: 13px;
  color: #777;
}
.comment-form ::-moz-placeholder {
  font-size: 13px;
  color: #777;
}
.comment-form :-ms-input-placeholder {
  font-size: 13px;
  color: #777;
}
.comment-form :-moz-placeholder {
  font-size: 13px;
  color: #777;
}

/* 18. Contact */
#mapBox {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.info-text h3 {
  text-transform: inherit;
}
.into-icon i {
  font-size: 20px;
  color: #244cfd;
  margin-right: 20px;
}
.contact-form form .left,
.commentform-area form .left {
  width: 48%;
  float: left;
  overflow: hidden;
  margin-right: 4%;
}
@media (max-width: 575.98px) {
  .contact-form form .left,
  .commentform-area form .left {
    width: 100%;
    float: none;
  }
}
.contact-form form .left input,
.commentform-area form .left input {
  width: 100%;
  border: 1px solid #f9f9f9;
  padding: 12px 20px;
  margin-bottom: 20px;
}
.contact-form form .right,
.commentform-area form .right {
  width: 48%;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .contact-form form .right,
  .commentform-area form .right {
    width: 100%;
    float: none;
  }
}
.contact-form form .right textarea,
.commentform-area form .right textarea {
  width: 100%;
  border: 1px solid #f9f9f9;
  padding: 12px 20px;
}
.contact-form form button,
.commentform-area form button {
  margin-top: 20px;
  float: right;
  border: none;
}
@media (max-width: 575.98px) {
  .contact-form form button,
  .commentform-area form button {
    float: left;
  }
}

/* 19. Components */
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.sample-text-area {
  padding: 100px 0px;
}
.sample-text-area .title_color {
  margin-bottom: 30px;
}
.sample-text-area p {
  line-height: 26px;
}
.sample-text-area p b {
  font-weight: bold;
  color: #244cfd;
}
.sample-text-area p i {
  color: #244cfd;
  font-style: italic;
}
.sample-text-area p sup {
  color: #244cfd;
  font-style: italic;
}
.sample-text-area p sub {
  color: #244cfd;
  font-style: italic;
}
.sample-text-area p del {
  color: #244cfd;
}
.sample-text-area p u {
  color: #244cfd;
}
.elements_button .title_color {
  margin-bottom: 30px;
  color: #222;
}
.title_color {
  color: #222;
}
.button-group-area {
  margin-top: 15px;
}
.button-group-area:nth-child(odd) {
  margin-top: 40px;
}
.button-group-area:first-child {
  margin-top: 0px;
}
.button-group-area .theme_btn {
  margin-right: 10px;
}
.button-group-area .white_btn {
  margin-right: 10px;
}
.button-group-area .link {
  text-decoration: underline;
  color: #222;
  background: transparent;
}
.button-group-area .link:hover {
  color: #fff;
}
.button-group-area .disable {
  background: transparent;
  color: #007bff;
  cursor: not-allowed;
}
.button-group-area .disable:before {
  display: none;
}
.primary {
  background: #52c5fd;
}
.primary:before {
  background: #2faae6;
}
.success {
  background: #4cd3e3;
}
.success:before {
  background: #2ebccd;
}
.info {
  background: #38a4ff;
}
.info:before {
  background: #298cdf;
}
.warning {
  background: #f4e700;
}
.warning:before {
  background: #e1d608;
}
.danger {
  background: #f54940;
}
.danger:before {
  background: #e13b33;
}
.primary-border {
  background: transparent;
  border: 1px solid #52c5fd;
  color: #52c5fd;
}
.primary-border:before {
  background: #52c5fd;
}
.success-border {
  background: transparent;
  border: 1px solid #4cd3e3;
  color: #4cd3e3;
}
.success-border:before {
  background: #4cd3e3;
}
.info-border {
  background: transparent;
  border: 1px solid #38a4ff;
  color: #38a4ff;
}
.info-border:before {
  background: #38a4ff;
}
.warning-border {
  background: #fff;
  border: 1px solid #f4e700;
  color: #f4e700;
}
.warning-border:before {
  background: #f4e700;
}
.danger-border {
  background: transparent;
  border: 1px solid #f54940;
  color: #f54940;
}
.danger-border:before {
  background: #f54940;
}
.link-border {
  background: transparent;
  border: 1px solid #244cfd;
  color: #244cfd;
}
.link-border:before {
  background: #244cfd;
}
.radius {
  border-radius: 3px;
}
.circle {
  border-radius: 20px;
}
.arrow span {
  padding-left: 5px;
}
.e-large {
  line-height: 50px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.large {
  line-height: 45px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.medium {
  line-height: 30px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.small {
  line-height: 25px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.general {
  line-height: 38px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.generic-banner {
  margin-top: 60px;
  text-align: center;
}
.generic-banner .height {
  height: 600px;
}
@media (max-width: 767.98px) {
  .generic-banner .height {
    height: 400px;
  }
}
.generic-banner .generic-banner-content h2 {
  line-height: 1.2em;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .generic-banner .generic-banner-content h2 br {
    display: none;
  }
}
.generic-banner .generic-banner-content p {
  text-align: center;
  font-size: 16px;
}
@media (max-width: 991.98px) {
  .generic-banner .generic-banner-content p br {
    display: none;
  }
}
.generic-content h1 {
  font-weight: 600;
}
.about-generic-area {
  background: #fff;
}
.about-generic-area p {
  margin-bottom: 20px;
}
.white-bg {
  background: #fff;
}
.section-top-border {
  padding: 50px 0;
  border-top: 1px dotted #eee;
}
.switch-wrap {
  margin-bottom: 10px;
}
.switch-wrap p {
  margin: 0;
}
.sample-text-area {
  padding: 100px 0 70px 0;
}
.sample-text {
  margin-bottom: 0;
}
.text-heading {
  margin-bottom: 30px;
  font-size: 24px;
}
.typo-list {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .typo-sec {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .element-wrap {
    margin-top: 30px;
  }
}
b,
sup,
sub,
u,
del {
  color: #f8b600;
}
h1 {
  font-size: 36px;
}
h2 {
  font-size: 30px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 14px;
}
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
  color: #777777;
}
.button-area .border-top-generic {
  padding: 70px 15px;
  border-top: 1px dotted #eee;
}
.button-group-area .genric-btn {
  margin-right: 10px;
  margin-top: 10px;
}
.button-group-area .genric-btn:last-child {
  margin-right: 0;
}
.circle {
  border-radius: 20px;
}
.genric-btn {
  display: inline-block;
  outline: none;
  line-height: 40px;
  padding: 0 30px;
  font-size: 0.8em;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.genric-btn:focus {
  outline: none;
}
.genric-btn.e-large {
  padding: 0 40px;
  line-height: 50px;
}
.genric-btn.large {
  line-height: 45px;
}
.genric-btn.medium {
  line-height: 30px;
}
.genric-btn.small {
  line-height: 25px;
}
.genric-btn.radius {
  border-radius: 3px;
}
.genric-btn.circle {
  border-radius: 20px;
}
.genric-btn.arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.genric-btn.arrow span {
  margin-left: 10px;
}
.genric-btn.default {
  color: #222222;
  background: #f9f9ff;
  border: 1px solid transparent;
}
.genric-btn.default:hover {
  border: 1px solid #f9f9ff;
  background: #fff;
}
.genric-btn.default-border {
  border: 1px solid #f9f9ff;
  background: #fff;
}
.genric-btn.default-border:hover {
  color: #222222;
  background: #f9f9ff;
  border: 1px solid transparent;
}
.genric-btn.primary {
  color: #fff;
  background: #f8b600;
  border: 1px solid transparent;
}
.genric-btn.primary:hover {
  color: #f8b600;
  border: 1px solid #f8b600;
  background: #fff;
}
.genric-btn.primary-border {
  color: #f8b600;
  border: 1px solid #f8b600;
  background: #fff;
}
.genric-btn.primary-border:hover {
  color: #fff;
  background: #f8b600;
  border: 1px solid transparent;
}
.genric-btn.success {
  color: #fff;
  background: #4cd3e3;
  border: 1px solid transparent;
}
.genric-btn.success:hover {
  color: #4cd3e3;
  border: 1px solid #4cd3e3;
  background: #fff;
}
.genric-btn.success-border {
  color: #4cd3e3;
  border: 1px solid #4cd3e3;
  background: #fff;
}
.genric-btn.success-border:hover {
  color: #fff;
  background: #4cd3e3;
  border: 1px solid transparent;
}
.genric-btn.info {
  color: #fff;
  background: #38a4ff;
  border: 1px solid transparent;
}
.genric-btn.info:hover {
  color: #38a4ff;
  border: 1px solid #38a4ff;
  background: #fff;
}
.genric-btn.info-border {
  color: #38a4ff;
  border: 1px solid #38a4ff;
  background: #fff;
}
.genric-btn.info-border:hover {
  color: #fff;
  background: #38a4ff;
  border: 1px solid transparent;
}
.genric-btn.warning {
  color: #fff;
  background: #f4e700;
  border: 1px solid transparent;
}
.genric-btn.warning:hover {
  color: #f4e700;
  border: 1px solid #f4e700;
  background: #fff;
}
.genric-btn.warning-border {
  color: #f4e700;
  border: 1px solid #f4e700;
  background: #fff;
}
.genric-btn.warning-border:hover {
  color: #fff;
  background: #f4e700;
  border: 1px solid transparent;
}
.genric-btn.danger {
  color: #fff;
  background: #f44a40;
  border: 1px solid transparent;
}
.genric-btn.danger:hover {
  color: #f44a40;
  border: 1px solid #f44a40;
  background: #fff;
}
.genric-btn.danger-border {
  color: #f44a40;
  border: 1px solid #f44a40;
  background: #fff;
}
.genric-btn.danger-border:hover {
  color: #fff;
  background: #f44a40;
  border: 1px solid transparent;
}
.genric-btn.link {
  color: #222222;
  background: #f9f9ff;
  text-decoration: underline;
  border: 1px solid transparent;
}
.genric-btn.link:hover {
  color: #222222;
  border: 1px solid #f9f9ff;
  background: #fff;
}
.genric-btn.link-border {
  color: #222222;
  border: 1px solid #f9f9ff;
  background: #fff;
  text-decoration: underline;
}
.genric-btn.link-border:hover {
  color: #222222;
  background: #f9f9ff;
  border: 1px solid transparent;
}
.genric-btn.disable {
  color: #222222, 0.3;
  background: #f9f9ff;
  border: 1px solid transparent;
  cursor: not-allowed;
}
.generic-blockquote {
  padding: 30px 50px 30px 30px;
  background: #fff;
  border-left: 2px solid #244cfd;
}
@media (max-width: 991px) {
  .progress-table-wrap {
    overflow-x: scroll;
  }
}
.progress-table {
  background: #fff;
  padding: 15px 0px 30px 0px;
  min-width: 800px;
}
.progress-table .serial {
  width: 11.83%;
  padding-left: 30px;
}
.progress-table .country {
  width: 28.07%;
}
.progress-table .visit {
  width: 19.74%;
}
.progress-table .percentage {
  width: 40.36%;
  padding-right: 50px;
}
.progress-table .table-head {
  display: flex;
}
.progress-table .table-head .serial,
.progress-table .table-head .country,
.progress-table .table-head .visit,
.progress-table .table-head .percentage {
  color: #222222;
  line-height: 40px;
  text-transform: uppercase;
  font-weight: 500;
}
.progress-table .table-row {
  padding: 15px 0;
  border-top: 1px solid #edf3fd;
  display: flex;
}
.progress-table .table-row .serial,
.progress-table .table-row .country,
.progress-table .table-row .visit,
.progress-table .table-row .percentage {
  display: flex;
  align-items: center;
}
.progress-table .table-row .country img {
  margin-right: 15px;
}
.progress-table .table-row .percentage .progress {
  width: 80%;
  border-radius: 0px;
  background: transparent;
}
.progress-table .table-row .percentage .progress .progress-bar {
  height: 5px;
  line-height: 5px;
}
.progress-table .table-row .percentage .progress .progress-bar.color-1 {
  background-color: #6382e6;
}
.progress-table .table-row .percentage .progress .progress-bar.color-2 {
  background-color: #e66686;
}
.progress-table .table-row .percentage .progress .progress-bar.color-3 {
  background-color: #f09359;
}
.progress-table .table-row .percentage .progress .progress-bar.color-4 {
  background-color: #73fbaf;
}
.progress-table .table-row .percentage .progress .progress-bar.color-5 {
  background-color: #73fbaf;
}
.progress-table .table-row .percentage .progress .progress-bar.color-6 {
  background-color: #6382e6;
}
.progress-table .table-row .percentage .progress .progress-bar.color-7 {
  background-color: #a367e7;
}
.progress-table .table-row .percentage .progress .progress-bar.color-8 {
  background-color: #e66686;
}
.single-gallery-image {
  margin-top: 30px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  height: 200px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.single-gallery-image:hover {
  opacity: 0.8;
}
.list-style {
  width: 14px;
  height: 14px;
}
.unordered-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.82em !important;
}
.unordered-list li:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid #f8b600;
  background: #fff;
  top: 4px;
  left: 0;
  border-radius: 50%;
}
.ordered-list {
  margin-left: 30px;
}
.ordered-list li {
  list-style-type: decimal-leading-zero;
  color: #f8b600;
  font-weight: 500;
  line-height: 1.82em !important;
}
.ordered-list li span {
  font-weight: 300;
  color: #777777;
}
.ordered-list-alpha li {
  margin-left: 30px;
  list-style-type: lower-alpha;
  color: #f8b600;
  font-weight: 500;
  line-height: 1.82em !important;
}
.ordered-list-alpha li span {
  font-weight: 300;
  color: #777777;
}
.ordered-list-roman li {
  margin-left: 30px;
  list-style-type: lower-roman;
  color: #f8b600;
  font-weight: 500;
  line-height: 1.82em !important;
}
.ordered-list-roman li span {
  font-weight: 300;
  color: #777777;
}
.single-input {
  display: block;
  width: 100%;
  line-height: 40px;
  border: none;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px;
}
.single-input:focus {
  outline: none;
}
.input-group-icon {
  position: relative;
}
.input-group-icon .icon {
  position: absolute;
  left: 20px;
  top: 0;
  line-height: 40px;
  z-index: 3;
}
.input-group-icon .icon i {
  color: #797979;
}
.input-group-icon .single-input {
  padding-left: 45px;
}
.single-textarea {
  display: block;
  width: 100%;
  line-height: 40px;
  border: none;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px;
  height: 100px;
  resize: none;
}
.single-textarea:focus {
  outline: none;
}
.single-input-primary {
  display: block;
  width: 100%;
  line-height: 40px;
  border: 1px solid transparent;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px;
}
.single-input-primary:focus {
  outline: none;
  border: 1px solid #f8b600;
}
.single-input-accent {
  display: block;
  width: 100%;
  line-height: 40px;
  border: 1px solid transparent;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px;
}
.single-input-accent:focus {
  outline: none;
  border: 1px solid #eb6b55;
}
.single-input-secondary {
  display: block;
  width: 100%;
  line-height: 40px;
  border: 1px solid transparent;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px;
}
.single-input-secondary:focus {
  outline: none;
  border: 1px solid #f09359;
}
.default-switch {
  width: 35px;
  height: 17px;
  border-radius: 8.5px;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.default-switch input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.default-switch input + label {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #f8b600;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.default-switch input:checked + label {
  left: 19px;
}
.single-element-widget {
  margin-bottom: 30px;
}
.primary-switch {
  width: 35px;
  height: 17px;
  border-radius: 8.5px;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.primary-switch input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.primary-switch input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.primary-switch input + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 8.5px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.primary-switch input + label:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.primary-switch input:checked + label:after {
  left: 19px;
}
.primary-switch input:checked + label:before {
  background: #f8b600;
}
.confirm-switch {
  width: 35px;
  height: 17px;
  border-radius: 8.5px;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.confirm-switch input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.confirm-switch input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.confirm-switch input + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 8.5px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}
.confirm-switch input + label:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.confirm-switch input:checked + label:after {
  left: 19px;
}
.confirm-switch input:checked + label:before {
  background: #4cd3e3;
}
.primary-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.primary-checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.primary-checkbox input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid #f1f1f1;
}
.single-defination h4 {
  color: #222;
}
.primary-checkbox input:checked + label {
  background: url(../images/elements/primary-check.png) no-repeat center center/cover;
  border: none;
}
.confirm-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.confirm-checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.confirm-checkbox input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid #f1f1f1;
}
.confirm-checkbox input:checked + label {
  background: url(../images/elements/success-check.png) no-repeat center center/cover;
  border: none;
}
.disabled-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.disabled-checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.disabled-checkbox input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid #f1f1f1;
}
.disabled-checkbox input:disabled {
  cursor: not-allowed;
  z-index: 3;
}
.disabled-checkbox input:checked + label {
  background: url(../images/elements/disabled-check.png) no-repeat center center/cover;
  border: none;
}
.primary-radio {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.primary-radio input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.primary-radio input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #f1f1f1;
}
.primary-radio input:checked + label {
  background: url(../images/elements/primary-radio.png) no-repeat center center/cover;
  border: none;
}
.confirm-radio {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.confirm-radio input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.confirm-radio input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #f1f1f1;
}
.confirm-radio input:checked + label {
  background: url(../images/elements/success-radio.png) no-repeat center center/cover;
  border: none;
}
.disabled-radio {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.disabled-radio input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.disabled-radio input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #f1f1f1;
}
.disabled-radio input:disabled {
  cursor: not-allowed;
  z-index: 3;
}
.unordered-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.ordered-list {
  list-style: none;
  padding: 0px;
}
.disabled-radio input:checked + label {
  background: url(../images/elements/disabled-radio.png) no-repeat center center/cover;
  border: none;
}
.default-select {
  height: 40px;
}
.default-select .nice-select {
  border: none;
  border-radius: 0px;
  height: 40px;
  background: #fff;
  padding-left: 20px;
  padding-right: 40px;
}
.default-select .nice-select .list {
  margin-top: 0;
  border: none;
  border-radius: 0px;
  box-shadow: none;
  width: 100%;
  padding: 10px 0 10px 0px;
}
.default-select .nice-select .list .option {
  font-weight: 300;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 28px;
  min-height: 28px;
  font-size: 12px;
  padding-left: 20px;
}
.default-select .nice-select .list .option.selected {
  color: #f8b600;
  background: transparent;
}
.default-select .nice-select .list .option:hover {
  color: #f8b600;
  background: transparent;
}
.default-select .current {
  margin-right: 50px;
  font-weight: 300;
}
.default-select .nice-select::after {
  right: 20px;
}
@media (max-width: 991px) {
  .left-align-p p {
    margin-top: 20px;
  }
}
.template-form-select {
  height: 40px;
  width: 100%;
}
.template-form-select .nice-select {
  border: none;
  border-radius: 0px;
  height: 40px;
  background: #f9f9ff !important;
  padding-left: 45px;
  padding-right: 40px;
  width: 100%;
}
.template-form-select .nice-select .list {
  margin-top: 0;
  border: none;
  border-radius: 0px;
  box-shadow: none;
  width: 100%;
  padding: 10px 0 10px 0px;
}
.mt-10 {
  margin-top: 10px;
}
.template-form-select .nice-select .list .option {
  font-weight: 300;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 28px;
  min-height: 28px;
  font-size: 12px;
  padding-left: 45px;
}
.template-form-select .nice-select .list .option.selected {
  color: #f8b600;
  background: transparent;
}
.template-form-select .nice-select .list .option:hover {
  color: #f8b600;
  background: transparent;
}
.template-form-select .current {
  margin-right: 50px;
  font-weight: 300;
}
.template-form-select .nice-select::after {
  right: 20px;
}
.page_link a {
  color: #fff;
}
.template-btn {
  color: #fff;
  background: linear-gradient(to right, #244cfd, #15e4fd);
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  display: inline-block;
  padding: 12px 30px !important;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.template-btn:hover {
  color: #fff;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}
.news-btn {
  color: #222;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.news-btn:hover {
  color: #244cfd;
}
.news-btn:hover i {
  right: -20px;
}
.news-btn i {
  position: absolute;
  right: -17px;
  top: 1px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

/* 20. Forms */
.appointment-form input,
.appointment-form textarea {
  width: 100%;
  padding: 12px 20px;
  border: none;
}
.appointment-form .template-btn {
  width: 100%;
}

/* 21. Utilities */
.section-padding {
  padding: 130px 0;
}
.section-padding2 {
  padding-top: 130px;
}
.section-padding3 {
  padding-bottom: 130px;
}
.section-padding4 {
  padding: 130px 0 200px;
}
.section-top {
  margin-bottom: 80px;
}
.section-top .style-change {
  color: #244cfd;
  font-style: italic;
}
.section-top2 {
  margin-bottom: 80px;
}
.section-top2 span {
  color: #244cfd;
}
.item-padding {
  padding: 40px 20px;
}

/* 22. Bootstrap Overrides */

a {
  text-decoration: none;
}

.form-group {
  margin-bottom: 1rem;
}

.form-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 30px;
}
.row {
  --bs-gutter-x: 30px;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}

.blog_right_sidebar .newsletter_widget .input-group-text {
  margin-right: -1px;
}

/* 23. Departments Page */
.departments-page {
  background: #fff;
}

.departments-page .departments-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-color: #eef4f8;
  background-image: url("../images/banner-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.departments-page .departments-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 42%, rgba(255, 255, 255, 0.72) 62%, rgba(255, 255, 255, 0.08) 82%);
}
.departments-page .departments-hero::after {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -260px;
  width: 530px;
  height: 530px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 76, 253, 0.09) 0%, rgba(36, 76, 253, 0) 70%);
}
.departments-page .departments-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: #7a8597;
  font-size: 13px;
  font-weight: 600;
}
.departments-page .departments-breadcrumb a {
  color: #5f6c80;
  text-decoration: none;
}
.departments-page .departments-breadcrumb a:hover {
  color: #244cfd;
}
.departments-page .departments-breadcrumb i {
  color: #a8b1bf;
}
.departments-page .departments-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #244cfd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.departments-page .departments-hero-kicker i {
  color: #18bfe0;
}
.departments-page .departments-hero h1 {
  max-width: 650px;
  margin: 0;
  color: #172033;
  font-size: 58px !important;
  line-height: 1.05;
  letter-spacing: -2px;
}
.departments-page .departments-hero h1 span {
  color: #244cfd;
}
.departments-page .departments-hero > .container > .row > div > p {
  max-width: 610px;
  margin: 22px 0 0;
  color: #667286;
  font-size: 16px;
  line-height: 1.8;
}
.departments-page .departments-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.departments-page .department-hero-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
}
.departments-page .department-hero-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #244cfd 0%, #18cbea 100%);
  box-shadow: 0 13px 30px rgba(36, 76, 253, 0.22);
}
.departments-page .department-hero-btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(36, 76, 253, 0.28);
}
.departments-page .department-hero-btn-light {
  color: #283448;
  border-color: #dde5ef;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(26, 42, 69, 0.06);
}
.departments-page .department-hero-btn-light:hover {
  color: #244cfd;
  border-color: #c8d5fb;
  background: #fff;
  transform: translateY(-2px);
}
.departments-page .departments-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 34px;
}
.departments-page .departments-hero-stats > div {
  min-width: 140px;
  padding: 0 25px;
  border-left: 1px solid #e1e7ef;
}
.departments-page .departments-hero-stats > div:first-child {
  padding-left: 0;
  border-left: 0;
}
.departments-page .departments-hero-stats strong,
.departments-page .departments-hero-stats span {
  display: block;
}
.departments-page .departments-hero-stats strong {
  margin-bottom: 3px;
  color: #172033;
  font-size: 20px;
  font-weight: 800;
}
.departments-page .departments-hero-stats span {
  color: #7a8597;
  font-size: 11px;
  font-weight: 600;
}

.departments-page .departments-benefits {
  padding: 105px 0 112px;
  background: #fff;
}
.departments-page .departments-section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
}
.departments-page .departments-section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: #244cfd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.departments-page .departments-section-heading h2,
.departments-page .departments-catalog-heading h2 {
  margin: 0;
  color: #172033;
  font-size: 42px !important;
  line-height: 1.12;
  letter-spacing: -1.2px;
}
.departments-page .departments-section-heading h2 span,
.departments-page .departments-catalog-heading h2 span {
  color: #244cfd;
}
.departments-page .departments-section-heading p {
  max-width: 670px;
  margin: 16px auto 0;
  color: #6e798a;
  font-size: 15px;
  line-height: 1.75;
}
.departments-page .department-benefit-grid > div {
  display: flex;
}
.departments-page .department-benefit-card {
  width: 100%;
  padding: 30px 28px 28px;
  border: 1px solid #e5ebf3;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(27, 47, 79, 0.055);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.departments-page .department-benefit-card:hover {
  border-color: #cedafb;
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(27, 47, 79, 0.1);
}
.departments-page .benefit-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 21px;
  border-radius: 14px;
  color: #244cfd;
  background: linear-gradient(135deg, #eef2ff 0%, #e9fbfe 100%);
  font-size: 22px;
  transition: 0.3s ease;
}
.departments-page .department-benefit-card:hover .benefit-icon {
  color: #fff;
  background: linear-gradient(135deg, #244cfd 0%, #18cbea 100%);
  transform: scale(1.04);
}
.departments-page .department-benefit-card h3 {
  margin: 0 0 10px;
  color: #1b2537;
  font-size: 18px !important;
  font-weight: 750;
  text-transform: none;
}
.departments-page .department-benefit-card p {
  margin: 0;
  color: #707b8c;
  font-size: 13px;
  line-height: 1.72;
}

.departments-page .departments-catalog {
  position: relative;
  overflow: hidden;
  padding: 112px 0 118px;
  background: linear-gradient(180deg, #f7f9fd 0%, #fbfcfe 100%);
}
.departments-page .departments-catalog::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  top: -210px;
  right: -190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24, 203, 234, 0.09) 0%, rgba(24, 203, 234, 0) 70%);
}
.departments-page .departments-catalog-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
.departments-page .departments-catalog-heading > div {
  max-width: 670px;
}
.departments-page .departments-catalog-heading > p {
  max-width: 430px;
  margin: 0;
  color: #6d7889;
  font-size: 14px;
  line-height: 1.72;
}
.departments-page .department-catalog-grid > div {
  display: flex;
}
.departments-page .department-service-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 31px 30px 29px;
  border: 1px solid #e2e9f2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 13px 34px rgba(27, 47, 79, 0.06);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.departments-page .department-service-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  opacity: 0;
  background: linear-gradient(90deg, #244cfd 0%, #18cbea 100%);
  transition: opacity 0.3s ease;
}
.departments-page .department-service-card:hover {
  border-color: #ccd8fb;
  transform: translateY(-7px);
  box-shadow: 0 22px 48px rgba(27, 47, 79, 0.12);
}
.departments-page .department-service-card:hover::after {
  opacity: 1;
}
.departments-page .department-service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.departments-page .department-service-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #244cfd;
  background: linear-gradient(135deg, #eef2ff 0%, #e9fbfe 100%);
  font-size: 24px;
  transition: 0.3s ease;
}
.departments-page .department-service-card:hover .department-service-icon {
  color: #fff;
  background: linear-gradient(135deg, #244cfd 0%, #18cbea 100%);
  transform: rotate(-4deg) scale(1.04);
}
.departments-page .department-service-number {
  color: #e7ebf1;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}
.departments-page .department-service-card h3 {
  margin: 0 0 11px;
  color: #192338;
  font-size: 22px !important;
  font-weight: 750;
  line-height: 1.25;
  text-transform: none;
}
.departments-page .department-service-card > p {
  min-height: 72px;
  margin: 0 0 19px;
  color: #707b8c;
  font-size: 13px;
  line-height: 1.72;
}
.departments-page .department-service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 14px 0 18px;
  border-top: 1px solid #edf1f6;
  color: #7b8798;
  font-size: 11px;
  font-weight: 600;
}
.departments-page .department-service-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.departments-page .department-service-meta i {
  color: #18bad8;
}
.departments-page .department-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #283448;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.departments-page .department-service-link i {
  color: #244cfd;
  transition: transform 0.25s ease;
}
.departments-page .department-service-link:hover {
  color: #244cfd;
}
.departments-page .department-service-link:hover i {
  transform: translateX(4px);
}

.departments-page .department-help-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 44px;
  padding: 25px 27px;
  border: 1px solid #dce5f2;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 13px 34px rgba(27, 47, 79, 0.055);
}
.departments-page .department-help-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, #244cfd 0%, #18cbea 100%);
  font-size: 23px;
  box-shadow: 0 10px 26px rgba(36, 76, 253, 0.18);
}
.departments-page .department-help-copy span {
  display: block;
  margin-bottom: 4px;
  color: #244cfd;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.departments-page .department-help-copy h3 {
  max-width: 670px;
  margin: 0;
  color: #1b2537;
  font-size: 17px !important;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}
.departments-page .department-help-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.departments-page .department-help-phone,
.departments-page .department-help-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.departments-page .department-help-phone {
  padding: 0 16px;
  color: #fff;
  background: #172033;
}
.departments-page .department-help-phone:hover {
  color: #fff;
  background: #244cfd;
}
.departments-page .department-help-link {
  padding: 0 14px;
  color: #244cfd;
  border: 1px solid #dbe4ef;
  background: #fff;
}
.departments-page .department-help-link:hover {
  color: #172033;
  border-color: #c8d5fb;
}

.departments-page .medicore-emergency-cta {
  margin: 0;
}

@media (max-width: 1199.98px) {
  .departments-page .departments-hero {
    min-height: 500px;
    background-position: 58% center;
  }
  .departments-page .departments-hero h1 {
    font-size: 52px !important;
  }
  .departments-page .department-help-card {
    grid-template-columns: auto 1fr;
  }
  .departments-page .department-help-actions {
    grid-column: 2;
  }
}

@media (max-width: 991.98px) {
  .departments-page .departments-hero {
    min-height: 475px;
    background-position: 63% center;
  }
  .departments-page .departments-hero::before {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.99) 0%,
      rgba(255, 255, 255, 0.97) 57%,
      rgba(255, 255, 255, 0.66) 82%,
      rgba(255, 255, 255, 0.38) 100%
    );
  }
  .departments-page .departments-hero h1 {
    max-width: 560px;
    font-size: 47px !important;
  }
  .departments-page .departments-benefits,
  .departments-page .departments-catalog {
    padding-top: 90px;
    padding-bottom: 96px;
  }
  .departments-page .departments-section-heading h2,
  .departments-page .departments-catalog-heading h2 {
    font-size: 37px !important;
  }
  .departments-page .departments-catalog-heading > p {
    max-width: 650px;
  }
}

@media (max-width: 767.98px) {
  .departments-page .departments-hero {
    min-height: auto;
    padding: 74px 0 82px;
    background-position: 70% center;
  }
  .departments-page .departments-hero::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 72%, rgba(255, 255, 255, 0.83) 100%);
  }
  .departments-page .departments-hero h1 {
    font-size: 42px !important;
    letter-spacing: -1.4px;
  }
  .departments-page .departments-hero-stats > div {
    min-width: 128px;
    padding: 0 17px;
  }
  .departments-page .department-help-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .departments-page .department-help-icon {
    margin: 0 auto;
  }
  .departments-page .department-help-actions {
    grid-column: auto;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 575.98px) {
  .departments-page .departments-hero {
    padding: 62px 0 72px;
  }
  .departments-page .departments-hero h1 {
    font-size: 37px !important;
    line-height: 1.08;
    letter-spacing: -1px;
  }
  .departments-page .departments-hero > .container > .row > div > p {
    font-size: 15px;
  }
  .departments-page .department-hero-btn {
    width: 100%;
  }
  .departments-page .departments-hero-stats {
    gap: 14px 0;
  }
  .departments-page .departments-hero-stats > div {
    min-width: 50%;
    padding: 0 12px;
  }
  .departments-page .departments-hero-stats > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
  .departments-page .departments-benefits,
  .departments-page .departments-catalog {
    padding-top: 74px;
    padding-bottom: 80px;
  }
  .departments-page .departments-section-heading {
    margin-bottom: 36px;
  }
  .departments-page .departments-section-heading h2,
  .departments-page .departments-catalog-heading h2 {
    font-size: 32px !important;
    letter-spacing: -0.8px;
  }
  .departments-page .departments-catalog-heading {
    margin-bottom: 36px;
  }
  .departments-page .department-service-card {
    padding: 27px 24px 25px;
  }
  .departments-page .department-service-card > p {
    min-height: 0;
  }
  .departments-page .department-help-card {
    padding: 24px 20px;
  }
  .departments-page .department-help-actions {
    width: 100%;
  }
  .departments-page .department-help-phone,
  .departments-page .department-help-link {
    width: 100%;
  }
}

/* 24. Departments Overrides */
.departments-page .departments-hero {
  min-height: 360px;
  background-position: center center;
}
.departments-page .departments-hero::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 46%, rgba(255, 255, 255, 0.72) 67%, rgba(255, 255, 255, 0.1) 100%);
}
.departments-page .departments-hero::after {
  display: none;
}
.departments-page .departments-breadcrumb {
  margin: 14px 0 0;
}
.departments-page .departments-hero h1 {
  max-width: 520px;
  font-size: 46px !important;
  letter-spacing: -1.2px;
}
.departments-page .departments-hero > .container > .row > div > p {
  max-width: 500px;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.65;
}
.departments-page .departments-catalog {
  padding: 82px 0 88px;
  background: #f8fafc;
}
.departments-page .departments-catalog::before {
  display: none;
}
.departments-page .departments-simple-heading {
  margin-bottom: 40px;
}
.departments-page .departments-simple-heading h2 {
  font-size: 36px !important;
  letter-spacing: -0.8px;
}
.departments-page .departments-simple-heading p {
  margin-top: 10px;
  font-size: 14px;
}
.departments-page .department-service-card {
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(27, 47, 79, 0.045);
}
.departments-page .department-service-card::after {
  height: 2px;
}
.departments-page .department-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(27, 47, 79, 0.075);
}
.departments-page .department-service-top {
  margin-bottom: 20px;
}
.departments-page .department-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  font-size: 21px;
}
.departments-page .department-service-card:hover .department-service-icon {
  transform: none;
}
.departments-page .department-service-card h3 {
  margin-bottom: 8px;
  font-size: 20px !important;
}
.departments-page .department-service-card > p {
  min-height: 44px;
  margin-bottom: 17px;
  line-height: 1.6;
}
.departments-page .department-service-link {
  color: #244cfd;
}
.departments-page .departments-simple-help {
  margin-top: 36px;
  padding: 20px 22px;
  box-shadow: none;
}
.departments-page .departments-simple-help .department-help-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: none;
}
.departments-page .departments-simple-help .department-help-copy h3 {
  font-size: 16px !important;
}
@media (max-width: 991.98px) {
  .departments-page .departments-hero {
    min-height: 330px;
  }
}
@media (max-width: 767.98px) {
  .departments-page .departments-hero {
    min-height: 290px;
  }
  .departments-page .departments-hero h1 {
    font-size: 40px !important;
  }
  .departments-page .departments-catalog {
    padding: 68px 0 74px;
  }
}
@media (max-width: 575.98px) {
  .departments-page .departments-hero {
    min-height: 250px;
  }
  .departments-page .departments-hero h1 {
    font-size: 35px !important;
  }
  .departments-page .departments-catalog {
    padding: 58px 0 64px;
  }
  .departments-page .departments-simple-help {
    padding: 20px 18px;
  }
}

/* 25. Departments Banner */
.departments-page .departments-hero-content {
  transform: translateY(74px);
}

@media (max-width: 991.98px) {
  .departments-page .departments-hero-content {
    transform: translateY(42px);
  }
}

@media (max-width: 575.98px) {
  .departments-page .departments-hero-content {
    transform: translateY(20px);
  }
}

/* 26. Shared Inner Pages */
.medicore-inner-banner {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-color: #eef4f8;
  background-image: url("../images/banner-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.medicore-inner-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 46%, rgba(255, 255, 255, 0.72) 67%, rgba(255, 255, 255, 0.1) 100%);
}
.medicore-inner-banner-content {
  transform: translateY(74px);
}
.medicore-inner-banner h1 {
  max-width: 620px;
  margin: 0;
  color: #172033;
  font-size: 46px !important;
  line-height: 1.05;
  letter-spacing: -1.2px;
  text-transform: none;
}
.medicore-inner-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 14px 0 0;
  color: #7a8597;
  font-size: 13px;
  font-weight: 600;
}
.medicore-inner-breadcrumb a {
  color: #5f6c80;
  text-decoration: none;
  transition: color 0.2s ease;
}
.medicore-inner-breadcrumb a:hover {
  color: #244cfd;
}
.medicore-inner-breadcrumb i {
  color: #a8b1bf;
}

.medicore-help-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
  padding: 20px 22px;
  border: 1px solid #dce5f2;
  border-radius: 17px;
  background: #fff;
  box-shadow: none;
}
.medicore-help-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #244cfd 0%, #18cbea 100%);
  font-size: 20px;
}
.medicore-help-copy span {
  display: block;
  margin-bottom: 4px;
  color: #244cfd;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.medicore-help-copy h3 {
  max-width: 670px;
  margin: 0;
  color: #1b2537;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}
.medicore-help-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.medicore-help-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid #dbe4ef;
  border-radius: 10px;
  color: #244cfd;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.medicore-help-link:hover {
  color: #172033;
  border-color: #c8d5fb;
  background: #fbfcff;
}
.medicore-page-help-section {
  padding: 44px 0;
  background: #f8fafc;
}
.medicore-page-help-section .medicore-help-card {
  margin-top: 0;
}

@media (max-width: 991.98px) {
  .medicore-inner-banner {
    min-height: 330px;
    background-position: 63% center;
  }
  .medicore-inner-banner-content {
    transform: translateY(42px);
  }
  .medicore-help-card {
    grid-template-columns: auto 1fr;
  }
  .medicore-help-actions {
    grid-column: 2;
  }
}
@media (max-width: 767.98px) {
  .medicore-inner-banner {
    min-height: 290px;
    background-position: 70% center;
  }
  .medicore-inner-banner::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 72%, rgba(255, 255, 255, 0.83) 100%);
  }
  .medicore-inner-banner h1 {
    font-size: 40px !important;
  }
  .medicore-help-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .medicore-help-icon {
    margin: 0 auto;
  }
  .medicore-help-actions {
    grid-column: auto;
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .medicore-inner-banner {
    min-height: 250px;
  }
  .medicore-inner-banner-content {
    transform: translateY(20px);
  }
  .medicore-inner-banner h1 {
    font-size: 35px !important;
  }
  .medicore-help-card {
    padding: 20px 18px;
  }
  .medicore-help-actions,
  .medicore-help-link {
    width: 100%;
  }
}

/* 27. Doctor Details */
.doctor-details-page .doctor-profile-section {
  padding: 88px 0 96px;
  background: #f7f9fd;
}
.doctor-details-page .doctor-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}
.doctor-details-page .doctor-profile-main {
  min-width: 0;
}
.doctor-details-page .doctor-profile-card {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #e0e7f1;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(24, 40, 68, 0.055);
}
.doctor-details-page .doctor-profile-photo-wrap {
  position: relative;
  min-height: 355px;
  overflow: hidden;
  background: #edf3f7;
}
.doctor-details-page .doctor-profile-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.doctor-details-page .doctor-availability-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: #217b64;
  background: rgba(255, 255, 255, 0.94);
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 7px 20px rgba(28, 46, 71, 0.09);
}
.doctor-details-page .doctor-availability-badge i {
  color: #20bc91;
  font-size: 7px;
}
.doctor-details-page .doctor-profile-summary {
  padding: 34px 36px;
}
.doctor-details-page .doctor-profile-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.doctor-details-page .doctor-profile-kicker,
.doctor-details-page .doctor-info-kicker,
.doctor-details-page .doctor-booking-kicker {
  display: inline-block;
  color: #244cfd;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.doctor-details-page .doctor-profile-summary h2 {
  margin: 7px 0 4px;
  color: #172033;
  font-size: 36px !important;
  line-height: 1.08;
  letter-spacing: -1px;
  text-transform: none;
}
.doctor-details-page .doctor-profile-role {
  margin: 0;
  color: #536176;
  font-size: 15px;
  font-weight: 600;
}
.doctor-details-page .doctor-verified-badge {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  margin-top: 4px;
  border-radius: 50%;
  color: #fff;
  background: #244cfd;
  font-size: 11px;
  box-shadow: 0 7px 17px rgba(36, 76, 253, 0.18);
}
.doctor-details-page .doctor-profile-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
  color: #7a8595;
  font-size: 11px;
}
.doctor-details-page .doctor-rating-stars {
  display: inline-flex;
  gap: 2px;
  color: #ffb13b;
}
.doctor-details-page .doctor-profile-rating strong {
  color: #273247;
  font-size: 12px;
}
.doctor-details-page .doctor-profile-intro {
  max-width: 620px;
  margin: 22px 0 0;
  color: #68758a;
  font-size: 14px;
  line-height: 1.75;
}
.doctor-details-page .doctor-profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 25px;
}
.doctor-details-page .doctor-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  border: 1px solid #e6ebf3;
  border-radius: 12px;
  background: #fbfcfe;
}
.doctor-details-page .doctor-stat-item > i {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 31px;
  border-radius: 9px;
  color: #244cfd;
  background: #edf3ff;
  font-size: 12px;
}
.doctor-details-page .doctor-stat-item span {
  min-width: 0;
  color: #8791a0;
  font-size: 9px;
  line-height: 1.35;
}
.doctor-details-page .doctor-stat-item strong {
  display: block;
  overflow: hidden;
  margin-bottom: 2px;
  color: #263247;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.doctor-details-page .doctor-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.doctor-details-page .doctor-primary-action,
.doctor-details-page .doctor-secondary-action {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.doctor-details-page .doctor-primary-action {
  color: #fff;
  background: linear-gradient(135deg, #244cfd 0%, #18cbea 100%);
  box-shadow: 0 9px 20px rgba(36, 76, 253, 0.16);
}
.doctor-details-page .doctor-primary-action:hover {
  color: #fff;
  transform: translateY(-1px);
}
.doctor-details-page .doctor-secondary-action {
  color: #273247;
  border: 1px solid #dce4ef;
  background: #fff;
}
.doctor-details-page .doctor-secondary-action:hover {
  color: #244cfd;
  border-color: #bdcaf8;
}

.doctor-details-page .doctor-information-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.doctor-details-page .doctor-info-card {
  padding: 28px;
  border: 1px solid #e0e7f1;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(24, 40, 68, 0.035);
}
.doctor-details-page .doctor-info-card h3 {
  margin: 7px 0 16px;
  color: #1b2638;
  font-size: 20px !important;
  line-height: 1.25;
  text-transform: none;
}
.doctor-details-page .doctor-info-card p {
  margin: 0 0 12px;
  color: #6b7789;
  font-size: 13px;
  line-height: 1.75;
}
.doctor-details-page .doctor-info-card p:last-child {
  margin-bottom: 0;
}
.doctor-details-page .doctor-expertise-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.doctor-details-page .doctor-expertise-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #526076;
  font-size: 11px;
  line-height: 1.45;
}
.doctor-details-page .doctor-expertise-list i {
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 19px;
  border-radius: 50%;
  color: #244cfd;
  background: #edf3ff;
  font-size: 8px;
}
.doctor-details-page .doctor-timeline {
  display: grid;
  gap: 17px;
}
.doctor-details-page .doctor-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 10px;
}
.doctor-details-page .doctor-timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  bottom: -17px;
  left: 5px;
  width: 1px;
  background: #dce4ef;
}
.doctor-details-page .doctor-timeline-dot {
  position: relative;
  z-index: 1;
  width: 11px;
  height: 11px;
  margin-top: 4px;
  border: 3px solid #dce6ff;
  border-radius: 50%;
  background: #244cfd;
}
.doctor-details-page .doctor-timeline-item strong,
.doctor-details-page .doctor-timeline-item span {
  display: block;
}
.doctor-details-page .doctor-timeline-item strong {
  color: #273247;
  font-size: 12px;
  font-weight: 700;
}
.doctor-details-page .doctor-timeline-item div > span {
  margin-top: 3px;
  color: #818b9a;
  font-size: 10px;
  line-height: 1.5;
}
.doctor-details-page .doctor-clinic-list {
  display: grid;
  gap: 14px;
}
.doctor-details-page .doctor-clinic-list > div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.doctor-details-page .doctor-clinic-list > div > i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #244cfd;
  background: #edf3ff;
  font-size: 11px;
}
.doctor-details-page .doctor-clinic-list span,
.doctor-details-page .doctor-clinic-list strong {
  display: block;
}
.doctor-details-page .doctor-clinic-list span {
  color: #818b9a;
  font-size: 10px;
  line-height: 1.45;
}
.doctor-details-page .doctor-clinic-list strong {
  margin-bottom: 2px;
  color: #283347;
  font-size: 11px;
}
.doctor-details-page .doctor-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: #244cfd;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.doctor-details-page .doctor-booking-card {
  position: sticky;
  top: 105px;
  padding: 28px;
  border: 1px solid #dce5f0;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(24, 40, 68, 0.055);
}
.doctor-details-page .doctor-booking-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #244cfd 0%, #18cbea 100%);
  font-size: 17px;
}
.doctor-details-page .doctor-booking-card h3 {
  margin: 6px 0 8px;
  color: #172033;
  font-size: 23px !important;
  line-height: 1.2;
  text-transform: none;
}
.doctor-details-page .doctor-booking-card > p {
  margin: 0 0 22px;
  color: #758095;
  font-size: 11px;
  line-height: 1.65;
}
.doctor-details-page .doctor-booking-field {
  margin-top: 18px;
}
.doctor-details-page .doctor-booking-field label,
.doctor-details-page .doctor-booking-label {
  display: block;
  margin-bottom: 8px;
  color: #374358;
  font-size: 10px;
  font-weight: 800;
}
.doctor-details-page .doctor-booking-date {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid #dfe6ef;
  border-radius: 10px;
  outline: 0;
  color: #3b4659;
  background: #fbfcfe;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
}
.doctor-details-page .doctor-booking-date:focus {
  border-color: #c2cffc;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(36, 76, 253, 0.07);
}
.doctor-details-page .doctor-time-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.doctor-details-page .doctor-time-slot {
  min-height: 39px;
  border: 1px solid #dfe6ef;
  border-radius: 9px;
  color: #526075;
  background: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}
.doctor-details-page .doctor-time-slot:hover {
  color: #244cfd;
  border-color: #c4d0fb;
  background: #f8faff;
}
.doctor-details-page .doctor-time-slot.active {
  color: #fff;
  border-color: #244cfd;
  background: #244cfd;
  box-shadow: 0 6px 15px rgba(36, 76, 253, 0.15);
}
.doctor-details-page .doctor-booking-submit {
  width: 100%;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #244cfd 0%, #18cbea 100%);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 9px 20px rgba(36, 76, 253, 0.15);
}
.doctor-details-page .doctor-booking-submit:hover {
  color: #fff;
}
.doctor-details-page .doctor-booking-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  margin-top: 11px;
  color: #8a94a4;
  font-size: 9px;
  line-height: 1.45;
  text-align: center;
}
.doctor-details-page .doctor-booking-note i {
  margin-top: 2px;
  color: #18bdda;
}
.doctor-details-page .doctor-booking-divider {
  height: 1px;
  margin: 21px 0 17px;
  background: #e8edf4;
}
.doctor-details-page .doctor-booking-contact span {
  display: block;
  margin-bottom: 5px;
  color: #8b95a4;
  font-size: 9px;
}
.doctor-details-page .doctor-booking-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #273247;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}
.doctor-details-page .doctor-booking-contact a i {
  color: #244cfd;
}
.doctor-details-page .doctor-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #59667b;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}
.doctor-details-page .doctor-back-link:hover {
  color: #244cfd;
}

@media (max-width: 1199.98px) {
  .doctor-details-page .doctor-profile-layout {
    grid-template-columns: minmax(0, 1fr) 310px;
  }
  .doctor-details-page .doctor-profile-card {
    grid-template-columns: 260px minmax(0, 1fr);
  }
  .doctor-details-page .doctor-profile-summary {
    padding: 30px;
  }
  .doctor-details-page .doctor-profile-stats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991.98px) {
  .doctor-details-page .doctor-profile-section {
    padding: 74px 0 82px;
  }
  .doctor-details-page .doctor-profile-layout {
    grid-template-columns: 1fr;
  }
  .doctor-details-page .doctor-booking-card {
    position: static;
  }
}
@media (max-width: 767.98px) {
  .doctor-details-page .doctor-profile-card {
    grid-template-columns: 1fr;
  }
  .doctor-details-page .doctor-profile-photo-wrap {
    min-height: 420px;
  }
  .doctor-details-page .doctor-information-grid {
    grid-template-columns: 1fr;
  }
  .doctor-details-page .doctor-profile-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  .doctor-details-page .doctor-profile-section {
    padding: 60px 0 68px;
  }
  .doctor-details-page .doctor-profile-photo-wrap {
    min-height: 355px;
  }
  .doctor-details-page .doctor-profile-summary,
  .doctor-details-page .doctor-info-card,
  .doctor-details-page .doctor-booking-card {
    padding: 22px;
  }
  .doctor-details-page .doctor-profile-summary h2 {
    font-size: 31px !important;
  }
  .doctor-details-page .doctor-profile-stats {
    grid-template-columns: 1fr;
  }
  .doctor-details-page .doctor-profile-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .doctor-details-page .doctor-primary-action,
  .doctor-details-page .doctor-secondary-action {
    width: 100%;
  }
  .doctor-details-page .doctor-expertise-list {
    grid-template-columns: 1fr;
  }
}

/* 28. Appointment Page */
.appointment-page .appointment-page-section {
  padding: 82px 0 90px;
  background: #f8fafc;
}
.appointment-page .appointment-page-heading,
.faq-page .faq-page-heading {
  max-width: 700px;
  margin: 0 auto 42px;
}
.appointment-page .appointment-page-kicker,
.faq-page .faq-page-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #244cfd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.appointment-page .appointment-page-heading h2,
.faq-page .faq-page-heading h2 {
  margin: 0;
  color: #172033;
  font-size: 38px !important;
  line-height: 1.15;
  letter-spacing: -0.8px;
}
.appointment-page .appointment-page-heading p,
.faq-page .faq-page-heading p {
  max-width: 590px;
  margin: 12px auto 0;
  color: #69758a;
  font-size: 14px;
  line-height: 1.7;
}
.appointment-page .appointment-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
.appointment-page .appointment-page-card,
.appointment-page .appointment-side-card,
.faq-page .faq-side-card {
  border: 1px solid #dfe7f2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(27, 47, 79, 0.055);
}
.appointment-page .appointment-page-card {
  padding: 34px;
}
.appointment-page .appointment-page-form label {
  display: block;
  margin-bottom: 8px;
  color: #344156;
  font-size: 12px;
  font-weight: 700;
}
.appointment-page .appointment-page-form label span {
  color: #8d97a8;
  font-weight: 500;
}
.appointment-page .appointment-input-wrap {
  position: relative;
}
.appointment-page .appointment-input-wrap i {
  position: absolute;
  top: 50%;
  left: 16px;
  z-index: 2;
  color: #244cfd;
  font-size: 13px;
  transform: translateY(-50%);
}
.appointment-page .appointment-input-wrap input,
.appointment-page .appointment-plain-input,
.appointment-page select.appointment-native-select,
.appointment-page .appointment-page-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dce5f1;
  border-radius: 11px;
  outline: 0;
  background: #fff;
  color: #273247;
  font-family: inherit;
  font-size: 13px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.appointment-page .appointment-input-wrap input {
  padding: 0 16px 0 42px;
}
.appointment-page .appointment-plain-input,
.appointment-page select.appointment-native-select {
  padding: 0 14px;
}
.appointment-page select.appointment-native-select {
  display: block !important;
  float: none;
  appearance: auto;
  -webkit-appearance: auto;
}
.appointment-page .appointment-page-form textarea {
  min-height: 112px;
  padding: 14px 16px;
  resize: vertical;
}
.appointment-page .appointment-input-wrap input:focus,
.appointment-page .appointment-plain-input:focus,
.appointment-page select.appointment-native-select:focus,
.appointment-page .appointment-page-form textarea:focus {
  border-color: #8eabff;
  box-shadow: 0 0 0 3px rgba(36, 76, 253, 0.08);
}
.appointment-page .appointment-page-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  margin-top: 28px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(100deg, #244cfd, #18c4e9);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.appointment-page .appointment-page-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(36, 76, 253, 0.18);
}
.appointment-page .appointment-page-note {
  margin: 12px 0 0;
  color: #8a95a7;
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}
.appointment-page .appointment-page-note i {
  margin-right: 5px;
  color: #18b99a;
}
.appointment-page .appointment-side-card {
  padding: 30px;
}
.appointment-page .appointment-side-icon,
.faq-page .faq-side-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: #eef4ff;
  color: #244cfd;
  font-size: 20px;
}
.appointment-page .appointment-side-card h3,
.faq-page .faq-side-card h3 {
  margin: 0 0 11px;
  color: #172033;
  font-size: 21px !important;
}
.appointment-page .appointment-side-card ul {
  margin: 18px 0 25px;
  padding: 0;
  list-style: none;
}
.appointment-page .appointment-side-card li {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #edf1f6;
  color: #657187;
  font-size: 12px;
  line-height: 1.55;
}
.appointment-page .appointment-side-card li:last-child {
  border-bottom: 0;
}
.appointment-page .appointment-side-card li i {
  margin-top: 3px;
  color: #18b99a;
}
.appointment-page .appointment-side-contact {
  padding-top: 20px;
  border-top: 1px solid #e7edf5;
}
.appointment-page .appointment-side-contact span {
  display: block;
  margin-bottom: 8px;
  color: #8a95a7;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.appointment-page .appointment-side-contact a {
  color: #172033;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.appointment-page .appointment-side-contact a i {
  margin-right: 7px;
  color: #244cfd;
}

/* 29. FAQ */
.faq-page .faq-page-section {
  padding: 82px 0 90px;
  background: #f8fafc;
}
.faq-page .faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}
.faq-page .faq-accordion {
  overflow: hidden;
  border: 1px solid #dfe7f2;
  border-radius: 18px;
  background: #fff;
}
.faq-page .faq-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid #e8edf4;
  background: #fff;
}
.faq-page .faq-accordion .accordion-item:last-child {
  border-bottom: 0;
}
.faq-page .faq-accordion .accordion-button {
  padding: 20px 22px;
  background: #fff;
  color: #273247;
  box-shadow: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
}
.faq-page .faq-accordion .accordion-button:not(.collapsed) {
  background: #f7f9ff;
  color: #244cfd;
}
.faq-page .faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-page .faq-accordion .accordion-body {
  padding: 0 22px 22px;
  color: #677388;
  font-size: 13px;
  line-height: 1.75;
}
.faq-page .faq-side-card {
  padding: 28px;
}
.faq-page .faq-side-card p {
  margin: 0 0 22px;
  color: #6b778b;
  font-size: 13px;
  line-height: 1.65;
}
.faq-page .faq-side-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #244cfd;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

/* 30. 404 */
.error-page .error-page-section {
  padding: 76px 0 90px;
  background: #f8fafc;
}
.error-page .error-page-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 36px;
  border: 1px solid #dfe7f2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(27, 47, 79, 0.05);
}
.error-page .error-code {
  margin-bottom: -26px;
  color: #eef3ff;
  font-size: 116px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -6px;
}
.error-page .error-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #244cfd, #18c4e9);
  color: #fff;
  font-size: 22px;
}
.error-page .error-page-card h2 {
  margin: 0;
  color: #172033;
  font-size: 34px !important;
}
.error-page .error-page-card p {
  max-width: 470px;
  margin: 12px auto 26px;
  color: #69758a;
  font-size: 14px;
  line-height: 1.7;
}
.error-page .error-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.error-page .error-primary,
.error-page .error-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.error-page .error-primary {
  background: linear-gradient(100deg, #244cfd, #18c4e9);
  color: #fff;
}
.error-page .error-secondary {
  border: 1px solid #dbe4ef;
  background: #fff;
  color: #273247;
}

@media (max-width: 991.98px) {
  .appointment-page .appointment-page-layout,
  .faq-page .faq-layout {
    grid-template-columns: 1fr;
  }
  .appointment-page .appointment-side-card,
  .faq-page .faq-side-card {
    max-width: none;
  }
}
@media (max-width: 767.98px) {
  .appointment-page .appointment-page-section,
  .faq-page .faq-page-section,
  .error-page .error-page-section {
    padding: 68px 0 74px;
  }
  .appointment-page .appointment-page-heading h2,
  .faq-page .faq-page-heading h2 {
    font-size: 32px !important;
  }
}
@media (max-width: 575.98px) {
  .appointment-page .appointment-page-card,
  .appointment-page .appointment-side-card,
  .faq-page .faq-side-card {
    padding: 22px;
  }
  .appointment-page .appointment-page-heading,
  .faq-page .faq-page-heading {
    margin-bottom: 32px;
  }
  .error-page .error-page-card {
    padding: 42px 22px;
  }
  .error-page .error-code {
    font-size: 92px;
  }
  .error-page .error-page-card h2 {
    font-size: 29px !important;
  }
}

/* 31. Inner Pages */

/* Dropdown */
@media (min-width: 992px) {
  .medicore-navbar .nav-item.dropdown {
    position: relative;
  }
  .medicore-navbar .dropdown-menu {
    display: block;
    top: calc(100% - 1px);
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(7px);
    transition:
      opacity 0.16s ease,
      transform 0.16s ease,
      visibility 0.16s ease;
    transition-delay: 0.12s;
  }
  .medicore-navbar .dropdown:hover > .dropdown-menu,
  .medicore-navbar .dropdown:focus-within > .dropdown-menu,
  .medicore-navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
}

.medicore-section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #244cfd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* 32. About Page */
.about-page .about-intro-section {
  padding: 88px 0 74px;
  background: #fff;
}
.about-page .about-visual {
  position: relative;
  max-width: 560px;
  padding: 14px;
  border: 1px solid #e3eaf3;
  border-radius: 22px;
  background: #f7faff;
}
.about-page .about-visual > img {
  display: block;
  width: 100%;
  border-radius: 16px;
}
.about-page .about-visual-note {
  position: absolute;
  right: -26px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(300px, 78%);
  padding: 16px 18px;
  border: 1px solid #e2e9f3;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(27, 47, 79, 0.09);
}
.about-page .about-visual-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #244cfd, #1ac7ea);
}
.about-page .about-visual-note strong,
.about-page .about-visual-note span {
  display: block;
}
.about-page .about-visual-note strong {
  margin-bottom: 3px;
  color: #172033;
  font-size: 13px;
}
.about-page .about-visual-note span {
  color: #738096;
  font-size: 11px;
  line-height: 1.5;
}
.about-page .about-copy {
  max-width: 570px;
}
.about-page .about-copy h2,
.about-page .about-section-heading h2 {
  margin: 0;
  color: #172033;
  font-size: 39px !important;
  line-height: 1.14;
  letter-spacing: -1.1px;
}
.about-page .about-copy > p {
  margin: 18px 0 0;
  color: #657287;
  font-size: 14px;
  line-height: 1.8;
}
.about-page .about-check-list {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}
.about-page .about-check-list > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #39465b;
  font-size: 13px;
  line-height: 1.55;
}
.about-page .about-check-list i {
  margin-top: 3px;
  color: #16bda8;
}
.about-page .about-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}
.about-page .about-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 19px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(100deg, #244cfd, #1ac7ea);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.about-page .about-secondary-link {
  color: #253044;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.about-page .about-facts-section {
  padding: 0 0 76px;
  background: #fff;
}
.about-page .about-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #e2e9f2;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
.about-page .about-fact {
  padding: 26px 28px;
  border-right: 1px solid #e8edf4;
}
.about-page .about-fact:last-child {
  border-right: 0;
}
.about-page .about-fact strong,
.about-page .about-fact span {
  display: block;
}
.about-page .about-fact strong {
  color: #172033;
  font-size: 26px;
  line-height: 1;
}
.about-page .about-fact span {
  margin-top: 7px;
  color: #738096;
  font-size: 11px;
  font-weight: 600;
}
.about-page .about-values-section {
  padding: 78px 0 88px;
  background: #f8fafc;
}
.about-page .about-section-heading {
  max-width: 650px;
  margin: 0 auto 42px;
}
.about-page .about-section-heading p {
  margin: 12px auto 0;
  color: #6d788a;
  font-size: 13px;
}
.about-page .about-value-card {
  height: 100%;
  padding: 28px;
  border: 1px solid #e1e8f1;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(32, 50, 84, 0.035);
}
.about-page .about-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 12px;
  color: #244cfd;
  background: #eef4ff;
  font-size: 17px;
}
.about-page .about-value-card h3 {
  margin: 0 0 10px;
  color: #172033;
  font-size: 19px;
}
.about-page .about-value-card p {
  margin: 0;
  color: #6d788a;
  font-size: 13px;
  line-height: 1.7;
}

/* 33. Blog Page */
.health-blog-page .blog-intro-section {
  padding: 82px 0 58px;
  background: #fff;
}
.health-blog-page .blog-page-heading {
  max-width: 690px;
  margin: 0 auto 44px;
}
.health-blog-page .blog-page-heading h2,
.health-blog-page .blog-latest-header h2 {
  margin: 0;
  color: #172033;
  font-size: 38px !important;
  line-height: 1.15;
  letter-spacing: -1px;
}
.health-blog-page .blog-page-heading p {
  max-width: 610px;
  margin: 12px auto 0;
  color: #6e7a8e;
  font-size: 13px;
  line-height: 1.7;
}
.health-blog-page .blog-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.75fr);
  gap: 24px;
}
.health-blog-page .blog-featured-card {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid #e0e7f0;
  border-radius: 20px;
  background: #fff;
}
.health-blog-page .blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.health-blog-page .blog-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}
.blog-category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  color: #244cfd;
  background: #edf3ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}
.health-blog-page .blog-featured-copy h3 {
  margin: 17px 0 12px;
  font-size: 29px;
  line-height: 1.22;
}
.health-blog-page .blog-featured-copy h3 a,
.health-blog-page .blog-mini-card h3 a,
.health-blog-page .health-article-body h3 a {
  color: #172033;
  text-decoration: none;
}
.health-blog-page .blog-featured-copy p {
  margin: 0;
  color: #6d788a;
  font-size: 13px;
  line-height: 1.72;
}
.health-blog-page .blog-card-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: #8792a5;
  font-size: 10px;
}
.health-blog-page .blog-card-meta i {
  margin-right: 4px;
  color: #18b9d8;
}
.health-blog-page .blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #244cfd;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.health-blog-page .blog-featured-side {
  display: grid;
  gap: 18px;
}
.health-blog-page .blog-mini-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid #e1e8f1;
  border-radius: 17px;
  background: #fff;
}
.health-blog-page .blog-mini-card img {
  width: 118px;
  height: 126px;
  object-fit: cover;
  border-radius: 12px;
}
.health-blog-page .blog-mini-card h3 {
  margin: 10px 0 8px;
  font-size: 16px;
  line-height: 1.35;
}
.health-blog-page .blog-mini-meta {
  color: #8b96a8;
  font-size: 10px;
}
.health-blog-page .blog-latest-section {
  padding: 76px 0 90px;
  background: #f8fafc;
}
.health-blog-page .blog-latest-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.health-blog-page .blog-topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.health-blog-page .blog-topic-pills span {
  padding: 7px 11px;
  border: 1px solid #dfe6ef;
  border-radius: 999px;
  color: #718096;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
}
.health-blog-page .blog-topic-pills span.active {
  color: #244cfd;
  border-color: #cfdbff;
  background: #eef3ff;
}
.health-blog-page .health-article-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid #e1e8f1;
  border-radius: 17px;
  background: #fff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.health-blog-page .health-article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(31, 49, 82, 0.07);
}
.health-blog-page .health-article-image {
  display: block;
  height: 205px;
  overflow: hidden;
}
.health-blog-page .health-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.health-blog-page .health-article-card:hover .health-article-image img {
  transform: scale(1.025);
}
.health-blog-page .health-article-body {
  padding: 24px;
}
.health-blog-page .health-article-body h3 {
  margin: 14px 0 10px;
  font-size: 19px;
  line-height: 1.35;
}
.health-blog-page .health-article-body p {
  margin: 0;
  color: #6e798b;
  font-size: 12px;
  line-height: 1.68;
}
.health-blog-page .blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #edf1f5;
  color: #8994a6;
  font-size: 10px;
}
.health-blog-page .blog-card-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #244cfd;
  background: #eef3ff;
  text-decoration: none;
}

/* 34. Blog Details Page */
.blog-detail-page .article-page-section {
  padding: 82px 0 90px;
  background: #f8fafc;
}
.blog-detail-page .article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 34px;
  align-items: start;
}
.blog-detail-page .article-main {
  overflow: hidden;
  border: 1px solid #e1e8f1;
  border-radius: 20px;
  background: #fff;
}
.blog-detail-page .article-header {
  padding: 42px 48px 30px;
}
.blog-detail-page .article-header h1 {
  max-width: 780px;
  margin: 15px 0 15px;
  color: #172033;
  font-size: 39px;
  line-height: 1.18;
  letter-spacing: -1.1px;
}
.blog-detail-page .article-lead {
  max-width: 760px;
  margin: 0;
  color: #667388;
  font-size: 14px;
  line-height: 1.75;
}
.blog-detail-page .article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  color: #8a95a7;
  font-size: 10px;
}
.blog-detail-page .article-meta-row i {
  margin-right: 5px;
  color: #18b9d8;
}
.blog-detail-page .article-hero-image {
  margin: 0 48px;
  height: 420px;
  overflow: hidden;
  border-radius: 16px;
  background: #eef3f7;
}
.blog-detail-page .article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}
.blog-detail-page .article-content {
  padding: 38px 48px 34px;
}
.blog-detail-page .article-content > p {
  margin: 0 0 20px;
  color: #566378;
  font-size: 13px;
  line-height: 1.9;
}
.blog-detail-page .article-content h2 {
  margin: 34px 0 12px;
  color: #172033;
  font-size: 24px !important;
  line-height: 1.3;
}
.blog-detail-page .article-callout {
  display: flex;
  gap: 13px;
  margin: 28px 0;
  padding: 19px 21px;
  border-left: 3px solid #244cfd;
  border-radius: 0 12px 12px 0;
  background: #f4f7ff;
}
.blog-detail-page .article-callout i {
  margin-top: 3px;
  color: #244cfd;
}
.blog-detail-page .article-callout p {
  margin: 0;
  color: #59667a;
  font-size: 12px;
  line-height: 1.75;
}
.blog-detail-page .article-two-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 30px 0;
}
.blog-detail-page .article-two-image-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 13px;
}
.blog-detail-page .article-check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 26px;
  padding: 0;
  list-style: none;
}
.blog-detail-page .article-check-list li {
  display: flex;
  gap: 10px;
  color: #4f5d72;
  font-size: 12px;
  line-height: 1.6;
}
.blog-detail-page .article-check-list i {
  margin-top: 3px;
  color: #16bda8;
}
.blog-detail-page .article-note {
  margin-top: 30px;
  padding: 17px 19px;
  border: 1px solid #e0e7f0;
  border-radius: 12px;
  color: #667287;
  background: #fbfcfe;
  font-size: 11px;
  line-height: 1.7;
}
.blog-detail-page .article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 48px;
  padding: 22px 0 34px;
  border-top: 1px solid #e9eef4;
}
.blog-detail-page .article-tags,
.blog-detail-page .article-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}
.blog-detail-page .article-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  color: #68758a;
  background: #f2f5f9;
  font-size: 9px;
  font-weight: 700;
}
.blog-detail-page .article-share > span {
  margin-right: 4px;
  color: #8a94a6;
  font-size: 10px;
}
.blog-detail-page .article-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #e0e7f0;
  border-radius: 50%;
  color: #6d788a;
  text-decoration: none;
}
.blog-detail-page .article-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}
.blog-detail-page .article-side-card {
  padding: 25px;
  border: 1px solid #e0e7f0;
  border-radius: 17px;
  background: #fff;
}
.blog-detail-page .article-side-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 17px;
  border-radius: 12px;
  color: #244cfd;
  background: #edf3ff;
}
.blog-detail-page .article-side-card h3 {
  margin: 0 0 10px;
  color: #172033;
  font-size: 19px;
}
.blog-detail-page .article-side-card > p {
  margin: 0 0 20px;
  color: #6f7b8f;
  font-size: 12px;
  line-height: 1.7;
}
.blog-detail-page .article-side-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(100deg, #244cfd, #1ac7ea);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}
.blog-detail-page .article-side-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  color: #244cfd;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}
.blog-detail-page .article-related-card .medicore-section-kicker {
  margin-bottom: 15px;
}
.blog-detail-page .related-article {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid #edf1f5;
  text-decoration: none;
}
.blog-detail-page .related-article:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.blog-detail-page .related-article img {
  width: 68px;
  height: 62px;
  object-fit: cover;
  border-radius: 9px;
}
.blog-detail-page .related-article strong,
.blog-detail-page .related-article small {
  display: block;
}
.blog-detail-page .related-article strong {
  color: #263147;
  font-size: 11px;
  line-height: 1.45;
}
.blog-detail-page .related-article small {
  margin-top: 4px;
  color: #929bad;
  font-size: 9px;
}

@media (max-width: 1199.98px) {
  .health-blog-page .blog-featured-card {
    grid-template-columns: 44% 56%;
  }
  .health-blog-page .blog-featured-copy {
    padding: 30px;
  }
  .blog-detail-page .article-shell {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
}
@media (max-width: 991.98px) {
  .about-page .about-visual-note {
    right: 18px;
  }
  .about-page .about-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-page .about-fact:nth-child(2) {
    border-right: 0;
  }
  .about-page .about-fact:nth-child(-n + 2) {
    border-bottom: 1px solid #e8edf4;
  }
  .health-blog-page .blog-featured-grid {
    grid-template-columns: 1fr;
  }
  .health-blog-page .blog-featured-side {
    grid-template-columns: 1fr 1fr;
  }
  .blog-detail-page .article-shell {
    grid-template-columns: 1fr;
  }
  .blog-detail-page .article-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767.98px) {
  .about-page .about-intro-section {
    padding: 70px 0 60px;
  }
  .about-page .about-values-section {
    padding: 66px 0 74px;
  }
  .about-page .about-copy h2,
  .about-page .about-section-heading h2,
  .health-blog-page .blog-page-heading h2,
  .health-blog-page .blog-latest-header h2 {
    font-size: 31px !important;
  }
  .health-blog-page .blog-featured-card {
    grid-template-columns: 1fr;
  }
  .health-blog-page .blog-featured-image {
    height: 280px;
  }
  .health-blog-page .blog-featured-side {
    grid-template-columns: 1fr;
  }
  .health-blog-page .blog-latest-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-detail-page .article-page-section {
    padding: 68px 0 76px;
  }
  .blog-detail-page .article-header {
    padding: 30px 26px 24px;
  }
  .blog-detail-page .article-header h1 {
    font-size: 31px;
  }
  .blog-detail-page .article-hero-image {
    margin: 0 26px;
    height: 340px;
  }
  .blog-detail-page .article-content {
    padding: 30px 26px 28px;
  }
  .blog-detail-page .article-footer {
    margin: 0 26px;
  }
  .blog-detail-page .article-sidebar {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575.98px) {
  .about-page .about-visual-note {
    position: static;
    width: 100%;
    margin-top: 12px;
    box-shadow: none;
  }
  .about-page .about-facts-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-page .about-fact {
    padding: 21px 18px;
  }
  .health-blog-page .blog-intro-section {
    padding: 68px 0 48px;
  }
  .health-blog-page .blog-latest-section {
    padding: 64px 0 76px;
  }
  .health-blog-page .blog-featured-copy {
    padding: 24px;
  }
  .health-blog-page .blog-featured-copy h3 {
    font-size: 24px;
  }
  .health-blog-page .blog-mini-card {
    grid-template-columns: 96px 1fr;
  }
  .health-blog-page .blog-mini-card img {
    width: 96px;
    height: 105px;
  }
  .blog-detail-page .article-header h1 {
    font-size: 28px;
  }
  .blog-detail-page .article-hero-image {
    height: 290px;
  }
  .blog-detail-page .article-two-image-grid {
    grid-template-columns: 1fr;
  }
  .blog-detail-page .article-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* 35. Contact Page */
.contact-page .contact-page-main {
  padding: 82px 0 92px;
  background: #f7f9fc;
}
.contact-page .contact-page-heading {
  max-width: 680px;
  margin: 0 auto 44px;
}
.contact-page .contact-page-heading h2 {
  margin: 8px 0 12px;
  color: #172033;
  font-size: 40px !important;
  line-height: 1.18;
}
.contact-page .contact-page-heading p {
  margin: 0;
  color: #69758a;
  font-size: 13px;
  line-height: 1.8;
}
.contact-page .contact-quick-row {
  margin-bottom: 28px;
}
.contact-page .contact-quick-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 118px;
  padding: 22px 48px 22px 20px;
  border: 1px solid #e3e9f1;
  border-radius: 16px;
  color: inherit;
  background: #fff;
  box-shadow: 0 10px 28px rgba(23, 32, 51, 0.045);
  text-decoration: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.contact-page .contact-quick-card:hover {
  transform: translateY(-3px);
  border-color: #cbd9ff;
  box-shadow: 0 14px 34px rgba(36, 76, 253, 0.08);
}
.contact-page .contact-quick-icon {
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-right: 15px;
  border-radius: 13px;
  color: #244cfd;
  background: #edf3ff;
  font-size: 17px;
}
.contact-page .contact-quick-copy {
  min-width: 0;
}
.contact-page .contact-quick-copy small,
.contact-page .contact-quick-copy strong,
.contact-page .contact-quick-copy em {
  display: block;
}
.contact-page .contact-quick-copy small {
  margin-bottom: 3px;
  color: #8a96a8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-page .contact-quick-copy strong {
  overflow: hidden;
  color: #1e293b;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.contact-page .contact-quick-copy em {
  margin-top: 4px;
  color: #778397;
  font-size: 10px;
  font-style: normal;
  line-height: 1.45;
}
.contact-page .contact-quick-arrow {
  position: absolute;
  top: 50%;
  right: 18px;
  color: #244cfd;
  font-size: 11px;
  transform: translateY(-50%);
}
.contact-page .contact-content-card {
  overflow: hidden;
  border: 1px solid #e0e7f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(23, 32, 51, 0.07);
}
.contact-page .contact-form-panel {
  padding: 42px;
}
.contact-page .contact-panel-kicker {
  display: block;
  margin-bottom: 7px;
  color: #244cfd;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.contact-page .contact-form-panel h3,
.contact-page .contact-info-panel h3,
.contact-page .contact-location-copy h3 {
  margin: 0;
  color: #172033;
  font-size: 27px;
  line-height: 1.25;
}
.contact-page .contact-panel-intro {
  max-width: 500px;
  margin: 10px 0 28px;
  color: #6e7a8e;
  font-size: 12px;
  line-height: 1.7;
}
.contact-page .medicore-contact-form label {
  display: block;
  margin-bottom: 7px;
  color: #3c485c;
  font-size: 10px;
  font-weight: 800;
}
.contact-page .contact-input-wrap {
  position: relative;
}
.contact-page .contact-input-wrap > i {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 1;
  color: #7c8ba2;
  font-size: 12px;
  transform: translateY(-50%);
}
.contact-page .contact-textarea-wrap > i {
  top: 17px;
  transform: none;
}
.contact-page .medicore-contact-form input,
.contact-page .medicore-contact-form textarea {
  width: 100%;
  border: 1px solid #dde5ef;
  border-radius: 10px;
  outline: 0;
  color: #283449;
  background: #fbfcfe;
  font-size: 11px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.contact-page .medicore-contact-form input {
  height: 47px;
  padding: 0 15px 0 39px;
}
.contact-page .medicore-contact-form textarea {
  min-height: 145px;
  padding: 14px 15px 14px 39px;
  resize: vertical;
}
.contact-page .medicore-contact-form input:focus,
.contact-page .medicore-contact-form textarea:focus {
  border-color: #9cb1ff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(36, 76, 253, 0.08);
}
.contact-page .contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 4px;
}
.contact-page .contact-form-footer > span {
  color: #8995a7;
  font-size: 9px;
}
.contact-page .contact-form-footer > span i {
  margin-right: 5px;
  color: #1ab89f;
}
.contact-page .contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(100deg, #244cfd, #1bc7e9);
  box-shadow: 0 10px 22px rgba(36, 76, 253, 0.16);
  font-size: 10px;
  font-weight: 800;
}
.contact-page .contact-info-panel {
  height: 100%;
  padding: 42px;
  color: #fff;
  background: radial-gradient(circle at 100% 0%, rgba(29, 201, 234, 0.22), transparent 34%), linear-gradient(145deg, #101b3a 0%, #172d69 100%);
}
.contact-page .contact-info-panel .contact-panel-kicker {
  color: #58d8ed;
}
.contact-page .contact-info-panel h3 {
  max-width: 360px;
  color: #fff;
}
.contact-page .contact-info-list {
  margin-top: 31px;
}
.contact-page .contact-info-item {
  display: flex;
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}
.contact-page .contact-info-item:first-child {
  border-top: 0;
  padding-top: 0;
}
.contact-page .contact-info-item > span {
  flex: 0 0 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border-radius: 11px;
  color: #55dbef;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
}
.contact-page .contact-info-item small,
.contact-page .contact-info-item strong,
.contact-page .contact-info-item p {
  display: block;
}
.contact-page .contact-info-item small {
  margin-bottom: 2px;
  color: #91a3c9;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-page .contact-info-item strong {
  color: #fff;
  font-size: 11px;
}
.contact-page .contact-info-item p {
  margin: 3px 0 0;
  color: #c5cee2;
  font-size: 10px;
}
.contact-page .contact-book-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #5ee0f3;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}
.contact-page .contact-urgent-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}
.contact-page .contact-urgent-note > i {
  margin-top: 2px;
  color: #5ee0f3;
}
.contact-page .contact-urgent-note strong,
.contact-page .contact-urgent-note span {
  display: block;
}
.contact-page .contact-urgent-note strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 10px;
}
.contact-page .contact-urgent-note span {
  color: #bdc9e0;
  font-size: 9px;
  line-height: 1.55;
}
.contact-page .contact-urgent-note a {
  color: #fff;
  font-weight: 700;
}
.contact-page .contact-location-card {
  display: grid;
  grid-template-columns: 36% 64%;
  overflow: hidden;
  min-height: 330px;
  margin-top: 28px;
  border: 1px solid #e0e7f0;
  border-radius: 20px;
  background: #fff;
}
.contact-page .contact-location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}
.contact-page .contact-location-copy p {
  margin: 12px 0 20px;
  color: #718097;
  font-size: 11px;
  line-height: 1.75;
}
.contact-page .contact-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.contact-page .contact-location-actions a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border: 1px solid #dfe6f0;
  border-radius: 9px;
  color: #334056;
  background: #fff;
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
}
.contact-page .contact-location-actions a:last-child {
  border-color: #244cfd;
  color: #fff;
  background: #244cfd;
}
.contact-page .contact-map-wrap {
  min-height: 330px;
  background: #eaf0f7;
}
.contact-page .contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
}

@media (max-width: 991.98px) {
  .contact-page .contact-page-main {
    padding: 70px 0 80px;
  }
  .contact-page .contact-info-panel {
    padding: 36px;
  }
  .contact-page .contact-location-card {
    grid-template-columns: 1fr;
  }
  .contact-page .contact-map-wrap,
  .contact-page .contact-map-wrap iframe {
    min-height: 300px;
  }
}
@media (max-width: 767.98px) {
  .contact-page .contact-page-heading h2 {
    font-size: 32px !important;
  }
  .contact-page .contact-form-panel,
  .contact-page .contact-info-panel {
    padding: 28px;
  }
  .contact-page .contact-form-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-page .contact-submit-btn {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .contact-page .contact-page-main {
    padding: 58px 0 68px;
  }
  .contact-page .contact-page-heading {
    margin-bottom: 32px;
  }
  .contact-page .contact-location-copy {
    padding: 27px;
  }
  .contact-page .contact-location-actions {
    flex-direction: column;
  }
  .contact-page .contact-location-actions a {
    justify-content: center;
  }
}

/* 36. Contact Overrides */
.contact-page .contact-page-main {
  padding: 78px 0 88px;
  background: #fff;
}
.contact-page .contact-calm-layout {
  max-width: 1180px;
  margin: 0 auto;
}
.contact-page .contact-calm-intro {
  max-width: 350px;
  padding-top: 6px;
}
.contact-page .contact-calm-intro h2 {
  margin: 8px 0 13px;
  color: #172033;
  font-size: 36px !important;
  line-height: 1.18;
}
.contact-page .contact-calm-intro p {
  margin: 0;
  color: #718096;
  font-size: 12px;
  line-height: 1.8;
}
.contact-page .contact-calm-details {
  max-width: 360px;
  margin-top: 32px;
  border-top: 1px solid #e7ebf1;
}
.contact-page .contact-calm-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid #e7ebf1;
  color: inherit;
  text-decoration: none;
}
.contact-page .contact-calm-icon {
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #244cfd;
  background: #f2f6ff;
  font-size: 13px;
}
.contact-page .contact-calm-item small,
.contact-page .contact-calm-item strong {
  display: block;
}
.contact-page .contact-calm-item small {
  margin-bottom: 3px;
  color: #8b96a7;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-page .contact-calm-item strong {
  color: #263247;
  font-size: 11px;
  font-weight: 700;
}
.contact-page .contact-calm-form-card {
  padding: 36px;
  border: 1px solid #e4e9f0;
  border-radius: 16px;
  background: #fff;
}
.contact-page .contact-calm-form-card h3 {
  margin: 0;
  color: #172033;
  font-size: 25px;
  line-height: 1.25;
}
.contact-page .contact-calm-form-card > p {
  margin: 9px 0 25px;
  color: #7a8597;
  font-size: 11px;
  line-height: 1.7;
}
.contact-page .contact-calm-form-card .medicore-contact-form label {
  margin-bottom: 7px;
  color: #485469;
  font-size: 10px;
  font-weight: 700;
}
.contact-page .contact-calm-form-card .medicore-contact-form input,
.contact-page .contact-calm-form-card .medicore-contact-form textarea {
  width: 100%;
  border: 1px solid #dfe5ed;
  border-radius: 9px;
  outline: 0;
  color: #29364a;
  background: #fff;
  font-size: 11px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.contact-page .contact-calm-form-card .medicore-contact-form input {
  height: 46px;
  padding: 0 14px;
}
.contact-page .contact-calm-form-card .medicore-contact-form textarea {
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
}
.contact-page .contact-calm-form-card .medicore-contact-form input:focus,
.contact-page .contact-calm-form-card .medicore-contact-form textarea:focus {
  border-color: #9bb0ff;
  box-shadow: 0 0 0 3px rgba(36, 76, 253, 0.06);
}
.contact-page .contact-calm-submit-row {
  display: flex;
  justify-content: flex-end;
  padding-top: 4px;
}
.contact-page .contact-submit-btn {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 9px;
  background: #244cfd;
  box-shadow: none;
}
.contact-page .contact-submit-btn:hover {
  background: #173de0;
}
.contact-page .contact-calm-location {
  max-width: 1180px;
  margin: 54px auto 0;
  overflow: hidden;
  border: 1px solid #e4e9f0;
  border-radius: 16px;
  background: #fff;
}
.contact-page .contact-calm-location-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  border-bottom: 1px solid #e7ebf1;
}
.contact-page .contact-calm-location-copy small {
  display: block;
  margin-bottom: 4px;
  color: #244cfd;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.contact-page .contact-calm-location-copy h3 {
  margin: 0;
  color: #172033;
  font-size: 18px;
}
.contact-page .contact-calm-location-copy p {
  margin: 3px 0 0;
  color: #7b8799;
  font-size: 10px;
}
.contact-page .contact-calm-location-copy > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #244cfd;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}
.contact-page .contact-calm-map,
.contact-page .contact-calm-map iframe {
  width: 100%;
  min-height: 280px;
}
.contact-page .contact-calm-map {
  background: #edf1f6;
}
.contact-page .contact-calm-map iframe {
  display: block;
  border: 0;
}
@media (max-width: 991.98px) {
  .contact-page .contact-page-main {
    padding: 66px 0 76px;
  }
  .contact-page .contact-calm-intro,
  .contact-page .contact-calm-details {
    max-width: none;
  }
}
@media (max-width: 767.98px) {
  .contact-page .contact-calm-intro h2 {
    font-size: 30px !important;
  }
  .contact-page .contact-calm-form-card {
    padding: 27px;
  }
  .contact-page .contact-calm-location-copy {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-page .contact-calm-submit-row {
    justify-content: stretch;
  }
  .contact-page .contact-submit-btn {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .contact-page .contact-page-main {
    padding: 56px 0 64px;
  }
  .contact-page .contact-calm-form-card {
    padding: 22px;
    border-radius: 13px;
  }
  .contact-page .contact-calm-location {
    margin-top: 38px;
    border-radius: 13px;
  }
  .contact-page .contact-calm-location-copy {
    padding: 20px;
  }
  .contact-page .contact-calm-map,
  .contact-page .contact-calm-map iframe {
    min-height: 240px;
  }
}

/* 37. Contact Form */
.contact-page .contact-calm-form-card,
.contact-page .contact-calm-form-card form,
.contact-page .contact-calm-form-card .medicore-contact-form {
  background: #ffffff !important;
  background-image: none !important;
}

.contact-page .contact-calm-form-card .medicore-contact-form input,
.contact-page .contact-calm-form-card .medicore-contact-form textarea {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  opacity: 1;
}

/* 38. Contact Contrast */
.contact-page .contact-page-main {
  background: #f7f9fc !important;
}

.contact-page .contact-calm-form-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 10px 32px rgba(20, 32, 55, 0.045) !important;
}

.contact-page .contact-calm-form-card form,
.contact-page .contact-calm-form-card .medicore-contact-form,
.contact-page .contact-calm-form-card .medicore-contact-form .row,
.contact-page .contact-calm-form-card .medicore-contact-form [class*="col-"] {
  background: transparent !important;
}

.contact-page .contact-calm-form-card .medicore-contact-form input,
.contact-page .contact-calm-form-card .medicore-contact-form textarea {
  background: #ffffff !important;
  border-color: #dce3ec !important;
}

.contact-page .contact-calm-intro,
.contact-page .contact-calm-details {
  background: transparent;
}

/* 39. Responsive */
@media (max-width: 767.98px) {
  .home-banner {
    padding-top: 98px;
  }

  .home-banner .banner-content {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    transform: none;
    text-align: center;
  }

  .home-banner .banner-content h1,
  .home-banner .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .home-banner .hero-actions,
  .home-banner .hero-trust-list {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .home-banner {
    padding-top: 92px;
  }

  .home-banner .hero-actions {
    width: 100%;
  }

  .home-banner .hero-trust-list {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
