/* Index homepage – theme #004c8f, gradients, depth. Layout/structure unchanged. */

.index-page {
  --index-primary: #004c8f;
  --index-primary-dark: #003d73;
  --index-primary-light: #0a6ed1;
  --index-primary-shadow: rgba(0, 76, 143, 0.1);
  --index-primary-shadow-strong: rgba(0, 76, 143, 0.18);
  --index-soft: #f5f9ff;
  --index-soft-2: #eef5ff;
  --index-soft-3: #eaf3ff;
}

/* ----- Page background: subtle gradient (no layout change) ----- */
.index-page .entry-content {
  background: linear-gradient(180deg, #fafcff 0%, #f5f9ff 30%, #eef5ff 60%, #f8fafc 100%) !important;
  background-attachment: scroll;
}

/* ----- Hero: modern mesh gradient (brand theme, soft glows, balanced) ----- */
.index-page .scroll-section .banner_slider_pagination_text {
  position: relative;
  overflow: hidden;
}
/* Hero photos sit under the dark overlay (see ::before z-index below) */
.index-page .scroll-section .index-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: #062a48;
}
.index-page .scroll-section .index-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.index-page .scroll-section .index-hero-img--desktop {
  display: block;
}
.index-page .scroll-section .index-hero-img--mobile {
  display: none;
}
@media (max-width: 767.98px) {
  .index-page .scroll-section .index-hero-img--desktop {
    display: none !important;
  }
  .index-page .scroll-section .index-hero-img--mobile {
    display: block !important;
    object-fit: contain;
    object-position: center bottom;
  }
  .index-page .scroll-section .index-hero-with-mesh[data-dedicated-mobile="true"] .index-hero-img--mobile {
    object-fit: cover;
    object-position: center center;
  }
}
.index-page .scroll-section .banner_slider_pagination_text::before {
  z-index: 1;
}
/* Mesh gradient layer: soft orbs and smooth brand blend */
.index-page .scroll-section .index-hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    /* Glowing orbs – primary/secondary theme */
    radial-gradient(ellipse 90% 70% at 15% 30%, rgba(0, 76, 143, 0.28) 0%, rgba(10, 110, 209, 0.12) 40%, transparent 70%),
    radial-gradient(ellipse 70% 90% at 88% 20%, rgba(10, 110, 209, 0.22) 0%, rgba(0, 76, 143, 0.08) 45%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 75% 75%, rgba(234, 243, 255, 0.2) 0%, rgba(10, 110, 209, 0.06) 50%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 30% 85%, rgba(0, 76, 143, 0.15) 0%, transparent 55%),
    /* Base mesh blend */
    linear-gradient(145deg, rgba(0, 76, 143, 0.14) 0%, transparent 35%, rgba(10, 110, 209, 0.1) 65%, rgba(234, 243, 255, 0.08) 100%);
  background-size: 100% 100%;
  background-position: 0 0;
  opacity: 1;
  transition: opacity 0.6s ease;
}
/* Subtle abstract highlight streak */
.index-page .scroll-section .index-hero-mesh::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 100% at 95% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
/* Soft vignette for depth and focus */
.index-page .scroll-section .index-hero-mesh::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(0, 76, 143, 0.08) 100%);
  pointer-events: none;
}
.index-page .scroll-section .banner_slider_pagination_text::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 76, 143, 0.05) 0%, rgba(10, 110, 209, 0.03) 50%, rgba(234, 243, 255, 0.06) 100%);
}
.index-page .scroll-section .banner_slider_pagination_text .container {
  position: relative;
  z-index: 3;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
/* Optional: very subtle motion for mesh (respect reduced motion) */
@media (prefers-reduced-motion: no-preference) {
  .index-page .scroll-section .index-hero-with-mesh .index-hero-mesh {
    animation: index-hero-mesh-shift 18s ease-in-out infinite;
  }
}
@keyframes index-hero-mesh-shift {
  0%, 100% { background-position: 0 0; opacity: 1; }
  50% { background-position: 2% 1%; opacity: 0.98; }
}
@media (max-width: 767px) {
  .index-page .scroll-section .index-hero-mesh {
    background:
      radial-gradient(ellipse 100% 60% at 20% 30%, rgba(0, 76, 143, 0.22) 0%, transparent 55%),
      radial-gradient(ellipse 80% 80% at 85% 25%, rgba(10, 110, 209, 0.16) 0%, transparent 55%),
      linear-gradient(145deg, rgba(0, 76, 143, 0.1) 0%, transparent 40%, rgba(10, 110, 209, 0.06) 100%);
  }
}

/* ----- Ticker: primary with soft gradient ----- */
.index-page .index-ticker.ticker_section {
  background: linear-gradient(90deg, var(--index-primary) 0%, var(--index-primary) 100%) !important;
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(0, 76, 143, 0.25);
  margin-top: 0 !important;
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  opacity: 1 !important;
  filter: none !important;
}
.index-page .index-ticker .ticker-track span {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* ----- Section spacing: unchanged (40–48px) ----- */
.index-page .section-padding {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
@media (min-width: 768px) {
  .index-page .section-padding {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
.index-page .team_award.taoEpjUieOxq {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
@media (min-width: 768px) {
  .index-page .team_award.taoEpjUieOxq {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
/* ----- CSR / impact band (split image + teal panel) ----- */
.index-page .index-csr-section {
  --index-csr-bg: #afecef;
  padding-top: clamp(1.75rem, 4vw, 3rem) !important;
  padding-bottom: clamp(1.75rem, 4vw, 3rem) !important;
  background-color: #afecef !important;
  background-image: none !important;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  isolation: isolate;
}
.index-page .index-csr-section .container-fluid {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
/* Reveal: opacity only (no translateY on section — avoids blurry scaled photos inside) */
.index-page .index-csr-section.index-reveal {
  transform: none !important;
  transition: opacity 0.45s ease !important;
}
.index-page .index-csr-section.index-reveal:not(.in-view) {
  opacity: 0;
}
.index-page .index-csr-section.index-reveal.in-view {
  opacity: 1;
}
.index-page .index-csr-col-image {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding-left: 0;
  margin-left: 0;
}
@media (min-width: 992px) {
  .index-page .index-csr-col-image {
    align-self: stretch;
    min-height: 100%;
  }
}
.index-page .index-csr-image-wrap {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  flex: 1 1 auto;
  min-height: 240px;
  overflow: hidden;
  background-color: #afecef;
}
@media (max-width: 991.98px) {
  .index-page .index-csr-image-wrap {
    aspect-ratio: 16 / 10;
    min-height: 220px;
  }
}
@media (min-width: 992px) {
  .index-page .index-csr-row {
    min-height: min(440px, 56vh);
  }
  .index-page .index-csr-image-wrap {
    min-height: 100%;
    height: 100%;
  }
}
/* Photo: flush left, anchor subject left; fade only in right half of image column (aligns blend ~banner center) */
.index-page .index-csr-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media (max-width: 991.98px) {
  .index-page .index-csr-image {
    object-position: 45% 42%;
  }
}
/* Gradient covers only the RIGHT half of the image column → sharp photo left, blend toward #AFECEF at column edge */
.index-page .index-csr-image-wrap::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(175, 236, 239, 0) 0%,
    rgba(175, 236, 239, 0.2) 28%,
    rgba(175, 236, 239, 0.65) 72%,
    #afecef 100%
  );
}
@media (max-width: 991.98px) {
  .index-page .index-csr-image-wrap::after {
    left: 40%;
    background: linear-gradient(
      to right,
      rgba(175, 236, 239, 0) 0%,
      rgba(175, 236, 239, 0.35) 50%,
      #afecef 100%
    );
  }
}
.index-page .index-csr-col-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #afecef;
  box-sizing: border-box;
  padding: 0;
}
.index-page .index-csr-content-inner {
  padding: 2rem 1.5rem 2.5rem;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: auto;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .index-page .index-csr-content-inner {
    padding: 2.5rem 3rem 2.5rem 0.5rem;
    max-width: 520px;
  }
}
@media (min-width: 1200px) {
  .index-page .index-csr-content-inner {
    padding: 3rem 3.5rem 3rem 1rem;
    max-width: 560px;
  }
}
.index-page .index-csr-heading {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 700;
  color: #003d73;
  line-height: 1.25;
  margin: 0 0 1rem;
}
.index-page .index-csr-lead {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: #2a3f4f;
  line-height: 1.55;
  margin: 0 0 1.5rem;
  max-width: 52ch;
}
.index-page .index-csr-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1rem;
  width: 100%;
  max-width: 100%;
  margin: 0 0 1.75rem;
  box-sizing: border-box;
}
@media (min-width: 576px) {
  .index-page .index-csr-stats-grid {
    gap: 1.25rem 1.25rem;
  }
}
.index-page .index-csr-section .index-csr-stat-card {
  background: #fff !important;
  border-radius: 12px !important;
  border: 1px solid rgba(0, 76, 143, 0.08) !important;
  box-shadow: 0 4px 14px rgba(0, 45, 90, 0.08) !important;
  padding: 1rem 0.65rem;
  text-align: center;
  min-width: 0;
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.index-page .index-csr-section .index-csr-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 45, 90, 0.12) !important;
}
.index-page .index-csr-stat-value {
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: var(--index-primary, #004c8f);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}
.index-page .index-csr-stat-value span {
  font-weight: 700;
}
.index-page .index-csr-stat-suffix {
  font-size: 0.65em;
  font-weight: 700;
}
.index-page .index-csr-stat-label {
  font-size: 0.8rem;
  color: #5a6b7a;
  margin: 0;
  line-height: 1.35;
}
.index-page .index-csr-cta-wrap {
  margin: 0;
}
.index-page .index-csr-btn {
  display: inline-block;
  background: var(--index-primary, #004c8f);
  color: #fff !important;
  padding: 0.55rem 1.35rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 76, 143, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}
.index-page .index-csr-btn:hover {
  background: var(--index-primary-dark, #003d73);
  color: #fff !important;
  transform: translateY(-1px);
}

/* ----- Section backgrounds: soft gradients (#f5f9ff, #eef5ff, #eaf3ff) ----- */
.index-page .team_award.taoEpjUieOxq {
  background: linear-gradient(180deg, var(--index-soft) 0%, #fff 50%, var(--index-soft-2) 100%) !important;
}
.index-page .features_10.bg-gradient {
  background: linear-gradient(180deg, var(--index-soft-2) 0%, #fff 35%, var(--index-soft) 100%) !important;
}
.index-page .features_11.bg-gradient {
  background: linear-gradient(180deg, var(--index-soft) 0%, #fff 100%) !important;
}
/* ----- Career guidance (IT jobs) — two-column + YouTube ----- */
.index-page .index-career-guidance.events-two-col.jsfBsqtXKpEj {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(0, 76, 143, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(10, 110, 209, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #f0f6fc 0%, #fafcff 45%, #f5f9ff 100%) !important;
}
.index-page .index-career-guidance::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23004c8f' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.9;
}
.index-page .index-career-guidance .container {
  position: relative;
  z-index: 1;
}
.index-page .index-career-guidance.section-padding {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
@media (min-width: 768px) {
  .index-page .index-career-guidance.section-padding {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
}
.index-page .index-career-guidance__row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: clamp(20px, 3vw, 28px);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 45, 90, 0.1),
    0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 76, 143, 0.1);
  background: #fff;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.index-page .index-career-guidance__row:hover {
  box-shadow:
    0 28px 72px rgba(0, 45, 90, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.06);
}
.index-page .index-career-guidance__col-content {
  display: flex;
  flex-direction: column;
}
.index-page .index-career-guidance__content {
  padding: clamp(1.1rem, 2.5vw, 1.85rem);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.index-page .index-career-guidance__kicker {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--index-primary);
}
.index-page .index-career-guidance__title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #0f172a;
  text-wrap: balance;
}
.index-page .index-career-guidance__lead {
  margin: 0 0 0.85rem;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.5;
  color: #475569;
  max-width: 36rem;
}
.index-page .index-career-guidance__lead strong {
  color: #1e293b;
  font-weight: 700;
}
.index-page .index-career-guidance__list {
  list-style: none;
  margin: 0 0 0.95rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.index-page .index-career-guidance__item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.45rem 0.55rem;
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(0, 76, 143, 0.08);
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.index-page .index-career-guidance__item:hover {
  transform: translateX(4px);
  border-color: rgba(0, 76, 143, 0.18);
  box-shadow: 0 8px 24px rgba(0, 45, 90, 0.08);
}
.index-page .index-career-guidance__item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  color: var(--index-primary);
  background: rgba(0, 76, 143, 0.08);
  border: 1px solid rgba(0, 76, 143, 0.1);
}
.index-page .index-career-guidance__item-text {
  font-size: 0.82rem;
  line-height: 1.42;
  color: #334155;
  padding-top: 0.05rem;
}
.index-page .index-career-guidance__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
  margin-top: auto;
  padding-top: 0.25rem;
}
.index-page .index-career-guidance__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.index-page .index-career-guidance__cta--primary {
  background: linear-gradient(135deg, var(--index-primary) 0%, var(--index-primary-light) 100%);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(0, 76, 143, 0.35);
}
.index-page .index-career-guidance__cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 76, 143, 0.42);
  color: #fff !important;
}
.index-page .index-career-guidance__cta--ghost {
  background: transparent;
  color: var(--index-primary) !important;
  border: 2px solid rgba(0, 76, 143, 0.25);
}
.index-page .index-career-guidance__cta--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--index-primary);
  background: rgba(0, 76, 143, 0.06);
  color: var(--index-primary-dark) !important;
}
.index-page .index-career-guidance__cta:focus-visible {
  outline: 2px solid var(--index-primary);
  outline-offset: 3px;
}
.index-page .index-career-guidance__col-media {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  background: linear-gradient(160deg, #e2ecf8 0%, #d4e4f4 40%, #c8daf0 100%);
  border-top: 1px solid rgba(0, 76, 143, 0.1);
}
@media (min-width: 768px) {
  .index-page .index-career-guidance__col-media {
    border-top: none;
    border-left: 1px solid rgba(0, 76, 143, 0.1);
    min-height: 0;
  }
}
@media (max-width: 767.98px) {
  .index-page .index-career-guidance__col-media {
    min-height: auto;
  }
}
.index-page .index-career-guidance__media {
  padding: clamp(0.85rem, 2vw, 1.35rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
}
.index-page .index-career-guidance__media-frame {
  position: relative;
  border-radius: clamp(12px, 1.5vw, 18px);
  overflow: hidden;
  box-shadow:
    0 16px 48px rgba(0, 35, 70, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  aspect-ratio: 16 / 9;
  min-height: 150px;
  max-height: 240px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.index-page .index-career-guidance__media-frame:hover {
  transform: scale(1.02);
  box-shadow:
    0 22px 56px rgba(0, 35, 70, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}
.index-page .index-career-guidance__video-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(0, 40, 80, 0.15) 0%, rgba(0, 76, 143, 0.25) 100%);
}
.index-page .index-career-guidance__video-slot iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.index-page .index-career-guidance__caption {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.35;
}
.index-page .index-career-guidance__caption-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  flex-shrink: 0;
  animation: index-career-guidance-pulse 2s ease-in-out infinite;
}
@keyframes index-career-guidance-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.1);
  }
}
.index-page .p_arabics-template-default .index-career-guidance__list {
  list-style: none;
  padding: 0;
}
.index-page .p_arabics-template-default .index-career-guidance__item {
  flex-direction: row-reverse;
  text-align: right;
}
.index-page .p_arabics-template-default .index-career-guidance__item:hover {
  transform: translateX(-4px);
}
@media (prefers-reduced-motion: reduce) {
  .index-page .index-career-guidance__caption-dot {
    animation: none;
  }
  .index-page .index-career-guidance__item:hover,
  .index-page .index-career-guidance__media-frame:hover,
  .index-page .index-career-guidance__cta--primary:hover,
  .index-page .index-career-guidance__cta--ghost:hover {
    transform: none;
  }
  .index-page .index-career-guidance__row:hover {
    transform: none;
  }
}
/* ----- Student Success Stories (testimonials carousel) ----- */
.index-page .testimonial_25.index-success-stories {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 15% 0%, rgba(10, 110, 209, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 30%, rgba(38, 97, 156, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--index-soft) 0%, #fafcff 42%, #ffffff 100%) !important;
  padding-top: clamp(3rem, 7vw, 5rem) !important;
  padding-bottom: clamp(3.25rem, 8vw, 5.5rem) !important;
}
.index-page .testimonial_25.index-success-stories::before {
  content: "";
  position: absolute;
  inset: -30% -20% auto 40%;
  height: 70%;
  background: radial-gradient(circle at 50% 50%, rgba(10, 110, 209, 0.06) 0%, transparent 62%);
  pointer-events: none;
  animation: index-success-stories-glow 16s ease-in-out infinite alternate;
}
@keyframes index-success-stories-glow {
  0% {
    opacity: 0.75;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-3%, 2%) scale(1.06);
  }
}
.index-page .index-success-stories .container {
  position: relative;
  z-index: 1;
}
.index-page .index-success-stories__header {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}
.index-page .index-success-stories__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #26619c;
}
.index-page .index-success-stories__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #0f172a;
  text-wrap: balance;
}
.index-page .index-success-stories__lead {
  margin: 0 auto;
  max-width: 38rem;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.65;
  color: #475569;
}
.index-page .index-success-stories__slider-wrap {
  padding-bottom: 2.75rem;
}
.index-page .index-success-stories .testimonial25-swiper-container {
  position: relative;
  overflow: hidden;
  padding-bottom: 2.5rem;
}
.index-page .index-success-stories .swiper-wrapper {
  align-items: stretch;
}
.index-page .index-success-stories .swiper-slide {
  height: auto;
  box-sizing: border-box;
}
.index-page .index-success-card {
  height: 100%;
  padding: 2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(38, 97, 156, 0.22) 0%, rgba(10, 110, 209, 0.08) 45%, rgba(255, 255, 255, 0.5) 100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}
.index-page .index-success-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
}
.index-page .index-success-card__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: clamp(1.35rem, 3.2vw, 1.85rem);
  border-radius: 20px;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 40px rgba(15, 23, 42, 0.06);
}
.index-page .index-success-card__quote-icon {
  display: block;
  width: 40px;
  height: 33px;
  margin-bottom: 0.35rem;
  color: #26619c;
}
.index-page .index-success-card__quote {
  margin: 0 0 1.35rem;
  padding: 0;
  border: none;
  flex: 1 1 auto;
}
.index-page .index-success-card__quote p {
  margin: 0;
  font-size: clamp(0.95rem, 1.9vw, 1.05rem);
  line-height: 1.65;
  font-weight: 500;
  color: #334155;
  letter-spacing: -0.01em;
}
.index-page .index-success-card__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
}
.index-page .index-success-card__avatar-wrap {
  flex-shrink: 0;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #26619c 0%, #0a5cad 50%, #38bdf8 100%);
  box-shadow: 0 6px 18px rgba(38, 97, 156, 0.25);
}
.index-page .index-success-card__avatar {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #e2e8f0;
}
.index-page .index-success-card__meta {
  min-width: 0;
  text-align: left;
}
.index-page .index-success-card__name {
  display: block;
  font-style: normal;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 0.2rem;
}
.index-page .index-success-card__role {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #64748b;
}
.index-page .index-success-stories .testimonial25-swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0.5rem 0 0;
}
.index-page .index-success-stories .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px !important;
  opacity: 1;
  background: rgba(148, 163, 184, 0.45);
  border: 1px solid rgba(38, 97, 156, 0.25);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.index-page .index-success-stories .swiper-pagination-bullet:hover {
  background: rgba(38, 97, 156, 0.35);
  transform: scale(1.15);
}
.index-page .index-success-stories .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #26619c 0%, #0a5cad 100%) !important;
  border-color: rgba(38, 97, 156, 0.5);
  box-shadow: 0 0 0 3px rgba(38, 97, 156, 0.2);
}
@media (max-width: 767.98px) {
  .index-page .index-success-stories__slider-wrap {
    padding-bottom: 2.25rem;
  }
  .index-page .index-success-card:hover {
    transform: none;
    box-shadow: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .index-page .testimonial_25.index-success-stories::before {
    animation: none;
  }
  .index-page .index-success-card,
  .index-page .index-success-stories .swiper-pagination-bullet {
    transition: none;
  }
  .index-page .index-success-card:hover {
    transform: none;
  }
  .index-page .index-success-stories .swiper-pagination-bullet:hover {
    transform: none;
  }
}
.index-page .tab_with_slider {
  background: linear-gradient(180deg, var(--index-soft-2) 0%, #fff 100%) !important;
}
/* ----- Footer CTA: “Start your IT career journey” (premium glass panel) ----- */
.index-page .cta_cards.XRqSqEPgbOJa.index-cta-journey {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #012a4a 0%, #004c8f 38%, #0a5cad 62%, #065a9e 100%) !important;
  box-shadow: 0 -4px 32px rgba(0, 35, 70, 0.25);
  padding-top: clamp(3rem, 8vw, 5rem) !important;
  padding-bottom: clamp(3rem, 8vw, 5rem) !important;
}
.index-page .cta_cards.XRqSqEPgbOJa.index-cta-journey::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 85%;
  background: radial-gradient(ellipse 55% 70% at 70% 20%, rgba(10, 110, 209, 0.45) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 15% 80%, rgba(255, 255, 255, 0.12) 0%, transparent 55%);
  pointer-events: none;
  animation: index-cta-journey-bg 14s ease-in-out infinite alternate;
}
.index-page .cta_cards.XRqSqEPgbOJa.index-cta-journey::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
@keyframes index-cta-journey-bg {
  0% {
    opacity: 0.85;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(2%, -1%) scale(1.03);
  }
}
.index-page .index-cta-journey .container {
  position: relative;
  z-index: 1;
}
.index-page .index-cta-journey__panel {
  position: relative;
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(1.75rem, 4vw, 3rem);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 24px 80px rgba(0, 20, 50, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.index-page .index-cta-journey__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.index-page .index-cta-journey__title {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 4.2vw, 2.45rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
}
.index-page .index-cta-journey__lead {
  margin: 0 0 1.35rem;
  font-size: clamp(1rem, 2.1vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
}
.index-page .index-cta-journey__lead strong {
  color: #fff;
  font-weight: 700;
}
.index-page .index-cta-journey__highlights {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.index-page .index-cta-journey__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
.index-page .index-cta-journey__check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #b8e986;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.index-page .index-cta-journey__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin-bottom: 1.25rem;
}
.index-page .index-cta-journey__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none !important;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.index-page .index-cta-journey__btn--primary {
  background: #fff;
  color: var(--index-primary) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.index-page .index-cta-journey__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
  color: var(--index-primary-dark) !important;
}
.index-page .index-cta-journey__btn--secondary {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.45);
}
.index-page .index-cta-journey__btn--secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff !important;
}
.index-page .index-cta-journey__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.index-page .index-cta-journey__footnote {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.index-page .index-cta-journey__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.index-page .index-cta-journey__img-wrap {
  position: relative;
  border-radius: clamp(16px, 2.5vw, 24px);
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.index-page .index-cta-journey__img-wrap:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.18);
}
.index-page .index-cta-journey__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.index-page .index-cta-journey__img-wrap:hover .index-cta-journey__img {
  transform: scale(1.04);
}
.index-page .index-cta-journey__stat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  max-width: calc(100% - 2rem);
}
.index-page .index-cta-journey__stat-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.index-page .index-cta-journey__stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
}
.index-page .index-cta-journey__counselor {
  border-radius: clamp(16px, 2.5vw, 22px);
  padding: 1.35rem 1.25rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.index-page .index-cta-journey__counselor:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}
.index-page .index-cta-journey__counselor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.index-page .index-cta-journey__counselor-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.index-page .index-cta-journey__counselor-text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.index-page .index-cta-journey__counselor-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, gap 0.2s ease;
}
.index-page .index-cta-journey__counselor-cta:hover {
  border-bottom-color: #fff;
  gap: 0.5rem;
  color: #fff !important;
}
@media (max-width: 991.98px) {
  .index-page .index-cta-journey__visual {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575.98px) {
  .index-page .index-cta-journey__panel {
    padding: 1.35rem 1.15rem;
  }
  .index-page .index-cta-journey__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .index-page .index-cta-journey__btn {
    width: 100%;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .index-page .cta_cards.XRqSqEPgbOJa.index-cta-journey::before {
    animation: none;
  }
  .index-page .index-cta-journey__img-wrap:hover,
  .index-page .index-cta-journey__counselor:hover,
  .index-page .index-cta-journey__btn--primary:hover,
  .index-page .index-cta-journey__btn--secondary:hover {
    transform: none;
  }
  .index-page .index-cta-journey__img-wrap:hover .index-cta-journey__img {
    transform: none;
  }
}

/* ----- Cards: soft shadow, 12–16px radius, elevated feel ----- */
.index-page .team_award .pad-6.box-shadow,
.index-page .team_award .index-course-card .pad-6,
.index-page .team_award .index-program-card,
.index-page .uicard {
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 76, 143, 0.06);
  border: 1px solid rgba(0, 76, 143, 0.06);
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%) !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
}
.index-page .team_award .pad-6.box-shadow:hover,
.index-page .team_award .index-course-card .pad-6:hover,
.index-page .team_award .index-program-card:hover,
.index-page .uicard:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 76, 143, 0.08);
}
.index-page .blog-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 76, 143, 0.06);
  border: 1px solid rgba(0, 76, 143, 0.06);
  background: #fff;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.index-page .blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 76, 143, 0.08);
}
.index-page .blog-card:hover h4 {
  color: var(--index-primary) !important;
}
.index-page .team_award .card-bg {
  background: linear-gradient(180deg, var(--index-soft) 0%, #fff 100%) !important;
}

/* Explore AXONTech Programs cards: attached design — no shadow, rounded, flat, theme gradients */
.index-page .team_award .pad-6.box-shadow,
.index-page .team_award .index-program-card {
  box-shadow: none !important;
  border-radius: 18px !important;
  border: none !important;
  background: #ffffff !important;
  overflow: hidden;
}
/* Theme gradients: AI — purple/lavender */
.index-page .team_award .index-program-card--ai {
  background: linear-gradient(165deg, #ede7f6 0%, #d1c4e9 40%, #f3e5f5 100%) !important;
}
/* Theme gradients: Full Stack — React blue / Node green */
.index-page .team_award .index-program-card--fullstack {
  background: linear-gradient(165deg, #e3f2fd 0%, #bbdefb 40%, #e8f5e9 100%) !important;
}
/* Theme gradients: Cloud — sky blue / azure */
.index-page .team_award .index-program-card--cloud {
  background: linear-gradient(165deg, #e1f5fe 0%, #b3e5fc 40%, #e0f7fa 100%) !important;
}
.index-page .team_award .pad-6.box-shadow:hover,
.index-page .team_award .index-program-card:hover {
  box-shadow: none !important;
  transform: none;
}
/* Image area: rounded top corners only */
.index-page .team_award .index-program-card-img-wrap {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}
.index-page .team_award .index-program-card-inner .index-program-card-link {
  display: block;
  overflow: visible;
  border-radius: 0;
}
.index-page .team_award .index-program-card-inner .pad-y-6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.index-page .team_award .index-program-card-inner .pad-y-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.index-page .team_award .index-program-card-inner .font-size-small {
  color: #4a5056;
  line-height: 1.5;
}
.index-page .team_award .index-program-card-inner .course-cta-link {
  font-weight: 600;
}
.index-page .team_award .index-program-card-inner.blog-card,
.index-page .team_award .blog-card.index-program-card-inner {
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}
.index-page .team_award .index-program-card-inner:hover,
.index-page .team_award .blog-card.index-program-card-inner:hover {
  transform: none;
  box-shadow: none !important;
}

/* ----- Feature / icon boxes: soft shadow, hover lift, icons stay visible ----- */
.index-page .link-of-product.product-catalog-cotainer,
.index-page .features_10 .border-img.img-container {
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 76, 143, 0.06);
  border: 1px solid rgba(0, 76, 143, 0.06);
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%) !important;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}
.index-page .features_10 .row-mar:hover .border-img.img-container {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 76, 143, 0.08);
  transform: translateY(-3px);
}
.index-page .link-of-product:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 76, 143, 0.08);
  transform: translateY(-3px);
}
.index-page .features_10 .border-img.img-container img,
.index-page .features_10 .product-catalog-cotainer img,
.index-page .link-of-product img {
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.index-page .features_10 .row-mar:hover .border-img.img-container img,
.index-page .link-of-product:hover img {
  opacity: 1;
}

/* Override inline hover styles that set text/icon to white (causing content to disappear on light card) */
.index-page .features_10 .product-catalog-cotainer:hover .product-catalog-title *,
.index-page .features_11 .product-catalog-cotainer:hover .product-catalog-title * {
  color: #1e1e1e !important;
}
.index-page .features_10 .product-catalog-cotainer:hover .product-catalog-title .title,
.index-page .features_10 .product-catalog-cotainer:hover .product-catalog-title .font-medium,
.index-page .features_11 .product-catalog-cotainer:hover .product-catalog-title .title,
.index-page .features_11 .product-catalog-cotainer:hover .product-catalog-title .font-medium {
  color: #004c8f !important;
}
.index-page .features_10 .product-catalog-cotainer:hover .product-catalog-title .font-size-small,
.index-page .features_10 .product-catalog-cotainer:hover .product-catalog-title .gray-dark,
.index-page .features_11 .product-catalog-cotainer:hover .product-catalog-title .font-size-small,
.index-page .features_11 .product-catalog-cotainer:hover .product-catalog-title .gray-dark {
  color: #4a5056 !important;
}
.index-page .features_10 .product-catalog-cotainer:hover img.is-svg,
.index-page .features_11 .product-catalog-cotainer:hover img.is-svg {
  filter: none !important;
  opacity: 1 !important;
}
.index-page .features_11 .product-catalog-cotainer:hover .read_txt {
  color: #004c8f !important;
}

/* ----- Buttons: primary #004c8f, smooth hover -3px ----- */
.index-page .cust_btn,
.index-page .btn.cust_btn,
.index-page .hero-cta,
.index-page .index-mini-cta .cust_btn,
.index-page .button {
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.index-page .cust_btn:hover,
.index-page .btn.cust_btn:hover,
.index-page .hero-cta:hover,
.index-page .index-mini-cta .cust_btn:hover,
.index-page .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--index-primary-shadow-strong);
}
.index-page .scroll-section .cust_btn,
.index-page .scroll-section .hero-cta {
  background: var(--index-primary) !important;
  border-color: var(--index-primary);
  color: #fff !important;
}
.index-page .scroll-section .cust_btn:hover,
.index-page .scroll-section .hero-cta:hover {
  background: var(--index-primary-dark) !important;
  border-color: var(--index-primary-dark);
  color: #fff !important;
}
.index-page .index-cta-btn,
.index-page .btn-primary.button {
  background: var(--index-primary) !important;
  border-color: var(--index-primary) !important;
  color: #fff !important;
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.index-page .index-cta-btn:hover,
.index-page .btn-primary.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--index-primary-shadow-strong);
}

/* ----- Typography: headings #004c8f, clear hierarchy ----- */
.index-page .section-kicker {
  color: var(--index-primary) !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.index-page .font-size-huge,
.index-page .section-head .font-size-huge,
.index-page .section-title,
.index-page h2.section-head,
.index-page .mar-bottom-conversation {
  color: var(--index-primary) !important;
  font-weight: 700;
}
.index-page .brand-primary,
.index-page .course-cta-link {
  color: var(--index-primary) !important;
  transition: color 0.2s ease;
}
.index-page .brand-primary:hover,
.index-page .course-cta-link:hover {
  color: var(--index-primary-dark) !important;
}
.index-page .course-badge,
.index-page .course-badge--popular {
  background: var(--index-primary) !important;
  border-radius: 8px;
}
.index-page .course-badge--popular {
  background: linear-gradient(135deg, var(--index-primary) 0%, var(--index-primary-dark) 100%) !important;
}

/* ----- Image hover: subtle zoom ----- */
.index-page .blog-card a:first-of-type,
.index-page .index-program-card-link {
  display: block;
  overflow: hidden;
  border-radius: 12px;
}
.index-page .blog-card img,
.index-page .index-program-card-img {
  transition: transform 0.3s ease;
}
.index-page .blog-card a:hover img,
.index-page .index-program-card-link:hover .index-program-card-img {
  transform: scale(1.03);
}

/* ----- Scroll reveal ----- */
.index-page section.index-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.index-page section.index-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Stretched link ----- */
.index-page .team_award .stretched-link {
  background: var(--index-primary) !important;
  color: #fff !important;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.index-page .team_award .stretched-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--index-primary-shadow-strong);
}

/* ----- FAQ / other sections: soft background if present ----- */
.index-page .faq_2,
.index-page .blog_section_44 {
  background: transparent;
}

/* ----- WhatsApp floating button ----- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #004c8f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 76, 143, 0.4);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(0, 76, 143, 0.5);
}
.whatsapp-float:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 76, 143, 0.35);
}
.whatsapp-float-icon {
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float-icon {
    width: 26px;
    height: 26px;
  }
}

/* ----- Explore services (yellow gradient + search + visual + link grid)
   Use #index-services-explore so styles win without relying on .index-page (full-bleed + gradient). ----- */
#index-services-explore.index-services-explore {
  --index-primary: #004c8f;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: clip;
  background: linear-gradient(112deg, #ffdf63 1.38%, #ffc94d 95.94%) !important;
  background-color: #ffc94d !important;
  color: #1a1a1a;
  isolation: isolate;
}
#index-services-explore .index-services-explore-inner {
  max-width: min(1320px, 100%);
  margin-left: auto;
  margin-right: auto;
  min-width: 0;
  position: relative;
  overflow: visible;
}
#index-services-explore .index-services-explore-top {
  margin-bottom: 1.25rem;
  position: relative;
}
@media (min-width: 992px) {
  #index-services-explore .index-services-explore-top {
    margin-bottom: 0;
  }
  /* Heading + search stay above overlapping cards */
  #index-services-explore .index-services-explore-top > .order-lg-1 {
    position: relative;
    z-index: 3;
  }
  /* Headphone / tunnel graphic sits behind first card row */
  #index-services-explore .index-services-explore-top > .order-lg-2 {
    position: relative;
    z-index: 1;
  }
}
#index-services-explore .index-services-explore-title {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: #1a1a1a;
  text-align: left;
}
#index-services-explore .index-services-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
#index-services-explore .index-services-search {
  display: flex !important;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
#index-services-explore .index-services-search-input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  border: none;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  outline: none;
  background: transparent;
  color: #333;
}
#index-services-explore .index-services-search-input::placeholder {
  color: #6b6b6b;
}
#index-services-explore .index-services-search-submit {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 0 0.5rem;
  background: #e5e5e5;
  color: #333;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}
#index-services-explore .index-services-search-submit:hover,
#index-services-explore .index-services-search-submit:focus {
  background: var(--index-primary, #004c8f);
  color: #fff;
}
#index-services-explore .index-services-search-submit:focus {
  outline: 2px solid var(--index-primary, #004c8f);
  outline-offset: 2px;
}
#index-services-explore .index-services-explore-visual {
  position: relative;
  display: block;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}
#index-services-explore .index-services-explore-bg {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 0;
}
@media (min-width: 992px) {
  #index-services-explore .index-services-explore-visual {
    margin-left: auto;
    margin-right: 0;
    max-width: min(560px, 100%);
  }
  #index-services-explore .index-services-explore-bg {
    margin-left: auto;
    margin-right: 0;
  }
}
/* Headset: higher on pedestal (reference) */
#index-services-explore .index-services-explore-hero-wrap {
  position: absolute;
  left: 50%;
  bottom: clamp(5.75rem, 13vw, 12.5rem);
  width: min(54%, 292px);
  max-width: 54%;
  transform: translate(-50%, 0);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  z-index: 1;
}
#index-services-explore .index-services-explore-hero {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}
@media (prefers-reduced-motion: no-preference) {
  #index-services-explore .index-services-explore-hero-wrap {
    animation: index-services-earphone-float 3.2s ease-in-out infinite;
  }
}
@keyframes index-services-earphone-float {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -14px);
  }
}
/* Explicit CSS Grid + reference overlap: first row sits on the tunnel/pedestal (negative margin, z-index above graphic) */
#index-services-explore .index-services-explore-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem 1.25rem;
  margin-top: 0.75rem;
  margin-bottom: clamp(1.25rem, 4vw, 2.5rem);
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex-wrap: unset !important;
  position: relative;
  z-index: 2;
}
#index-services-explore .index-services-explore-grid > [class*="col-"] {
  width: auto !important;
  max-width: none !important;
  flex: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-top: 0 !important;
}
@media (min-width: 992px) {
  #index-services-explore .index-services-explore-grid {
    gap: 2rem 1.5rem;
    margin-top: clamp(-7rem, -12vw, -4.25rem);
  }
}
@media (max-width: 991.98px) {
  #index-services-explore .index-services-explore-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1rem;
  }
}
@media (max-width: 575.98px) {
  #index-services-explore .index-services-explore-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
#index-services-explore .index-services-card {
  position: relative;
  z-index: 0;
  background: #fffceb;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 8px 28px rgba(0, 45, 90, 0.14),
    0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1.35rem 1.25rem 1.2rem;
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#index-services-explore .index-services-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 14px 36px rgba(0, 45, 90, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.08);
}
#index-services-explore .index-services-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(0, 76, 143, 0.12);
  letter-spacing: -0.01em;
}
#index-services-explore .index-services-card-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 1 1 auto;
}
#index-services-explore .index-services-card-list li {
  margin: 0 0 0.45rem;
  line-height: 1.4;
  list-style: none !important;
}
#index-services-explore .index-services-card-list a {
  color: var(--index-primary, #004c8f);
  text-decoration: none;
  font-size: 0.9rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
#index-services-explore .index-services-card-list a:hover,
#index-services-explore .index-services-card-list a:focus {
  text-decoration: underline;
}
#index-services-explore .index-services-card-list a.index-services-view-more {
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
  margin-top: 0.5rem;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  #index-services-explore .index-services-explore-visual {
    margin-bottom: 0.5rem;
  }
  #index-services-explore .index-services-explore-hero-wrap {
    width: min(58%, 300px);
    max-width: 58%;
  }
}
@media (max-width: 575.98px) {
  #index-services-explore .index-services-card {
    padding: 1.15rem 1rem;
    border-radius: 14px;
  }
  #index-services-explore .index-services-card:hover {
    transform: none;
  }
  #index-services-explore .index-services-card-list a {
    font-size: 0.875rem;
  }
}

/* ----- Redesigned index sections: programs, career focus, job-ready ----- */
.index-page .index-section-programs {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(10, 110, 209, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #f0f7ff 0%, #ffffff 45%, #f5f9ff 100%) !important;
}
.index-page .index-section-programs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(0, 76, 143, 0.06) 0%, transparent 45%);
  pointer-events: none;
}
.index-page .index-section-programs .container {
  position: relative;
  z-index: 1;
}
.index-page .index-programs-head .section-kicker {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.index-page .index-programs-lead {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  color: #4a5056;
}
.index-page .index-prog-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.65rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--index-primary);
  box-shadow: 0 2px 12px rgba(0, 76, 143, 0.1);
}
.index-page .index-prog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  color: #1a2744;
  letter-spacing: -0.02em;
}
.index-page .index-prog-card-desc {
  line-height: 1.55;
}
.index-page .index-section-programs .course-badge {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}
.index-page .index-section-programs .index-program-card,
.index-page .index-section-programs .pad-6.box-shadow.index-course-card {
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
  box-shadow:
    0 16px 48px rgba(0, 45, 90, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.04) !important;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.index-page .index-section-programs .index-program-card:hover,
.index-page .index-section-programs .pad-6.box-shadow.index-course-card:hover {
  transform: translateY(-8px) !important;
  box-shadow:
    0 24px 56px rgba(0, 45, 90, 0.14),
    0 8px 24px rgba(0, 0, 0, 0.06) !important;
}
/* ----- Programs section: cohort CTA band (“Small batches…”) ----- */
.index-page .index-section-programs .index-programs-cta-band {
  position: relative;
  z-index: 1;
  clear: both;
  margin-top: clamp(2rem, 5vw, 3rem) !important;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: clamp(18px, 2.5vw, 26px);
  background: linear-gradient(135deg, rgba(0, 76, 143, 0.06) 0%, rgba(10, 110, 209, 0.1) 45%, rgba(0, 61, 115, 0.08) 100%);
  border: 1px solid rgba(0, 76, 143, 0.12);
  box-shadow:
    0 16px 48px rgba(0, 45, 90, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.index-page .index-section-programs .index-programs-cta-band:hover {
  border-color: rgba(0, 76, 143, 0.2);
  box-shadow:
    0 22px 56px rgba(0, 45, 90, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}
.index-page .index-programs-cta-band__glow {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at 20% 40%, rgba(0, 76, 143, 0.18) 0%, transparent 42%),
    radial-gradient(circle at 85% 60%, rgba(10, 110, 209, 0.2) 0%, transparent 45%);
  opacity: 0.65;
  animation: index-programs-cta-band-pulse 10s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes index-programs-cta-band-pulse {
  0% {
    opacity: 0.45;
    transform: scale(1) translate(0, 0);
  }
  100% {
    opacity: 0.75;
    transform: scale(1.05) translate(2%, -1%);
  }
}
.index-page .index-programs-cta-band__inner {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 2.5vw, 1.5rem) clamp(1rem, 3vw, 1.75rem);
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 251, 255, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.index-page .index-programs-cta-band__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--index-primary);
}
.index-page .index-programs-cta-band__headline {
  margin: 0 0 0.85rem;
  font-size: clamp(1.25rem, 3.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #1a2744;
  text-wrap: balance;
}
.index-page .index-programs-cta-band__accent {
  color: var(--index-primary);
  background: linear-gradient(120deg, var(--index-primary) 0%, var(--index-primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@supports not (background-clip: text) {
  .index-page .index-programs-cta-band__accent {
    color: var(--index-primary);
    -webkit-text-fill-color: currentColor;
  }
}
.index-page .index-programs-cta-band__sub {
  margin: 0 0 1.1rem;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.6;
  color: #4a5056;
  max-width: 38rem;
}
.index-page .index-programs-cta-band__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}
.index-page .index-programs-cta-band__chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2d3748;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 76, 143, 0.12);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 45, 90, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.index-page .index-programs-cta-band__chips li:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 76, 143, 0.22);
  box-shadow: 0 6px 16px rgba(0, 45, 90, 0.1);
}
.index-page .index-programs-cta-band__chip-icon {
  display: flex;
  color: var(--index-primary);
  flex-shrink: 0;
}
.index-page .index-programs-cta-band__action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  text-align: center;
}
@media (min-width: 992px) {
  .index-page .index-programs-cta-band__action {
    text-align: left;
    align-items: flex-start;
  }
}
.index-page .index-programs-cta-band__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--index-primary) 0%, var(--index-primary-light) 100%);
  box-shadow: 0 6px 24px rgba(0, 76, 143, 0.35);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}
.index-page .index-programs-cta-band__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 76, 143, 0.42);
  filter: brightness(1.05);
  color: #fff !important;
}
.index-page .index-programs-cta-band__btn:focus-visible {
  outline: 2px solid var(--index-primary);
  outline-offset: 3px;
}
.index-page .index-programs-cta-band__hint {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #6b7280;
}
.index-page .index-programs-cta-band__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--index-primary) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(0, 76, 143, 0.25);
  padding-bottom: 1px;
  align-self: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}
@media (min-width: 992px) {
  .index-page .index-programs-cta-band__link {
    align-self: flex-start;
  }
}
.index-page .index-programs-cta-band__link:hover {
  border-bottom-color: var(--index-primary);
  color: var(--index-primary-dark) !important;
}
@media (max-width: 767.98px) {
  /* CTA follows mobile swiper in DOM — extra gap so pagination / slides don’t crowd the band */
  .index-page .index-section-programs .index-programs-cta-band {
    margin-top: clamp(2.25rem, 8vw, 3.5rem) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .index-page .index-programs-cta-band__glow {
    animation: none;
  }
  .index-page .index-section-programs .index-programs-cta-band:hover {
    transform: none;
  }
  .index-page .index-programs-cta-band__btn:hover,
  .index-page .index-programs-cta-band__chips li:hover {
    transform: none;
  }
}

.index-page .index-section-career {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 40% at 10% 0%, rgba(254, 239, 234, 0.9) 0%, transparent 50%),
    linear-gradient(180deg, #fffdfb 0%, #ffffff 40%, #f8fbff 100%) !important;
}
.index-page .index-career-head .section-kicker {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.index-page .index-career-heading {
  font-size: clamp(1.35rem, 3.2vw, 1.85rem) !important;
  line-height: 1.25;
}
.index-page .index-career-lead {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  color: #4a5056;
}
.index-page .index-section-career .index-career-card.product-catalog-cotainer {
  position: relative;
  border-radius: 20px !important;
  padding: 1.75rem 1.35rem !important;
  border: 1px solid rgba(0, 76, 143, 0.08) !important;
  background: linear-gradient(165deg, #ffffff 0%, #fafcff 100%) !important;
  box-shadow:
    0 12px 40px rgba(0, 45, 90, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04) !important;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease, border-color 0.25s ease;
}
.index-page .index-section-career .index-career-card.product-catalog-cotainer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--index-primary) 0%, var(--index-primary-light) 50%, #5c9fd6 100%);
  opacity: 0.85;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.index-page .index-section-career .index-career-card.product-catalog-cotainer:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 76, 143, 0.15) !important;
  box-shadow:
    0 20px 48px rgba(0, 45, 90, 0.12),
    0 6px 20px rgba(0, 0, 0, 0.06) !important;
}
.index-page .index-section-career .index-career-card.product-catalog-cotainer:hover::before {
  transform: scaleX(1);
}
.index-page .index-section-career .index-career-card-icon.border-img {
  width: 4rem;
  height: 4rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #eef5ff 0%, #e3ecfa 100%);
  border: 1px solid rgba(0, 76, 143, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.index-page .index-section-career .index-career-card:hover .index-career-card-icon {
  transform: scale(1.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 20px rgba(0, 76, 143, 0.12);
}
.index-page .index-section-career .index-career-card-icon img {
  max-height: 44px !important;
  width: auto;
}
.index-page .index-career-grid {
  margin-top: 0.5rem;
}

.index-page .index-section-jobready {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 45% at 90% 10%, rgba(0, 76, 143, 0.07) 0%, transparent 50%),
    linear-gradient(180deg, #f5f9ff 0%, #ffffff 55%, #f8fafc 100%) !important;
}
.index-page .index-jobready-head .section-kicker {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.index-page .index-jobready-title {
  font-size: clamp(1.35rem, 3.2vw, 1.85rem) !important;
  line-height: 1.25;
}
.index-page .index-jobready-lead {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  color: #4a5056;
}
.index-page .index-jobready-lead em {
  font-style: normal;
  font-weight: 700;
  color: var(--index-primary);
}
.index-page .index-section-jobready .index-jobready-card.product-catalog-cotainer {
  position: relative;
  border-radius: 20px !important;
  padding: 1.5rem 1.35rem 1.35rem !important;
  border: 1px solid rgba(0, 76, 143, 0.1) !important;
  background: linear-gradient(160deg, #ffffff 0%, #f3f7fd 55%, #eef4fc 100%) !important;
  box-shadow:
    0 10px 36px rgba(0, 45, 90, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04) !important;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease, border-color 0.25s ease, background 0.3s ease;
}
.index-page .index-section-jobready .index-jobready-card.product-catalog-cotainer:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 76, 143, 0.2) !important;
  background: linear-gradient(160deg, #ffffff 0%, #e8f0fb 100%) !important;
  box-shadow:
    0 20px 48px rgba(0, 45, 90, 0.14),
    0 6px 20px rgba(0, 0, 0, 0.06) !important;
}
.index-page .index-jobready-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 14px;
  color: var(--index-primary);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 76, 143, 0.12);
  box-shadow: 0 4px 14px rgba(0, 76, 143, 0.1);
  transition: transform 0.3s ease, color 0.25s ease, background 0.25s ease;
}
.index-page .index-section-jobready .index-jobready-card:hover .index-jobready-card-icon {
  transform: scale(1.08) rotate(-3deg);
  color: #fff;
  background: linear-gradient(135deg, var(--index-primary) 0%, var(--index-primary-light) 100%);
  border-color: transparent;
}
.index-page .index-jobready-card-cta {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.15em;
  transition: color 0.2s ease;
}
.index-page .index-jobready-card-cta-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.index-page .index-section-jobready .index-jobready-card:hover .index-jobready-card-cta-arrow {
  transform: translateX(4px);
}
.index-page .index-jobready-grid {
  margin-top: 0.5rem;
}

@media (max-width: 575.98px) {
  .index-page .index-section-career .index-career-card.product-catalog-cotainer {
    padding: 1.5rem 1.2rem !important;
  }
  .index-page .index-section-jobready .index-jobready-card.product-catalog-cotainer {
    padding: 1.35rem 1.15rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .index-page .index-section-programs .index-program-card,
  .index-page .index-section-programs .pad-6.box-shadow.index-course-card,
  .index-page .index-section-career .index-career-card.product-catalog-cotainer,
  .index-page .index-section-jobready .index-jobready-card.product-catalog-cotainer {
    transition: none;
  }
  .index-page .index-section-programs .index-program-card:hover,
  .index-page .index-section-programs .pad-6.box-shadow.index-course-card:hover,
  .index-page .index-section-career .index-career-card.product-catalog-cotainer:hover,
  .index-page .index-section-jobready .index-jobready-card.product-catalog-cotainer:hover {
    transform: none;
  }
  .index-page .index-section-jobready .index-jobready-card:hover .index-jobready-card-cta-arrow {
    transform: none;
  }
}
