@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --heading-color: rgb(255, 91, 91);
  --text-color: rgb(40, 40, 40);
  --background: rgb(255, 255, 255);
  --secondary-background: rgb(245, 245, 245);
  --border-color: rgb(223, 223, 223);
  --primary-button-bg: rgb(255, 91, 91);
  --primary-button-text: rgb(255, 255, 255);
  --secondary-button-bg: rgb(243, 255, 52);
  --secondary-button-text: rgb(40, 40, 40);
  --section-bg-pink: #fff2f2;
  --section-bg-peach: #ffebde;

  --heading-font-family: 'Bricolage Grotesque', sans-serif;
  --text-font-family: 'Inter', sans-serif;

  /* Typography Scale */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;

  /* Layout container (Shopify-like) */
  --container-max-width: 1600px;
  --container-gutter: 24px;
}

@media screen and (min-width: 741px) {
  :root {
    --container-gutter: 40px;
  }
}

body {
  font-family: var(--text-font-family);
  font-size: var(--text-base);
  color: var(--text-color);
  background-color: var(--background);
  line-height: 1.6;
}

p, ul li, ol li {
  font-size: var(--text-base);
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
  font-family: var(--heading-font-family);
  color: var(--heading-color);
  font-weight: 600;
  text-transform: capitalize;
}

/* Announcement Bar */
.announcement-bar {
  background-color: #ffd1d1;
  color: #000;
  text-align: center;
  padding: 8px 0;
  font-size: var(--text-base);
}

/* Header */
.header {
  background-color: var(--background);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.header .nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 10px 15px;
}

.header .nav-link:hover {
  color: var(--heading-color);
}

.btn-primary {
  background-color: var(--primary-button-bg);
  border-color: var(--primary-button-bg);
  color: var(--primary-button-text);
  border-radius: 8px;
  font-weight: 600;
  padding: 10px 24px;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #e55252;
  border-color: #e55252;
}

/* Custom Hero Section (Margin by Margin) */
.custom-hero-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  /* Wider hero like main site */
  max-width: 1500px;
  width: 100%;
  margin: 120px auto 100px;
  /* The pink background is directly on wrapper */
  background-color: var(--section-bg-pink);
  border-radius: 40px;
  padding: 0;
  overflow: visible;
}

.custom-hero-image {
  flex: 0 0 auto;
  width: 48%;
  max-width: 640px;
  position: relative;
  z-index: 2;
  margin-left: -2%;
  /* Float outside the pink panel (top + bottom) */
  margin-top: -100px;
  margin-bottom: -100px;
}

.custom-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.custom-hero-content {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 60px 4% 60px 5%;
  min-width: 0;
  max-width: 100%;
  word-wrap: break-word;
}

.custom-hero-subtitle {
  font-family: var(--text-font-family);
  font-size: 1.5em;
  font-weight: 500;
  color: #000;
  margin: 0;
  margin-block-start: 0 !important;
  letter-spacing: 0.3px;
}

.custom-hero-title {
  font-family: var(--heading-font-family);
  font-size: 34px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 20px;
  word-wrap: break-word;
  max-width: 100%;
}

.custom-hero-target {
  font-family: var(--text-font-family);
  font-size: clamp(18px, 2vw, 24px); /* Kept to maintain responsiveness, adjust if needed */
  font-weight: 800;
  color: #000;
  margin: 4px 0 0;
  letter-spacing: 0.2px;
}

.custom-hero-dates {
  font-family: var(--text-font-family);
  font-size: clamp(12px, 1.2vw, 15px);
  
  color: #1a1a1a;
  margin-bottom: 45px;
  line-height: 1.8;
}


.custom-hero-dates hr {
  width: 100%;
  border: none;
  border-top: 1px solid #000; /* or any color */
  margin: 10px 0;
}

.text-wrap {
  display: inline-block;
}

.text-wrap hr {
  width: 100%;
}
.custom-hero-dates p {
  padding-bottom:5px;
  font-weight:500;
  font-size:14px;

 
  margin: 0;
}

.custom-hero-features {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-feature-item {
  flex: 1;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-feature-item img {
  width: clamp(28px, 3vw, 36px);
  height: clamp(28px, 3vw, 36px);
  object-fit: contain;
}

.hero-feature-item p {
  font-family: var(--text-font-family);
  font-size: clamp(8px, 1vw, 11px);
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

.hero-feature-divider {
  width: 1px;
  height: 45px;
  background-color: #dcdcdc;
  margin-top: 5px;
}

/* Responsive Custom Hero */
@media (max-width: 991px) {
  .custom-hero-wrapper {
    flex-direction: column;
    margin: 80px auto 40px;
    padding: 0;
  }

  .custom-hero-image {
    width: 90%;
    max-width: 550px;
    margin: 0 auto;
    margin-top: -60px;
    margin-bottom: 20px;
  }

  .custom-hero-content {
    padding: 20px 30px 40px;
    width: 100%;
  }

  .custom-hero-features {
    gap: 10px;
  }
  
  .hero-feature-divider {
    display: none;
  }
}

@media (max-width: 576px) {
  .custom-hero-title {
    font-size: clamp(24px, 3vw, 28px);
  }
}

/* Needs & Concerns Grid */
.mff-blocks {
  margin: 20px 0;
}

.ai-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

@media (max-width: 1199px) {
  .ai-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ai-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .ai-feature-grid {
    grid-template-columns: 1fr;
  }
}

.ai-feature-card {
  border-radius: 12px;
  padding: 24px 15px;
  text-align: center;
  height: 100%;
}

.ai-feature-card h3 {
  font-family: var(--text-font-family);
  font-size: var(--text-base);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.ai-feature-card p {
  font-family: var(--text-font-family);
  font-size: var(--text-sm);
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Profile Section */
.heart-behind-section {
  position: relative;
  background-color: var(--section-bg-peach);
  padding: 80px 0;
  margin-top: 25px;
  margin-bottom: 25px;
}

.heart-behind-section::before,
.heart-behind-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 20px;
  background-size: 40px 40px;
  background-repeat: repeat-x;
  z-index: 1;
}

.heart-behind-section::before {
  top: -20px;
  background-image: radial-gradient(circle at 20px 20px, var(--section-bg-peach) 19px, transparent 20px);
  background-position: 0 0;
}

.heart-behind-section::after {
  bottom: -20px;
  background-image: radial-gradient(circle at 20px 20px, var(--section-bg-peach) 19px, transparent 20px);
  background-position: 0 -20px;
}

.heart-behind-title {
  font-size: clamp(32px, 4vw, 36px);
  margin-bottom: 20px;
}

.heart-behind-text {
  font-size: var(--text-base);
  margin-bottom: 30px;
}

/* Health Industry */
.health-industry-section {
  padding: 60px 0;
  text-align: center;
}

.health-industry-heading {
  font-size: clamp(32px, 4vw, 36px);
  margin-bottom: 20px;
}

.health-industry-text {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: var(--text-lg);
}

.health-industry-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}

/* Demand Card Section */
.demand-card {
  display: flex;
  background-color: var(--heading-color);
  border-radius: 20px;
  overflow: hidden;
}

.demand-content {
  flex: 1;
  padding: 60px 40px;
}

.demand-image {
  flex: 1;
  background-color: #fdf5f5; /* Very light pink */
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.demand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .demand-card {
    flex-direction: column;
  }
}

/* Video Testimonials Card */
.testimonials-card {
  background-color: var(--heading-color);
  border-radius: 20px;
  padding: 60px 40px;
}

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

@media (max-width: 992px) {
  .qtv-blocks {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .qtv-blocks {
    grid-template-columns: 1fr;
  }
}

.qtv-block-video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9/16;
  border: 4px solid white; /* Adding white border to match screenshot */
}

.qtv-block-video img,
.qtv-block-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

/* What you will gain */
.what-you-gain-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .what-you-gain-blocks {
    grid-template-columns: 1fr;
  }
}

.wyg-block-title {
  font-size: var(--text-xl);
  margin-bottom: 15px;
}

/* Course Curriculum */
.course-curriculum-section {
  background-color: #fff0f0;
  padding: 60px 0;
}

.course-curriculum-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .course-curriculum-list {
    grid-template-columns: 1fr;
  }
}

/* Course Timeline */
.course-timeline-inner {
  position: relative;
  margin-top: 40px;
}

/* Footer */
.footer {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--heading-color);
}

.footer-socials a:hover {
  opacity: 0.8;
}

/* What You Will Gain Section */
.what-you-gain-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
  row-gap: 40px;
  text-align: left;
}

@media (max-width: 991px) {
  .what-you-gain-blocks {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .what-you-gain-blocks {
    grid-template-columns: 1fr;
  }
}

.wyg-block {
  position: relative;
  padding-top: 15px;
}

.wyg-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--heading-color); /* The pink line */
}

.wyg-block-title {
  color: var(--heading-color);
  font-family: var(--text-font-family);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.wyg-block p {
  font-family: var(--text-font-family);
  color: #4a4a4a;
  font-size: var(--text-base);
  line-height: 1.6;
  margin: 0;
}

/* Course Curriculum Section */
.course-curriculum-section {
  background-color: rgb(255, 240, 240);
  padding: 80px 0;
}

.course-curriculum-list {
  list-style: none;
  padding: 0;
  margin: 50px 0;
  column-count: 2;
  column-gap: 50px;
}

@media (max-width: 768px) {
  .course-curriculum-list {
    column-count: 1;
  }
}

.course-curriculum-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  break-inside: avoid;
}

.course-curriculum-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--heading-color);
  font-size: var(--text-base);
  font-weight: bold;
}

.course-curriculum-list p {
  font-family: var(--text-font-family);
  font-size: var(--text-base);
  color: #333;
  margin: 0;
  line-height: 1.6;
}

.course-curriculum-list strong {
  color: #1a1a1a;
  font-weight: 700;
}

/* Custom Alternating Timeline */
.custom-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.custom-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #ffb3b3;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.timeline-icon {
  width: 36px;
  height: 36px;
  background-color: var(--heading-color);
  border: 4px solid #ffe6e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  justify-self: center;
  margin-top: 12px;
  box-sizing: content-box;
}

.timeline-icon svg {
  width: 20px !important;
  height: 20px !important;
}

.timeline-content {
  background-color: #fff9f9;
  padding: 24px;
  border-radius: 8px;
  position: relative;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 34px;
  width: 14px;
  height: 14px;
  background-color: #fff9f9;
  transform: translateY(-50%) rotate(45deg);
}

.left-card .timeline-content {
  border-right: 2px solid var(--heading-color);
  text-align: left;
}

.left-card .timeline-content::before {
  right: -8px;
  border-top: 2px solid var(--heading-color);
  border-right: 2px solid var(--heading-color);
}

.right-card .timeline-content {
  border-left: 2px solid var(--heading-color);
  text-align: left;
}

.right-card .timeline-content::before {
  left: -8px;
  border-bottom: 2px solid var(--heading-color);
  border-left: 2px solid var(--heading-color);
}

.timeline-empty-space {
  margin-top: 22px;
}

.left-card .timeline-empty-space {
  text-align: left;
}

.right-card .timeline-empty-space {
  text-align: right;
}

.timeline-label {
  color: var(--heading-color);
  font-weight: 700;
  font-size: var(--text-lg);
}

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

.timeline-list li {
  font-family: var(--text-font-family);
  font-size: var(--text-sm);
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.timeline-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .custom-timeline::before {
    left: 20px;
    transform: none;
  }
  .timeline-item {
    display: flex;
    flex-direction: column;
    padding-left: 50px;
    position: relative;
    margin-bottom: 30px;
  }
  .timeline-empty-space {
    order: 1;
    margin-bottom: 10px;
    text-align: left !important;
    margin-top: 0;
  }
  .timeline-content {
    order: 2;
    border-left: 2px solid var(--heading-color) !important;
    border-right: none !important;
    width: 100%;
  }
  .timeline-content::before {
    left: -8px !important;
    right: auto !important;
    border-top: none !important;
    border-right: none !important;
    border-bottom: 2px solid var(--heading-color) !important;
    border-left: 2px solid var(--heading-color) !important;
  }
  .timeline-icon {
    position: absolute;
    left: 0; /* Adjusted slightly so it stays centered over the line */
    top: 0;
    margin-top: 12px;
  }
}

/* Who This Training Is For Section */
.training-for-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.training-for-list li {
  font-family: var(--text-font-family);
  font-size: var(--text-sm);
  color: #333;
  margin-bottom: 8px;
  line-height: 1.5;
}

.training-for-list li::marker {
  font-size: var(--text-xs);
  color: #333;
}

/* FAQ Section */
.faq-section {
  position: relative;
}

.faq-wave-top {
  display: block;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 24'%3E%3Cpath d='M0,24 L0,12 A12,12 0 0,0 20,12 A12,12 0 0,0 40,12 L40,24 Z' fill='%23ff5b5b'/%3E%3C/svg%3E");
  background-size: 40px 24px;
  background-repeat: repeat-x;
  background-position: bottom;
  margin-bottom: -1px;
}

.faq-wave-bottom {
  display: block;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 24'%3E%3Cpath d='M0,0 L0,12 A12,12 0 0,1 20,12 A12,12 0 0,1 40,12 L40,0 Z' fill='%23ff5b5b'/%3E%3C/svg%3E");
  background-size: 40px 24px;
  background-repeat: repeat-x;
  background-position: top;
  margin-top: -1px;
}

.faq-body {
  background-color: var(--heading-color);
  padding-bottom: 40px;
}

.faq-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0 !important;
}

.faq-accordion .accordion-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.faq-accordion .accordion-button {
  background: transparent;
  color: #fff;
  font-family: var(--text-font-family);
  font-size: var(--text-base);
  font-weight: 500;
  padding: 20px 0;
  box-shadow: none;
  border: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

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

.faq-accordion .accordion-button.collapsed {
  color: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: #fff;
}

.faq-accordion .accordion-body {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--text-font-family);
  font-size: var(--text-sm);
  padding: 0 0 20px 0;
  line-height: 1.6;
}

/* Contact Form Section */
.contact-section {
  /* Add separation from FAQ (prevents overlap with floating image) */
  margin-top: 120px;
  padding: 40px 0 60px;
  background: #fff;
  position: relative;
}

.contact-section .container {
  max-width: var(--container-max-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-gutter);
  padding-right: var(--container-gutter);
}

.contact-image-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -75%);
  z-index: 2;
  width: min(900px, 92%);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.contact-top-image {
  max-width: 793px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.08));
}

.contact-blob {
  position: relative;
  width: 100%;
  /* Adjust this to control blob width (height stays content-driven) */
  max-width: var(--contact-blob-max-width, 1500px);
  margin: 0 auto;
  padding: 0;
  background-image: url('../images/contactus.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.contact-blob-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 82px 60px 44px;
}

.contact-form {
  width: 100%;
  /* Keep form safely inside the blob */
  max-width: 680px;
}

.contact-form .row {
  --bs-gutter-x: 14px;
  --bs-gutter-y: 14px;
}

.contact-subtitle {
  font-family: var(--text-font-family);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.contact-heading {
  font-family: var(--heading-font-family);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
}

.contact-input {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  border-radius: 6px !important;
  color: #fff !important;
  font-family: var(--text-font-family);
  font-size: 15px;
  padding: 12px 14px !important;
}

.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.9) !important;
}

.contact-input:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) !important;
  border-color: #fff !important;
}

.contact-textarea {
  resize: none;
}

.contact-submit-btn {
  background: #fff;
  color: #000;
  font-family: var(--text-font-family);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 40px;
  border-radius: 50px;
  border: 1.5px solid #000;
  box-shadow: 2px 3px 0px #000;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  background: #f0f0f0;
  box-shadow: 1px 2px 0px #000;
  transform: translateY(1px);
}

@media (max-width: 768px) {
  .contact-blob-inner {
    padding: 76px 20px 36px;
  }

  .contact-form {
    max-width: 560px;
  }

  .contact-image-wrapper {
    transform: translate(-50%, -58%);
    width: min(820px, 94%);
  }
}

/* ===========================================
   COMPREHENSIVE RESPONSIVE STYLES
   =========================================== */

/* ---------- Large Tablets (max-width: 991px) ---------- */
@media (max-width: 991px) {
  .heart-behind-section {
    padding: 50px 0;
  }

  .demand-content {
    padding: 40px 24px;
  }

  .testimonials-card {
    padding: 40px 24px;
  }

  .health-industry-section {
    padding: 40px 0;
  }
}

/* ---------- Tablets & Small Screens (max-width: 768px) ---------- */
@media (max-width: 768px) {
  .announcement-bar {
    font-size: var(--text-sm);
    padding: 6px 10px;
  }

  .header .nav-link {
    padding: 8px 10px;
    font-size: var(--text-sm);
  }

  .custom-hero-wrapper {
    border-radius: 20px;
  }

  .custom-hero-content {
    padding: 20px 16px;
  }

  .custom-hero-features {
    gap: 8px;
  }

  .hero-feature-item {
    min-width: 60px;
  }

  .ai-feature-card {
    padding: 18px 12px;
  }

  .heart-behind-section {
    padding: 40px 0;
  }

  .heart-behind-title {
    font-size: clamp(24px, 5vw, 32px);
  }

  .health-industry-heading {
    font-size: clamp(24px, 5vw, 32px);
  }

  .health-industry-text {
    font-size: var(--text-base);
  }

  .demand-content {
    padding: 30px 20px;
  }

  .demand-content h3 {
    font-size: clamp(22px, 4vw, 28px);
  }

  .testimonials-card {
    padding: 30px 16px;
    border-radius: 14px;
  }

  .wyg-block-title {
    font-size: var(--text-base);
  }

  .course-curriculum-section {
    padding: 40px 0;
  }

  .training-for-list li {
    font-size: var(--text-sm);
  }

  .faq-accordion .accordion-button {
    font-size: var(--text-sm);
    padding: 16px 0;
  }

  .contact-heading {
    font-size: clamp(22px, 5vw, 30px);
  }

  .contact-submit-btn {
    padding: 10px 30px;
    font-size: var(--text-sm);
  }

  .footer {
    padding: 40px 0;
  }
}

/* ---------- Small Phones (max-width: 576px) ---------- */
@media (max-width: 576px) {
  .custom-hero-title {
    font-size: clamp(22px, 6vw, 28px);
  }

  .custom-hero-subtitle {
    font-size: 13px;
  }

  .custom-hero-target {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .custom-hero-dates {
    margin-bottom: 25px;
    font-size: 12px;
  }

  .custom-hero-features {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-feature-item {
    flex: 0 0 calc(50% - 8px);
    min-width: unset;
  }

  .section .heading.h2 {
    font-size: clamp(20px, 5vw, 28px);
  }

  .heart-behind-title {
    font-size: clamp(22px, 6vw, 28px);
  }

  .heart-behind-text {
    font-size: var(--text-sm);
  }

  .health-industry-heading {
    font-size: clamp(22px, 5.5vw, 28px);
  }

  .health-industry-section .btn {
    font-size: var(--text-base) !important;
    padding: 12px 30px !important;
  }

  .demand-content {
    padding: 24px 16px;
  }

  .demand-content p {
    font-size: var(--text-sm);
  }

  .testimonials-card {
    padding: 24px 12px;
    border-radius: 12px;
  }

  .testimonials-card h2,
  .testimonials-card h3 {
    font-size: clamp(18px, 5vw, 24px);
  }

  .what-you-gain-blocks {
    column-gap: 20px;
    row-gap: 24px;
  }

  .course-curriculum-section {
    padding: 30px 0;
  }

  .course-curriculum-section .btn {
    font-size: var(--text-base) !important;
    padding: 12px 30px !important;
  }

  .timeline-content {
    padding: 16px;
  }

  .timeline-list li {
    font-size: var(--text-xs);
  }

  .training-for-list {
    padding-left: 16px;
  }

  .faq-accordion .accordion-button {
    font-size: var(--text-sm);
    padding: 14px 0;
  }

  .faq-accordion .accordion-body {
    font-size: var(--text-xs);
  }

  .contact-blob-inner {
    padding: 40px 14px 20px;
  }

  .contact-subtitle {
    font-size: var(--text-xs);
    letter-spacing: 1px;
  }

  .contact-heading {
    font-size: clamp(20px, 5vw, 26px);
    margin-bottom: 20px;
  }

  .contact-input {
    padding: 12px 14px !important;
    font-size: var(--text-sm) !important;
  }

  .btn-primary {
    padding: 8px 18px;
    font-size: var(--text-sm);
  }
}

/* ---------- Prevent horizontal overflow ---------- */
html, body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* Custom Footer */
.footer-custom {
  background-color: #212121;
  color: #ffffff;
  padding: 80px 0 60px;
  font-family: var(--text-font-family);
  position: relative;
  z-index: 10;
}
.footer-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  color: #ffffff;
  font-family: var(--text-font-family);
  text-transform: uppercase;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #d4d4d4;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #ffffff;
}

.social-icons-group {
  display: inline-flex;
  border: 1px solid #444;
  border-radius: 8px;
  overflow: hidden;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 40px;
  color: #ffffff;
  text-decoration: none;
  border-right: 1px solid #444;
  transition: background-color 0.3s;
}
.social-icon:last-child {
  border-right: none;
}
.social-icon:hover {
  background-color: #333;
  color: #ffffff;
}
.social-icon svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: none;
  padding-top: 0;
}

.currency-dropdown {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid #444;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #e0e0e0;
  background-color: #212121;
  transition: background-color 0.3s;
  min-width: 140px;
}
.currency-dropdown:hover {
  background-color: #333;
}

/* Floating Enroll Button */
.floating-enroll-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff5b5b;
  color: white;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 1050;
  text-decoration: none;
  font-family: var(--text-font-family);
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: background-color 0.3s, transform 0.3s;
}
.floating-enroll-btn:hover {
  background-color: #e55252;
  color: white;
  transform: translateX(-50%) scale(1.05);
}
