

.specialitiess-hero {
  min-height: 75vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url('../../BackEndImages/BlogImage/specilities-banner.png') center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  /* ⬇ push content to bottom */
  justify-content: center;
  /* ⬅ center horizontally */
  padding: 40px 20px 0 20px;
  color: #fff;
}


/* ====================== CARDIOLOGY PAGE STYLES ====================== */
.cardiology-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
.main-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 12px 0 16px;
}

.section-heading {
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.sub-heading {
  font-size: 24px;
  color: #555;
  margin-bottom: 32px;
}

.content-text {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.highlight {
  color: #f66537;
  font-weight: 600;
}

.sub-section-heading {
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 40px 0 24px;
}

.card-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}

.card-desc {
  font-size: 16px;
  color: #666;
}

/* Hero */
.hero {
  background: #0a1428;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(246, 101, 55, 0.12), transparent);
}

.hero-content {
  width: 100%;
  max-width: 680px;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.tagline {
  font-size: 28px;
  color: #f66537;
  font-weight: 300;
  margin: 16px 0;
}

.hero-desc {
  font-size: 18px;
  color: #ddd;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #f66537;
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(246, 101, 55, 0.3);
}

.btn-primary:hover {
  background: #e0552a;
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: white;
  color: #0a1428;
}

.hero-visual {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 220px;
  opacity: 0.9;
  z-index: 1;
}

/* Accent Border */
.accent-border {
  border-left: 5px solid #f66537;
  padding-left: 28px;
}

/* Sections */
.section {
  padding: 80px 0 20px;
}

.bg-light {
  background: #f8f9fa;
}

.dark-section {
  background: #0a1428;
  color: white;
}

.light {
  color: white;
}

/* Symptoms Grid */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

/* Symptom Cards - Icon on Top Center */
.symptom-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  padding: 32px 24px;
  border-radius: 20px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  min-height: 180px;
}

.symptom-card:hover {
  border-color: #f66537;
  box-shadow: 0 15px 30px rgba(246, 101, 55, 0.12);
  transform: translateY(-6px);
}

.symptom-card .icon {
  font-size: 52px;
  margin-bottom: 18px;
  line-height: 1;
}

.symptom-card .card-title {
  font-size: 19px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 10px;
  line-height: 1.3;
}

.symptom-card .card-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  flex-grow: 1;
}


.step-item p {
    margin: 0;
    font-size: 16.5px;
    color: #444;
    line-height: 1.5;
}

.step-item strong {
    font-weight: 700;
    color: #1f2937;
    font-size: 18px;
    display: block;
    margin-bottom: 6px;
}

/* Grid Layout */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}


.symptom-card {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.symptom-card:hover {
  box-shadow: 0 20px 40px rgba(246, 101, 55, 0.15);
}

/* Services */
/* ====================== ZIGZAG SERVICES SECTION ====================== */
/* ====================== ADVANCED SERVICES - ZIGZAG (LIGHT THEME) ====================== */
.services-zigzag {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 60px;
}

.service-zigzag-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  align-items: start;
}

.service-zigzag-item.reverse {
  grid-template-columns: 1fr 100px;
}

.service-number {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: #f66537;
  text-align: center;
  padding-top: 10px;
}

.service-content {
  background: #ffffff;
  padding: 38px 42px;
  border-radius: 20px;
  border-left: 6px solid #f66537;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.service-title {
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 24px;
  line-height: 1.3;
}

.service-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-items li {
  font-size: 18px;
  color: #444444;
  padding: 10px 0;
  position: relative;
  padding-left: 28px;
  line-height: 1.65;
}

.service-items li::before {
  content: "•";
  color: #f66537;
  position: absolute;
  left: 0;
  font-size: 22px;
  line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .service-zigzag-item,
  .service-zigzag-item.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .service-number {
    font-size: 56px;
    text-align: left;
    padding-top: 0;
  }
  
  .service-content {
    padding: 32px 28px;
  }
}
/* Why Grid */
/* ====================== WHY WELLMED SECTION ====================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  padding: 40px 28px;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.why-card:hover {
  border-color: #f66537;
  box-shadow: 0 15px 35px rgba(246, 101, 55, 0.12);
  transform: translateY(-8px);
}

.why-icon {
  font-size: 54px;
  margin-bottom: 24px;   /* Good space after icon */
  line-height: 1;
  display: block;
}

.why-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 14px;
  line-height: 1.4;
}

.why-card p {
  font-size: 18px;           /* Consistent with your page */
  color: #555;
  line-height: 1.65;
  text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
  .why-card {
    padding: 32px 24px;
  }
  
  .why-icon {
    font-size: 48px;
    margin-bottom: 20px;
  }
}
/* Treatments */
/* ====================== COMPREHENSIVE TREATMENTS SECTION ====================== */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.treatment-card {
  background: white;
  padding: 42px 36px;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.treatment-card:hover {
  border-color: #f66537;
  box-shadow: 0 15px 40px rgba(246, 101, 55, 0.12);
  transform: translateY(-6px);
}

.treatments-subheading {
  font-size: 24px;
  font-weight: 600;
  color: #f66537;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f66537;
  display: inline-block;
}

.treatment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.treatment-list li {
  font-size: 18px;
  color: #444;
  padding: 11px 0 11px 28px;
  position: relative;
  line-height: 1.6;
}

.treatment-list li::before {
  content: "•";
  color: #f66537;
  position: absolute;
  left: 0;
  font-size: 22px;
  line-height: 1;
}

/* Long Term Care */
.long-term-card {
  background: white;
  padding: 42px 36px;
  border-radius: 20px;
  border-left: 6px solid #f66537;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
}

.long-term-text {
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .treatments-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .treatment-card,
  .long-term-card {
    padding: 32px 24px;
  }
}
/* CTA */
/* ====================== FINAL CTA ====================== */
.final-cta {
  background: linear-gradient(90deg, #f66537, #ff7a4d);
  color: white;
  text-align: center;
  padding: 90px 20px;
  border-radius: 0;
  margin: 0;
}

.final-cta h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.final-cta p {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0.95;
}

.btn-appointment {
  display: inline-block;
  background: white;
  color: #f66537;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 42px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.btn-appointment:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* FAQ */
/* ====================== MAGIC FAQ SECTION ====================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
  margin: 50px 0;
}

.faq-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
  border-color: #f66537;
  box-shadow: 0 12px 30px rgba(246, 101, 55, 0.12);
}

.faq-item summary {
  padding: 24px 32px;
  font-size: 18px;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 28px;
  font-weight: 300;
  color: #f66537;
  transition: transform 0.4s ease;
  line-height: 1;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 32px 32px;
  font-size: 17.5px;
  line-height: 1.75;
  color: #4b5563;
  margin: 0;
  border-top: 1px solid #f3f4f6;
}

/* Smooth animation for opening */
details[open] summary ~ * {
  animation: fadeInDown 0.4s ease forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .faq-item summary {
    padding: 20px 24px;
    font-size: 17px;
  }
  
  .faq-item p {
    padding: 0 24px 28px;
    font-size: 17px;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .main-heading { font-size: 38px; }
  .section-heading { font-size: 32px; }
  .hero-visual { display: none; }
  .hero { min-height: 70vh; }
  .section { padding: 60px 0; }
}







/* <-------------------------------------------------------> */


/* ====================== PREMIUM PROCEDURES PAGE STYLES ====================== */
.cardiac-procedures-page,
.procedures-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.65;
  color: #333;
}

/* Container */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
.main-heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.section-heading {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-heading:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #f66537;
}

.sub-heading {
  font-size: 22px;
  color: #555;
  margin-bottom: 40px;
  font-weight: 400;
}

.content-text {
  font-size: 17.5px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
}

.highlight-text {
  font-size: 26px;
  color: #f66537;
  font-weight: 600;
  margin-bottom: 28px;
}

/* Accent */
.accent-border {
  border-left: 6px solid #f66537;
  padding-left: 26px;
}

/* Sections */
.section {
  padding: 65px 0;
}

.bg-light {
  background: #f9f9f9;
}

/* ====================== PROCEDURES LIST ====================== */
.procedure-list,
.highlight-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.procedure-list li,
.highlight-list li {
  font-size: 17.5px;
  padding: 10px 0 10px 32px;
  position: relative;
  color: #333;
}

.procedure-list li::before,
.highlight-list li::before {
  content: "•";
  color: #f66537;
  font-size: 28px;
  position: absolute;
  left: 0;
  top: 10px;
}

/* Category Heading */
.category-heading {
  font-size: 27px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 48px 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f66537;
}

/* ====================== PREMIUM CARDS ====================== */
.symptom-card,
.why-card,
.step-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 26px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
}

.symptom-card:hover,
.why-card:hover,
.step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(246, 101, 55, 0.18);
  border-color: #f66537;
}

/* Symptoms Grid */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.symptom-card .icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.symptom-card .card-title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1f2937;
}

/* Why Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.why-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

/* Approach Steps */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
  margin-top: 35px;
}

.step-item {
  text-align: center;
  padding: 28px 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f66537, #ff7a4d);
  color: white;
  font-size: 22px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #f66537, #e04e2a);
  color: white;
  text-align: center;
  padding: 85px 20px;
  margin: 40px 0 0;
}

.final-cta h2 {
  font-size: 34px;
  margin-bottom: 18px;
}

.final-cta p {
  font-size: 18px;
  max-width: 680px;
  margin: 0 auto 35px;
  opacity: 0.95;
}

.btn-appointment {
  background: white;
  color: #f66537;
  font-size: 19px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-appointment:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 45px auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: white;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  border-color: #f66537;
  box-shadow: 0 12px 35px rgba(246, 101, 55, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .section { padding: 55px 0; }
  .main-heading { font-size: 36px; }
  .section-heading { font-size: 30px; }
  .symptoms-grid,
  .why-grid,
  .approach-steps {
    grid-template-columns: 1fr;
  }
}



