/* Style Sheet For Jithu */
/* :root {
  --theme-color: #f7921f;
  --theme-color-rgb: 247, 146, 31;
  --second-theme-color: #223740;
  --second-theme-color-rgb: 34, 55, 64;
  --third-theme-color: #223740;
  --third-theme-color-rgb: 70, 91, 45;
  --title-color: #141414;
  --title-color-rgb: 20, 20, 20;
  --body-color: #535b5f;
  --body-color-rgb: 83, 91, 95;
  --black-color: #000000;
  --black-color-rgb: 0, 0, 0;
  --white-color: #ffffff;
  --white-color-rgb: 255, 255, 255;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --bg-color-1: #f7921f;
  --bg-color-1-rgb: 247, 146, 31;
  --bg-color-2: #223740;
  --bg-color-2-rgb: 34, 55, 64;
  --bg-color-3: #465b2d;
  --bg-color-3-rgb: 70, 91, 45;
  --bg-color-4: #141414;
  --bg-color-4-rgb: 20, 20, 20;
  --bg-color-5: #d3d2d2;
  --bg-color-5-rgb: 211, 210, 210;
  --bg-color-6: #cfcfcf;
  --bg-color-6-rgb: 207, 207, 207;
  --bg-color-7: #d9d9d9;
  --bg-color-7-rgb: 217, 217, 217;
  --bg-color-8: #fefefe;
  --bg-color-8-rgb: 254, 254, 254;
  --bg-color-9: #915612;
  --bg-color-9-rgb: 145, 86, 18;
  --bg-color-10: #dadada;
  --bg-color-10-rgb: 218, 218, 218;
  --bg-color-11: #f1eadb;
  --bg-color-11-rgb: 241, 234, 219;
  --bg-color-12: #43a32d;
  --bg-color-12-rgb: 67, 163, 45;
  --bg-color-13: #d80808;
  --bg-color-13-rgb: 217, 8, 8;
  --vs-border-color: #e0e0e0;
  --title-font: "Rubik", serif;
  --body-font: "Poppins", serif;
  --bricolage-font: "Bricolage Grotesque", serif;
  --poppins-font: "Poppins", serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1300px;
  --container-gutters: 30px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 80px;
  --ripple-ani-duration: 5s;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
} */

:root {
  --primary-color: #ff6b35;
  --secondary-color: #f7921f;
  --accent-color: #ffa600;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e9ecef;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --theme-color: #f7921f;
}

/* Content Section */
.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  justify-content: center;
  color: white;
}

.program-tag {
  background: rgba(255, 255, 255, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.program-tag i {
  font-size: 0.9rem;
}

.program-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.program-card h2 {
  color: var(--text-dark);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.program-card h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.program-card h3 {
  color: var(--text-dark);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.program-muted {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.program-info-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(200px, 1fr)
  );
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.program-info-chip {
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.program-info-chip:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.program-info-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.program-info-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.program-list {
  margin-top: 1rem;
  padding-left: 0;
  list-style: none;
}

.program-list li {
  padding: 0.75rem 0;
  padding-left: 0.5rem;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  gap: 0.5rem;
}

.program-list li:last-child {
  border-bottom: none;
}

/* .program-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 0.9rem;
} */

.program-flow-steps {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(240px, 1fr)
  );
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.program-step {
  background: linear-gradient(
    135deg,
    #fff 0%,
    var(--bg-light) 100%
  );
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.program-step:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.program-step-number {
  position: absolute;
  top: -15px;
  left: 1.5rem;
  background: var(--primary-color);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.program-step-label {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
  color: var(--text-dark);
}

.program-step-content {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.program-benefits-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(250px, 1fr)
  );
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.program-benefit {
  background: linear-gradient(
    135deg,
    #fff5f0 0%,
    #ffe8dc 100%
  );
  border: 2px solid #ffd5c5;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.program-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.program-benefit strong {
  display: block;
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.program-benefit-content {
  color: var(--text-dark);
  font-size: 0.95rem;
}

.program-price-box {
  background: linear-gradient(
    135deg,
    #fff8f0 0%,
    #ffe8dc 100%
  );
  border: 3px solid var(--accent-color);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 1.5rem;
}

.program-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.program-price-main {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.program-price-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.program-price-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 400px;
}

.program-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.program-price-badge {
  background: white;
  border: 2px solid var(--accent-color);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.program-testimonials {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  );
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.program-quote {
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
  border-radius: 10px;
  padding: 1.5rem;
  font-style: italic;
  position: relative;
}

.program-quote::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--primary-color);
  opacity: 0.2;
  font-size: 2rem;
}

.program-quote p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.program-quote-author {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 600;
}

.program-faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.program-faq-item:last-child {
  border-bottom: none;
}

.program-faq-q {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.program-faq-q::before {
  content: "Q: ";
  color: var(--primary-color);
  font-weight: 700;
}

.program-faq-a {
  font-size: 1rem;
  color: var(--text-muted);
  padding-left: 1.5rem;
}

/* Ensure parent containers don't block sticky positioning for program details */
section.container.my-3,
section.container.my-3 .row {
  overflow: visible !important;
}

section.container.my-3 .row {
  align-items: flex-start !important;
}

/* Ensure the sidebar column wrapper is set up correctly */
.program-sidebar-wrapper {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
}

/* Sticky sidebar */
.program-sidebar {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 100px;
  align-self: flex-start;
  height: fit-content;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  z-index: 10;
  width: 100%;
}

.program-sidebar-card {
  background: var(--bg-white);
  border-radius: 15px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.program-sidebar-card h3 {
  color: var(--text-dark);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.program-sidebar-line {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.program-batch-list {
  margin-top: 1rem;
}

.program-batch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.program-batch-row:hover {
  background: #e9ecef;
}

.program-batch-row:last-child {
  margin-bottom: 0;
}

.program-batch-status {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.85rem;
}

.program-location-list {
  margin-top: 1rem;
}

.program-location-row {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.program-location-row:last-child {
  border-bottom: none;
}

.program-location-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.program-location-address {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.program-footer-cta {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 10px;
  margin-top: 1.5rem;
}

.program-footer-cta a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.program-footer-cta a:hover {
  color: var(--theme-color);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .program-hero h1 {
    font-size: 1.75rem;
  }

  .program-hero {
    padding: 2rem 1.5rem;
  }

  .program-card {
    padding: 1.5rem;
  }

  .program-sidebar {
    position: static;
  }
}

.testimonial-slider {
  padding-bottom: 40px;
}

.testimonial-slider .swiper-pagination {
  bottom: 0 !important;
}
.testimonial-slider .swiper-pagination-bullet {
  background: rgb(247, 131, 36); /* your theme color */
  opacity: 0.6;
}
.testimonial-slider .swiper-pagination-bullet-active {
  opacity: 1;
}
/* Make sure pagination is below the slides */
.programs-slider .swiper-pagination {
  position: relative !important; /* move it out of absolute flow */
  margin-top: 20px; /* add space from slides */
  text-align: center;
}

/* Optional: make dots a bit bigger & themed */
.programs-slider .swiper-pagination-bullet {
  background: rgb(247, 131, 36); /* your theme color */
  opacity: 0.6;
}
.programs-slider .swiper-pagination-bullet-active {
  opacity: 1;
}
/* Itinerary Styles */
.program-expand-btn {
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}

.program-expand-btn:hover {
  color: var(--primary-color);
}

.program-itinerary-list {
  margin-top: 30px;
}

.program-itinerary-item {
  display: flex;
  gap: 0;
  position: relative;
  margin-bottom: 0;
}

.program-itinerary-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  position: relative;
  z-index: 2;
  margin-top: 5px;
}

.program-itinerary-line {
  position: absolute;
  left: 19.5px;
  top: 45px;
  bottom: -5px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--border-color) 0%,
    var(--border-color) 100%
  );
  border-left: 2px dashed var(--border-color);
  background: transparent;
}

.program-itinerary-item:last-child .program-itinerary-line {
  display: none;
}

.program-itinerary-content {
  flex: 1;
  padding-left: 20px;
  padding-bottom: 30px;
}

.program-itinerary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.program-itinerary-header:hover .program-itinerary-title {
  color: var(--primary-color);
}

.program-itinerary-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  transition: color 0.3s ease;
}

.program-toggle-btn {
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 0;
  line-height: 1;
}

.program-toggle-btn:hover {
  transform: scale(1.1);
}

.program-itinerary-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.program-itinerary-body.active {
  max-height: 500px;
  padding: 15px 0 5px 0;
}

.program-itinerary-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  padding-right: 50px;
}

@media (max-width: 768px) {
  .program-itinerary-body p {
    padding-right: 20px;
  }

  .program-itinerary-title {
    font-size: 16px;
    padding-right: 10px;
  }
}
