.cta-section {
  padding: 0px 0px 40px 0;
}

.cta-container {
  max-width: 1280px;
  margin: auto;
  background: linear-gradient(135deg, rgb(58, 166, 166), rgb(45, 133, 133));
  border-radius: 16px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-content h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: var(--fixpro-font);
}

.cta-content p {
  color: #ffff;
  font-size: 15px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

/* Call Button */
.btn-call {
  background: #e6f4f3;
  color: #0f766e;
}

.btn-call:hover {
  background: #d1eeec;
}

/* Book Button */
.btn-book {
  border: 1px solid #fff;
  color: #fff;
}

.btn-book:hover {
  background: #fff;
  color: #0f766e;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-buttons {
    width: 100%;
    justify-content: flex-start;
  }
}


.tag {
  display: inline-block;
  background: #e6f3f2;
  color: #2a9d8f;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 15px;
  font-family: var(--fixpro-font);
  text-transform: uppercase;
}
.tag i{
  font-size: 12px;
  padding-right: 4px;
}

.doctor-name {
  font-size: 50px;
  line-height: 60px;
  margin: 10px 0;
  font-weight: 700;
  color: #1f2d3d;
}

.doctor-name span {
  color: rgb(58, 166, 166);
}

.degree {
    color: #2a9d8f;
    margin-bottom: 20px;
    font-family: var(--fixpro-font);
    font-weight: 600;
    font-size: 18px;
}

/* BUTTONS */
.doctor-buttons {
    margin-top: 25px;
    display: grid;
    gap: 15px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #3caaaa, #48cdcd);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #48cdcd, #3caaaa);
}

.btn-outline {
  border: 2px solid #2a9d8f;
  color: #2a9d8f;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #2a9d8f;
  color: #fff;
}

/* TOGGLE CONTENT */
.text-full {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s ease;
}

.text-full.active {
  max-height: 500px;
}


/* TOGGLE BUTTON */
.toggle-btn {
  margin-top: 15px;
  background: transparent;
  border: 1px solid #2a9d8f;
  color: #2a9d8f;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.toggle-btn:hover {
  background: #2a9d8f;
  color: #fff;
}

.hospital-section {
  background: #f5f7f9;
  padding: 60px 0px;
  text-align: center;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: left;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

/* Content */
.content2 {
  padding: 20px;
}

.content2 h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.role {
  color: #2aa39a;
  font-size: 14px;
  margin-bottom: 10px;
}

.content2 p {
  margin-bottom: 6px;
}


.appoint-sec {
  padding: 40px 20px;
  background: #ffffff;
}

.appoint-wrapper {
    max-width: 1200px;
    margin: auto;
    background: #f0fffe;
    border: 2px solid #2aa39a;
    border-radius: 30px;
    text-align: center;
    padding: 30px 30px;
}

/* Heading */
.appoint-title {
  font-size: 28px;
  font-family: var(--fixpro-font);
  color: #1f2d3d;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Text */
.appoint-text {
    color: #5f6f7f;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 15px;
    line-height: 1.6;
}

/* Button */
.appoint-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #2aa39a, #3bb3a8);
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.appoint-icon {
  font-size: 16px;
}

/* Hover */
.appoint-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(42, 163, 154, 0.3);
}

.exp-sec {
  background: #f5f7f9;
  padding: 60px 0;
  margin: auto;
  text-align: center;
}

/* GRID */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px 30px;
    position: relative;
    margin-bottom: 40px;
}

/* horizontal line */
.exp-grid::before {
    content: "";
    position: absolute;
    top: 135px;
    left: 0%;
    width: 100%;
    height: 1px;
    background: #c1ccd0;
    z-index: 0;
}

/* ITEM */
.exp-item {
  position: relative;
  z-index: 2;
}

.exp-tag {
    display: inline-block;
    font-size: 13px;
    border: 1px solid #ade5e1;
    background: #e6f4f3;
    color: #488497;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* ICON */
.exp-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: #e6f4f3;
    border: 2px solid #2aa39a;
    box-shadow: 0px 0px 0px 5px #ade5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #2aa39a;
}

/* TEXT */
.exp-item h3 {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px;
  color: #1f2d3d;
  font-weight: 600;
  font-family: var(--fixpro-font);
}

.exp-item p {
  max-width: 260px;
  margin: auto;
}

/* BOTTOM */
.exp-bottom {
  margin-top: 30px;
}

.exp-dots {
  color: #2aa39a;
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: 6px;
}

.exp-bottom h2 {
  font-size: 24px;
  color: #1f2d3d;
  font-family: var(--fixpro-font);
  margin-bottom: 25px;
}

/* BUTTON */
.exp-btn {
  display: inline-block;
  background: linear-gradient(90deg, #2aa39a, #3bb3a8);
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.exp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(42,163,154,0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .exp-grid {
    grid-template-columns: 1fr;
  }

  .exp-grid::before {
    display: none;
  }
}

.text-short.two {
    width: 75%;
    font-size: 18px;
    line-height: 30px;
}

.bg-theme{
  background-color: #e8f0f3;
}

.abo-icon {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 15px;
}

.abo-icon p span{
  color: #2a9d8f;
}

.abo-icon p a:hover{
  color: #2a9d8f;
}

.text-short.three {
    font-size: 18px;
    line-height: 30px;
    max-width: 900px;
    margin: 0 auto 15px;
}

/* Section */
.medsrv-sec {
  background: #edf3f5;
  padding: 60px 0;
}


/* Grid */
.medsrv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.medsrv-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.medsrv-card:hover {
  transform: translateY(-6px);
}

/* Icon circle */
.medsrv-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: #e6f4f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2aa39a;
  font-size: 26px;
  font-weight: 600;
}

/* Title */
.medsrv-card h3 {
  font-size: 20px;
  font-family: var(--bs-font-sans-serif);
  color: #1f2d3d;
  margin-bottom: 8px;
}

/* Text */
.medsrv-card p {
  color: #5f6f7f;
}

/* Responsive */
@media (max-width: 992px) {
  .medsrv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .medsrv-grid {
    grid-template-columns: 1fr;
  }
}

/* Container */
.st-membership-section {
  background: #dfeaed;
  padding: 60px 0;
}

.st-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
}

/* Timeline line */
.st-timeline {
  position: relative;
}

.st-timeline::before {
  content: '';
  position: absolute;
  width: 2px;
  background: #bcefef;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Cards */
.st-card {
  width: 50%;
  padding: 20px 40px;
  position: relative;
}

.st-left {
  left: 0;
}

.st-right {
  left: 50%;
}

/* Card box */
.st-card-inner {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  position: relative;
}

/* Icon */
.st-icon {
  width: 45px;
  height: 45px;
  background: #1aa7a1;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 10px;
}

/* ID */
.st-id {
    font-size: 14px;
    color: #1aa7a1;
    background: #e7f6f5;
    padding: 5px 12px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 10px;
    margin-left: 20px;
}

/* Title */
.st-card-inner h3 {
  font-size: 20px;
  margin: 10px 0 15px;
  color: #1c2b36;
      font-family: var(--fixpro-font);
}

/* Footer */
.st-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Status */
.st-status {
  font-size: 15px;
  color: #488497;
  position: relative;
  padding-left: 15px;
}

.st-status::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #488497;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

/* Verified */
.st-verified {
  font-size: 12px;
  background: #e7f6f5;
  color: #1aa7a1;
  padding: 5px 10px;
  border-radius: 20px;
}

/* Dots on timeline */
.st-card::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #1aa7a1;
  border-radius: 50%;
  top: 35px;
  z-index: 1;
}

.st-left::after {
  right: -6px;
}

.st-right::after {
  left: -6px;
}

/* Responsive */
@media (max-width: 768px) {
  .st-card {
    width: 100%;
    left: 0 !important;
    padding-left: 70px;
    padding-right: 20px;
  }

  .st-timeline::before {
    left: 30px;
  }

  .st-card::after {
    left: 24px !important;
  }
}

.st-info-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 30px;
  background: #e6f4f3;
  border: 1px solid #cde7e5;
  color: #3a6b6a;
  font-size: 14px;
  font-weight: 500;
}

/* dots */
.st-dots {
  display: flex;
  gap: 6px;
}

.st-dots i {
  width: 8px;
  height: 8px;
  background: #2aa7a1;
  border-radius: 50%;
  display: block;
  opacity: 0.7;
}

/* optional subtle animation */
.st-dots i:nth-child(1) { opacity: 0.4; }
.st-dots i:nth-child(2) { opacity: 0.7; }
.st-dots i:nth-child(3) { opacity: 1; }

/* text */
.st-text {
  white-space: nowrap;
}

/* Section */
.st-philosophy-section {
  background: #f3f6f7;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

/* Card */
.st-philo-card {
  max-width: 900px;
  width: 100%;
  background: #e8f3f3;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Icon */
.st-philo-icon {
  width: 60px;
  height: 60px;
  background: #2aa7a1;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
}

/* Title with gradient */
.st-philo-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  background: linear-gradient(to right, #2aa7a1, #1c2b36);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.st-philo-text {
  font-size: 18px;
  line-height: 1.8;
  color: #4a5a63;
  max-width: 700px;
  font-style: italic;
  margin: 0 auto;
}

.st-philo-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

/* Section */
.st-cta-section {
  background: #eaf2f3;
  padding: 40px 0;
  text-align: center;
}

/* Container */
.st-cta-container {
  max-width: 900px;
  margin: auto;
}

/* Title */
.st-cta-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1c2b36;
}

/* Gradient part */
.st-cta-title span {
  background: linear-gradient(to right, #2aa7a1, #5bc0be);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtext */
.st-cta-subtext {
  font-size: 16px;
  color: #5c6f77;
  margin-bottom: 30px;
}

/* Button */
.st-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(to right, #2aa7a1, #5bc0be);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

/* Hover */
.st-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(42, 167, 161, 0.3);
}

/* subtle glow */
.st-cta-btn {
  box-shadow: 0 5px 15px rgba(42, 167, 161, 0.2);
}

/* responsive */
@media (max-width: 768px) {
  .st-cta-title {
    font-size: 28px;
  }
}

.st-contact-section {
  background: #f2f6f7;
  padding: 60px 0;
}

.st-contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
}

/* LEFT BOX */
.st-contact-form-box {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}


.st-contact-form-box p {

  margin-bottom: 20px;
}

/* FORM */
.st-form-group {
  margin-bottom: 15px;
}

.st-form-group label {
 color: #21343e;
 font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.st-form-group input,
.st-form-group select ,
.st-form-group textarea {
  width: 100% !important;
  padding: 12px !important;
  border-radius: 8px !important;
  border: 1px solid #d6e3e5 !important;
  background: #f8fbfc !important;
  outline: none !important;
}

.nice-select{
    width: 100% !important;
  padding: 12px !important;
  border-radius: 8px !important;
  border: 1px solid #d6e3e5 !important;
  background: #f8fbfc !important;
  outline: none !important;
}


/* BUTTON */
.st-send-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to right, #2aa7a1, #5bc0be);
  border: none;
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
}

/* RIGHT SIDE */
.st-contact-details {
  flex: 1;
}

/* ITEMS */
.st-detail-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e5eeee;
}

.st-icon2 span {
  width: 45px;
  height: 45px;
  background: #e6f4f3;
  color: #2aa7a1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.st-detail-item h4 {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 5px;
  font-weight: 700;
  font-family: var(--fixpro-font);
}

.st-detail-item p {
  margin: 5px 0 0;
}

/* BUTTONS */
.st-contact-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.st-call-btn {
  flex: 1;
  padding: 12px;
  border: 1px solid #cde7e5;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: #2aa7a1;
  background: #f8fbfc;
}

.st-email-btn {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(to right, #2aa7a1, #5bc0be);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .st-contact-container {
    flex-direction: column;
  }

  .st-form-row {
    flex-direction: column;
  }
}

/* Title */
.title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
}

.title span {
  color: #4db6ac;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-top: 10px;
  margin-bottom: 40px;
}

/* Card */
.hospital-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* LEFT */
.hospital-info {
  width: 50%;
  padding: 25px;
}

.clinic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.clinic-header h3 {
  margin: 0;
  font-size: 24px;
   line-height: 34px;
  font-weight: 700;
  font-family: var(--fixpro-font);
}

.badge {
  background: #e6f7f5;
  color: #4db6ac;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.role {
  color: #4db6ac;
  margin: 10px 0 20px;
  text-align: left;
  font-size: 17px;
  line-height: 27px;
  font-weight: 600;
}

.info-block {
    margin-bottom: 15px;
    text-align: left;
    display: flex;
    gap: 10px;
    align-items: start;
}

.info-block h4 {
  font-size: 16px;
  font-family: var(--fixpro-font);
  font-weight: 600;
}

.info-block span{
    color: #4db6ac;
    font-weight: 600;
    font-size: 18px;
}

.info-block p {
  margin: 5px 0;
  color: #555;
}

.phone {
  color: #50839a!important;
  font-weight: 700;
  font-size: 18px;
}

/* Buttons */
.btn-group2 {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.primary2 {
    background: linear-gradient(45deg, #3caaaa, #48cdcd);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.secondary2 {
    border: 2px solid #2a9d8f;
    color: #2a9d8f;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* RIGHT */
.hospital-map {
  width: 50%;
}

.hospital-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hospital-card {
    flex-direction: column;
  }

  .hospital-info,
  .hospital-map {
    width: 100%;
  }
}

/* Section */
.blog-section {
  padding: 40px 20px;
  background: rgb(245, 247, 249);
}

/* Card */
.blog-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  position: relative;
  border: 1px solid #dbe5e7;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Top Accent Line */
.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(to right, #3aaea5, #5fc3bd);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

/* Title */
.blog-card h3 {
  font-size: 24px;
  line-height: 34px;
  margin: 10px 0 15px;
  color: #1e2a2f;
  font-weight: 700;
}

/* Button */
.blog-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: linear-gradient(to right, #3aaea5, #5fc3bd);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.blog-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
  }
}

/* Section */
.consult-section {
  background:rgb(232, 240, 243);
  padding: 60px 20px;
}

/* Container */
.consult-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* Paragraphs */
.consult-container p {
  text-align: justify;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .consult-title {
    font-size: 30px;
  }

  .consult-container p {
    font-size: 15px;
  }
}


/* Section with Background Image */
.pain-section {
  position: relative;
  background: rgba(240, 245, 247, 0.65);
  padding: 60px 0;
}

.pain-container {
    max-width: 900px;
    margin: auto;
}
/* Overlay Box */
.overlay-box {
  
}

/* Text */
.overlay-box h5{
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin: 0px 0 5px;
  font-family: var(--fixpro-font);
}
.overlay-box p {
  color: #5f6f75;
  margin: 0;
}

/* Divider Line */
.overlay-box .line {
  margin: 20px 0;
  height: 2px;
  background: #bcefef;
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .pain-section {
    height: 400px;
  }

  .overlay-box {
    padding: 20px;
  }

  .overlay-box p {
    font-size: 14px;
  }
}
.conclusion-section {
    max-width: 900px;
    margin: 30px auto;
      text-align: center;
    padding: 20px 10px;
    background-color: transparent;
}

.conclusion-section p {
    margin-bottom: 18px;
      text-align: justify;
}

.conclusion-section p strong {
    color: #2d3e46;
      text-align: center;
    font-weight: 600;
}

.highlight {
    font-weight: 600;
    color: #2d3e46;
}

.cta-text {
    margin-top: 25px;
    font-size: 18px;
    color: #3aa6a6;
    font-weight: 500;
}

.cta-button {
    margin-top: 20px;
}

.cta-button a {
    display: inline-block;
    background-color: #3aa6a6;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

.cta-button a:hover {
    background-color: #2f8f8f;
}

.cta-button a span {
    margin-left: 6px;
}

.bottom-line {
    width: 120px;
    height: 2px;
    background-color: #3aa6a6;
    margin: 30px auto 0;
    border-radius: 2px;
}

.doc-name {
    font-size: 18px;
    font-weight: 500;
    color: #2f7e7e;
    margin-bottom: 8px;
}

.doc-desc {
    font-size: 15px;
    color: #5a6a73;
    margin-bottom: 15px;
}

.clinic-name {
    font-size: 14px;
    font-weight: 600;
    color: #2f7e7e;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.clinic-address {
    font-size: 14px;
    color: #6c7a80;
    margin-bottom: 25px;
}


 .pf-faq-wrapper {
        max-width: 1100px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .pf-faq-box {
    background: #ebf5f5;
    border: 1px solid #39a2a2;
    border-radius: 8px;
    padding: 22px 25px;
    margin-bottom: 20px;
    transition: 0.3s ease;
    }

    .pf-faq-box:hover {
        background: #d8f2f2;
    }

    .pf-faq-title {
        font-size: 20px;
        font-weight: 600;
        color: #1f2d3d;
        margin-bottom: 10px;
    }

    .pf-faq-text {
        font-size: 16px;
        color: #5c6f79;
        line-height: 1.7;
    }

    @media (max-width: 768px) {
        .pf-faq-title {
            font-size: 18px;
        }

        .pf-faq-text {
            font-size: 15px;
        }
    }

 .cta-doc-wrapper {
        max-width: 1100px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .cta-doc-box {
    background: #ebf5f5;
    border: 1px solid #39a2a2;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    }

    .cta-doc-top-text {
        font-size: 20px;
        font-weight: 500;
        color: #2f7e7e;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .cta-doc-heading {
        font-family: 'Playfair Display', serif;
        font-size: 32px;
        font-weight: 600;
        color: #1f2d3d;
        margin-bottom: 10px;
    }

    .cta-doc-subtext {
        font-size: 16px;
        color: #5c6f79;
        margin-bottom: 15px;
    }

    .cta-doc-highlight {
        font-size: 16px;
        color: #2f7e7e;
        font-weight: 500;
        margin-bottom: 25px;
    }

    .cta-doc-tagline {
        font-size: 18px;
        font-weight: 500;
        color: #4a6a78;
        margin: 25px 0;
    }

    .cta-divider {
        height: 1px;
        background: #c7d4da;
        margin: 30px 0;
    }

    /* Doctor Section */
    .doc-name-new {
        font-size: 26px;
        font-weight: 600;
        color: #1f2d3d;
        margin-bottom: 5px;
    }

    .doc-degree-new {
        font-size: 16px;
        color: #2f7e7e;
        margin-bottom: 10px;
    }

    .doc-role-new {
        font-size: 15px;
        color: #4a6a78;
        margin-bottom: 20px;
    }

    .doc-desc-new {
        font-size: 16px;
        color: #4a5a63;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .doc-contact-new {
        font-size: 16px;
        margin: 10px 0;
    }

    .doc-contact-new strong {
        color: #1f2d3d;
    }

    .clinic-title-new {
        margin-top: 20px;
        font-weight: 600;
        color: #2f7e7e;
    }

    .clinic-address-new {
        font-size: 14px;
        color: #6c7a80;
        margin-bottom: 25px;
    }

    .btn-appoint-new {
        display: inline-block;
        background: linear-gradient(135deg, #3aa6a6, #4bb7b7);
        color: #fff;
        padding: 14px 28px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 500;
        transition: 0.3s;
    }

    .btn-appoint-new:hover {
        background: linear-gradient(135deg, #2f8f8f, #3aa6a6);
    }

    .bottom-line-new {
        width: 120px;
        height: 3px;
        background: #3aa6a6;
        margin: 25px auto 0;
        border-radius: 2px;
    }


/* MAIN WRAPPER */
.ts-wrapper-new {
    max-width: 1200px;
    margin: 50px auto;
    text-align: center;
}

/* MAIN CARD */
.ts-main-card {
    background: #ffffff;
    border-radius: 35px;
    padding: 50px;
    border: 1px solid #bcefef;
    text-align: left;
}

/* QUOTE */
.ts-quote-icon {
    width: 40px;
    height: 40px;
    background: #d1e6e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3aa6a6;
    font-size: 22px;
    margin-bottom: 15px;
}

.ts-text {
    font-size: 16px;
    color: #3e4f57;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* USER */
.ts-user {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ts-user-left {
    display: flex;
    align-items: center;
}

.ts-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #3aa6a6;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 12px;
}

.ts-name {
    font-weight: 600;
    color: #1f2d3d;
}

.ts-role {
    font-size: 16px;
    color: #6c7a80;
}

.ts-stars {
   font-size: 19px;
    color: #3aa6a6;
}

/* DOTS */
.ts-dots {
    margin: 20px 0;
}

.ts-dot {
    height: 6px;
    width: 6px;
    background: #b0bec5;
    display: inline-block;
    border-radius: 50%;
    margin: 0 4px;
}

.ts-dot.active {
    background: #3aa6a6;
    width: 18px;
    border-radius: 4px;
}

/* SMALL CARDS */
.ts-small-row {
    display: flex;
    gap: 15px;
    overflow: hidden;
    justify-content: center;
}

.ts-small-card {
    width: 250px;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #bcefef;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
}

.ts-small-card.active {
    border: 2px solid #3aa6a6;
}

.ts-small-text {
    height: 80px;
    overflow: hidden;
}

.ts-small-name {
    font-weight: 600;
    margin-top: 10px;
    font-size: 16px;
}

.ts-small-stars {
    color: #3aa6a6;
    font-size: 22px;
}

/* NAV */
.ts-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

.ts-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

/* HIDDEN DATA */
.ts-data {
    display: none;
}

.aa-main-wrapper{
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.aa-header{
  background: linear-gradient(90deg,#4e7c86,#6fa7ad);
  color:#fff;
  padding:25px;
  border-radius:12px;
  margin-bottom:20px;
}

/* LAYOUT */
.aa-layout{
  display:flex;
  gap:20px;
}

/* SIDEBAR */
.aa-sidebar{
  width:260px;
  background:#fff;
  border-radius:12px;
  overflow:hidden;

  position:sticky;
  top:100px; /* matches your design */
  height:fit-content;
}

.aa-sidebar h3{
    background: linear-gradient(90deg, #3c667c 15%, #5b92aa 80%);
    color: #fff;
    padding: 15px;
}

.aa-sidebar ul{
  max-height:420px;
  overflow-y:auto;
  padding-left: 0;
}

.aa-sidebar li{
  padding:12px 15px;
  border-bottom:1px solid #eee;
}

.aa-sidebar li.active{
  background:#cde2e5;
  color:#1b4447;
}

/* CONTENT */
.aa-content{
  flex:1;
}

/* TABS */
.aa-tabs{
  background:#fff;
  padding:10px;
  border-radius:10px;
  margin-bottom:20px;
  z-index:999;
}

.aa-tab{
  border:none;
  background:none;
  padding:8px 18px;
  margin-right:10px;
  border-radius:8px;
  cursor:pointer;
}

.aa-tab.active{
  background:#4ea0a6;
  color:#fff;
}

/* SECTION */
.aa-section{
  margin-bottom:20px;
  scroll-margin-top:140px;
}

/* CARD */
.aa-card{
  background:#fff;
  padding:25px;
  border-radius:12px;
}

.aa-card h2{
      font-size: 28px;
    font-family: var(--fixpro-font);
    color: #1f2d3d;
    margin-bottom: 10px;
    font-weight: 600;
}

.aa-card h3{
      font-size: 18px;
    font-family: var(--fixpro-font);
    color: #1f2d3d;
    margin-bottom: 10px;
    font-weight: 600;
}

/* FLEX */
.aa-flex{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
}

.aa-flex img{
  /*width:300px;*/
  border-radius:10px;
}

.serv-cont {
    margin-right: 20px;
}

/* LIST */
.symptoms-box {
  padding: 10px 0;
}

.symptoms-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.symptoms-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

/* Custom bullet */
.symptoms-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background-color: #6cc5c5;
  border-radius: 50%;
}

.symptoms-list li:hover {
  color: #000;
}

.symptoms-list li::before {
  transition: transform 0.2s;
}
.symptoms-list li:hover::before {
  transform: scale(1.3);
}

/* BOX */
.aa-box{
    background: #f5f7f9;
    padding: 10px;
    border-radius: 10px;
    margin: 7px 0;
}


/* LAYOUT */
.aa-layout{
  display:flex;
  gap:25px;
  align-items:flex-start; /* IMPORTANT */
}

/* SIDEBAR STICKY (LIKE IMAGE) */
.aa-sidebar{
  width:270px;
  background:#fff;
  border-radius:12px;

  position:sticky;
  top:120px; /* SAME LEVEL AS YOUR IMAGE */
  height:fit-content;
}

/* RIGHT CONTENT */
.aa-right{
  flex:1;
}

/* TOP CARD */
.aa-top-card{
  background: linear-gradient(90deg, #5b92aa 15%, #3c667c 80%);
  color:#fff;
  padding:25px;
  border-radius:12px;
  margin-bottom:15px;
}
.aa-top-card h1{
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}

/* TABS STICKY (PERFECT POSITION) */
.aa-tabs{
  background:#fff;
  padding:10px;
  border-radius:10px;
  margin-bottom:20px;

  box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

/* TAB STYLE */
.aa-tab{
  border:none;
  background:transparent;
  padding:8px 18px;
  margin-right:8px;
  border-radius:8px;
  cursor:pointer;
  color:#5c6b73;
}

.aa-tab.active{
  background:#4ea0a6;
  color:#fff;
}

/* SECTION OFFSET FIX */
.aa-section{
  margin-bottom:25px;
  scroll-margin-top:150px; /* VERY IMPORTANT */
}

.goal-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #cfe3e3;
  border-radius: 12px;
  padding: 20px 24px;
}

.goal-icon {
  width: 48px;
  height: 48px;
  background: #4bb3b3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.goal-content h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #1f2d3d;
}

.goal-content p {
  margin: 0;
  font-size: 15px;
  color: #4a5a6a;
  line-height: 1.6;
}

.highlight {
  color: #2aa6a6;
  font-weight: 600;
}

.care-section {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 14px;
    /* max-width: 900px; */
    /* margin: auto; */
    /* font-family: Arial, sans-serif; */
}

/* Header */
.care-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
}

.care-icon {
  width: 48px;
  height: 48px;
  background: #d2d8d8;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.care-header h2 {
  font-size: 24px;
  color: #1f2d3d;
  margin: 0;
}

/* Highlight Box */
.care-highlight {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  margin-bottom: 25px;
}

.care-highlight p {
  margin: 0;
  color: #4a5a6a;
  line-height: 1.6;
  font-size: 15px;
}

/* Cards */
.care-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.care-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.care-card:hover {
  transform: translateY(-5px);
}

/* Card Icon */
.card-icon {
  width: 40px;
  height: 40px;
  background: #d9eeee;
  color: #4bb3b3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 18px;
}

/* Text */
.care-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #1f2d3d;
}

.care-card p {
  margin: 0;
  font-size: 14px;
  color: #5c6b7a;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .care-cards {
    grid-template-columns: 1fr;
  }
}