:root {
  --spacing-lg: 1rem;
  --section-gap: clamp(2rem, 4vw, 5rem);
  --color-surface: #ffffff;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/*------ Hero Banner -------------------*/
#hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#emergency-banner {
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-accent-700) 100%
  );
  padding: var(--spacing-lg) var(--spacing-lg);
  position: relative;
  overflow: hidden;
}
#emergency-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 30rem;
  height: 30rem;
  background: color-mix(in srgb, var(--color-surface) 10%, transparent);
  border-radius: 50%;
  filter: blur(60px);
}
#services-section {
  padding: var(--section-gap) var(--spacing-lg);
  background: var(--color-surface);
}
#departments-section {
  padding: var(--section-gap) var(--spacing-lg);
  background: var(--color-surface-elevated);
}
#about-section {
  padding: var(--section-gap) var(--spacing-lg);
  background: var(--color-surface);
}
#facilities-section {
  padding: var(--section-gap) var(--spacing-lg);
  background: var(--color-surface-elevated);
}
#why-choose-section {
  position: relative;
  padding: var(--section-gap) var(--spacing-lg);
  overflow: hidden;
}
#testimonials-section {
  padding: var(--section-gap) var(--spacing-lg);
  background: var(--color-surface);
}
#cta-section {
  padding: var(--section-gap) var(--spacing-lg);
  background: var(--color-surface-elevated);
}
/*-------- Footer Section CSS ------------------*/
@keyframes footerGradientSlide {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes emergencyPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}
@keyframes dividerSlide {
  0%,
  100% {
    left: 0;
    opacity: 0;
  }
  50% {
    left: calc(100% - 100px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-decoration-top,
  .footer-divider::after,
  .footer-emergency-pulse {
    animation: none;
  }
  .footer-logo-icon,
  .footer-badge,
  .footer-link,
  .footer-contact-icon,
  .footer-emergency-btn,
  .footer-social-link {
    transition: none;
  }
}

/*-------- Doctor Section CSS ------------------*/
#doctor-section {
  padding: var(--section-gap) var(--spacing-lg);
  background: var(--color-surface);
}
.docContainer {
  max-width: 1200px;
  margin: 0 auto;
}
.text-center {
  text-align: center !important;
}
.bg-white {
  background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
}
.border {
  border-width: 1px;
  border-style: solid;
  border-color: #e1e4ea;
  /* border-image: linear-gradient(to right, #304faf, #98a5c0) 1; */
}
.border-width-2 {
  border-width: 2px !important;
}
.owl-stage .owl-item {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.owl-stage .owl-item .item {
  height: 100%;
}
.owl-stage .owl-item .item .bg-white {
  height: 100%;
}
.padding-20px-all {
  padding: 10px !important;
}
.padding-20px-all {
  padding: 20px;
}

.display-inline-block {
  display: inline-block !important;
}
img {
  max-width: 100%;
  height: auto;
}
.margin-15px-bottom {
  margin-bottom: 15px;
}

.text-dark-gray {
  color: #626262;
}
.font-size20 {
  font-size: 20px;
  line-height: 26px;
}
.bg-theme {
  background-color: #9b5de0;
}
.text-info {
  color: #e65103 !important;
}
.text {
  text-align: center !important;
}
.small {
  font-size: 80%;
  font-weight: 400;
}
.center-col {
  float: none;
  margin-left: auto;
  margin-right: auto;
}
.margin-p {
  margin: 0 0 10px;
  word-spacing: 0.1rem;
}
.margin-15px-bottom {
  margin-bottom: 15px;
}
.separator-line-horrizontal-medium-light {
  width: 36px;
  height: 3px;
}

.butn.transparent {
  color: rgb(35, 35, 35);
  background: none;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(202, 204, 206);
  border-image: initial;
}
.butn.transparent:hover {
  background: linear-gradient(to right, #fa709a 0%, #fee140 100%);
  border: 1px solid #ff9d00;
  color: rgb(35, 35, 35);
}
.butn.small {
  letter-spacing: 1px;
  font-size: 12px;
  line-height: 20px;
  padding: 8px 20px;
}
.butn {
  cursor: pointer;
  font-weight: 600;
  color: rgb(255, 255, 255);
  letter-spacing: 1px;
  font-size: 13px;
  line-height: 20px;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: center;
  background: rgb(0, 188, 209);
  padding: 10px 8px 10px 40px;
  border-radius: 3px;
  transition: 300ms linear;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
}
.view-all-doctor {
  margin-top: 30px;
}
.viewBtn {
  text-decoration: none;
  background: none;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(202, 204, 206);
  border-image: initial;
  padding: 10px 20px;
  border-radius: 5px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.viewBtn:hover {
  background: #000;
  color: #fff;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

/*---------- Top Bar CSS --------------*/
.top-main {
  background: #3338a0;
  padding: 8px 0px;
}
.top-bar-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-single-field a {
  color: #fff;
}
.top-bar-single-field a i {
  color: #fff;
  font-size: 20px;
}
.top-menu-left a i {
  margin: 0px 5px 0px 0px;
}
.topSection {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}
.top-main a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.top-menu-left a {
  padding: 0px 20px 0px 0px;
  font-size: 15px;
}
.top-menu-left a:hover {
  color: #ff9d00;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.emergency {
  background: #fff;
  padding: 5px 10px !important;
  border-radius: 2px;
  font-weight: 600;
  color: #3338a0 !important;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
  opacity: 0;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  font-size: 13px;
}
.emergency span {
  font-size: 16px;
}
@keyframes waves {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}

/*---------- Header Section -------------------*/
.custom-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  box-shadow: 0px 0px 10px -3px rgba(0, 0, 0, 0.2);
  padding: 20px 0px;
}
.headerContainer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}
.custom-header-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 55px;
  width: auto;
}
/*---------- Career Section CSS ------------------*/
.career-section {
  background-image: url(/images/bg-other.jpg);
  background-size: cover;
  background-position: center center;
  border-bottom: 1px solid #95bf9b;
}
.careerCenter {
  width: 95%;
  max-width: 1280px;
  margin: 0 auto;
}
.dep_left_box {
  width: 70%;
  padding: 20px 0px 10px 0px;
}
.dep_left_box {
  display: flex;
}
.dep_left_box {
  width: 50%;
  padding: 70px 0px;
  font-size: 14px;
  line-height: 38px;
}
.dep_left_box article {
  padding: 0px;
}
.dep_left_box article h2 {
  color: #334443;
  padding: 10px 0 0 0;
}
.dep_left_box h2 {
  font-size: 35px;
  margin-bottom: 10px;
  color: #343440;
}
.dep_left_box article p {
  color: #334443;
}
.dep_left_box p {
  padding: 0px 0;
  margin: 5px 0;
}
.dep_left_box p {
  font-size: 16px;
  margin-top: 10px;
  color: #343440;
}
.dep_left_box p {
  font-size: 15px !important;
  line-height: 23px;
  padding: 0 0 8px 0 !important;
  display: block;
}

section.dep_sec6 {
  padding: 40px 0px 0px 0;
}
.surgeriesPart {
  margin: 15px auto 30px auto;
  display: block;
  width: 97%;
}
.careerCenter {
  max-width: 1280px;
}
.careerCenter:after {
  content: "";
  display: block;
  clear: both;
}
.bodyText .surgeriesPart .left {
  padding: 0 15px 0 0;
}
.bodyText .surgeriesPart .left img {
  border-radius: 15px;
  border: 1px solid #e1e4ea;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.bodyText .surgeriesPart .right {
  width: 48%;
}
.right {
  float: right !important;
}
.bodyText h1 {
  font-size: 35px;
  line-height: 42px;
  padding: 0px 0 10px 0;
  color: #484748;
}
.bodyText .surgeries2 h4 {
  font-size: 22px;
  line-height: 25px;
  padding: 10px 0 10px 0;
}
.bodyText h4 {
  font-size: 25px;
  line-height: 30px;
  padding: 10px 0 20px 0;
  color: #555757;
}
.bodyText p {
  font-size: 16px;
  line-height: 25px;
  padding: 10px 0 20px 0;
  display: block;
  width: 100%;
}
.left {
  float: left;
  width: 48%;
}

.postSection {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f8f8f8;
}
.postWrapper {
  max-width: 1270px;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.postSection-inner {
  align-content: center;
  align-items: center;
  justify-content: center;
}
.post-wrap {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.post-wrap-inner {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  align-self: stretch;
}
.post-column {
  position: relative;
  width: 100%;
}
.post-column-inner {
  position: relative;
  margin: 0 15px 30px 15px;
}
.post-title {
  color: #00275b;
}
.post-card-inner {
  position: relative;
  margin: 0 15px 30px 15px;
  display: flex;
  justify-content: space-between;
  flex-flow: 2;
  flex-wrap: wrap;
}
.postCard {
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #e1e4ea;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-bottom: 15px;
  width: 49%;
  background: #fff;
}
.postCard h2 {
  font-size: 26px;
  line-height: 28px;
  color: #3338a0;
  margin-bottom: 10px;
}
.postCard h3 {
  font-size: 18px;
  line-height: 22px;
  color: #555757;
  margin-bottom: 8px;
}
.postCard ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.postCard ul li {
  font-size: 16px;
  line-height: 24px;
  color: #626262;
  margin-bottom: 6px;
}
.postCard ul li span {
  font-weight: 600;
}
.postCard ul li span:first-child {
  width: 120px;
  display: inline-block;
}
.postCard ul li span:last-child {
  color: #3338a0;
}
.postCard ul li:last-child {
  margin-bottom: 0;
}
.postCard:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}
.postCard h2,
.postCard h3,
.postCardLine,
.applySection p,
.postCard ul li {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}
.postCard h2 {
  animation-delay: 0.1s;
}
.postCard h3 {
  animation-delay: 0.2s;
}
.postCard ul li {
  animation-delay: 0.3s;
}
.postCard ul li:nth-child(2) {
  animation-delay: 0.4s;
}
.postCard ul li:nth-child(3) {
  animation-delay: 0.5s;
}
.postCard ul li:nth-child(4) {
  animation-delay: 0.6s;
}
.postCard ul li:nth-child(5) {
  animation-delay: 0.7s;
}
.postCard ul li:nth-child(6) {
  animation-delay: 0.8s;
}
.postCard ul li:nth-child(7) {
  animation-delay: 0.9s;
}
.postCard ul li:nth-child(8) {
  animation-delay: 1s;
}
.postCard ul li:nth-child(9) {
  animation-delay: 1.1s;
}
.postCard ul li:nth-child(10) {
  animation-delay: 1.2s;
}
.postCardLine {
  margin: 10px 0 10px 0;
  gap: 8px;
  font-size: 14px;
}
.applySection {
  background-color: transparent;
  border-radius: 10px;
  border: 1px solid #3338a0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 24px;
  margin-top: 10px;
}
.applySection p {
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  color: #3338a0;
  margin-bottom: 10px;
}
.smallText {
  font-size: 12px;
  line-height: 20px;
  color: #555757;
}
@media (max-width: 768px) {
  .postCard {
    width: 100%;
  }
  .dep_left_box {
    width: 100%;
    padding: 20px 0px 10px 0px;
    font-size: 14px;
    line-height: 28px;
  }
  .dep_left_box article {
    padding: 0px;
  }
  .dep_left_box article h2 {
    color: #334443;
    padding: 10px 0 0 0;
    font-size: 28px;
  }
  .dep_left_box p {
    font-size: 14px !important;
    line-height: 22px;
    padding: 0 0 8px 0 !important;
    display: block;
  }
  .bodyText .surgeriesPart .left,
  .bodyText .surgeriesPart .right {
    width: 100%;
    float: none !important;
    margin: 0 auto;
    text-align: center;
    padding: 0 !important;
  }
  .bodyText .surgeriesPart .left img {
    width: 80%;
    margin: 0 auto;
  }
  .dep_left_box {
    padding: 20px 0px 10px 0px;
  }
  .dep_left_box h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #343440;
  }
  .postCard h2 {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 8px;
  }
  .postCard h3 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 6px;
  }
  .postCard ul li {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 4px;
  }
  .postCard ul li span:first-child {
    width: 100px;
  }
  .postCard ul li span:last-child {
    font-size: 14px;
  }
  .postCard {
    padding: 20px;
  }
  .postCardLine {
    font-size: 12px;
  }
  .postSection {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .postCard {
    padding: 20px;
  }
  .postCardLine {
    margin: 8px 0 8px 0;
    gap: 6px;
    font-size: 12px;
  }
  .applySection {
    padding: 20px;
  }
  .applySection p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .smallText {
    font-size: 10px;
    line-height: 18px;
  }
}
