.color-white {
  color: #fff !important;
}
.color-blue {
  color: #2ec5b6 !important;
}
.color-black {
  color: #000 !important;
}
.grediant-background {
  background: linear-gradient(180deg, #fff 0%, #d4edff 100%) !important;
}
.gredient-button {
  padding: 10px 15px;
  gap: 10px;
  font-weight: 600;
  border-radius: 4px;
  background: linear-gradient(92deg, #ffa717 0.63%, #162549 99.85%);
  color: #fff;
  width: fit-content;
}
.common-padding {
  padding: 35px 0px;
}
.risque-heading {
  color: #fff;
  font-family: "Risque", cursive; /* Add fallback just in case */
  font-size: clamp(1rem, 4vw, 50px); /* Responsive font size */
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.title-text {
  color: #081f4f;
  font-family: Inter;
  font-size: clamp(1.5rem, 4vw, 50px); /* Responsive font size */
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.subtitle-text {
  color: #081f4f;
  font-family: Inter;
  font-size: clamp(1rem, 4vw, 32px); /* Responsive font size */
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.content-text {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.8rem, 2.2vw, 20px); /* Responsive font size */
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.ctc-button {
  padding: 10px 15px;
  gap: 10px;
  border-radius: 4px;
  background: #ffa717;
  color: #fff;
  font-family: Inter;
  font-size: clamp(0.5rem, 2.2vw, 28px);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: fit-content;
  text-decoration: none;
}
.ctc-button-slider {
  padding: 9px 20px;
  gap: 10px;
  border-radius: 4px;
  background: #ffa717;
  color: #fff;
  font-family: Inter;
  font-size: clamp(0.5rem, 2.2vw, 20px);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: fit-content;
  text-decoration: none;
  z-index: 3;
  position: relative;
  top: 35px;
}
@media only screen and (max-width: 576px) {
  .ctc-button-slider {
    padding: 9px 20px;
    gap: 10px;
    border-radius: 4px;
    background: #ffa717;
    color: #fff;
    font-family: Inter;
    font-size: clamp(0.5rem, 2.2vw, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: fit-content;
    text-decoration: none;
    z-index: 3;
    position: relative;
    top: 21px;
  }
}
.round-border {
  border-radius: 5px;
}
.text-justify {
  text-align: justify;
}

/* About Section CTA Button */

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #1b3cff;
  text-decoration: none;
  border-radius: 25px;
  background: rgba(27, 60, 255, 0.08);
  transition: all 0.3s ease;
}

.about-cta-btn .arrow {
  transition: transform 0.3s ease;
}

/* Hover */

.about-cta-btn:hover {
  background: #1b3cff;
  color: white;
}

.about-cta-btn:hover .arrow {
  transform: translateX(5px);
}

.placement-logo {
  width: 180px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placement-logo img {
  object-fit: contain;
}

.course-list {
  list-style: none;
  padding-left: 0;
}

.course-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}

.course-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #4c6ef5;
  font-weight: bold;
}
