.about-hero {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: url(../assesst/hero-img.png);
}

/* container layout */
.about-hero-wrap {
  max-width: 1280px;
  margin: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================================
   TITLE
================================ */

.about-hero-left h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
}

/* ================================
   BREADCRUMB (RIGHT SIDE)
================================ */


.about-hero-right {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.about-hero-right .sep {
  opacity: 0.5;
}

.about-hero-right a {
  color: #ffffff;
  text-decoration: none;
}

.about-hero-right a:hover {  
  color: #00b4d8;
}

.about-hero-right .title {
  color: #00b4d8;
  font-weight: 600;
}

/* ================================
   DECORATIVE CURVE 
================================ */

.about-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(20, 198, 209, 0.18),
    transparent 70%
  );
}

/*Case Details Section Start*/
.case-details {
  padding: 80px 0;
}
.case-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0b1030;
}
.case-desc {
  font-size: 15px;
  color: #6b7c93;
  line-height: 1.7;
  margin-bottom: 30px;
}
.case-image img {
  border-radius: 16px;
  width: 100%;
}

.img-placeholder {
  border-radius: 16px;
  width: 100%;
  background: #d0e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0096c7;
  font-weight: 600;
  font-size: 14px;
}

.consultation-title {
  position: relative;
  font-size: 26px;
  font-weight: 700;
  color: #0b1030;
  margin-bottom: 10px;
}
.consultation-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #19c6d1;
  border-radius: 2px;
}
.consultation-desc {
  font-size: 14px;
  color: #6b7c93;
  margin-bottom: 40px;
  max-width: 750px;
}
.consultation-row {
  row-gap: 40px;
}

.process-item {
  position: relative;
}
.process-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.process-number {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: #f2f4f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #0b1030;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}
.process-header h6 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #0b1030;
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #4a4a4a;
}
.process-text {
  font-size: 14px;
  color: #6b7c93;
  line-height: 1.7;
}

.section-heading {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0;
  color: #0b1030;
}
.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #19c6d1;
  border-radius: 2px;
}
.section-desc {
  font-size: 15px;
  color: #6b7c93;
  line-height: 1.7;
  margin-bottom: 30px;
}
.treatment-list {
  list-style: none;
  padding: 0;
}
.treatment-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #4a4a4a;
}
.check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.sidebar-wrapper {
  max-width: 380px;
  margin-left: auto;
  position: sticky;
  top: 20px;
}

.profile-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.profile-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #0b1030;
}
.profile-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid #eef2f7;
}
.profile-row.last {
  border-bottom: none;
}
.profile-row .label {
  font-size: 13px;
  color: #8a97a8;
}
.profile-row .value {
  font-size: 14px;
  font-weight: 600;
  color: #0b1030;
  text-align: right;
}

.download-btn {
  display: block;
  width: 100%;
  margin-top: 25px;
  text-align: center;
  padding: 14px 0;
  border-radius: 50px;
  background: linear-gradient(90deg, #00b4d8, #0096c7);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid transparent;
  transition:
    color 0.4s ease,
    border-color 0.4s ease;
}
.download-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 50px;
  z-index: -1;
  transition: left 0.4s ease;
}
.download-btn:hover::before {
  left: 0;
}
.download-btn:hover {
  color: #0096c7;
  border-color: #0096c7;
}

.support-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 568px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.support-card > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  object-fit: cover;
  z-index: 1;
}

.support-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: 2;
  display: block;
}

.support-content {
  position: absolute;
  bottom: -94px;
  left: 0;
  width: 100%;
  height: 75%;
  padding: 48px 28px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.support-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 26px;
  letter-spacing: 0.2px;
}

.support-btn {
  position: relative;
  width: 278px;
  height: 95px;
  background: #ffffff;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: 0.25s;
}

.support-btn svg {
  position: absolute;
  left: -26px;
  top: 28px;
}

.support-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.support-text span {
  font-size: 14px;
  color: #14c6d1;
  font-weight: 600;
  padding: 0 0 0 13px;
}

.support-text strong {
  font-size: 18px;
  font-weight: 700;
  color: #00194c;
  padding: 0 0 0 37px;
}

.support-btn:hover {
  transform: translateY(-2px);
}
/*Case Details Section End*/

/*Media Queries Start*/
@media (max-width: 1200px) {
  .case-title {
    font-size: 28px;
  }
  .sidebar-wrapper {
    max-width: 100%;
  }
  .support-card {
    height: 520px;
  }
}
@media (max-width: 992px) {
  .case-details {
    padding: 60px 0;
  }
  .case-title {
    font-size: 24px;
  }
  .case-desc {
    font-size: 14px;
  }
  .profile-card {
    margin-top: 40px;
  }
  .sidebar-wrapper {
    max-width: 100%;
    margin-left: 0;
  }
  .support-card {
    max-width: 100%;
    height: 480px;
  }
}
@media (max-width: 768px) {
  .case-title {
    font-size: 22px;
    line-height: 1.4;
  }
  .consultation-row {
    row-gap: 30px;
  }
  .process-header h6 {
    font-size: 15px;
  }
  .process-list li {
    font-size: 13px;
  }
  .treatment-list li {
    font-size: 13px;
  }
  .profile-row {
    grid-template-columns: 1fr;
  }
  .profile-row .value {
    text-align: left;
    margin-top: 4px;
  }
  .support-card {
    height: 440px;
  }

  .support-content {
    bottom: -60px;
  }
}
@media (max-width: 576px) {
  .case-details {
    padding: 40px 0;
  }
  .case-title {
    font-size: 20px;
  }
  .consultation-title {
    font-size: 18px;
  }
  .consultation-desc {
    font-size: 13px;
  }
  .process-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 12px;
  }
  .process-list li,
  .treatment-list li {
    font-size: 13px;
  }
  .check-icon {
    width: 18px;
    height: 18px;
  }
  .profile-card {
    padding: 24px;
  }
  .profile-title {
    font-size: 15px;
  }
  .profile-row .label {
    font-size: 12px;
  }
  .profile-row .value {
    font-size: 13px;
  }
  .download-btn {
    padding: 12px;
    font-size: 14px;
  }
  .support-card {
    height: 400px;
  }

  .support-btn {
    width: 240px;
    height: 80px;
  }

  .support-content h4 {
    font-size: 15px;
  }

  .support-text strong {
    font-size: 15px;
  }
}
@media (max-width: 320px) {
  .case-title {
    font-size: 16px;
  }
  .case-desc {
    font-size: 12px;
  }
  .consultation-title {
    font-size: 16px;
  }
  .consultation-desc {
    font-size: 12px;
  }
  .process-list li,
  .treatment-list li {
    font-size: 12px;
  }
  .profile-row .label {
    font-size: 11px;
  }
  .profile-row .value {
    font-size: 12px;
  }
  .download-btn {
    font-size: 13px;
  }
  .support-card {
    height: 360px;
  }

  .support-btn {
    width: 200px;
    height: 72px;
  }

  .support-text span {
    font-size: 12px;
  }

  .support-text strong {
    font-size: 13px;
  }
}
/*Media Queries End*/