/* ============================================================
   TCET NCC - enrollment-2026.css
   Table of Contents:
   1. CSS VARIABLES & GLOBAL ENROLLMENT RESET
   2. HERO SECTION (Carousel + Overlay)
   3. EVENT SCHEDULE BAR
   4. SECTION DIVIDER PATTERN
   5. OBJECTIVES & BENEFITS CARDS
   6. SELECTION PROCESS STEPS
   7. ACTION & REGISTRATION CARDS
   8. GALLERY GRID SECTION
   9. INNOVATION SHOWCASE CARDS
   10. OFFICER / BRANDING SECTION
   11. GLASSMORPHIC SOCIAL CARDS
   12. STICKY ENROLL BUTTON
   13. RESPONSIVE BREAKPOINTS
   14. ACCESSIBILITY / REDUCED MOTION
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES & GLOBAL ENROLLMENT RESET
   ============================================================ */
:root {
  --enr-red: #8b0000;
  --enr-red-dark: #1a1a2e;
  --enr-gold: #ffd600;
  --enr-blue: #1d4e89;
  --enr-green: #128807;
  --enr-saffron: #ff9933;
  --enr-white: #ffffff;
  --enr-light: #f6f8fa;
  --enr-card-bg: #ffffff;
  --enr-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.12);
  --enr-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.enrollment-hero,
.enrollment-section,
#officers {
  background: linear-gradient(135deg, var(--enr-light) 0%, #e9ecef 100%);
}

.enrollment-section + .enrollment-section {
  margin-top: 0;
}

.outer-wrapper {
  width: 100%;
  padding: 0px;
}

.section-80{
  width: 80%;
  padding: 10px;
  margin: auto;

}

/* ============================================================
   2. HERO SECTION (Carousel + Overlay Content)
   ============================================================ */
.enrollment-hero {
  width: 100% !important;
  position: relative;
  overflow: hidden;
  margin: 0px;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.enrollment-hero #heroCarousel {
  position: absolute !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  height: 85vh;
  z-index: 1;
}

.enrollment-hero #heroCarousel .carousel-item {
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.enrollment-hero .hero-carousel-item {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.5) contrast(1.1) saturate(0.9);
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.03); }
  50% { transform: scale(1.05); }
  75% { transform: scale(1.02); }
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(139, 0, 0, 0.45) 30%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(11, 27, 61, 0.65) 100%);
  z-index: 2;
}

.enrollment-hero .carousel-indicators {
  position: relative;
  z-index: 5;
  bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  max-width: 500px;
  margin: 0 auto;
}

.enrollment-hero .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 214, 0, 0.4);
  border: 1px solid var(--enr-gold);
  transition: var(--enr-transition);
}

.enrollment-hero .carousel-indicators [data-bs-target]:hover,
.enrollment-hero .carousel-indicators .active {
  background: var(--enr-gold);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(255, 214, 0, 0.7);
}

.enrollment-hero .carousel-control-prev,
.enrollment-hero .carousel-control-next {
  z-index: 5;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.enrollment-hero .carousel-control-prev:hover,
.enrollment-hero .carousel-control-next:hover {
  opacity: 1;
}

/* Hero Content Overlay */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  color: var(--enr-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--enr-gold) 0%, var(--enr-saffron) 100%);
  color: var(--enr-red-dark);
  font-family: 'Black Ops One', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 35px;
  letter-spacing: 3px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(255, 214, 0, 0.6),
              0 0 40px rgba(255, 214, 0, 0.4),
              0 0 60px rgba(255, 153, 51, 0.3);
  animation: badgePulse 2.5s ease-in-out infinite;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 10;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 214, 0, 0.5),
                0 0 40px rgba(255, 214, 0, 0.3);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 214, 0, 0.7),
                0 0 50px rgba(255, 153, 51, 0.4);
    transform: translateY(-2px) scale(1.02);
  }
}

.hero-tagline {
  font-family: 'Black Ops One', sans-serif;
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 800;
  color: var(--enr-white);
  margin: 25px 0 15px;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7),
               0 0 30px rgba(0, 0, 0, 0.7),
               0 0 50px rgba(255, 214, 0, 0.5),
               0 0 70px rgba(255, 153, 51, 0.4);
  background: linear-gradient(90deg,
      var(--enr-white) 0%,
      var(--enr-gold) 30%,
      var(--enr-saffron) 60%,
      var(--enr-white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: triGlow 3s ease-in-out infinite alternate;
  position: relative;
  z-index: 10;
}

@keyframes triGlow {
  0% {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7),
                 0 0 20px rgba(255, 214, 0, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8),
                 0 0 40px rgba(255, 153, 51, 0.5),
                 0 0 60px rgba(255, 214, 0, 0.4),
                 0 0 80px rgba(255, 214, 0, 0.3);
  }
}

.hero-subtagline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 10;
}

.hero-quote {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--enr-gold);
  margin: 15px 0;
  font-weight: 500;
  position: relative;
  padding: 0 20px;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6),
               0 0 20px rgba(255, 214, 0, 0.5);
  position: relative;
  z-index: 10;
}

.hero-quote::before,
.hero-quote::after {
  content: '"';
  font-size: 3rem;
  color: rgba(255, 214, 0, 0.4);
  font-family: Georgia, serif;
  font-weight: bold;
}

.hero-quote::before {
  position: absolute;
  left: -35px;
  top: -25px;
}

.hero-quote::after {
  position: absolute;
  right: -35px;
  bottom: -25px;
}

.ncc-tri-color-divider {
  height: 8px;
  width: 180px;
  margin: 35px auto;
  background: linear-gradient(90deg,
      var(--enr-saffron) 0% 33.33%,
      var(--enr-white) 33.33% 66.66%,
      var(--enr-green) 66.66% 100%);
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4),
              0 0 12px rgba(255, 214, 0, 0.4);
  animation: dividerGlow 2s ease-in-out infinite alternate;
}

@keyframes dividerGlow {
  0% { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); }
  100% { box-shadow: 0 4px 20px rgba(255, 214, 0, 0.4); }
}

.hero-cta {
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

.btn-hero {
  background: linear-gradient(135deg, var(--enr-red) 0%, var(--enr-red-dark) 100%);
  color: var(--enr-gold);
  border: 2px solid var(--enr-gold);
  padding: 16px 42px;
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--enr-transition);
  box-shadow: 0 0 20px rgba(139, 0, 0, 0.5),
              0 0 40px rgba(255, 214, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(0deg,
      transparent 25%,
      rgba(255, 255, 255, 0.2) 50%,
      transparent 75%);
  transform: rotate(30deg);
  transition: transform 0.8s;
}

.btn-hero:hover::before {
  transform: rotate(60deg) scale(1.5);
}

.btn-hero:hover {
  background: linear-gradient(135deg, var(--enr-red-dark) 0%, var(--enr-red) 100%);
  color: var(--enr-white);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 30px rgba(139, 0, 0, 0.6),
              0 0 50px rgba(255, 214, 0, 0.4),
              0 8px 32px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 214, 0, 0.7);
}

.btn-hero:active {
  transform: translateY(-1px) scale(1);
}

.btn-hero i {
  transition: transform 0.3s ease;
}

.btn-hero:hover i {
  transform: translateX(4px);
}

/* ============================================================
   3. EVENT SCHEDULE BAR
   ============================================================ */
.event-schedule {
  background: linear-gradient(135deg, var(--enr-red-dark) 0%, #0b1b3d 100%);
  padding: 40px 20px;
  border-radius: 20px;
  margin: 40px 0;
  box-shadow: var(--enr-shadow);
  position: relative;
  overflow: hidden;
}

.event-schedule::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--enr-saffron) 0%,
      var(--enr-gold) 50%,
      var(--enr-green) 100%);
}

.event-schedule h3 {
  color: var(--enr-gold);
  text-shadow: 0 0 15px rgba(255, 214, 0, 0.5),
               0 0 30px rgba(139, 0, 0, 0.3);
  font-family: 'Black Ops One', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  position: relative;
  animation: headingGlow 2.5s ease-in-out infinite alternate;
}

@keyframes headingGlow {
  0% {
    text-shadow: 0 0 5px rgba(255, 214, 0, 0.3),
                 0 0 10px rgba(139, 0, 0, 0.2);
  }
  100% {
    text-shadow: 0 0 15px rgba(255, 214, 0, 0.6),
                 0 0 30px rgba(139, 0, 0, 0.4),
                 0 0 40px rgba(255, 214, 0, 0.3);
  }
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.schedule-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  padding: 22px 15px;
  text-align: center;
  transition: var(--enr-transition);
  animation: scheduleFloat 4s ease-in-out infinite alternate;
}

.schedule-item:nth-child(1) { animation-delay: 0ms; }
.schedule-item:nth-child(2) { animation-delay: 200ms; }
.schedule-item:nth-child(3) { animation-delay: 400ms; }
.schedule-item:nth-child(4) { animation-delay: 600ms; }
.schedule-item:nth-child(5) { animation-delay: 800ms; }

@keyframes scheduleFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.schedule-item:hover {
  transform: translateY(-10px) scale(1.03);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 214, 0, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25),
              0 0 20px rgba(255, 214, 0, 0.25);
}

.schedule-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--enr-gold) 0%, var(--enr-saffron) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(255, 214, 0, 0.4);
  animation: iconSpin 6s linear infinite;
}

@keyframes iconSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.08); }
}

.schedule-icon i {
  font-size: 1.5rem;
  color: var(--enr-red-dark);
}

.schedule-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 214, 0, 0.85);
  margin-bottom: 6px;
}

.schedule-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--enr-white);
  line-height: 1.4;
}

/* ============================================================
   4. SECTION DIVIDER PATTERN
   ============================================================ */
.section-divider {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding: 20px 0;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(139, 0, 0, 0.4) 50%,
      transparent 100%);
  z-index: 1;
}

.section-divider h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 0 24px;
  margin: 0 0 16px 0;
  z-index: 3;
  letter-spacing: 2px;
  color: var(--enr-red-dark);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: text-shadow 0.35s ease;
}

.section-divider h2:hover {
  text-shadow: 0 0 12px rgba(255, 214, 0, 0.5),
               0 0 24px rgba(139, 0, 0, 0.35);
}

.section-divider h2::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 5px;
  border-radius: 4px;
  background: linear-gradient(90deg,
      var(--enr-saffron) 0%,
      var(--enr-gold) 50%,
      var(--enr-red) 100%);
  box-shadow: 0 0 10px rgba(139, 0, 0, 0.35);
}

.section-subtitle {
  color: var(--enr-red-dark);
  font-weight: 500;
  font-size: 1.15rem;
  margin-top: 12px;
  font-family: 'Poppins', sans-serif;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* ============================================================
   5. OBJECTIVES & BENEFITS CARDS
   ============================================================ */
.objectives-card,
.benefits-card {
  background: linear-gradient(135deg, var(--enr-card-bg) 0%, #f8f9fa 100%);
  border-radius: 22px;
  box-shadow: var(--enr-shadow);
  padding: 35px;
  border: 2px solid rgba(139, 0, 0, 0.1);
  transition: var(--enr-transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.objectives-card::before,
.benefits-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}

.objectives-card::before {
  background: linear-gradient(90deg,
      var(--enr-red) 0%,
      var(--enr-red-dark) 100%);
}

.benefits-card::before {
  background: linear-gradient(90deg,
      var(--enr-green) 0%,
      var(--enr-blue) 100%);
}

.objectives-card:hover,
.benefits-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18),
              0 0 20px rgba(255, 214, 0, 0.3);
  border-color: rgba(255, 214, 0, 0.4);
}

.card-header-bar {
  background: linear-gradient(90deg, var(--enr-red) 0%, var(--enr-red-dark) 100%);
  padding: 18px 30px;
  border-radius: 18px 18px 0 0;
  margin: -35px -35px 30px -35px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-header-bar.benefits-header {
  background: linear-gradient(90deg, var(--enr-green) 0%, var(--enr-blue) 100%);
}

.card-header-bar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--enr-saffron) 0%,
      var(--enr-gold) 50%,
      var(--enr-white) 100%);
}

.card-header-bar h3 {
  color: var(--enr-white);
  font-family: 'Black Ops One', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.card-header-bar h3 i {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
  animation: iconSpin 6s linear infinite;
}

.objectives-list,
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.obj-item-card,
.benefit-item-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 25px;
  margin-bottom: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7) 0%, rgba(248, 249, 250, 0.7) 100%);
  border-radius: 16px;
  border-left: 4px solid var(--enr-gold);
  transition: var(--enr-transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.obj-item-card::before,
.benefit-item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg,
      var(--enr-saffron) 0%,
      var(--enr-gold) 50%,
      var(--enr-green) 100%);
  opacity: 0.4;
}

.obj-item-card:hover,
.benefit-item-card:hover {
  background: var(--enr-white);
  transform: translateX(8px) scale(1.02);
  border-left-color: transparent;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.obj-item-card:hover::before,
.benefit-item-card:hover::before {
  opacity: 1;
}

.item-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--enr-gold) 0%, var(--enr-saffron) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255, 214, 0, 0.4),
              0 0 12px rgba(255, 214, 0, 0.3);
  transition: var(--enr-transition);
  position: relative;
  overflow: hidden;
}

.item-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.item-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(255, 214, 0, 0.5),
              0 0 20px rgba(255, 153, 51, 0.4);
}

.item-icon i {
  font-size: 1.5rem;
  color: var(--enr-red-dark);
  z-index: 1;
}

.benefit-icon {
  background: linear-gradient(135deg, var(--enr-green) 0%, var(--enr-blue) 100%);
  box-shadow: 0 4px 14px rgba(18, 132, 7, 0.4),
              0 0 12px rgba(18, 132, 7, 0.3);
}

.benefit-icon:hover {
  box-shadow: 0 6px 20px rgba(18, 132, 7, 0.5),
              0 0 20px rgba(18, 132, 7, 0.4);
}

.benefit-icon i {
  color: var(--enr-white);
}

.item-text {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #232323;
  font-weight: 500;
}

.item-text strong {
  color: var(--enr-red);
  font-weight: 700;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 4px;
}

.benefit-item-card .item-text strong {
  color: var(--enr-green);
}

.benefit-item-card .item-text {
  color: #232323;
}

/* Stagger animation for items */
.obj-item-card,
.benefit-item-card {
  opacity: 0;
  animation: fadeInUpStagger 0.8s ease-out forwards;
}

.obj-item-card:nth-child(1),
.benefit-item-card:nth-child(1) { animation-delay: 0.1s; }
.obj-item-card:nth-child(2),
.benefit-item-card:nth-child(2) { animation-delay: 0.2s; }
.obj-item-card:nth-child(3),
.benefit-item-card:nth-child(3) { animation-delay: 0.3s; }
.obj-item-card:nth-child(4),
.benefit-item-card:nth-child(4) { animation-delay: 0.4s; }
.obj-item-card:nth-child(5),
.benefit-item-card:nth-child(5) { animation-delay: 0.5s; }
.obj-item-card:nth-child(6),
.benefit-item-card:nth-child(6) { animation-delay: 0.6s; }
.obj-item-card:nth-child(7),
.benefit-item-card:nth-child(7) { animation-delay: 0.7s; }

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

/* ============================================================
   6. SELECTION PROCESS STEPS
   ============================================================ */
.selection-step {
  background: var(--enr-card-bg);
  border-radius: 22px;
  box-shadow: var(--enr-shadow);
  overflow: hidden;
  border: 2px solid rgba(139, 0, 0, 0.08);
  transition: var(--enr-transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.selection-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg,
      var(--enr-saffron) 0%,
      var(--enr-gold) 50%,
      var(--enr-green) 100%);
}

.selection-step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18),
              0 0 20px rgba(255, 214, 0, 0.25);
  border-color: rgba(255, 214, 0, 0.4);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 25px 15px;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, rgba(26, 26, 46, 0.05) 100%);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--enr-red) 0%, var(--enr-red-dark) 100%);
  color: var(--enr-gold);
  font-family: 'Black Ops One', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(139, 0, 0, 0.4);
  animation: stepGlow 3s ease-in-out infinite alternate;
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 214, 0, 0.3);
  animation: stepRing 2s linear infinite;
}

@keyframes stepGlow {
  0% { box-shadow: 0 4px 14px rgba(139, 0, 0, 0.4); }
  100% { box-shadow: 0 6px 24px rgba(139, 0, 0, 0.6), 0 0 15px rgba(255, 214, 0, 0.4); }
}

@keyframes stepRing {
  0% { transform: rotate(0deg) scale(1); opacity: 0.6; }
  100% { transform: rotate(360deg) scale(1.1); opacity: 0; }
}

.step-icon {
  font-size: 1.8rem;
  color: var(--enr-red);
  min-width: 30px;
  text-align: center;
}

.step-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--enr-red-dark);
  margin: 0;
  flex: 1;
}

.step-content {
  padding: 25px;
  flex: 1 1 auto;
}

.step-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.important-note {
  background: linear-gradient(135deg, rgba(255, 214, 0, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 214, 0, 0.4);
  border-radius: 12px;
  padding: 15px 20px;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: noteGlow 3s ease-in-out infinite alternate;
}

@keyframes noteGlow {
  0% { border-color: rgba(255, 214, 0, 0.3); }
  100% { border-color: rgba(255, 214, 0, 0.7); }
}

.important-note i {
  font-size: 1.3rem;
  color: var(--enr-red);
  flex-shrink: 0;
}

.important-note strong {
  color: var(--enr-red-dark);
  font-weight: 700;
}

.candidate-note {
  background: linear-gradient(135deg, var(--enr-blue) 0%, var(--enr-red-dark) 100%);
  border-radius: 15px;
  padding: 20px 30px;
  margin: 35px auto 0;
  max-width: 1000px;
  color: var(--enr-white);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: noteFloat 4s ease-in-out infinite alternate;
}

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

.candidate-note i {
  font-size: 1.5rem;
  color: var(--enr-gold);
  margin-right: 10px;
}

.candidate-note strong {
  color: var(--enr-gold);
}

/* ============================================================
   7. ACTION & REGISTRATION CARDS
   ============================================================ */
.action-card {
  background: linear-gradient(145deg, var(--enr-card-bg) 0%, #f8f9fa 100%);
  border-radius: 22px;
  padding: 35px;
  text-align: center;
  box-shadow: var(--enr-shadow);
  border: 1px solid rgba(139, 0, 0, 0.08);
  transition: var(--enr-transition);
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.action-card:hover {
  transform: translateY(-10px) rotate(0.5deg) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 214, 0, 0.4);
}

.action-card:active {
  transform: translateY(-5px) scale(1.01);
}

.action-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg,
      var(--enr-saffron) 0%,
      var(--enr-gold) 50%,
      var(--enr-green) 100%);
  border-radius: 2px;
  opacity: 0.6;
}

.action-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--enr-red) 0%, var(--enr-red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.35),
              0 0 15px rgba(255, 214, 0, 0.3);
  animation: actionIconPulse 3s ease-in-out infinite;
  border: 3px solid rgba(255, 214, 0, 0.2);
}

@keyframes actionIconPulse {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.35),
                0 0 15px rgba(255, 214, 0, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 28px rgba(139, 0, 0, 0.5),
                0 0 24px rgba(255, 214, 0, 0.5);
    transform: scale(1.05);
  }
}

.action-icon i {
  font-size: 2rem;
  color: var(--enr-gold);
}

.qr-label {
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--enr-blue);
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--enr-gold) 0%, var(--enr-saffron) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 2px 12px;
  border-radius: 6px;
}

.qr-code {
  background: var(--enr-white);
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1),
              inset 0 0 0 1px rgba(139, 0, 0, 0.08);
  border: 1px solid rgba(139, 0, 0, 0.1);
  animation: qrGlow 4s ease-in-out infinite alternate;
}

@keyframes qrGlow {
  0% { border-color: rgba(139, 0, 0, 0.08); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); }
  100% { border-color: rgba(255, 214, 0, 0.4); box-shadow: 0 6px 22px rgba(139, 0, 0, 0.2), 0 0 15px rgba(255, 214, 0, 0.3); }
}

.qr-code img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.action-card:hover .qr-code img {
  transform: scale(1.05);
}

.action-card h3 {
  font-family: 'Black Ops One', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(135deg,
      var(--enr-red) 0%,
      var(--enr-gold) 50%,
      var(--enr-red-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 12px rgba(255, 214, 0, 0.4);
  animation: cardHeadingGlow 2.5s ease-in-out infinite alternate;
}

@keyframes cardHeadingGlow {
  0% { text-shadow: 0 0 5px rgba(255, 214, 0, 0.3); }
  100% { text-shadow: 0 0 15px rgba(255, 214, 0, 0.6), 0 0 25px rgba(255, 153, 51, 0.4); }
}

.action-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--enr-red) 0%, var(--enr-red-dark) 100%);
  color: var(--enr-gold);
  border: 1px solid var(--enr-gold);
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--enr-transition);
  box-shadow: 0 3px 12px rgba(139, 0, 0, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-cta:hover {
  background: linear-gradient(135deg, var(--enr-red-dark) 0%, var(--enr-red) 100%);
  color: var(--enr-white);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
  border-color: rgba(255, 214, 0, 0.5);
}

.btn-cta:hover i {
  transform: translateX(3px);
}

/* ============================================================
   8. GALLERY GRID SECTION
   ============================================================ */
.gallery-grid-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--enr-shadow);
  transition: var(--enr-transition);
  height: 100%;
  aspect-ratio: 4/3;
  transform-style: preserve-3d;
}

.gallery-grid-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--enr-transition);
  display: block;
}

.gallery-grid-item:hover img {
  transform: scale(1.08) rotate(1deg);
  filter: brightness(0.85) contrast(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: var(--enr-white);
  padding: 20px 15px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateY(0);
  opacity: 1;
  transition: var(--enr-transition);
}

.gallery-grid-item:hover .gallery-caption {
  background: linear-gradient(transparent, rgba(139, 0, 0, 0.9));
  padding-top: 25px;
}

/* ============================================================
   9. INNOVATION SHOWCASE CARDS
   ============================================================ */
.innovation-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--enr-shadow);
  transition: var(--enr-transition);
  position: relative;
  border: 1px solid rgba(139, 0, 0, 0.08);
  background: var(--enr-white);
}

.innovation-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 214, 0, 0.4);
}

.innovation-card .card-img-top {
  position: relative;
  overflow: hidden;
}

.innovation-card .card-img-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(139, 0, 0, 0.3) 0%,
      rgba(26, 26, 46, 0.5) 100%);
  opacity: 0.6;
  transition: opacity 0.3s;
  z-index: 1;
}

.innovation-card:hover .card-img-top::before {
  opacity: 0.4;
}

.innovation-card img {
  transition: var(--enr-transition);
}

.innovation-card:hover img {
  transform: scale(1.08);
}

.innovation-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(139, 0, 0, 0.85) 0%,
      rgba(26, 26, 46, 0.9) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--enr-white);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.95);
  padding: 20px;
  text-align: center;
  z-index: 2;
}

.innovation-card:hover .innovation-overlay {
  opacity: 1;
  transform: scale(1);
}

.innovation-overlay h5 {
  font-family: 'Black Ops One', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--enr-gold) 0%, var(--enr-white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 15px rgba(255, 214, 0, 0.5);
  letter-spacing: 1px;
}

.innovation-overlay p {
  font-size: 0.9rem;
  color: rgba(255, 214, 0, 0.85);
  font-style: italic;
  margin: 0;
  animation: fadeInText 0.5s ease-out 0.2s forwards;
  opacity: 0;
}

@keyframes fadeInText {
  to { opacity: 1; }
}

/* Staggered gallery animation */
.gallery-grid-item {
  opacity: 0;
  animation: galleryFadeIn 0.6s ease-out forwards;
}

.gallery-grid-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-grid-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-grid-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-grid-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-grid-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-grid-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-grid-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-grid-item:nth-child(8) { animation-delay: 0.8s; }

@keyframes galleryFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   10. OFFICER / BRANDING SECTION
   ============================================================ */
#officers {
  background: linear-gradient(135deg, var(--enr-light) 0%, #e9ecef 100%);
  padding: 60px 20px;
}

#officers .branding-section {
  padding: 20px 0;
}

#officers .container {
  max-width: 1200px;
}

#officers h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--enr-red-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding-left: 28px;
}

#officers h2::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 70%;
  border-radius: 4px;
  background: linear-gradient(180deg,
      var(--enr-saffron) 0%,
      var(--enr-gold) 50%,
      var(--enr-red) 100%);
  box-shadow: 0 0 10px rgba(139, 0, 0, 0.35);
}

#officers p {
  color: var(--enr-red-dark);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 30px;
}

#officers .card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: var(--enr-white);
  box-shadow: var(--enr-shadow);
  transition: var(--enr-transition);
  position: relative;
}

#officers .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

#officers .card-img-top {
  height: 240px;
  object-fit: cover;
  border-bottom: 3px solid var(--enr-gold);
  transition: var(--enr-transition);
}

#officers .card:hover .card-img-top {
  border-color: var(--enr-green);
}

#officers .card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--enr-red-dark);
}

#officers .badge {
  background: linear-gradient(90deg, var(--enr-red) 0%, var(--enr-red-dark) 100%);
  color: var(--enr-white);
  font-weight: 600;
}

#officers .btn-outline-primary {
  border-color: var(--enr-red);
  color: var(--enr-red);
  font-weight: 600;
  transition: var(--enr-transition);
}

#officers .btn-outline-primary:hover {
  background: var(--enr-red);
  color: var(--enr-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

/* ============================================================
   11. GLASSMORPHIC SOCIAL CARDS
   ============================================================ */
.social-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 0 8px 0;
  background: linear-gradient(90deg,
      var(--enr-saffron) 0%,
      var(--enr-gold) 40%,
      var(--enr-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 8px rgba(255, 214, 0, 0.25);
}

.social-heading::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  margin: 14px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg,
      var(--enr-saffron) 0%,
      var(--enr-gold) 100%);
  box-shadow: 0 0 8px rgba(139, 0, 0, 0.3);
}

.glass-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 25px 20px;
  transition: var(--enr-transition);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 214, 0, 0.3);
}

.icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--enr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.icon-circle img {
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.icon-circle:hover {
  transform: scale(1.1);
}

/* Mentor Highlight (used in popup) */
.mentor-highlight {
  background: rgba(0, 0, 0, 0.05);
  border: 1px dashed rgba(139, 0, 0, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.mentor-highlight h5 {
  color: var(--enr-red);
  font-weight: 700;
  font-size: 1.15rem;
}

/* ============================================================
   12. STICKY ENROLL BUTTON
   ============================================================ */
.enroll-now-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--enr-green) 0%, var(--enr-blue) 100%);
  color: var(--enr-white);
  padding: 16px 24px;
  border-radius: 50px;
  font-family: 'Black Ops One', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(18, 132, 7, 0.4);
  z-index: 1000;
  transition: var(--enr-transition);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--enr-gold);
  animation: enrollPulse 2.5s ease-in-out infinite;
  backdrop-filter: blur(4px);
}

.enroll-now-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 32px rgba(18, 132, 7, 0.5),
              0 0 20px rgba(255, 214, 0, 0.4);
  border-color: rgba(255, 214, 0, 0.6);
}

.enroll-now-btn i {
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes enrollPulse {
  0%, 100% {
    box-shadow: 0 6px 24px rgba(18, 132, 7, 0.4);
  }
  50% {
    box-shadow: 0 8px 28px rgba(18, 132, 7, 0.55),
                0 0 20px rgba(255, 214, 0, 0.4);
  }
}

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

/* ============================================================
   13. RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1200px) {
  .schedule-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .action-card {
    padding: 28px 20px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    padding: 0 15px;
  }

  .hero-tagline {
    font-size: 3.2rem;
  }

  .enrollment-hero {
    min-height: 80vh;
  }

  .enrollment-hero .hero-carousel-item {
    height: 80vh;
  }

  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content .hero-tagline {
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .enrollment-hero {
    min-height: 70vh;
  }

  .enrollment-hero .hero-carousel-item {
    height: 70vh;
  }

  .hero-content {
    padding: 0 12px;
  }

  .hero-tagline {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .hero-subtagline {
    font-size: 1rem;
  }

  .hero-quote::before,
  .hero-quote::after {
    display: none;
  }

  .hero-quote {
    padding: 0 15px;
    margin: 12px 0;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .section-divider h2 {
    font-size: 1.8rem;
  }

  .obj-item-card,
  .benefit-item-card {
    padding: 18px 15px;
    align-items: center;
    text-align: center;
  }

  .item-icon {
    margin-bottom: 10px;
  }

  .item-text {
    font-size: 0.9rem;
  }

  .step-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .step-content {
    padding: 20px 15px 25px;
  }

  .step-content p,
  .action-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .action-card {
    padding: 28px 15px;
    margin-bottom: 20px;
  }

  .action-icon {
    width: 75px;
    height: 75px;
  }

  .action-icon i {
    font-size: 1.6rem;
  }

  .enroll-now-btn {
    bottom: 20px;
    right: 20px;
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  #officers {
    padding: 40px 15px;
  }

  #officers h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .enrollment-hero {
    min-height: 60vh;
  }

  .enrollment-hero .hero-carousel-item {
    height: 60vh;
  }

  .hero-tagline {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .hero-subtagline {
    font-size: 0.9rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 8px 20px;
  }

  .ncc-tri-color-divider {
    width: 90px;
    height: 4px;
  }

  .schedule-item {
    padding: 18px 10px;
  }

  .schedule-icon {
    width: 48px;
    height: 48px;
  }

  .schedule-icon i {
    font-size: 1.2rem;
  }

  .schedule-label {
    font-size: 0.7rem;
  }

  .schedule-value {
    font-size: 0.8rem;
  }

  .section-divider h2 {
    font-size: 1.5rem;
  }

  .card-header-bar h3 {
    font-size: 1.1rem;
  }

  .item-text {
    font-size: 0.85rem;
  }

  .candidate-note {
    padding: 16px 20px;
    font-size: 0.9rem;
  }

  .enroll-now-btn {
    bottom: 15px;
    right: 15px;
    padding: 12px 18px;
    font-size: 0.8rem;
    gap: 5px;
  }
}

/* ============================================================
   14. ACCESSIBILITY / REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-content *,
  .hero-badge,
  .hero-tagline,
  .hero-quote,
  .ncc-tri-color-divider,
  .schedule-item,
  .schedule-icon,
  .step-number,
  .step-number::after,
  .action-icon,
  .qr-code,
  .enroll-now-btn,
  .enroll-now-btn i,
  .gallery-grid-item,
  .innovation-card,
  .section-divider h2 {
    animation: none !important;
    transform: none !important;
  }

  .hero-carousel-item {
    animation: none !important;
  }
}
