/*Banner Section Start*/
.hero,
.about-hero,
.hero-medical {
  position: relative;
  z-index: 1;
}

.hero-medical {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("../assesst/Banner_Section.png") right center / cover
    no-repeat;
}

.hero-medical::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #000137 0%,
    #000137 40%,
    rgba(0, 1, 55, 0.85) 58%,
    rgba(0, 1, 55, 0.45) 72%,
    rgba(0, 1, 55, 0.1) 85%,
    transparent 100%
  );
  z-index: 1;
}

.hero-medical .container {
  max-width: 1350px;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  color: #ffffff;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  white-space: nowrap;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.btn-appointment {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  height: 58px;
  padding: 6px 6px 6px 26px;
  background: #ffffff;
  color: #000137;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition:
    color 0.5s ease,
    box-shadow 0.4s ease,
    transform 0.3s ease;
}

.btn-appointment::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 1, 55, 0.28) 20%,
    rgba(0, 1, 55, 0.52) 50%,
    rgba(0, 1, 55, 0.28) 80%,
    transparent 100%
  );
  transition: left 0s;
  z-index: 0;
}

.btn-appointment::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 1, 55, 0.2) 30%,
    rgba(0, 1, 55, 0.4) 55%,
    rgba(0, 1, 55, 0.2) 75%,
    transparent 100%
  );
  transition: left 0s;
  z-index: 0;
}

.btn-appointment:hover::before {
  left: 100%;
  transition: left 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-appointment:hover::after {
  left: 100%;
  transition: left 0.85s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.btn-appointment:hover {
  box-shadow:
    0 16px 38px rgba(0, 1, 55, 0.15),
    0 4px 12px rgba(0, 1, 55, 0.08);
  transform: translateY(-3px);
  color: #000137;
  background: #ffffff;
}

.btn-text,
.btn-icon {
  position: relative;
  z-index: 1;
}

.btn-icon {
  width: 46px;
  height: 46px;
  background: #000137;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-appointment:hover .btn-icon {
  transform: translateX(4px);
}

.btn-icon svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s ease;
}

.btn-appointment:hover .btn-icon svg {
  transform: translateX(3px);
}
/*Banner Section End*/

/*CTA Section Start*/
.cta {
  padding: 80px 0;
  background: #f4f7fa;
}
.cta-container {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.cta-grid {
  align-items: stretch;
}

.cta-col-combined {
  flex: 0 0 781px;
  max-width: 781px;
  width: 781px;
}

.cta-combined {
  display: flex;
  border-radius: 28px;
  overflow: hidden;
  height: 517px;
}

.cta-combined .cta-left {
  position: relative;
  color: #fff;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  background: url(../assesst/cta-img.png) center/cover no-repeat;
  /*background: linear-gradient(135deg, #0d7377 0%, #14c6d1 50%, #32e0e0 100%); */
}
.cta-combined .cta-left .mock-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(20, 198, 209, 0.15) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
}
.cta-combined .cta-left .mock-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -10px;
  width: 220px;
  height: 85%;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 110px 110px 0 0;
}

/* Card 2 – white panel 369x487, centred vertically */
.cta-combined .cta-mid {
  flex: 0 0 369px;
  width: 369px;
  height: 487px;
  align-self: center;
  background: #ffffff;
  padding: 34px;
  display: flex;
  flex-direction: column;
  box-shadow: -6px 0 28px rgba(0, 0, 0, 0.07);
  border-radius: 0 28px 28px 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 198, 209, 0.92),
    rgba(20, 198, 209, 0.7),
    rgba(20, 198, 209, 0.45)
  );
}
.left-content {
  position: absolute;
  top: 55px;
  left: 55px;
  max-width: 260px;
  z-index: 2;
}
.left-content span {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.9;
}
.left-content h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 18px;
}

/* Standalone cards */
.cta-visit,
.cta-right {
  height: 517px;
  border-radius: 28px;
  overflow: hidden;
}

/* Card 3 */
.cta-visit {
  background: #f6f8fb;
  padding: 34px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.mid-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid #e7edf3;
}
.mid-head h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0b1a45;
}
.mid-head .head-icon {
  color: #14c6d1;
  font-size: 22px;
  line-height: 1;
}
.mid-head .head-icon svg {
  width: 20px;
  height: 20px;
}

.cta-combined .cta-mid p,
.cta-visit p {
  font-size: 13.5px;
  color: #6b7b8f;
  line-height: 1.6;
  margin: 18px 0 22px;
}

.mid-call {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: auto;
}
.call-icon {
  width: 38px;
  height: 38px;
  background: #14c6d1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.call-icon svg {
  width: 17px;
}
.mid-call small {
  color: #6b7b8f;
  font-size: 12px;
}
.mid-call b {
  display: block;
  font-size: 14px;
  color: #0b1a45;
}

.visit-clinic {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: auto;
}
.visit-clinic b {
  font-size: 14px;
  color: #0b1a45;
  font-weight: 700;
}
.visit-clinic small {
  font-size: 13px;
  color: #6b7b8f;
  line-height: 1.5;
}

/* Card 4 */
.cta-right {
  background: linear-gradient(135deg, #14c6d1, #1299b4);
  color: #fff;
  padding: 38px;
  display: flex;
  flex-direction: column;
}
.hours-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.hours-head h3 {
  color: #fff;
}
.hours-head .head-icon {
  color: #fff;
}

.cta-right ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 auto;
}
.cta-right li {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.cta-right li:last-child {
  border-bottom: none;
}

.link {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #0b1a45;
  margin-top: 24px;
  display: inline-block;
  transition: opacity 0.2s;
}
.link:hover {
  opacity: 0.7;
}
.link.white {
  color: #fff;
}
/*CTA Section Start*/

/*About Section Start*/
.about {
  position: relative;
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.about .container {
  max-width: 1200px;
}

.dot-bg {
  position: absolute;
  left: -20px;
  top: 0;
  width: 360px;
  height: 380px;
  background-image: radial-gradient(circle, #9dd8e5 1.3px, transparent 1.3px);
  background-size: 18px 18px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.gallery-col {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.gallery-big {
  flex-shrink: 0;
  width: 310px;
  height: 450px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(0, 30, 80, 0.15);
}

.gallery-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 55px;
}

.gallery-small {
  width: 210px;
  height: 200px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0, 30, 80, 0.13);
}

.gallery-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-col {
  position: relative;
  z-index: 1;
  padding-left: 8px;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px 6px 12px;
  border: 1.8px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--cyan);
  background: #fff;
  margin-bottom: 20px;
}

.about-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.23;
  color: var(--navy);
  margin-bottom: 16px;
}

.about-desc {
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--text);
  margin-bottom: 0;
  max-width: 420px;
}
.feature-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fff;
  border-radius: 22px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  margin: 26px 0 30px;
}

.video-thumb {
  flex-shrink: 0;
  position: relative;
  width: 185px;
  height: 118px;
  border-radius: 16px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.play-inner {
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.play-btn:hover .play-inner {
  transform: scale(1.1);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  padding: 5px 0;
}

.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--cyan-lt);
  border: 1.5px solid var(--cyan);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-4.5' stroke='%2314c6d1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--cyan);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 9px 10px 9px 24px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(20, 198, 209, 0.3);
  /* transition:
    background:0.25s,
    box-shadow 0.25s;
  white-space: nowrap; */
}

.btn-about:hover {
  background: #0fb3be;
  color: #fff;
  box-shadow: 0 16px 36px rgba(20, 198, 209, 0.4);
}

.btn-circle {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.emergency {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-ring {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.8px solid #dde5f0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.emerg-text small {
  display: block;
  font-size: 11.5px;
  color: #8fa0be;
  font-weight: 500;
}

.emerg-text strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}
/*About Section End*/

/*Service Section Start*/
.services-intro {
  background: #dff9ff;
  padding: 80px 0 0;
  text-align: center;
}

.services-intro .container {
  max-width: 1350px;
  width: 100%;
  margin: auto;
  margin-top: 50px;
}

.intro-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #14c6d1;
  border: 1.5px solid #14c6d1;
  margin-bottom: 26px;
}

.intro-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  color: #0b1a45;
  margin: 0;
}

.services {
  padding: 10px 0 44px;
  background-color: #dff9ff;
}

.services-wrap {
  max-width: 1350px;
  margin: auto;
  gap: 10px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-radius: 22px;
  overflow: hidden;
}

.service-card {
  text-align: center;
  padding: 40px 20px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 20px;
  background: transparent;
  transition:
    transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.5s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #14c6d1, #0fa8b8);
  border-radius: 20px;
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card .icon {
  margin-bottom: 18px;
  transition:
    filter 0.4s ease,
    transform 0.4s ease;
}

.service-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0b1a45;
  margin-bottom: 6px;
  transition: color 0.4s ease;
}

.service-card p {
  font-size: 14px;
  color: #6b7b8f;
  margin: 0;
  transition: color 0.4s ease;
}

.service-card.active::before {
  transform: translateY(0%);
}

.service-card.active h4,
.service-card.active p {
  color: #fff;
}

.service-card.active .icon {
  filter: brightness(0) invert(1);
}

.service-card:not(.active):hover {
  transform: translateY(-7px);
  cursor: pointer;
  animation: glowPulse 1.8s ease infinite;
}

.service-card:not(.active):hover::before {
  transform: translateY(0%);
}

.service-card:not(.active):hover h4,
.service-card:not(.active):hover p {
  color: #fff;
}

.service-card:not(.active):hover .icon {
  filter: brightness(0) invert(1);
  animation: iconFloat 1.2s ease-in-out infinite;
}

/*Service Section End*/

/*Department Section Start*/
.dept-container {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.dept-wrapper {
  background: #dff9ff;
  border-radius: 36px;
  padding: 60px;
}

/* ── Glow / Shadow Pulse Hover ── */
@keyframes glowPulse {
  0% {
    box-shadow:
      0 0 18px rgba(20, 198, 209, 0.4),
      0 10px 30px rgba(0, 0, 0, 0.08);
  }
  50% {
    box-shadow:
      0 0 36px rgba(20, 198, 209, 0.75),
      0 16px 40px rgba(20, 198, 209, 0.2);
  }
  100% {
    box-shadow:
      0 0 18px rgba(20, 198, 209, 0.4),
      0 10px 30px rgba(0, 0, 0, 0.08);
  }
}

.dept-card {
  background: #fff;
  border-radius: 26px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  height: 100%;
  position: relative;
}

.dept-card:hover {
  transform: translateY(-6px);
  animation: glowPulse 1.6s ease-in-out infinite;
}

.dept-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.dept-card:hover img {
  transform: scale(1.03);
}

.dept-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0b1a45;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.dept-card:hover h3 {
  color: #14c6d1;
}

.dept-card p {
  font-size: 13px;
  color: #6b7b8f;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  font-size: 13px;
  font-weight: 600;
  color: #0b1a45;
  text-decoration: none;
  transition: color 0.3s;
}

.read-more:hover {
  color: #14c6d1;
}
/*Department Section End*/

/* Stats Section Start */

.stats {
  padding: 260px 0 140px;
  color: #fff;
  position: relative;
  overflow: visible;
  background: url("../images/home-img/stats-bg.png") center/cover no-repeat;
  z-index: 1;
}

.stats .container {
  max-width: 1922px;
  margin: auto;
  text-align: center;
}

.stats-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  margin: 0 auto 90px;
  max-width: 900px;
}

.stat-item {
  padding: 0 30px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
  width: 44px;
  margin-bottom: 20px;
}

.stat-item h3 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 15px;
  opacity: 0.85;
}
/*Stats Section End*/

/*Our Doctor Section Start*/
.team {
  background: #fff;
  padding: 140px 0;
}

.team .container {
  max-width: 1200px;
  text-align: center;
}

.team-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #14c6d1;
  border: 1.5px solid #14c6d1;
  margin-bottom: 20px;
}

.team-title {
  font-size: 38px;
  font-weight: 700;
  color: #0b1a45;
  margin-bottom: 14px;
}

.team-subtitle {
  max-width: 720px;
  margin: 0 auto 70px;
  font-size: 15px;
  line-height: 1.7;
  color: #6b7b8f;
}

.team-slider-wrapper {
  position: relative;
}

.team-carousel .carousel-inner {
  padding-bottom: 10px;
}

.team-carousel .carousel-item .row {
  gap: 0;
}

.team-card {
  position: relative;
  border-radius: 28px;
  overflow: visible;
}

.team-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.team-info {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  background: #fff;
  width: 85%;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.team-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0b1a45;
  margin-bottom: 4px;
}

.team-info span {
  font-size: 13px;
  color: #6b7b8f;
}

/* Next / Prev buttons */
.team-next,
.team-prev {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #14c6d1;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(20, 198, 209, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: transform 0.2s;
}

.team-next {
  right: -70px;
}
.team-prev {
  left: -70px;
}

.team-next:hover,
.team-prev:hover {
  transform: translateY(-50%) scale(1.08);
}

.team-prev svg {
  transform: rotate(180deg);
}

.team-dots {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-dots span {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #cfd8e3;
  cursor: pointer;
  transition: all 0.3s;
}

.team-dots .active {
  width: 40px;
  border-radius: 20px;
  background: #0b1a45;
}
/*Our Doctor Section End*/

/*Book an Appointment Section Start*/
.appt-section {
  width: 100%;
  max-width: 1920px;
  height: 781px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background-image: url("../assesst/appointment-image.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.appt-form-col {
  width: 702px;
  height: 693px;
  background: var(--cyan-lt);
  border-radius: 36px;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
  margin-right: 60px;
  position: relative;
  z-index: 2;
}

.appt-form-col h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  text-align: center;
}
.appt-form-col .appt-subtext {
  font-size: 13px;
  color: var(--text);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 28px;
}
.appt-form-col .form-control,
.appt-form-col .form-select {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--text);
  box-shadow: none;
  transition: border-color 0.3s;
}

.appt-form-col .form-control:focus,
.appt-form-col .form-select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(20, 198, 209, 0.12);
}

.appt-form-col .form-control::placeholder {
  color: #a0aec0;
}

.appt-form-col textarea.form-control {
  border-radius: 18px;
  resize: none;
  height: 100px;
}

.appt-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--cyan);
  color: var(--white);
  border: 2px solid var(--cyan);
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 0.4s ease;
}

.appt-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: -1;
  transition: left 0.4s ease;
  border-radius: 50px;
}

.appt-btn:hover::before {
  left: 0;
}
.appt-btn:hover {
  color: var(--cyan);
}
.appt-btn:hover .btn-icon {
  background: var(--cyan);
  color: var(--white);
}

.appt-btn .btn-icon {
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 16px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

/*Book an Appointment Section End*/

/*Media Queries Start*/

@media screen and (max-width: 1200px) {
  /* Banner Section*/
  .hero-medical {
    min-height: 750px;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .hero-content p {
    font-size: 15px;
    max-width: 600px;
  }
  /*CTA Section*/
  .cta-col-combined {
    flex: 0 0 640px;
    max-width: 640px;
    width: 640px;
  }
  .cta-combined,
  .cta-visit,
  .cta-right {
    height: 420px;
  }
  .left-content h2 {
    font-size: 28px;
  }
  .left-content {
    top: 36px;
    left: 36px;
  }

  /*About Section*/
  .about .container {
    padding: 0 24px;
  }
  .about-title {
    font-size: 32px;
  }
  .gallery-big {
    width: 268px;
    height: 400px;
  }
  .gallery-small {
    width: 188px;
    height: 178px;
  }
  .dot-bg {
    width: 280px;
  }
  /*Service Section*/
  .intro-title {
    font-size: 36px;
  }

  .services-wrap {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }

  .service-card {
    padding: 30px 14px;
  }

  /*Department Part*/
  .dept-container {
    max-width: 100%;
    padding: 0 20px;
  }

  .dept-wrapper {
    padding: 50px 40px;
  }

  /*Stats Section*/
  .stats {
    padding: 200px 0 100px;
  }

  .stats-title {
    font-size: 36px;
    margin: 0 auto 70px;
    max-width: 750px;
  }

  .stat-item {
    padding: 0 20px;
  }

  .stat-item h3 {
    font-size: 48px;
  }

  .stat-item p {
    font-size: 14px;
  }

  .stat-icon {
    width: 40px;
    margin-bottom: 16px;
  }

  /*Our Doctor Section*/
  .team {
    padding: 100px 0;
  }
  .team-next {
    right: -50px;
  }
  .team-prev {
    left: -50px;
  }
  .team-card img {
    height: 400px;
  }
  /*Book an Appointment Section*/
  .appt-section {
    height: auto;
    min-height: 781px;
    justify-content: center;
    padding: 60px 20px;
  }
  .appt-form-col {
    width: 100%;
    max-width: 680px;
    height: auto;
    margin-right: 0;
    padding: 44px 36px;
  }
}

@media screen and (max-width: 992px) {
  /* Banner Section*/
  .hero-medical {
    min-height: 650px;
    background-position: center center;
  }

  .hero-medical::before {
    background: linear-gradient(
      90deg,
      #000137 0%,
      #000137 35%,
      rgba(0, 1, 55, 0.9) 55%,
      rgba(0, 1, 55, 0.6) 75%,
      rgba(0, 1, 55, 0.2) 100%
    );
  }

  .hero-content h1 {
    font-size: 42px;
    white-space: normal;
  }

  .hero-content p {
    font-size: 15px;
  }
  /*CTA Section*/
  .cta-col-combined {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .cta-combined {
    height: 400px;
  }
  .cta-combined .cta-mid {
    flex: 0 0 260px;
    width: 260px;
  }
  .cta-visit,
  .cta-right {
    height: 400px;
  }

  /*About Section*/
  .about {
    padding: 60px 0;
  }

  .gallery-col {
    justify-content: center;
    margin-bottom: 44px;
  }

  .gallery-big {
    width: 248px;
    height: 370px;
  }
  .gallery-small {
    width: 174px;
    height: 162px;
  }
  .gallery-stack {
    padding-top: 42px;
    gap: 16px;
  }

  .content-col {
    padding-left: 0;
  }
  .about-title {
    font-size: 28px;
  }
  .dot-bg {
    width: 230px;
    height: 230px;
  }
  /*Service Section*/
  .intro-title {
    font-size: 32px;
  }

  .services-wrap {
    grid-template-columns: repeat(3, 1fr);
    border-radius: 16px;
  }

  .service-card {
    padding: 28px 16px;
    min-height: 180px;
  }

  /*Department Part*/
  .dept-wrapper {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .dept-card img {
    height: 200px;
  }

  /*Stats Section*/
  .stats {
    padding: 160px 0 80px;
  }

  .stats-title {
    font-size: 30px;
    margin: 0 auto 60px;
    max-width: 620px;
  }

  .stat-item {
    padding: 0 15px;
  }

  .stat-item::after {
    height: 90px;
  }

  .stat-item h3 {
    font-size: 40px;
  }

  .stat-item p {
    font-size: 13px;
  }

  .stat-icon {
    width: 36px;
    margin-bottom: 14px;
  }

  /*Our Doctor Section*/
  .team {
    padding: 60px 0;
  }
  .team-title {
    font-size: 28px;
  }
  .team-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .team-card img {
    height: 320px;
  }
  .team-next {
    right: -10px;
  }
  .team-prev {
    left: -10px;
  }
  .team-next,
  .team-prev {
    width: 40px;
    height: 40px;
  }
  .team-dots {
    margin-top: 40px;
  }
  /*Book an Appointment Section*/
  .appt-section {
    min-height: 600px;
    padding: 50px 20px;
  }
  .appt-form-col {
    padding: 40px 30px;
    border-radius: 28px;
  }
  .appt-form-col h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  /* Banner Section*/
  .hero-medical {
    height: auto;
    min-height: 560px;
    padding: 100px 0 60px;
    background-position: 65% center;
  }

  .hero-medical::before {
    background: linear-gradient(
      180deg,
      rgba(0, 1, 55, 0.95) 0%,
      rgba(0, 1, 55, 0.85) 60%,
      rgba(0, 1, 55, 0.6) 100%
    );
  }

  .hero-medical .container {
    align-items: flex-start;
    padding-top: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .btn-appointment {
    margin: 0 auto;
  }
  /*CTA Section*/
  .cta-combined {
    flex-direction: column;
    height: auto;
  }
  .cta-combined .cta-left {
    height: 240px;
    flex: none;
  }
  .cta-combined .cta-mid {
    flex: none;
    width: 100%;
    height: auto;
    min-height: 260px;
  }
  .cta-visit,
  .cta-right {
    height: auto;
    min-height: 340px;
  }

  /* About Section */
  .about {
    padding: 50px 0;
  }

  .gallery-col {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .gallery-big {
    width: 100%;
    max-width: 420px;
    height: 258px;
  }

  .gallery-stack {
    flex-direction: row;
    padding-top: 0;
    gap: 14px;
    width: 100%;
    max-width: 420px;
  }

  .gallery-small {
    flex: 1;
    width: auto;
    height: 148px;
  }

  .about-title {
    font-size: 24px;
  }

  .feature-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .video-thumb {
    width: 100%;
    height: 168px;
  }

  .dot-bg {
    width: 180px;
    height: 180px;
    opacity: 0.3;
  }
  /*Service Section*/
  .services-intro {
    padding: 50px 0 0;
  }

  .services-intro .container {
    margin-top: 30px;
  }

  .intro-title {
    font-size: 28px;
  }

  .services-wrap {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 14px;
  }

  .service-card {
    padding: 24px 14px;
    min-height: 160px;
  }

  .service-card h4 {
    font-size: 15px;
  }

  /*Department Part*/
  .dept-wrapper {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .dept-card img {
    height: 200px;
  }

  /*Stats Section*/
  .stats {
    padding: 120px 0 70px;
  }

  .stats-title {
    font-size: 26px;
    margin: 0 auto 50px;
    max-width: 100%;
    padding: 0 15px;
  }
  .col-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .stat-item {
    padding: 30px 25px;
    margin-bottom: 10px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-item:nth-child(odd)::after {
    display: block;
    height: 100px;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 40px;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    padding-top: 40px;
  }

  .stat-item h3 {
    font-size: 44px;
  }

  .stat-item p {
    font-size: 14px;
  }

  .stat-icon {
    width: 40px;
    margin-bottom: 16px;
  }

  /*Our Doctor Section*/
  .team {
    padding: 60px 0;
  }
  .team-title {
    font-size: 28px;
  }
  .team-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .team-card img {
    height: 320px;
  }
  .team-next {
    right: -10px;
  }
  .team-prev {
    left: -10px;
  }
  .team-next,
  .team-prev {
    width: 40px;
    height: 40px;
  }
  .team-dots {
    margin-top: 40px;
  }
  /*Book an Appointment Section*/
  .appt-section {
    padding: 40px 16px;
  }
  .appt-form-col {
    padding: 36px 24px;
    border-radius: 24px;
  }
}

@media screen and (max-width: 576px) {
  /* Banner Section*/
  .hero-medical {
    min-height: 500px;
    padding: 80px 0 50px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .btn-appointment {
    height: 52px;
    padding: 5px 5px 5px 20px;
    font-size: 14px;
    gap: 14px;
  }

  .btn-icon {
    width: 42px;
    height: 42px;
  }
  /*CTA Section*/
  .cta-combined {
    border-radius: 20px;
  }
  .cta-visit,
  .cta-right {
    min-height: 300px;
    border-radius: 18px;
    padding: 22px;
  }
  .cta-combined .cta-mid {
    padding: 22px;
  }
  .left-content {
    top: 24px;
    left: 24px;
  }
  .left-content h2 {
    font-size: 22px;
  }

  /* About Section */

  .about {
    padding: 40px 0;
  }
  .about .container {
    padding: 0 16px;
  }

  .gallery-big {
    height: 220px;
  }
  .gallery-small {
    height: 118px;
  }
  .gallery-stack {
    gap: 10px;
  }

  .about-title {
    font-size: 20px;
  }
  .about-tag {
    font-size: 10.5px;
    padding: 5px 12px 5px 10px;
  }

  .feature-card {
    padding: 14px;
    border-radius: 18px;
    gap: 14px;
  }
  .video-thumb {
    height: 150px;
  }

  .btn-about {
    font-size: 13px;
    padding: 8px 8px 8px 18px;
    gap: 10px;
  }
  .btn-circle {
    width: 34px;
    height: 34px;
  }

  .about-actions {
    gap: 16px;
  }
  .emerg-text strong {
    font-size: 14.5px;
  }
  .dot-bg {
    display: none;
  }
  /*Service Section*/
  .services-intro {
    padding: 40px 0 0;
  }

  .intro-title {
    font-size: 24px;
  }

  .intro-tag {
    font-size: 11px;
    padding: 6px 14px;
  }

  .services-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    border-radius: 12px;
    margin: 0 12px;
  }

  .service-card {
    padding: 20px 12px;
    min-height: 150px;
  }

  .service-card .icon {
    width: 56px;
    height: auto;
    margin-bottom: 12px;
  }

  .service-card h4 {
    font-size: 14px;
  }

  .service-card p {
    font-size: 12px;
  }

  /*Department Part*/
  .dept-wrapper {
    padding: 24px 16px;
    border-radius: 20px;
  }

  .dept-card {
    border-radius: 18px;
  }

  .dept-card img {
    height: 180px;
  }

  .dept-card h3 {
    font-size: 15px;
  }

  /*Stats Section*/
  .stats {
    padding: 90px 0 60px;
  }

  .stats-title {
    font-size: 22px;
    margin: 0 auto 40px;
    line-height: 1.4;
    padding: 0 20px;
  }

  .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .stat-item {
    padding: 25px 30px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-item:not(:last-child)::after,
  .stat-item:nth-child(odd)::after {
    display: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 25px;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    padding-top: 25px;
  }

  .stat-item h3 {
    font-size: 40px;
  }

  .stat-item p {
    font-size: 14px;
  }

  .stat-icon {
    width: 38px;
    margin-bottom: 14px;
  }

  /*Our Doctor Section*/
  .team {
    padding: 50px 0;
  }
  .team-title {
    font-size: 24px;
  }
  .team-card img {
    height: 380px;
  }
  .team-next {
    right: 0px;
  }
  .team-prev {
    left: 0px;
  }
  .team-info {
    width: 80%;
    padding: 14px 16px;
  }
  /*Book an Appointment Section*/
  .appt-section {
    padding: 30px 12px;
  }
  .appt-form-col {
    padding: 28px 18px;
    border-radius: 20px;
  }
  .appt-form-col h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 320px) {
  /* Banner Section*/
  .hero-medical {
    min-height: 460px;
    padding: 70px 0 40px;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .btn-appointment {
    height: 46px;
    padding: 4px 4px 4px 16px;
    font-size: 13px;
    gap: 10px;
  }

  .btn-icon {
    width: 38px;
    height: 38px;
  }

  .btn-icon svg {
    width: 13px;
    height: 13px;
  }

  /*CTA Section*/
  .cta-combined .cta-left {
    height: 180px;
  }
  .cta-visit,
  .cta-right {
    min-height: 260px;
    border-radius: 14px;
  }

  /* About Section */
  .about {
    padding: 28px 0;
  }
  .about .container {
    padding: 0 12px;
  }

  .gallery-big {
    height: 185px;
  }
  .gallery-small {
    height: 98px;
  }

  .about-title {
    font-size: 17px;
  }
  .about-desc {
    font-size: 12px;
  }

  .feature-card {
    padding: 12px;
  }
  .video-thumb {
    height: 130px;
  }
  .check-list li {
    font-size: 12px;
  }

  .about-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .btn-about {
    font-size: 12px;
  }
  .emerg-text strong {
    font-size: 13px;
  }
  .phone-ring {
    width: 38px;
    height: 38px;
  }
  /*Service Section*/
  .intro-title {
    font-size: 20px;
  }

  .services-wrap {
    grid-template-columns: 1fr;
    margin: 0 8px;
  }

  .service-card {
    min-height: 120px;
    border-radius: 12px;
  }

  /*Department Part*/
  .dept-wrapper {
    padding: 16px 10px;
    border-radius: 16px;
  }

  .dept-card {
    padding: 14px;
    border-radius: 14px;
  }

  .dept-card img {
    height: 150px;
  }

  .dept-card h3 {
    font-size: 14px;
  }

  .dept-card p,
  .read-more {
    font-size: 12px;
  }

  /*Stats Section*/
  .stats {
    padding: 70px 0 50px;
  }

  .stats-title {
    font-size: 18px;
    margin: 0 auto 30px;
    line-height: 1.5;
    padding: 0 15px;
  }

  .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .stat-item {
    padding: 20px 15px;
  }

  .stat-item h3 {
    font-size: 34px;
    margin-bottom: 5px;
  }

  .stat-item p {
    font-size: 13px;
  }

  .stat-icon {
    width: 32px;
    margin-bottom: 10px;
  }

  /*Our Doctor Section*/
  .team {
    padding: 40px 0;
  }
  .team-title {
    font-size: 20px;
  }
  .team-tag {
    font-size: 10px;
  }
  .team-card img {
    height: 300px;
  }
  .team-next {
    right: -5px;
  }
  .team-prev {
    left: -5px;
  }
  .team-next,
  .team-prev {
    width: 34px;
    height: 34px;
  }
  .team-info h4 {
    font-size: 14px;
  }
  .team-info span {
    font-size: 12px;
  }
  .team-dots {
    margin-top: 30px;
  }
  /*Testimonial Section*/
  .testimonial {
    padding: 36px 0;
  }
  .testimonial-title {
    font-size: 18px;
  }
  .quote-icon {
    display: none;
  }
  .testimonial-text {
    font-size: 12px;
  }
  /*Book an Appointment Section*/
  .appt-section {
    padding: 20px 10px;
  }
  .appt-form-col {
    padding: 20px 14px;
    border-radius: 16px;
  }
  .appt-form-col h2 {
    font-size: 17px;
  }
  .appt-form-col .appt-subtext {
    font-size: 11px;
  }
  .appt-btn {
    font-size: 12px;
    padding: 11px 22px;
  }
}

/*Media Queries End*/
