/* ==========================================================================
   Sri Chakra Multispeciality Hospital - Home Page & Hero Stylesheet
   Strictly matched with all section design images:
   1. Hero Section & Experience Badge & Floating Review Card
   2. Sri Chakra Multi Speciality Hospital with Doctor Profile Card & 4 Progress Bars
   3. Services Including with 2-Way Sliding Marquee Pills & Connected Timeline List
   4. OUR PROFESSIONAL Cardiologist (2x2 Grid with corner cutouts & arrows)
   5. WE TAKE CARE OF YOU & Interactive Rotating Orbit Wheel Section
   6. Helping You With All Your Health Problems (Tabbed Filter Grid)
   7. Healthcare Services & OUR CLIENTS FEEDBACK Section (Final Section)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;600;700;800&display=swap');
@import url('../components/header.css');
@import url('../components/fotter.css');

:root {
  --primary-cyan: #00a8ec;
  --primary-cyan-hover: #0096d6;
  --secondary-blue: #0284c7;
  --secondary-blue-hover: #0369a1;
  --dark-hero-bg: #06121f;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --bg-page: #ffffff;

  --font-heading: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--bg-page);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* ---------------- Hero Page Wrapper ---------------- */
.hero-page-wrapper {
  width: 100%;
  padding: 24px 20px 0px;
}

.hero-container {
  max-width: 1380px;
  margin: 0 auto;
}

/* ==========================================================================
   Section 1: Hero Main Card
   ========================================================================== */
.hero-card {
  position: relative;
  border-radius: 28px;
  background: #081626;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
}

.hero-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 5s ease-out;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 1;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg,
      #06121f 0%,
      #081729 45%,
      rgba(8, 23, 41, 0.82) 60%,
      rgba(8, 23, 41, 0.45) 80%,
      rgba(8, 23, 41, 0.15) 100%);
}

.hero-slider-dots {
  position: absolute;
  bottom: 22px;
  left: 60px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
  outline: none;
}

.hero-dot:hover {
  background: rgba(0, 168, 236, 0.8);
  border-color: #00a8ec;
  transform: scale(1.15);
}

.hero-dot.active {
  width: 32px;
  border-radius: 12px;
  background: var(--primary-cyan);
  border-color: #ffffff;
  box-shadow: 0 0 12px rgba(0, 168, 236, 0.7);
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 680px;
  padding: 60px 50px 60px 60px;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-cyan);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 6px 20px;
  margin-bottom: 22px;
  box-shadow: 0 4px 12px rgba(0, 168, 236, 0.35);
}

.hero-badge span {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #ffffff;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 54px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #e2e8f0;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-appointment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-cyan);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 168, 236, 0.4);
  transition: all 0.25s ease;
}

.btn-hero-appointment:hover {
  background-color: var(--primary-cyan-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 168, 236, 0.55);
}

.btn-hero-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-blue);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
}

.btn-hero-readmore:hover {
  background-color: var(--secondary-blue-hover);
  transform: translateY(-2px);
}

.hero-floating-card {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  background-color: var(--primary-cyan);
  padding: 16px 24px 14px 24px;
  border-radius: 20px 0 28px 0;
  border-top: 3px solid #f6f6f6;
  border-left: 3px solid #f6f6f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: -5px -5px 25px rgba(0, 0, 0, 0.15);
  animation: none !important;
  transform: none !important;
}

.avatar-group {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}

.avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  margin-left: -8px;
  display: block;
}

.avatar-img:first-child {
  margin-left: 0;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.rating-stars .star {
  color: #facc15;
  font-size: 16px;
  line-height: 1;
}

.rating-text {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

/* ==========================================================================
   Section 2: Sri Chakra Multi Speciality Section
   ========================================================================== */
.about-speciality-section {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 20px 40px;
  border-radius: 28px;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 15px;
}

.section-main-heading {
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 52px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.3px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  color: #475569;
  max-width: 780px;
  margin: 12px auto 0;
}

.cyan-highlight {
  color: var(--primary-cyan);
}

.about-speciality-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 48px;
  align-items: center;
}

.about-media-col {
  width: 100%;
}

.about-img-container {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: visible;
}

.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.doctor-profile-card {
  position: absolute;
  bottom: 0px;
  right: 0px;
  max-width: 290px;
  background-color: #d8edf8;
  border-radius: 18px 0 24px 0;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 16px 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  z-index: 5;
}

.doctor-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.doctor-thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  flex-shrink: 0;
}

.doctor-info {
  display: flex;
  flex-direction: column;
}

.doctor-name {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.doctor-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-cyan);
}

.doctor-desc {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #475569;
  margin: 0;
}

.about-content-col {
  display: flex;
  flex-direction: column;
}

.about-subheading {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.about-text-p1 {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 27px;
  font-weight: 400;
  color: #334155;
  margin-bottom: 12px;
}

.about-text-p2 {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #475569;
  margin-bottom: 26px;
}

.speciality-progress-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.progress-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-label-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.progress-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-cyan {
  background-color: #e0f2fe;
  color: var(--primary-cyan);
}

.icon-pink {
  background-color: #fce7f3;
  color: #ec4899;
}

.icon-sand {
  background-color: #fef3c7;
  color: #d97706;
}

.icon-red {
  background-color: #fee2e2;
  color: #ef4444;
}

.progress-title {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 0.2px;
}

.progress-percentage {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-cyan);
}

.progress-bar-bg {
  width: 100%;
  height: 9px;
  background-color: #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: var(--primary-cyan);
  border-radius: 20px;
  transition: width 1s ease-in-out;
}

/* ==========================================================================
   Section 3: Services Marquee & Connected Timeline Section
   ========================================================================== */
.services-marquee-section {
  width: 100%;
  background-color: #ebf6fe;
  padding: 40px 30px;
  border-radius: 28px;
  margin-bottom: 25px;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 55px;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track-container {
  width: 100%;
  overflow: hidden;
  display: flex;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
}

.animate-left {
  animation: scrollLeft 35s linear infinite;
  padding-top: 10px;
}

.animate-right {
  animation: scrollRight 35s linear infinite;
  padding-top: 10px;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.service-pill {
  background-color: #ffffff;
  border: 1px solid rgba(0, 168, 236, 0.2);
  border-radius: 50px;
  padding: 9px 20px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 168, 236, 0.08);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}

.service-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 168, 236, 0.16);
  border-color: var(--primary-cyan);
}

.pill-icon {
  font-size: 15px;
  display: inline-flex;
  align-items: center;
}

.services-timeline-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.timeline-column {
  width: 100%;
}

.timeline-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 10px;
}

.timeline-list::before {
  content: '';
  position: absolute;
  top: 20px;
  bottom: 25px;
  left: 27px;
  width: 2.5px;
  background: linear-gradient(180deg, #00a8ec 0%, #38bdf8 100%);
  z-index: 1;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.timeline-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 2px solid var(--primary-cyan);
  box-shadow: 0 4px 12px rgba(0, 168, 236, 0.25);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.timeline-item:hover .timeline-icon-wrap {
  transform: scale(1.1);
}

.icon-cyan-glow {
  color: var(--primary-cyan);
}

.icon-red-glow {
  color: #ef4444;
}

.icon-amber-glow {
  color: #f59e0b;
}

.icon-green-glow {
  color: #10b981;
}

.icon-coral-glow {
  color: #f97316;
}

.icon-blue-glow {
  color: #3b82f6;
}

.timeline-content {
  display: flex;
  flex-direction: column;
}

.timeline-heading {
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}

.timeline-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 22px;
  font-weight: 400;
  color: #475569;
  margin: 0;
}

.services-doctor-column {
  width: 100%;
}

.services-doctor-wrap {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.services-doctor-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Section 4: OUR PROFESSIONAL Cardiologist (2x2 Grid)
   ========================================================================== */
.specialists-grid-section {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 28px;
  margin-bottom: 25px;
}

.specialists-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.specialist-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
}

.specialist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 168, 236, 0.16);
}

.card-img-wrap {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.specialist-card:hover .card-img {
  transform: scale(1.03);
}

.card-corner-arrow {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 55px;
  height: 55px;
  background-color: #d8edf8;
  border-radius: 0px 24px 0px 30px;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  text-decoration: none;
  z-index: 5;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.specialist-card:hover .card-corner-arrow {
  background-color: var(--primary-cyan);
  color: #ffffff;
}

.specialist-card:hover .card-corner-arrow svg {
  transform: translate(1px, -1px);
}

.card-info-cutout {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: #d8edf8;
  border-radius: 0 18px 0 24px;
  border-top: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
  padding: 14px 18px;
  max-width: 350px;
  z-index: 5;
  height: 15vh;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.card-desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 17px;
  font-weight: 400;
  color: #475569;
  margin: 0;
}

/* ==========================================================================
   Section 5: WE TAKE CARE OF YOU & Interactive Rotating Orbit Wheel Section
   ========================================================================== */
.care-orbit-section {
  width: 100%;
  background-color: #ebf6fe;
  padding: 40px 30px;
  border-radius: 28px;
  margin-bottom: 25px;
}

.care-orbit-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

.care-content-col {
  display: flex;
  flex-direction: column;
}

.care-main-title {
  font-family: var(--font-heading);
  font-size: 38px;
  line-height: 46px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.care-sub-title {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}

.care-desc-p1 {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 27px;
  font-weight: 400;
  color: #334155;
  margin-bottom: 16px;
}

.care-desc-p2 {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 27px;
  font-weight: 400;
  color: #334155;
  margin-bottom: 34px;
}

.care-badges-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.care-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #38bdf8 0%, #00a8ec 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 168, 236, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  user-select: none;
}

.care-pill-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 168, 236, 0.45);
}

.care-pill-badge .badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.care-pill-badge .badge-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Orbit Wheel */
.care-wheel-col {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit-wheel-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-svg-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.orbit-center-hub {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 168, 236, 0.15), 0 0 0 8px rgba(240, 249, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  z-index: 10;
  border: 3px solid rgba(0, 168, 236, 0.12);
  transition: all 0.35s ease;
}

.center-hub-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hub-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-cyan);
  margin-bottom: 6px;
  transition: opacity 0.25s ease;
}

.hub-desc {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #475569;
  margin: 0;
  transition: opacity 0.25s ease;
}

.orbit-nodes-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  animation: orbitSpin 45s linear infinite;
}

.orbit-wheel-wrapper:hover .orbit-nodes-track,
.orbit-wheel-wrapper:hover .node-inner {
  animation-play-state: paused;
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitCounterSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.orbit-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  transform: translate(-50%, -50%) rotate(calc(var(--node-idx) * 45deg)) translateY(-185px) rotate(calc(var(--node-idx) * -45deg));
}

.node-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: orbitCounterSpin 45s linear infinite;
  user-select: none;
}

.node-icon {
  font-size: 16px;
  line-height: 1;
}

.node-label {
  font-family: var(--font-heading);
  font-size: 9.5px;
  line-height: 11px;
  font-weight: 700;
  color: #1e293b;
  max-width: 62px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.node-indigo {
  border: 3.5px solid #6366f1;
}

.node-violet {
  border: 3.5px solid #8b5cf6;
}

.node-teal {
  border: 3.5px solid #10b981;
}

.node-rose {
  border: 3.5px solid #f43f5e;
}

.node-green {
  border: 3.5px solid #22c55e;
}

.node-orange {
  border: 3.5px solid #f59e0b;
}

.node-purple {
  border: 3.5px solid #a855f7;
}

.node-cyan {
  border: 3.5px solid #00a8ec;
}

.orbit-node:hover,
.orbit-node.active {
  transform: translate(-50%, -50%) rotate(calc(var(--node-idx) * 45deg)) translateY(-185px) rotate(calc(var(--node-idx) * -45deg)) scale(1.18);
  box-shadow: 0 10px 30px rgba(0, 168, 236, 0.35);
  z-index: 15;
}

/* ==========================================================================
   Section 6: Helping You With All Your Health Problems (Tabs & Grid)
   ========================================================================== */
.health-services-section {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 20px 40px;
  border-radius: 28px;
  margin-bottom: 25px;
}

.services-tabs-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.service-tab-btn {
  background-color: #ffffff;
  border: 1.5px solid rgba(0, 168, 236, 0.35);
  border-radius: 50px;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-blue);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 168, 236, 0.08);
  transition: all 0.25s ease;
  outline: none;
}

.service-tab-btn .tab-icon {
  display: inline-flex;
  align-items: center;
  color: var(--primary-cyan);
  transition: color 0.2s ease;
}

.service-tab-btn:hover {
  border-color: var(--primary-cyan);
  background-color: #f0f9ff;
  transform: translateY(-2px);
}

.service-tab-btn.active {
  background-color: var(--primary-cyan);
  color: #ffffff;
  border-color: var(--primary-cyan);
  box-shadow: 0 6px 20px rgba(0, 168, 236, 0.35);
}

.service-tab-btn.active .tab-icon {
  color: #ffffff;
}

.services-tab-card {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 38px 42px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 168, 236, 0.12);
}

.tab-panel {
  display: none;
  animation: fadeInTab 0.35s ease-out;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-badge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 20px;
}

.service-badge-item {
  background-color: #f0f7fc;
  border-left: 4.5px solid var(--primary-cyan);
  border-radius: 4px 12px 12px 4px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  cursor: default;
  user-select: none;
}

.service-badge-item:hover {
  transform: translateY(-2px);
  background-color: #e3f2fd;
  box-shadow: 0 4px 15px rgba(0, 168, 236, 0.14);
}

.badge-accent-icon {
  font-size: 16px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.badge-name {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: #2d3748;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   Section 7: Healthcare Services & OUR CLIENTS FEEDBACK (Final Section)
   ========================================================================== */
.feedback-services-section {
  width: 100%;
  background-color: #ebf6fe;
  padding: 40px 30px;
  border-radius: 28px;
  margin-bottom: 25px;
}

.feedback-services-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: flex-start;
}

/* Left Column: Healthcare Services */
.healthcare-col {
  display: flex;
  flex-direction: column;
}

.healthcare-heading {
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
  letter-spacing: -0.2px;
}

.healthcare-img-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
  margin-bottom: 18px;
}

.healthcare-img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}

.healthcare-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #475569;
  margin-bottom: 22px;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-cyan);
  color: #ffffff;
  padding: 10px 26px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 4px 14px rgba(0, 168, 236, 0.35);
  transition: all 0.25s ease;
}

.btn-read-more:hover {
  background-color: var(--primary-cyan-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 168, 236, 0.45);
}

/* Right Column: Feedback & Why Patients Trust Us */
.feedback-col {
  display: flex;
  flex-direction: column;
}

.feedback-heading {
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 38px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-feedback {
  background-color: var(--primary-cyan);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 8px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.feedback-main-text {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 23px;
  font-weight: 400;
  color: #475569;
  margin-bottom: 24px;
}

.trust-us-card {
  background-color: #d8edf8;
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: 0 6px 20px rgba(0, 168, 236, 0.06);
}

.trust-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.trust-desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 20px;
  font-weight: 400;
  color: #334155;
  margin-bottom: 10px;
}

.trust-desc:last-child {
  margin-bottom: 0;
}

/* ---------------- Responsive Styles ---------------- */
@media (max-width: 1200px) {
  .services-badge-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-card {
    min-height: 480px;
  }

  .hero-content {
    padding: 45px 35px;
    max-width: 580px;
  }

  .hero-doctor-img {
    width: 65%;
  }

  .about-speciality-grid,
  .specialists-cards-grid,
  .services-timeline-grid,
  .care-orbit-grid,
  .feedback-services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-main-img {
    height: 400px;
  }

  .card-img-wrap {
    height: 280px;
  }

  .services-doctor-img {
    height: 440px;
  }

  .services-badge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-page-wrapper {
    padding: 14px 12px 30px;
  }

  .hero-card {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
    min-height: auto;
    margin-bottom: 35px;
    background-color: #081626;
    background: linear-gradient(145deg, #091a2e 0%, #06111e 100%);
    overflow: hidden;
  }

  .hero-image-wrap,
  .hero-slider-dots {
    display: none !important;
  }

  .hero-content {
    order: 1;
    padding: 36px 20px 24px 20px;
    max-width: 100%;
    height: 450px;

  }

  .hero-title,
  .section-main-heading,
  .care-main-title,
  .healthcare-heading {
    font-size: 28px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
  }

  .hero-desc,
  .about-text-p1,
  .about-text-p2,
  .section-subtitle,
  .care-desc-p1,
  .care-desc-p2,
  .healthcare-desc {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
  }

  .hero-actions,
  .care-badges-row {
    width: 100%;
  }

  .btn-hero-appointment,
  .btn-hero-readmore,
  .care-pill-badge,
  .btn-read-more {
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 10px 18px;
    font-size: 14px;
  }

  .hero-floating-card {
    position: static;
    order: 2;
    width: 100%;
    border-radius: 0 0 20px 20px;
    border-top: none;
    border-left: none;
    padding: 14px 20px;
    animation: none !important;
    transform: none !important;
  }

  .about-main-img {
    height: 320px;
  }

  .doctor-profile-card {
    position: static;
    max-width: 100%;
    border-radius: 0 0 20px 20px;
    border-top: none;
    border-left: none;
  }

  .card-img-wrap {
    height: 240px;
  }

  .card-info-cutout {
    position: static;
    max-width: 100%;
    border-radius: 0 0 20px 20px;
    border-top: none;
    border-right: none;
  }

  .services-doctor-img {
    height: 340px;
  }

  /* Orbit Wheel Mobile Scaling */
  .orbit-wheel-wrapper {
    width: 340px;
    height: 340px;
    margin: 0 auto;
  }

  .orbit-center-hub {
    width: 160px;
    height: 160px;
    padding: 14px;
  }

  .hub-title {
    font-size: 14px;
  }

  .hub-desc {
    font-size: 10.5px;
    line-height: 15px;
  }

  .orbit-node {
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%) rotate(calc(var(--node-idx) * 45deg)) translateY(-125px) rotate(calc(var(--node-idx) * -45deg));
  }

  .orbit-node:hover,
  .orbit-node.active {
    transform: translate(-50%, -50%) rotate(calc(var(--node-idx) * 45deg)) translateY(-125px) rotate(calc(var(--node-idx) * -45deg)) scale(1.15);
  }

  .node-label {
    font-size: 8px;
  }

  /* Health Problems Section */
  .services-tab-card {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .services-badge-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-tab-btn {
    width: 100%;
    justify-content: center;
  }

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

  .badge-feedback {
    font-size: 18px;
  }

  .about-speciality-section,
  .services-marquee-section,
  .specialists-grid-section,
  .care-orbit-section,
  .health-services-section,
  .feedback-services-section {
    padding: 24px 16px !important;
    border-radius: 20px !important;
  }
}