@charset "UTF-8";
body {
  font-family: "Inter", sans-serif;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #f4f4f4;
  font-size: 14px;
  padding: 10px 0;
  color: #444;
}

.top-bar i {
  color: #e94b35;
  margin-right: 6px;
}
.blog-logo{height:88px;}

.top-right a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  border: 1px solid #ddd;
  text-decoration: none;
}

.top-right a:hover {
  background: #e94b35;
  color: #fff;
}

/* ===== MAIN NAV ===== */
.main-nav {
  background: #fff;
  padding: 18px 0;
}

.navbar-brand img {
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #333 !important;
  font-size: 16px;
}

.nav-link:hover {
  color: #e94b35 !important;
}

.dropdown-menu {
  border-radius: 6px;
  border: 1px solid #eee;
}

/* ===== CTA BUTTON ===== */
.btn-appointment {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  background: #d9152b;
  color: #fff;
  padding: 16px 28px;
  text-decoration: none;
  position: relative;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-appointment:hover {
  background: #b90f22;
  color: #fff;
}

/* Mobile */
@media (max-width: 991px) {
  .btn-appointment {
    margin-top: 15px;
    clip-path: none;
    border-radius: 4px;
    justify-content: center;
  }
}
/* Section Background */
.ent-section {
  background: linear-gradient(to bottom, #f7f7f7, #ffffff);
}

/* Subtitle */
.ent-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #ff6a00;
}

/* Main Title */
.ent-main-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 38px;
  color: #222;
  line-height: 1.3;
}

/* Card */
.ent-card {
  display: flex;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: 0.3s ease;
}

.ent-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Icon Left Strip */
.ent-icon-box {
  width: 85px;
  background: #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  position: relative;
}

.ent-icon-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.4;
}

/* Card Body */
.ent-card-body {
  padding: 28px;
}

.ent-card-body h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ff6a00;
  margin-bottom: 15px;
}

.ent-card-body ul {
  padding-left: 18px;
  margin: 0;
}

.ent-card-body li {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .ent-main-title {
    font-size: 30px;
  }
}
:root {
  --orange: #ff6a00;
  --dark: #0e1a27;
  --text: #2b2b2b;
}

/* ===== INFO BAR ===== */
.info-bar {
  background: linear-gradient(180deg, #0c1623 0%, #0e1a27 100%);
  padding: 18px 0;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  min-height: 70px;
  justify-content: center;
}

@media (min-width: 992px) {
  .info-item {
    justify-content: flex-start;
  }
}
.info-ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 22px;
  flex-shrink: 0;
}

.info-title {
  font-weight: 700;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  line-height: 1.1;
}

.info-sub {
  opacity: 0.9;
  font-size: 13px;
}

.info-divider {
  position: relative;
}

@media (min-width: 992px) {
  .info-divider:before {
    content: "";
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
  }
}
.stars i {
  color: #ffb200;
}

/* ===== TITLE + SUB ===== */
.treat-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 12px;
}

.treat-sub {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #444;
  max-width: 900px;
  line-height: 1.8;
}

/* ===== CARDS ===== */
.treat-card {
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #fff;
  padding: 26px 22px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: 0.25s ease;
}

.treat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.treat-icon {
  font-size: 46px;
  color: #111;
  margin-bottom: 10px;
}

.treat-card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: #c21a1a;
  font-size: 22px;
  margin: 10px 0 16px;
  line-height: 1.25;
}

.treat-card-text {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 16px;
}

.treat-link {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}

.treat-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Responsive title */
@media (max-width: 991.98px) {
  .treat-title {
    font-size: 38px;
  }
}
@media (max-width: 575.98px) {
  .treat-title {
    font-size: 30px;
  }
  .treat-sub {
    font-size: 16px;
  }
}
.about-doc {
  background: radial-gradient(circle at top, #f6f6f6 0%, #ffffff 60%);
}

.about-label {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-label .line {
  width: 42px;
  height: 2px;
  background: #ff6a00;
  display: inline-block;
}

.about-label .text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 13px;
  color: #ff6a00;
  text-transform: uppercase;
}

.about-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.05;
  color: #222;
  margin-bottom: 18px;
}

.about-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #5a5a5a;
  margin-bottom: 16px;
  max-width: 720px;
}

.about-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  background: #c40000;
  color: #fff;
  padding: 14px 22px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

.about-btn:hover {
  background: #a80000;
  color: #fff;
}

.about-img-wrap {
  border-radius: 0;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  max-height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 991.98px) {
  .about-title {
    font-size: 36px;
  }
  .about-img-wrap img {
    max-height: 420px;
  }
}
@media (max-width: 575.98px) {
  .about-title {
    font-size: 30px;
  }
}
:root {
  --navy: #081a2d;
  --orange: #ff6a00;
  --red: #c40000;
}

/* CTA Strip */
.ent-cta-strip {
  background: linear-gradient(180deg, #061626 0%, #0a2036 100%);
  color: #fff;
}

.cta-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--orange);
}

.cta-text {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.8;
  max-width: 760px;
  opacity: 0.95;
}

.cta-btn-primary {
  background: var(--red);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  border-radius: 6px;
  padding: 12px 26px;
  border: none;
}

.cta-btn-primary:hover {
  background: #a80000;
  color: #fff;
}

.cta-btn-outline {
  background: #fff;
  color: #111;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  border-radius: 6px;
  padding: 12px 26px;
  border: none;
}

.cta-btn-outline:hover {
  filter: brightness(0.95);
  color: #111;
}

/* Content */
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.k-line {
  width: 34px;
  height: 2px;
  background: var(--orange);
}

.k-text {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--orange);
}

.main-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1.15;
  color: #222;
}

.ent-points {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.ent-points li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.7;
  color: #444;
}

.ent-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 2px;
  background: var(--orange);
}

.img-wrap {
  background: #fff;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
}

.img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Responsive */
@media (max-width: 991.98px) {
  .main-title {
    font-size: 30px;
  }
  .cta-title {
    font-size: 20px;
  }
}
:root {
  --navy1: #061726;
  --navy2: #0a2a45;
  --orange: #ff6a00;
}

/* Dark section */
.ent-contact {
  background: radial-gradient(circle at top, #0b2a45 0%, #071a2c 55%, #061726 100%);
}

.ent-contact-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 28px;
}

.ent-contact-line {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  opacity: 0.95;
}

.ent-contact-line i {
  color: var(--orange);
  margin-right: 6px;
}

/* Form card */
.contact-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.contact-card-head {
  background: rgba(0, 0, 0, 0.55);
  padding: 18px 14px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.contact-card .form-control {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 12px 12px;
  border-radius: 6px;
}

/* Map card */
.map-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.map-frame {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #e9e9e9;
}

.work-kicker {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 6px;
}

.get-touch-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  color: #111;
}

/* Schedule table */
.schedule-box {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: #fff3ef;
  border-bottom: 1px solid #f0d7cf;
  font-family: "Inter", sans-serif;
  font-size: 13px;
}

.schedule-row:last-child {
  border-bottom: 0;
  background: #fff3ef;
}

.sch-day {
  font-weight: 600;
  color: #111;
}

.sch-time {
  font-weight: 700;
  color: #111;
  text-align: right;
}

/* FAQ */
.faq-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #111;
}

.faq-acc .accordion-button {
  background: linear-gradient(90deg, #061726, #0a2a45);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 14px 16px;
  box-shadow: none;
}

.faq-acc .accordion-button::after {
  filter: invert(1);
}

.faq-acc .accordion-body {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

/* Mobile tweaks */
@media (max-width: 575.98px) {
  .ent-contact-title {
    font-size: 22px;
  }
  .get-touch-title {
    font-size: 18px;
  }
}
:root {
  --red: #c40000;
  --text: #222;
  --muted: #666;
}

.cks-footer {
  background: #fff;
  font-family: "Inter", sans-serif;
}

/* Top strip */
.cks-logo {
  height: 70px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.disclaimer-link {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #222;
  text-decoration: none;
}

.disclaimer-link i {
  color: var(--red);
}

.disclaimer-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.follow-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #111;
}

.soc {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  text-decoration: none;
}

.soc:hover {
  background: var(--red);
  color: #fff;
}

/* dashed divider */
.cks-dashed {
  border-top: 2px dashed var(--red);
  margin: 8px 0 0;
}

/* titles + text */
.f-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.f-text {
  color: var(--muted);
  line-height: 1.9;
  font-size: 14px;
  max-width: 320px;
}

/* contact list */
.f-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.f-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  color: #444;
  font-size: 14px;
  line-height: 1.6;
}

.f-list i {
  color: var(--red);
  margin-top: 2px;
  font-size: 16px;
  flex-shrink: 0;
}

/* links */
.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-list li {
  margin-bottom: 12px;
}

.link-list a {
  color: #444;
  text-decoration: none;
  font-size: 14px;
}

.link-list a:hover {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* bottom bar */
.cks-bottom {
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}

@media (max-width: 575.98px) {
  .cks-logo {
    height: 56px;
  }
  .f-text {
    max-width: 100%;
  }
}
:root {
  --orange: #ff6a00;
  --red: #c40000;
  --text: #222;
  --muted: #666;
}

/* section base */
.meet-doc {
  background: #fff;
}

/* left image card */
.doc-photo-card {
  border-radius: 22px;
  overflow: hidden;
  background: #f3f3f3;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.doc-photo-card img {
  width: 100%;
  height: 520px;
  /* close to screenshot */
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* right background hex pattern */
.doc-bg-pattern {
  position: absolute;
  inset: -20px -20px -20px -20px;
  pointer-events: none;
  opacity: 0.28;
  background: radial-gradient(circle at 20% 10%, rgba(0, 0, 0, 0.05) 0 2px, transparent 2px 100%), radial-gradient(circle at 80% 40%, rgba(0, 0, 0, 0.05) 0 2px, transparent 2px 100%), linear-gradient(135deg, rgba(0, 0, 0, 0.035) 25%, transparent 25%), linear-gradient(225deg, rgba(0, 0, 0, 0.035) 25%, transparent 25%), linear-gradient(45deg, rgba(0, 0, 0, 0.035) 25%, transparent 25%), linear-gradient(315deg, rgba(0, 0, 0, 0.035) 25%, transparent 25%);
  background-size: 80px 80px;
  background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
}

/* kicker */
.doc-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.doc-kicker .k-line {
  width: 44px;
  height: 2px;
  background: var(--orange);
}

.doc-kicker .k-text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--orange);
  text-transform: none;
  letter-spacing: 0.3px;
  font-size: 15px;
}

.doc-name {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 44px;
  color: var(--text);
  margin: 10px 0 14px;
  position: relative;
  z-index: 1;
}

.doc-para {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

/* arrow bullet list */
.doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.doc-list li {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px;
  padding-left: 22px;
  position: relative;
}

.doc-list li::before {
  content: "→";
  /* → */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
}

/* CTA button */
.doc-cta {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: 14px 34px;
  box-shadow: 0 14px 26px rgba(196, 0, 0, 0.18);
  position: relative;
  z-index: 1;
}

.doc-cta:hover {
  background: #a80000;
  color: #fff;
}

/* responsive */
@media (max-width: 991.98px) {
  .doc-photo-card img {
    height: 420px;
  }
  .doc-name {
    font-size: 34px;
  }
}
@media (max-width: 575.98px) {
  .doc-name {
    font-size: 28px;
  }
  .doc-para {
    font-size: 14px;
  }
  .doc-list li {
    font-size: 13px;
  }
}
:root {
  --orange: #f06a13;
  --orange2: #f07a2b;
  --text: #111;
}

/* Outer orange bar */
.tab-wrap {
  background: var(--orange);
  border-radius: 4px;
  padding: 8px;
}

/* Inner pills row */
.tab-inner {
  gap: 10px;
}

.doc-tabs .nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 4px;
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 0;
  transition: 0.2s ease;
}

/* Inactive look (orange tiles) */
.doc-tabs .nav-link:not(.active) {
  background: #f07a2b;
  color: #fff !important;
}

/* Active tab look (white) */
.doc-tabs .nav-link.active {
  background: #fff !important;
  color: #000 !important;
}

/* Title + bullets */
.tab-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: #111;
  margin-bottom: 18px;
}

.arrow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #333;
}

.arrow-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.arrow-list li::before {
  content: "→";
  /* → */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
}

/* Responsive: stack tabs on mobile */
@media (max-width: 767.98px) {
  .tab-inner {
    flex-direction: column;
  }
  .tab-title {
    font-size: 26px;
  }
}
.why-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: #222;
  margin-bottom: 10px;
}

.why-sub {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #444;
  margin: 0 auto;
  max-width: 820px;
  line-height: 1.8;
}

.why-card {
  border: 1px solid #dedede;
  border-radius: 6px;
  padding: 28px 22px;
  background: #fff;
}

.why-ico {
  font-size: 44px;
  color: #111;
  margin-bottom: 10px;
  line-height: 1;
}

.why-card-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #111;
  margin: 10px 0 12px;
}

.why-card-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 2;
  margin: 0;
}

/* Responsive title like screenshot */
@media (max-width: 991.98px) {
  .why-title {
    font-size: 38px;
  }
}
@media (max-width: 575.98px) {
  .why-title {
    font-size: 30px;
  }
}
:root {
  --red: #c40000;
  --soft: #fff3f4;
  /* light pink */
  --dark: #2b323a;
  /* form header */
}

/* Heading */
.cd-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 46px;
  color: #222;
  margin-bottom: 10px;
}

.cd-sub {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #555;
  max-width: 880px;
  line-height: 1.9;
}

/* Contact Cards */
.info-card {
  background: var(--soft);
  border-radius: 10px;
  padding: 26px 26px;
  min-height: 150px;
}

.info-ico {
  color: var(--red);
  font-size: 26px;
  margin-bottom: 14px;
}

.info-label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #444;
  margin-bottom: 6px;
}

.info-value {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

/* Map area */
.map-area {
  position: relative;
  padding-bottom: 70px;
}

.map-wrap {
  height: 520px;
  border-radius: 0;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Floating form card */
.appoint-card {
  position: absolute;
  right: 0;
  top: 65px;
  width: 380px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.appoint-head {
  background: var(--dark);
  padding: 26px 18px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.appoint-head h4 {
  font-weight: 800;
  margin: 0;
}

.appoint-sub {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #ff6a00;
  margin-top: 6px;
  font-weight: 600;
}

.appoint-card .form-control,
.appoint-card .input-group-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 12px 12px;
}

.appoint-card .input-group-text {
  background: #fff;
  color: var(--red);
}

/* Responsive */
@media (max-width: 991.98px) {
  .cd-title {
    font-size: 34px;
  }
  .appoint-card {
    position: static;
    width: 100%;
    margin-top: 18px;
  }
  .map-area {
    padding-bottom: 0;
  }
  .map-wrap {
    height: 380px;
  }
}
@media (max-width: 575.98px) {
  .cd-title {
    font-size: 28px;
  }
  .info-card {
    padding: 20px;
  }
}
.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.cta-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-btn:hover {
  transform: translateY(-6px);
}

/* Colors */
.whatsapp {
  background: #25D366;
}

.call {
  background: #c40000;
}

.enquiry {
  background: #2b323a;
}

/* Pulse animation for WhatsApp */
.whatsapp::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.accordion-button:not(.collapsed) {
  /* color: var(--bs-accordion-active-color); */
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
  color: #fff !important;
}

:root {
  --red: #c40000;
  --soft: #fff5f5;
  --border: #e9e1e1;
}

/* Typography */
.ov-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #222;
  margin-bottom: 14px;
}

.ov-text {
  font-family: "Inter", sans-serif;
  color: #666;
  font-size: 13.5px;
  line-height: 1.95;
}

/* Sticky container */
.sticky-sidebar {
  position: sticky;
  top: 110px;
  /* adjust based on your header height */
}

/* Disable sticky on mobile */
@media (max-width: 991.98px) {
  .sticky-sidebar {
    position: static;
    top: auto;
  }
}
/* Doctor side card */
.doc-side-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.doc-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  background: #f2f2f2;
}

.doc-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.doc-name {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 6px;
}

.doc-qual {
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  color: #666;
  margin-bottom: 12px;
}

.doc-phone {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #444;
}

.doc-phone i {
  color: var(--red);
  margin-right: 6px;
}

.doc-btn {
  background: var(--red);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 6px;
}

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

/* Links card */
.side-links {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.side-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: #222;
  margin-bottom: 12px;
}

.tag-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag-links a {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px 10px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #444;
  text-decoration: none;
}

.tag-links a:hover {
  border-color: var(--red);
  color: var(--red);
}

.angina-content {
  background: #fff;
}

.ac-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #222;
  margin-bottom: 14px;
}

.ac-text {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  line-height: 2;
  color: #6b6b6b;
  margin-bottom: 16px;
}

/* Orange arrow list */
.ac-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.ac-list li {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  color: #6b6b6b;
  line-height: 2;
  margin-bottom: 8px;
  padding-left: 26px;
  position: relative;
}

.ac-list li::before {
  content: "→";
  /* → */
  position: absolute;
  left: 0;
  top: 0;
  color: #ff6a00;
  font-weight: 700;
}

/* Red highlighted terms */
.ac-red {
  color: #c40000;
  font-weight: 700;
}

/* Center divider line */
.ac-divider {
  width: 78%;
  height: 1px;
  background: #cfe2f0;
  margin: 36px auto;
}

@media (max-width: 575.98px) {
  .ac-title {
    font-size: 22px;
  }
  .ac-divider {
    width: 100%;
  }
}
.angina-risk-section {
  background: #fff;
}

.ars-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #222;
  margin-bottom: 14px;
}

.ars-text {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  line-height: 2;
  color: #6b6b6b;
  margin-bottom: 16px;
}

/* Divider */
.ars-divider {
  width: 78%;
  height: 1px;
  background: #cfe2f0;
  margin: 36px auto;
}

/* Orange arrow list */
.ars-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ars-list li {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  line-height: 2;
  color: #6b6b6b;
  margin-bottom: 8px;
  padding-left: 26px;
  position: relative;
}

.ars-list li::before {
  content: "→";
  /* → */
  position: absolute;
  left: 0;
  color: #ff6a00;
  font-weight: 700;
}

/* Red bold risk keywords */
.ars-list li span {
  color: #c40000;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .ars-title {
    font-size: 22px;
  }
  .ars-divider {
    width: 100%;
  }
}
.wa-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #222;
  margin-bottom: 16px;
}

.wa-text {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  line-height: 2;
  color: #6b6b6b;
  margin-bottom: 18px;
}

.wa-red {
  color: #c40000;
  font-weight: 700;
}

.wa-divider {
  width: 78%;
  height: 1px;
  background: #cfe2f0;
  margin: 36px auto 0;
}

@media (max-width: 575.98px) {
  .wa-title {
    font-size: 22px;
  }
  .wa-divider {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */


/*Single*/
/* ===================================
   SINGLE BLOG POST STYLES
   Add this to your /assets/css/style.css file
   =================================== */

/* Single Post Wrapper */
.single-post-wrapper {
  background: #fff;
}

/* Featured Image Container */
.featured-image-container {
  width: 100%;
  text-align: center;
  
  
}

.featured-image-container img {
  
  height: auto;
  
  
}

/* Post Content */
.single-post-content {
  padding: 2rem 0 4rem;
}

/* Post Meta */
.post-meta {
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #f0f0f0;
}

.post-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.post-meta .meta-item i {
  color: #df1f2b;
  font-size: 16px;
}

.post-meta a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.post-meta a:hover {
  color: #e94b35;
}

/* Post Title */
.post-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .post-title {
    font-size: 1.8rem;
  }
}

/* Post Content */
.post-entry-content {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.post-entry-content p {
  margin-bottom: 1.5rem;
}

.post-entry-content h2,
.post-entry-content h3,
.post-entry-content h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.post-entry-content h2 {
  font-size: 2rem;
}

.post-entry-content h3 {
  font-size: 1.6rem;
}

.post-entry-content h4 {
  font-size: 1.3rem;
}

.post-entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}

.post-entry-content ul,
.post-entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.post-entry-content li {
  margin-bottom: 0.5rem;
}

.post-entry-content blockquote {
  border-left: 4px solid #e94b35;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #555;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
}

.post-entry-content a {
  color: #e94b35;
  text-decoration: underline;
  transition: color 0.3s;
}

.post-entry-content a:hover {
  color: #c93d28;
}

/* Post Tags */
.post-tags {
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.post-tags a {
  display: inline-block;
  padding: 6px 16px;
  background: #f0f0f0;
  border-radius: 20px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.post-tags a:hover {
  background: #e94b35;
  color: #fff;
}

/* Post Navigation (Previous/Next) */
.post-navigation {
  padding-top: 2rem;
  border-top: 2px solid #f0f0f0;
}

.nav-post {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s;
}

.nav-post:hover {
  transform: translateY(-4px);
}

.nav-post-card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
  background: #fff;
}

.nav-post:hover .nav-post-card {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #e94b35;
}

.nav-post-thumb {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.nav-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.nav-post:hover .nav-post-thumb img {
  transform: scale(1.05);
}

.nav-post-content {
  padding: 1.5rem;
}

.nav-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #e94b35;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.nav-prev .nav-label {
  justify-content: flex-start;
}

.nav-next .nav-label {
  justify-content: flex-end;
}

.nav-post-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nav-prev .nav-post-title {
  text-align: left;
}

.nav-next .nav-post-title {
  text-align: right;
}

/* Author Bio */
.author-bio {
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}

.author-bio-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #e94b35;
}

.author-avatar img {
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.author-name {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1.2rem;
}

.author-description {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Comments Section Styling */
#comments {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #f0f0f0;
}

.comments-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

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

.comment {
  margin-bottom: 2rem;
}

.comment-body {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid #e94b35;
}

.comment-author {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.comment-metadata {
  font-size: 13px;
  color: #777;
  margin-bottom: 1rem;
}

.comment-content p {
  margin: 0;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .featured-image-container {
    padding: 1rem 0;
    margin-bottom: 2rem;
  }
  
  .single-post-content {
    padding: 1rem 0 2rem;
  }
  
  .post-meta {
    font-size: 13px;
  }
  
  .post-entry-content {
    font-size: 16px;
  }
  
  .nav-post-thumb {
    height: 120px;
  }
  
  .nav-post-content {
    padding: 1rem;
  }
  
  .nav-post-title {
    font-size: 1rem;
  }
  
  .author-bio-card {
    padding: 1.5rem;
  }
}