/* breadcrumb  */

.breadcrumb-section {
  background: linear-gradient(120deg, #2a8086 0%, #5b2323 100%);
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: center;
}

.breadcrumb-svg-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.breadcrumb-container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0.5rem;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-item a:hover {
  color: #ffe6e6;
}

.breadcrumb-item.active {
  color: #fff;
  font-weight: 600;
}

.breadcrumb-title {
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.breadcrumb-title-icon {
  color: #fff;
  font-size: 2.1rem;
}

.breadcrumb-badge {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 10px rgba(42, 128, 134, 0.08);
}

.breadcrumb-desc {
  color: #f8f8f8 !important;
  font-size: 1.1rem !important;
  max-width: 600px;
  margin-bottom: 0 !important;
}

.breadcrumb-dot-top,
.breadcrumb-dot-bottom {
  position: absolute;
  color: #fff;
  opacity: 0.18;
  z-index: 2;
}

.breadcrumb-dot-top {
  top: 18px;
  right: 40px;
  display: flex;
  gap: 8px;
}

.breadcrumb-dot-bottom {
  bottom: 18px;
  left: 40px;
  display: flex;
  gap: 6px;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

@media (max-width: 768px) {
  .breadcrumb-section {
    min-height: 150px;
    padding: 30px 0 20px 0;
  }

  .breadcrumb-title {
    font-size: 1.4rem;
  }

  .breadcrumb-title-icon {
    font-size: 1.3rem;
  }

  .breadcrumb-badge {
    font-size: 0.9rem;
    padding: 5px 12px;
  }

  .breadcrumb-desc {
    font-size: 0.98rem;
  }
}

.doc-sidebar {
  background: linear-gradient(160deg, #008080, #006666);
  color: #fff;
  padding: 15px 12px;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  height: fit-content;
}

.doc-sidebar img {
  width: 97.5%;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 4px solid #008080;
  margin: 4px;
  /* background-color: #008080; */
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.doc-sidebar h4 {
  font-size: 24px;
  padding: 8px 12px;
  color: #008080;

  margin: 0;
  border-bottom: 2px solid #0080802c;
}

.doc-profile {
  background-color: #fff;
  border-radius: 6px;
}

.docdt {
  padding: 0 12px 12px;
}

.doc-service-link {
  color: #008080;
  display: block;
  font-size: 17px;
  padding: 8px 10px;
  border-bottom: 1px solid #008080;
  position: relative;
  z-index: 1;
  transition: all 0.2s;
  span {
    display: block;
    position: relative;
  }
}

.doc-service-link::before {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.3s;
  background-color: #008080;
}

.doc-service-link:hover {
  text-decoration: none;
  color: #ffffff;
  /* background-color: #5fb7b7; */

  &::before {
    height: 100%;
  }
}

.doc-form-control {
  border-radius: 8px;
  border: none;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.doc-btn-light {
  background-color: #008080;
  color: #fff;
  font-weight: bold;
  border: 1px solid #008080;
  transition: 0.3s ease;
}

.doc-btn-light:hover {
  background-color: #fff;
  color: #006666;
}

.doc-content-area {
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.doc-banner-img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.doc-heading {
  font-weight: 600;
  color: #008080;
}

.doc-subheading {
  color: #006666;
  font-weight: 600;
  margin-top: 20px;
}

h3.doc-subheading {
  font-size: 28px;
  margin-bottom: 15px;
}

h4.doc-subheading {
  font-size: 24px;
  margin-bottom: 15px;
}
h5.doc-subheading {
  font-size: 20px;
  margin-bottom: 15px;
}

.doc-content-area p {
  font-size: 18px;
}

.doc-content-area ul,
.doc-content-area ol {
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}

.doc-content-area ul li,
.doc-content-area ol li {
  margin-bottom: 10px;
  font-size: 18px;
  list-style-type: disc;
  line-height: 1.6;
}

.doc-content-area ul li {
  margin-bottom: 8px;
}

/* Responsive Table for IVUS/OCT/FFR */
.responsive-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.ivus-oct-ffr-table {
  min-width: 800px;
  background: #fff;
}

@media (max-width: 767.98px) {
  .doc-sidebar {
    border-radius: 0;
  }

  .doc-content-area {
    padding: 0;
    box-shadow: none;
  }

  .doc-banner-img {
    margin-bottom: 20px;
  }

  .doc-heading {
    font-size: 24px;
  }

  h3.doc-subheading {
    font-size: 24px;
  }

  h4.doc-subheading {
    font-size: 20px;
  }

  h5.doc-subheading {
    font-size: 18px;
  }

  .ivus-oct-ffr-table tr {
    margin-bottom: 1rem;
    border-bottom: 2px solid #eee;
  }
}

/* contact us  */

/* Creative Contact Section Styles */
.contact-section {
  background: linear-gradient(120deg, #e3f0ff 0%, #f8fafc 100%);
  position: relative;
  z-index: 1;
}

.contact-bg-shape-1,
.contact-bg-shape-2 {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.form-head {
  font-size: 26px;
  color: #008080;
  font-weight: 600;
}

.contact-bg-shape-1 {
  top: -80px;
  left: -120px;
  width: 820px;
  height: 820px;
  background: radial-gradient(circle at 60% 40%, #39c0ed55 0%, #00808011 100%);
  border-radius: 50%;
  filter: blur(12px);
}

.contact-bg-shape-2 {
  bottom: -100px;
  right: -100px;
  width: 860px;
  height: 860px;
  background: radial-gradient(circle at 40% 60%, #00808033 0%, #39c0ed11 100%);
  border-radius: 50%;
  filter: blur(10px);
}

.contact-info-card {
  background: linear-gradient(135deg, #008080 40%, #1e9797 100%);
  box-shadow: 0 8px 32px rgba(13, 110, 253, 0.1);
  border: none;
}

.contact-info-card {

  a {
    font-size: 20px;
    background-color: #fff;
    color: #008080;
    /* max-width: 550px; */
    display: flex;
    align-items: baseline;
    width: 100%;
    border: 2px solid #008080;
    padding: 10px 20px;
    border-radius: 10px;
  }

  img{
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
  }
}

.contact-info-card .social-link {
  font-size: 1.3rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.contact-info-card .social-link:hover {
  background: #fff;
  color: #008080;
}

.contact-form-card {
  border: none;
  box-shadow: 0 8px 32px rgba(13, 110, 253, 0.08);
}

.contact-form-card .form-label {
  font-weight: 600;
  color: #008080;
}

.contact-form-card .form-control {
  border-radius: 0.5rem;
  border: 1.5px solid #e0e6ed;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form-card .form-control:focus {
  border-color: #008080;
  box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.1);
}

.btn-gradient {
  background: linear-gradient(90deg, #008080 40%, #1e9797 100%);
  color: #fff;
  border: none;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(13, 110, 253, 0.08);
  transition: background 0.2s, box-shadow 0.2s;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #5fbebe 0%, #008080 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(13, 110, 253, 0.16);
}

@media (max-width: 991.98px) {
  .contact-info-card,
  .contact-form-card {
    margin-bottom: 2rem;
    min-height: unset;
  }

  .contact-bg-shape-1,
  .contact-bg-shape-2 {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .contact-info-card,
  .contact-form-card {
    padding: 1.5rem !important;
    border-radius: 1.2rem !important;
  }
}

/* custom card  */

.service-card {
  background: #ffffff;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 128, 128, 0.15);
  position: relative;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 128, 128, 0.25);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-bottom: 3px solid #008080;
}

.service-card .card-body {
  padding: 20px 10px;
}

.service-card .card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #006666;
  margin-bottom: 0.75rem;
}

.service-card .card-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}

.btn-teal {
  background-color: #008080;
  border: 2px solid #008080;
  color: #fff;
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  transition: background 0.3s ease;
  font-weight: 500;
}

.btn-teal:hover {
  background-color: transparent;
  color: #008080;
}

/* counter */

.bg-gradient-custom {
  background: linear-gradient(120deg, #2a8086 0%, #5b2323 100%);
  border-radius: 0 30px 0 30px;
  overflow: hidden;
}

.counter-box {
  transition: transform 0.25s, box-shadow 0.25s;
  padding: 30px;
  z-index: 1;
}

.counter-border {
  border-right: 1px solid #fff;
}

.counter-box:hover {
  box-shadow: 0 12px 32px rgba(0, 188, 212, 0.18), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.counter-icon {
  font-size: 2.7rem;
  color: #fff;
  width: 70px;
  height: 70px;
  margin: 0 auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 50% 0;
  box-shadow: 0 4px 16px rgba(0, 188, 212, 0.12);
  position: relative;
  z-index: 2;
}

.gradient-circle {
  background: #008080;
  border: 1px solid #fff;
}

.counter {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0, 188, 212, 0.08);
}

.counter-label {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

@media (max-width: 991.98px) {
  .counter-border {
    border: none;
    border-bottom: 1px solid #fff;
  }
}

/* about us  */

.doc-profile {
  padding: 5px;
  background-color: #fff;
  border-radius: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

  img {
    width: 100%;
    aspect-ratio: 1 / 1.4;
    padding: 5px;
    object-fit: cover;
    border: 5px solid #008080;
    margin-bottom: 0;
  }
}

.about-me-section .section-title {
  font-weight: 600;
  margin-bottom: 20px;
  border-left: 5px solid #008080;
  padding-left: 15px;
  color: #2c3e50;
}

.about-me-section .section-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-me-section .section-box p {
  line-height: 1.6;
  color: #333;
  font-size: 17px;
  margin-bottom: 15px;
}

.about-me-section ul.timeline {
  padding-left: 25px !important;
  margin-bottom: 15px;
}

.about-me-section ul.timeline li {
  margin-bottom: 10px;
  list-style-type: disc;
  font-size: 17px;
  color: #333;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .doc-profile img {
    aspect-ratio: 1 / 1;
  }

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

  .about-me-section .section-box {
    padding: 0;
    border: none;
    box-shadow: none;
  }

  .about-me-section .section-box p {
    font-size: 16px;
  }

  .about-me-section ul.timeline li {
    font-size: 16px;
  }
}
