/* ================================================
   HIKE EDUCATION - PREMIUM CUSTOM HEADER CSS
   Child Theme: hike-child
   File: assets/css/courses.css
================================================ */

/* ============================================
   GENERIC COURSES PAGE — BCA Hero Banner
   Paste into: Elementor > Custom CSS or style.css
   ============================================ */

/* ---------- Keyframe Animations ---------- */
@keyframes gcpFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gcpBadgePop {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(10px);
  }
  70% {
    transform: scale(1.04) translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes gcpPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}

@keyframes gcpDividerSlide {
  from { height: 0; opacity: 0; }
  to   { height: 60%; opacity: 1; }
}

/* ---------- Section Shell ---------- */
.generic-courses-page {
  position: relative;
  width: 100%;
  min-height: 75vh;
  /*max-height: 620px;*/
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Dark overlay for text readability */
.generic-courses-page::before {
  content: '';
  position: absolute;
  inset: 0;

  z-index: 1;
}

/* Subtle vertical divider line (decorative) */
.generic-courses-page::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 60%;

  z-index: 2;
  animation: gcpDividerSlide 1s ease 0.4s both;
}

/* ---------- Inner Wrapper (90% width, centered) ---------- */
.generic-courses-page__inner {
  position: relative;
  z-index: 3;
  width: 90%;
  /*max-width: 1200px;*/
  margin: 0 auto;
  padding: 60px 20px;
}

/* ---------- Content Column ---------- */
.generic-courses-page__content {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---------- UGC Badge ---------- */
.generic-courses-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: #dc2626;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  width: fit-content;
  animation: gcpBadgePop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

.generic-courses-page__badge-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

/* ---------- Main Heading ---------- */
.generic-courses-page__heading {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 43px);
  font-weight: 800;
  line-height: 1.18;
  margin: 0;
  letter-spacing: -0.01em;
  animation: gcpFadeUp 0.75s ease 0.3s both;
}

/* ---------- Sub Text ---------- */
.generic-courses-page__subtext {
  color: rgba(255, 255, 255, 0.80);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.65;
  margin: 0;
  max-width: 440px;
  animation: gcpFadeUp 0.75s ease 0.5s both;
}

/* ---------- CTA Button ---------- */
.generic-courses-page__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #dc2626;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 6px;
  padding: 14px 36px;
  cursor: pointer;
  width: fit-content;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.3s ease;
  animation: gcpFadeUp 0.75s ease 0.7s both, gcpPulse 2.5s ease 1.5s infinite;
}

.generic-courses-page__cta:hover {
  background-color: #b91c1c;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.45);
  animation: gcpFadeUp 0s, none; /* pause pulse on hover */
}

.generic-courses-page__cta:active {
  transform: translateY(0) scale(0.98);
}

/* ============================================
   RESPONSIVE — Tablet & Mobile
   ============================================ */

/* Tablet: ~768px */
@media (max-width: 900px) {
  .generic-courses-page {
    /*min-height: 75vh;*/
    max-height: none;
    background-position: right center;
  }

  .generic-courses-page::after {
    display: none;
  }

  .generic-courses-page__content {
    max-width: 100%;
    gap: 18px;
  }
}

/* Mobile: ~480px */
@media (max-width: 600px) {
  .generic-courses-page {
    min-height: auto;
    /*background-position: 70% center;*/
  }

  .generic-courses-page::before {
    background: linear-gradient(
      180deg,
      rgba(10, 15, 40, 0.85) 0%,
      rgba(10, 15, 40, 0.75) 100%
    );
  }

  .generic-courses-page__inner {
    padding: 50px 20px 60px;
    width: 92%;
  }

  .generic-courses-page__heading {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.22;
  }

  .generic-courses-page__subtext {
    font-size: 14px;
  }

  .generic-courses-page__cta {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
  }
}

/* Very small: ~360px */
@media (max-width: 400px) {
  .generic-courses-page__heading {
    font-size: 22px;
  }

  .generic-courses-page__badge {
    font-size: 10px;
    padding: 6px 13px;
  }
}

/* ============================================
   BCA — "What is an Online BCA Course?" Section
   Class prefix: bca-whatisit
   Paste into: Elementor Custom CSS or style.css
   ============================================ */

/* ---------- Keyframe Animations ---------- */
@keyframes bcaFadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes bcaFadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes bcaFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bcaLineGrow {
  from { width: 0; }
  to   { width: 56px; }
}

@keyframes bcaImgFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* ---------- Section Shell ---------- */
.bca-whatisit {
  width: 100%;
 
  padding: 40px 0;
}

/* ---------- Inner Wrapper ---------- */
.bca-whatisit__inner {
  width: 90%;
 /* max-width: 1200px;*/
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ---------- Left Column ---------- */
.bca-whatisit__left {
  flex: 1 1 50%;
  min-width: 0;
  border: 2px dashed #1a56db;
  border-radius: 4px;
  padding: 36px 32px 32px;
  animation: bcaFadeLeft 0.8s ease 0.1s both;
  user-select: text;
  -webkit-user-select: text;
  box-shadow: none !important;   /* YE ADD KARO */
}

/* ---------- Heading ---------- */
.bca-whatisit__heading {
  color: #1a3a6b;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 14px 0;
}

/* ---------- Red Underline ---------- */
.bca-whatisit__redline {
  width: 56px;
  height: 4px;
  background-color: #dc2626;
  border-radius: 2px;
  margin-bottom: 20px;
  animation: bcaLineGrow 0.6s ease 0.5s both;
}

/* ---------- Paragraphs ---------- */
.bca-whatisit__para {
  color: #374151;
  font-size: clamp(13.5px, 1.4vw, 15px);
  line-height: 1.75;
  margin: 0 0 14px 0;
  animation: bcaFadeUp 0.7s ease 0.4s both;
}

.bca-whatisit__para:last-of-type {
  margin-bottom: 28px;
}

/* ---------- Learn More Button ---------- */
.bca-whatisit__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #dc2626;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 13px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  animation: bcaFadeUp 0.7s ease 0.6s both;
}

.bca-whatisit__btn:hover {
  background-color: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35);
  color: #ffffff;
  text-decoration: none;
}

.bca-whatisit__btn:active {
  transform: translateY(0) scale(0.97);
}

/* ---------- Right Column ---------- */
.bca-whatisit__right {
  flex: 1 1 45%;
  min-width: 0;
  animation: bcaFadeRight 0.8s ease 0.2s both;
}

/* ---------- Image Wrapper ---------- */
.bca-whatisit__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  animation: bcaImgFloat 4.5s ease-in-out 1.2s infinite;
}

/* ---------- Image ---------- */
.bca-whatisit__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.bca-whatisit__img-wrap:hover .bca-whatisit__img {
  transform: scale(1.04);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 900px) {
  .bca-whatisit__inner {
    gap: 40px;
  }

  .bca-whatisit__left {
    padding: 28px 24px;
  }
}

/* Mobile — stack: content top, image bottom */
@media (max-width: 700px) {
  .bca-whatisit {
    padding: 50px 0;
  }

 .bca-whatisit__inner {
    flex-direction: column;
    gap: 32px;
    width: 92%;
    box-shadow: none !important;   /* YE ADD KARO */
  }

  .bca-whatisit__left {
    flex: 1 1 100%;
    width: 100%;
    padding: 24px 20px;
    animation: bcaFadeUp 0.7s ease 0.1s both;
  }

  .bca-whatisit__right {
    flex: 1 1 100%;
    width: 100%;
    animation: bcaFadeUp 0.7s ease 0.3s both;
  }

  .bca-whatisit__heading {
    font-size: clamp(20px, 6vw, 26px);
  }

  .bca-whatisit__img-wrap {
    border-radius: 14px;
    animation: none; /* stop float on mobile for performance */
     box-shadow: none;
  }

  .bca-whatisit__btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .bca-whatisit__heading {
    font-size: 20px;
  }

  .bca-whatisit__para {
    font-size: 13px;
  }
}

/* ============================================
   BCA — "Who Should Pursue" Section
   Class prefix: bca-whypursue
   ============================================ */

/* ---------- Keyframes ---------- */
@keyframes wpFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes wpCardIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes wpIconPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.22) rotate(-6deg); }
  70%  { transform: scale(0.95) rotate(3deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes wpShine {
  0%   { left: -75%; }
  100% { left: 125%; }
}

/* ---------- Section ---------- */
.bca-whypursue {
  width: 100%;
  background-color: #ffffff;
  padding: 44px 0 52px;
}

/* ---------- Inner ---------- */
.bca-whypursue__inner {
  width: 90%;
 /*max-width: 1200px;*/
  margin: 0 auto;
}

/* ---------- Header ---------- */
.bca-whypursue__header {
  text-align: center;
  margin-bottom: 36px;
  animation: wpFadeUp 0.7s ease 0.1s both;
}

.bca-whypursue__title {
  color: #1a1a2e;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 8px;
}

.bca-whypursue__highlight {
  color: #1a56db;
  font-weight: 800;
}

.bca-whypursue__subtitle {
  color: #6b7280;
  font-size: 14.5px;
  margin: 0;
}

/* ---------- Grid ---------- */
.bca-whypursue__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ---------- Card ---------- */
.bca-whypursue__card {
  position: relative;
  overflow: hidden;
  background: #f8f9fc;
  border: 1.5px solid #e8ecf4;
  border-radius: 16px;
  padding: 24px 20px 20px;
  cursor: default;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
  animation: wpCardIn 0.6s ease both;
}

/* Shine sweep on hover */
.bca-whypursue__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.18) 50%,
    transparent 100%
  );
  transform: skewX(-15deg);
  transition: none;
  pointer-events: none;
  z-index: 1;
}

.bca-whypursue__card:hover::before {
  animation: wpShine 0.55s ease forwards;
}

/* Staggered animation delays */
.bca-whypursue__card:nth-child(1) { animation-delay: 0.10s; }
.bca-whypursue__card:nth-child(2) { animation-delay: 0.18s; }
.bca-whypursue__card:nth-child(3) { animation-delay: 0.26s; }
.bca-whypursue__card:nth-child(4) { animation-delay: 0.34s; }
.bca-whypursue__card:nth-child(5) { animation-delay: 0.42s; }
.bca-whypursue__card:nth-child(6) { animation-delay: 0.50s; }
.bca-whypursue__card:nth-child(7) { animation-delay: 0.58s; }
.bca-whypursue__card:nth-child(8) { animation-delay: 0.66s; }

/* Hover — deep blue fill */
.bca-whypursue__card:hover {
  background: linear-gradient(145deg, #1a56db 0%, #1240a8 100%);
  border-color: #1240a8;
  transform: translateY(-7px);
  box-shadow:
    0 16px 40px rgba(26, 86, 219, 0.30),
    0 4px 12px rgba(26, 86, 219, 0.20);
}

/* Icon on hover */
.bca-whypursue__card:hover .bca-whypursue__icon-wrap {
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.35);
  animation: wpIconPop 0.4s ease both;
}

/* Title on hover */
.bca-whypursue__card:hover .bca-whypursue__card-title {
  color: #ffffff;
}

/* Text on hover */
.bca-whypursue__card:hover .bca-whypursue__card-text {
  color: rgba(255, 255, 255, 0.82);
}

/* ---------- Icon Wrap ---------- */
.bca-whypursue__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #e8ecf4;
  color: #1a56db;
  border: 1.5px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  position: relative;
  z-index: 2;
}

/* ---------- Card Title ---------- */
.bca-whypursue__card-title {
  color: #1a1a2e;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 7px;
  transition: color 0.35s ease;
  position: relative;
  z-index: 2;
}

/* ---------- Card Text ---------- */
.bca-whypursue__card-text {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
  user-select: text;
  -webkit-user-select: text;
  transition: color 0.35s ease;
  position: relative;
  z-index: 2;
}

/* ---------- Dots (mobile only) ---------- */
.bca-whypursue__dots {
  display: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet: 2 columns */
@media (max-width: 960px) {
  .bca-whypursue__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Mobile: horizontal slider */
@media (max-width: 700px) {
  .bca-whypursue {
    padding: 36px 0 44px;
  }

  .bca-whypursue__inner {
    width: 100%;
  }

  .bca-whypursue__header {
    width: 90%;
    margin: 0 auto 24px;
  }

  .bca-whypursue__grid {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 8px 5% 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .bca-whypursue__grid::-webkit-scrollbar {
    display: none;
  }

  .bca-whypursue__card {
    flex: 0 0 78vw;
    max-width: 300px;
    scroll-snap-align: center;
    animation: none;
  }

  .bca-whypursue__dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
  }

  .bca-whypursue__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .bca-whypursue__dot.active {
    background: #1a56db;
    transform: scale(1.3);
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .bca-whypursue__card {
    flex: 0 0 85vw;
  }

  .bca-whypursue__title {
    font-size: 19px;
  }
}

/* ============================================
   BCA — Eligibility Criteria Section
   Class prefix: bca-eligibility
   ============================================ */

/* ---------- Keyframes ---------- */
@keyframes elFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes elStatCount {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes elIconSpin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.15); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes elShine {
  0%   { left: -75%; }
  100% { left: 125%; }
}

@keyframes elImgZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

/* ---------- Section ---------- */
.bca-eligibility {
  width: 100%;
  background-color: #f0f2f8;
  padding: 40px 0 48px;
}

/* ---------- Inner ---------- */
.bca-eligibility__inner {
  width: 90%;
  /*max-width: 1200px;*/
  margin: 0 auto;
}

/* ---------- Top Row ---------- */
.bca-eligibility__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 24px;
  animation: elFadeUp 0.7s ease 0.1s both;
}

.bca-eligibility__top-left {
  flex: 1 1 60%;
  min-width: 0;
}

/* ---------- Title ---------- */
.bca-eligibility__title {
  color: #1a1a2e;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 12px;
}

/* ---------- Desc ---------- */
.bca-eligibility__desc {
  color: #4b5563;
  font-size: clamp(13px, 1.3vw, 14.5px);
  line-height: 1.70;
  margin: 0;
  max-width: 560px;
  user-select: text;
  -webkit-user-select: text;
}

/* ---------- Stats ---------- */
.bca-eligibility__stats {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: elStatCount 0.7s ease 0.35s both;
}

.bca-eligibility__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.bca-eligibility__stat-num {
  color: #1a56db;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.bca-eligibility__stat-label {
  color: #6b7280;
  font-size: 12.5px;
  font-weight: 500;
}

.bca-eligibility__stat-divider {
  width: 1.5px;
  height: 44px;
  background-color: #d1d5db;
  flex-shrink: 0;
}

/* ---------- Grid ---------- */
/* Col 1 (large white) = ~46%, Col 2 (blue+red) = ~27%, Col 3 (image) = ~27% */
.bca-eligibility__grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 420px; /* fixed height so it fits one screen */
}

/* ---------- Card Base ---------- */
.bca-eligibility__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: elFadeUp 0.65s ease both;
}

.bca-eligibility__card:nth-child(1) { animation-delay: 0.20s; }
.bca-eligibility__card:nth-child(2) { animation-delay: 0.30s; }
.bca-eligibility__card:nth-child(3) { animation-delay: 0.40s; }
.bca-eligibility__card:nth-child(4) { animation-delay: 0.50s; }
.bca-eligibility__card:nth-child(5) { animation-delay: 0.60s; }

/* Shine sweep */
.bca-eligibility__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-15deg);
  z-index: 2;
  pointer-events: none;
}

.bca-eligibility__card:hover::before {
  animation: elShine 0.55s ease forwards;
}

.bca-eligibility__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

/* ---------- White Card ---------- */
.bca-eligibility__card--white {
  background: #ffffff;
  border: 1px solid #e5e9f2;
  padding: 24px 22px;
}

.bca-eligibility__card--white:hover {
  box-shadow: 0 14px 36px rgba(26, 86, 219, 0.12);
  border-color: #c7d4f5;
}

/* ---------- Grid Placement ---------- */
.bca-eligibility__card--large {
  grid-column: 1;
  grid-row: 1;
}

.bca-eligibility__card--small {
  grid-column: 1;
  grid-row: 2;
  padding: 20px 22px;
}

.bca-eligibility__card--blue {
  grid-column: 2;
  grid-row: 1;
  background: #1a3a6b;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bca-eligibility__card--blue:hover {
  box-shadow: 0 14px 36px rgba(26, 58, 107, 0.35);
}

.bca-eligibility__card--red {
  grid-column: 2;
  grid-row: 2;
  background: #c0392b;
  padding: 24px 22px;
}

.bca-eligibility__card--red:hover {
  box-shadow: 0 14px 36px rgba(192, 57, 43, 0.32);
}

/* Image spans both rows */
.bca-eligibility__card--image {
  grid-column: 3;
  grid-row: 1 / 3;
  padding: 0;
}

/* ---------- Image ---------- */
.bca-eligibility__img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.6s ease;
  animation: elImgZoom 0.8s ease 0.4s both;
}

.bca-eligibility__card--image:hover .bca-eligibility__img {
  transform: scale(1.05);
}

.bca-eligibility__img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,15,40,0.72) 0%, transparent 100%);
  padding: 36px 18px 16px;
  border-radius: 0 0 16px 16px;
  z-index: 1;
}

.bca-eligibility__img-label {
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
}

/* ---------- Spec Label ---------- */
.bca-eligibility__spec-label {
  display: block;
  color: #dc2626;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ---------- Card Titles ---------- */
.bca-eligibility__card-title {
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 8px;
}

.bca-eligibility__card-title--dark  { color: #1a1a2e; }
.bca-eligibility__card-title--white { color: #ffffff; }
.bca-eligibility__card-title--red   { color: #dc2626; }

/* ---------- Card Text ---------- */
.bca-eligibility__card-text {
  font-size: 13px;
  line-height: 1.60;
  margin: 0 0 14px;
  user-select: text;
  -webkit-user-select: text;
}

.bca-eligibility__card-text--dark  { color: #4b5563; }
.bca-eligibility__card-text--white { color: rgba(255,255,255,0.82); }

/* ---------- Tags ---------- */
.bca-eligibility__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}

.bca-eligibility__tag {
  background: #f0f2f8;
  color: #374151;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 13px;
  border-radius: 50px;
  border: 1px solid #e0e4ef;
  transition: background 0.25s ease, color 0.25s ease;
}

.bca-eligibility__card--white:hover .bca-eligibility__tag {
  background: #e8eefb;
  color: #1a56db;
  border-color: #c7d4f5;
}

/* ---------- Cloud Icon ---------- */
.bca-eligibility__cloud-icon {
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.bca-eligibility__card--small:hover .bca-eligibility__cloud-icon {
  transform: translateY(-4px) scale(1.1);
}

/* ---------- AI Icon ---------- */
.bca-eligibility__card-icon {
  color: rgba(255,255,255,0.65);
  margin-top: auto;
  padding-top: 12px;
  transition: transform 0.4s ease, color 0.3s ease;
}

.bca-eligibility__card--blue:hover .bca-eligibility__card-icon {
  color: #ffffff;
  animation: elIconSpin 0.7s ease;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 960px) {
  .bca-eligibility__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .bca-eligibility__card--large { grid-column: 1; grid-row: 1; }
  .bca-eligibility__card--blue  { grid-column: 2; grid-row: 1; }
  .bca-eligibility__card--image { grid-column: 1 / 3; grid-row: 2; min-height: 220px; }
  .bca-eligibility__card--small { grid-column: 1; grid-row: 3; }
  .bca-eligibility__card--red   { grid-column: 2; grid-row: 3; }

  .bca-eligibility__top {
    flex-direction: column;
    gap: 16px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .bca-eligibility {
    padding: 36px 0 42px;
  }

  .bca-eligibility__inner {
    width: 92%;
  }

  .bca-eligibility__grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 12px;
  }

  .bca-eligibility__card--large,
  .bca-eligibility__card--blue,
  .bca-eligibility__card--red,
  .bca-eligibility__card--small,
  .bca-eligibility__card--image {
    grid-column: 1;
    grid-row: auto;
  }

  .bca-eligibility__card--image {
    min-height: 200px;
  }

  .bca-eligibility__card:hover {
    transform: none;
  }

  .bca-eligibility__stat-num { font-size: 20px; }
  .bca-eligibility__stat { padding: 0 16px; }
  .bca-eligibility__title { font-size: clamp(18px, 6vw, 22px); }
}

/* ============================================
   BCA — Eligibility Criteria Cards Section
   Class prefix: bca-elcriteria
   ============================================ */

/* ---------- Keyframes ---------- */
@keyframes elcrFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes elcrCardIn {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes elcrIconBounce {
  0%   { transform: scale(1) rotate(0deg); }
  30%  { transform: scale(1.2) rotate(-8deg); }
  60%  { transform: scale(0.95) rotate(4deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes elcrItemSlide {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ---------- Section ---------- */
.bca-elcriteria {
  width: 100%;
  background-color: #f0f2f8;
  padding: 52px 0 60px;
}

/* ---------- Inner ---------- */
.bca-elcriteria__inner {
  width: 80%;
  /*max-width: 1100px;*/
  margin: 0 auto;
}

/* ---------- Header ---------- */
.bca-elcriteria__header {
  text-align: center;
  margin-bottom: 44px;
  animation: elcrFadeUp 0.7s ease 0.1s both;
}

.bca-elcriteria__title {
  color: #1a1a2e;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 10px;
}

.bca-elcriteria__highlight {
  color: #1a56db;
  font-weight: 800;
}

.bca-elcriteria__subtitle {
  color: #6b7280;
  font-size: 15px;
  margin: 0;
}

/* ---------- Grid ---------- */
.bca-elcriteria__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ---------- Card ---------- */
.bca-elcriteria__card {
  background: #ffffff;
  border: 1px solid #e5e9f2;
  border-radius: 20px;
  padding: 32px 30px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  animation: elcrCardIn 0.65s ease both;
  position: relative;
  overflow: hidden;
}

.bca-elcriteria__card:nth-child(1) { animation-delay: 0.2s; }
.bca-elcriteria__card:nth-child(2) { animation-delay: 0.35s; }

/* Subtle top border accent on hover */
.bca-elcriteria__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a56db, #4f8ef7);
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.bca-elcriteria__card:hover::after {
  transform: scaleX(1);
}

.bca-elcriteria__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(26, 86, 219, 0.13);
  border-color: #c7d4f5;
}

/* ---------- Card Head ---------- */
.bca-elcriteria__card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

/* ---------- Icon Wrap ---------- */
.bca-elcriteria__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: #eef1fb;
  color: #1a56db;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.bca-elcriteria__card:hover .bca-elcriteria__icon-wrap {
  background-color: #1a56db;
  color: #ffffff;
  animation: elcrIconBounce 0.45s ease;
}

/* ---------- Card Title ---------- */
.bca-elcriteria__card-title {
  color: #1a1a2e;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

/* ---------- List ---------- */
.bca-elcriteria__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ---------- List Items ---------- */
.bca-elcriteria__item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #374151;
  font-size: 14px;
  line-height: 1.60;
  user-select: text;
  -webkit-user-select: text;
  animation: elcrItemSlide 0.5s ease both;
}

.bca-elcriteria__card:nth-child(1) .bca-elcriteria__item:nth-child(1) { animation-delay: 0.35s; }
.bca-elcriteria__card:nth-child(1) .bca-elcriteria__item:nth-child(2) { animation-delay: 0.45s; }
.bca-elcriteria__card:nth-child(1) .bca-elcriteria__item:nth-child(3) { animation-delay: 0.55s; }
.bca-elcriteria__card:nth-child(2) .bca-elcriteria__item:nth-child(1) { animation-delay: 0.45s; }
.bca-elcriteria__card:nth-child(2) .bca-elcriteria__item:nth-child(2) { animation-delay: 0.55s; }
.bca-elcriteria__card:nth-child(2) .bca-elcriteria__item:nth-child(3) { animation-delay: 0.65s; }

/* Icon before each item using inline SVG via ::before trick — we use pseudo bg icons */
.bca-elcriteria__item::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Check circle icon */
.bca-elcriteria__item--check::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231a56db' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
}

/* Info circle icon */
.bca-elcriteria__item--info::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231a56db' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E");
}

/* Refresh/relax icon */
.bca-elcriteria__item--refresh::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231a56db' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='23 4 23 10 17 10'/%3E%3Cpath d='M20.49 15a9 9 0 1 1-2.12-9.36L23 10'/%3E%3C/svg%3E");
}

/* Calendar icon */
.bca-elcriteria__item--calendar::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%231a56db' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
  .bca-elcriteria__grid {
    gap: 18px;
  }

  .bca-elcriteria__card {
    padding: 26px 22px 22px;
  }
}

/* Mobile — stack */
@media (max-width: 640px) {
  .bca-elcriteria {
    padding: 40px 0 48px;
  }

  .bca-elcriteria__inner {
    width: 92%;
  }

  .bca-elcriteria__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bca-elcriteria__header {
    margin-bottom: 32px;
  }

  .bca-elcriteria__title {
    font-size: clamp(20px, 6vw, 26px);
  }

  .bca-elcriteria__card {
    padding: 22px 18px 20px;
  }

  .bca-elcriteria__card:hover {
    transform: none;
  }

  .bca-elcriteria__card-title {
    font-size: 17px;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .bca-elcriteria__title {
    font-size: 19px;
  }

  .bca-elcriteria__item {
    font-size: 13.5px;
  }
}


/* ============================================
   BCA — Top Specializations Section
   Class prefix: bca-specializations
   ============================================ */

/* ---------- Keyframes ---------- */
@keyframes spFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes spCardIn {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes spIconPop {
  0%   { transform: scale(1) rotate(0deg); }
  35%  { transform: scale(1.25) rotate(-8deg); }
  65%  { transform: scale(0.95) rotate(4deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes spShine {
  0%   { left: -75%; }
  100% { left: 130%; }
}

/* ---------- Section ---------- */
.bca-specializations {
  width: 100%;
  background-color: #f0f2f8;
  padding: 36px 0 40px;
}

/* ---------- Inner ---------- */
.bca-specializations__inner {
  width: 90%;
  /*max-width: 1100px;*/
  margin: 0 auto;
}

/* ---------- Header ---------- */
.bca-specializations__header {
  text-align: center;
  margin-bottom: 28px;
  animation: spFadeUp 0.7s ease 0.1s both;
}

.bca-specializations__title {
  color: #1a1a2e;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 12px;
}

.bca-specializations__highlight {
  color: #1a56db;
  font-weight: 800;
}

.bca-specializations__subtitle {
  color: #6b7280;
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 560px;
}

/* ---------- Grid ---------- */
.bca-specializations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* ---------- Card ---------- */
.bca-specializations__card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e9f2;
  border-radius: 16px;
  padding: 20px 20px 18px;
  cursor: default;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
  animation: spCardIn 0.65s ease both;
}

/* Stagger delays */
.bca-specializations__card:nth-child(1) { animation-delay: 0.15s; }
.bca-specializations__card:nth-child(2) { animation-delay: 0.23s; }
.bca-specializations__card:nth-child(3) { animation-delay: 0.31s; }
.bca-specializations__card:nth-child(4) { animation-delay: 0.39s; }
.bca-specializations__card:nth-child(5) { animation-delay: 0.47s; }
.bca-specializations__card:nth-child(6) { animation-delay: 0.55s; }

/* Shine sweep */
.bca-specializations__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 1;
}

.bca-specializations__card:hover::before {
  animation: spShine 0.55s ease forwards;
}

/* Hover — full blue fill */
.bca-specializations__card:hover {
  background: linear-gradient(145deg, #1a56db 0%, #1240a8 100%);
  border-color: #1240a8;
  transform: translateY(-7px);
  box-shadow:
    0 18px 44px rgba(26, 86, 219, 0.28),
    0 4px 12px rgba(26, 86, 219, 0.18);
}

/* Icon on hover */
.bca-specializations__card:hover .bca-specializations__icon-wrap {
  background-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.30);
  animation: spIconPop 0.45s ease both;
}

/* Title on hover */
.bca-specializations__card:hover .bca-specializations__card-title {
  color: #ffffff;
}

/* Text on hover */
.bca-specializations__card:hover .bca-specializations__card-text {
  color: rgba(255, 255, 255, 0.82);
}

/* ---------- Icon Wrap ---------- */
.bca-specializations__icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background-color: #eef1fb;
  color: #1a56db;
  border: 1px solid #dde4f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

/* ---------- Card Title ---------- */
.bca-specializations__card-title {
  color: #1a1a2e;
   font-size: clamp(13.5px, 1.4vw, 15.5px);
  margin: 0 0 7px;
  font-weight: 700;
  line-height: 1.28;
  position: relative;
  z-index: 2;
  transition: color 0.35s ease;
}

/* ---------- Card Text ---------- */
.bca-specializations__card-text {
  color: #6b7280;
  font-size: 12.5px;
  line-height: 1.60;
  margin: 0;
  position: relative;
  z-index: 2;
  user-select: text;
  -webkit-user-select: text;
  transition: color 0.35s ease;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet: 2 columns */
@media (max-width: 960px) {
  .bca-specializations__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
  .bca-specializations {
    padding: 40px 0 48px;
  }

  .bca-specializations__inner {
    width: 92%;
  }

  .bca-specializations__header {
    margin-bottom: 32px;
  }

  .bca-specializations__title {
    font-size: clamp(20px, 6vw, 26px);
  }

  .bca-specializations__subtitle {
    font-size: 14px;
  }

  .bca-specializations__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bca-specializations__card {
    padding: 22px 18px 20px;
    animation: none;
  }

  .bca-specializations__card:hover {
    transform: none;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .bca-specializations__title {
    font-size: 19px;
  }

  .bca-specializations__card-text {
    font-size: 13px;
  }
}


/* ============================================
   BCA — Online BCA Syllabus Accordion
   Class prefix: bca-syllabus
   ============================================ */

/* ---------- Keyframes ---------- */
@keyframes sylFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes sylItemIn {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes sylSubjectIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Section ---------- */
.bca-syllabus {
  width: 100%;
  background-color: #1a3a6b;
  padding: 52px 0 64px;
}

/* ---------- Inner ---------- */
.bca-syllabus__inner {
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.bca-syllabus__header {
  text-align: center;
  margin-bottom: 40px;
  animation: sylFadeUp 0.7s ease 0.1s both;
}

.bca-syllabus__title {
  color: #ffffff;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.22;
  margin: 0 0 16px;
}

.bca-syllabus__desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(13px, 1.4vw, 14.5px);
  line-height: 1.75;
  margin: 0 auto;
  max-width: 680px;
  user-select: text;
  -webkit-user-select: text;
}

/* ---------- Accordion Wrapper ---------- */
.bca-syllabus__accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---------- Item ---------- */
.bca-syllabus__item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: sylItemIn 0.55s ease both;
}

.bca-syllabus__item:nth-child(1) { animation-delay: 0.15s; }
.bca-syllabus__item:nth-child(2) { animation-delay: 0.22s; }
.bca-syllabus__item:nth-child(3) { animation-delay: 0.29s; }
.bca-syllabus__item:nth-child(4) { animation-delay: 0.36s; }
.bca-syllabus__item:nth-child(5) { animation-delay: 0.43s; }
.bca-syllabus__item:nth-child(6) { animation-delay: 0.50s; }

/* Open state */
.bca-syllabus__item--open {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.20);
}

/* Hover on closed items */
.bca-syllabus__item:not(.bca-syllabus__item--open):hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.28);
}

/* ---------- Trigger Button ---------- */
.bca-syllabus__trigger {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  text-align: left;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 1.5vw, 15.5px);
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}

/* Open item trigger — dark text */
.bca-syllabus__item--open .bca-syllabus__trigger {
  color: #1a1a2e;
  padding-bottom: 14px;
}

/* ---------- Chevron ---------- */
.bca-syllabus__chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.35s ease, color 0.3s ease;
  color: rgba(255, 255, 255, 0.70);
}

.bca-syllabus__item--open .bca-syllabus__chevron {
  color: #1a1a2e;
  transform: rotate(0deg);
}

/* ---------- Panel ---------- */
.bca-syllabus__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Subjects Grid ---------- */
.bca-syllabus__subjects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  padding: 0 22px 20px;
  border-top: 1px solid #e8ecf5;
  margin-top: 2px;
  padding-top: 16px;
}

.bca-syllabus__subjects ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bca-syllabus__subjects li {
  color: #374151;
  font-size: 13.5px;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
  user-select: text;
  -webkit-user-select: text;
  animation: sylSubjectIn 0.4s ease both;
}

.bca-syllabus__subjects li:nth-child(1) { animation-delay: 0.05s; }
.bca-syllabus__subjects li:nth-child(2) { animation-delay: 0.10s; }
.bca-syllabus__subjects li:nth-child(3) { animation-delay: 0.15s; }

.bca-syllabus__subjects li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #1a56db;
  font-weight: 700;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
  .bca-syllabus__inner {
    width: 92%;
  }

  .bca-syllabus__trigger {
    padding: 16px 18px;
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .bca-syllabus {
    padding: 40px 0 50px;
  }

  .bca-syllabus__header {
    margin-bottom: 28px;
  }

  .bca-syllabus__title {
    font-size: clamp(20px, 6vw, 24px);
  }

  .bca-syllabus__desc {
    font-size: 13px;
  }

  /* Stack subjects single column on mobile */
  .bca-syllabus__subjects {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 16px 18px;
    padding-top: 14px;
  }

  .bca-syllabus__trigger {
    padding: 15px 16px;
    font-size: 13.5px;
  }

  .bca-syllabus__item {
    border-radius: 12px;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .bca-syllabus__title {
    font-size: 19px;
  }

  .bca-syllabus__trigger {
    font-size: 13px;
  }

  .bca-syllabus__subjects li {
    font-size: 13px;
  }
}

.bca-syllabus__item {
  background: #ffffff;
  border: 1px solid #e0e4ef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
 
/* Closed trigger — dark text */
.bca-syllabus__trigger {
  color: #1a1a2e;
}
 
/* Closed chevron */
.bca-syllabus__chevron {
  color: #6b7280;
}
 
/* Hover on closed */
.bca-syllabus__item:not(.bca-syllabus__item--open):hover {
  background: #f4f7ff;
  border-color: #b8caf7;
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.10);
}
 
.bca-syllabus__item:not(.bca-syllabus__item--open):hover .bca-syllabus__trigger {
  color: #1a56db;
}
 
.bca-syllabus__item:not(.bca-syllabus__item--open):hover .bca-syllabus__chevron {
  color: #1a56db;
}
 
/* ---- OPEN ITEM — White card, clearly visible on dark bg ---- */
.bca-syllabus__item--open {
  background: #ffffff;
  border: 2px solid #1a56db;
  box-shadow:
    0 0 0 4px rgba(26, 86, 219, 0.12),
    0 12px 32px rgba(0, 0, 0, 0.18);
}
 
/* Open trigger — blue title */
.bca-syllabus__item--open .bca-syllabus__trigger {
  color: #1a3a6b;
  font-weight: 800;
}
 
/* Open chevron — blue */
.bca-syllabus__item--open .bca-syllabus__chevron {
  color: #1a56db;
}
 
/* Divider inside open panel */
.bca-syllabus__subjects {
  border-top: 1px solid #e8ecf5;
}
 
/* Subject text — dark readable */
.bca-syllabus__item--open .bca-syllabus__subjects li {
  color: #374151;
}
 
/* Bullet — blue */
.bca-syllabus__item--open .bca-syllabus__subjects li::before {
  color: #1a56db;
}
 
/* Mobile — no hover tint on touch */
@media (max-width: 600px) {
 
 
  .bca-syllabus__item:not(.bca-syllabus__item--open):hover .bca-syllabus__trigger {
    color: #1a1a2e;
  }
 
  .bca-syllabus__item:not(.bca-syllabus__item--open):hover .bca-syllabus__chevron {
    color: #6b7280;
  }
}