.ccs-section-heading {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
    position: relative;
   
}

.ccs-heading-icon {
    font-size: 28px;
    margin: 0 10px;
}

/* Optional: add underline with decorative dots */
.ccs-section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e04063, #ffcc33);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.ccs-pagination-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

.ccs-page {
  display: none;
}

.ccs-page.active {
  display: block;
}

.ccs-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

/* Reverse ONLY when needed */
.ccs-item.reverse {
  flex-direction: row-reverse;
}

.ccs-text {
  flex: 1;
}

.ccs-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #EB1551;
  font-style: italic;
}

.ccs-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}
.ccs-text .ccs-eligibility-list{
    color:#555;
}
.ccs-btn {
  display: inline-block;
  background: #e60044;
  color: #fff;
  padding: 12px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
}

.ccs-image {
  flex: 1;
  display: flex;
  align-items: center;
}
.ccs-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

.ccs-eligibility-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.ccs-eligibility-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #555;
}

/* ICON */
.ccs-eligibility-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #e60044;
  font-weight: bold;
  font-size: 16px;
}

/* Pagination */
.ccs-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

.page-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #795a63;
  background: transparent;
  cursor: pointer;
  padding: 0;
  color:#e60044;
}


.page-btn.active {
  background: #e60044;
  color:#fff;
}

@media (max-width: 768px) {
  .ccs-item,
  .ccs-item.reverse {
    flex-direction: column;
  }

  .ccs-image img {
    max-height: 280px;
  }
}

/* JOURNEY */
.journey-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffcde2, #fab3c5);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.journey-heading {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #222;
    position: relative;
}

.journey-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e04063, #ffcc33);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.journey-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.journey-column {
    flex: 1 1 400px;
}

.journey-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.journey-icon {
    font-size: 28px;
    margin-right: 15px;
    color: #ff3366; /* Primary color for icons */
    flex-shrink: 0;
}

.journey-content h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #222;
}

.journey-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .journey-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* FAQ */

.faq-header {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
    position: relative;
}

/* Decorative underline */
.faq-header::after {
  content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e04063, #ffcc33);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

.career-faq {
  padding: 60px 20px ;
}

.career-container {
  max-width: 900px;
  margin: auto;
}


/* Items */
.career-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

/* Question */
.career-question {
  width: 100%;
  padding: 18px 22px;
  background: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;               /* default text color */
  border: 1px solid #ccc;
}

/* Hover, Focus, Active – SAME STYLE */
.career-question:hover,
.career-question:focus,
.career-question:active {
  background: #e8144a;
  color: #fff;
  outline: none;
}

/* Icon color (optional) */
.career-question i {
  color: #da1b54;
}

/* Answer */
.career-answer {
  display: none;
  margin-top: 18px;
  padding: 22px 26px;
  /* background: #fff7f3;                 soft light background */
  /* border-radius: 10px; */
  color: #222121;
  line-height: 1.7;
  font-size: 15px;
  /* box-shadow: inset 0 0 0 1px #f0e6e2; */
  animation: fadeSlide 0.35s ease;
}

/* Show answer */
.career-item.active .career-answer {
  display: block;
}

/* Chevron rotation */
.career-item.active .fa-chevron-down {
  transform: rotate(180deg);
}

/* Smooth animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Icon animation */
.fa-chevron-down {
  transition: transform 0.3s ease;
}


/* Our Age Group Progrmas */
.age-group-programs {
  padding: 60px 20px;
  background-color: #fff5db;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.age-group-programs .program-heading {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
    margin-bottom: 40px;
    color: #222;
    position: relative;
}
.age-group-programs .program-heading:after{
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e04063, #ffcc33);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}
.age-group-programs .program-subheading {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}
.programs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.program-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  flex: 1 1 300px;
  max-width: 300px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
}

.program-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.program-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.program-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.program-card ul {
  list-style: disc;
  padding-left: 20px;
  text-align: left;
  color: #555;
  font-size: 14px;
}