 .banner-img {
  height: auto;
  object-fit: cover;
}

/* Mobile fix */
@media (max-width: 576px) {
  .banner-img {
    height: auto;
  }
}

/* Courses Section Base */
.courses-section {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
}

/* Header Text Styles */
.courses-sub-badge {
  display: inline-flex;
  align-items: center;
  background: #fbf0f2;
  color: #6b001a;
  border: 1px solid rgba(107, 0, 26, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.courses-main-title {
  color: #111111;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.courses-lead-desc {
  color: #666666;
  font-size: 17px;
  line-height: 1.6;
  margin-top: 15px;
}

/* Premium Minimalist Card Design */
.course-card {
  background: #fdfdfd;
  border: 1px solid rgba(107, 0, 26, 0.08);
  border-radius: 12px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

/* Interactive Hover States */
.course-card:hover {
  transform: translateY(-6px);
  border-color: #d4af37; /* Clean Gold highlight border on active focus */
  box-shadow: 0 20px 40px rgba(107, 0, 26, 0.04);
  background: #ffffff;
}

/* Monochromatic-to-Gold Icon Treatment */
.course-icon-wrap {
  width: 55px;
  height: 55px;
  background: rgba(107, 0, 26, 0.04);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #6b001a;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.course-card:hover .course-icon-wrap {
  background: #d4af37;
  color: #ffffff;
}

.course-title {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  letter-spacing: -0.3px;
}

.course-text {
  color: #555555;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 30px;
}

/* Direct Call Action Button Styling */
.btn-course-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: transparent;
  color: #6b001a !important;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 13px 20px;
  border: 1.5px solid rgba(107, 0, 26, 0.2);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-course-call:hover {
  background-color: #6b001a;
  color: #ffffff !important;
  border-color: #6b001a;
  box-shadow: 0 8px 20px rgba(107, 0, 26, 0.15);
}

/* Mobile Layout Adjustments */
@media (max-width: 767.98px) {
  .courses-main-title { font-size: 32px; }
  .course-card { padding: 30px 20px; }
}

/* Why Choose Us Base Styling */
.wcu-section {
  padding: 30px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.wcu-sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fbf0f2;
  color: #6b001a;
  border: 1px solid rgba(107, 0, 26, 0.08);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gold-pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #d4af37;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  animation: goldPulse 2s infinite;
}

.wcu-main-title {
  color: #111111;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
}

.wcu-lead-desc {
  color: #666666;
  font-size: 16px;
  line-height: 1.65;
  max-width: 440px;
}

/* Animated Luxury Metric Circle (Left Side) */
.metric-circle-wrap {
  width: 240px;
  height: 240px;
  border: 2px dashed rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  padding: 12px;
  position: relative;
}

.metric-circle-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2b000a 0%, #4a0011 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 45px rgba(74, 0, 17, 0.15);
  animation: subtleFloat 6s ease-in-out infinite;
}

.metric-number {
  font-size: 40px;
  font-weight: 900;
  color: #d4af37; /* Luxury Gold */
  letter-spacing: -1px;
}

.metric-label {
  font-size: 11px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  max-width: 130px;
  text-align: center;
  margin-top: 4px;
  opacity: 0.85;
}

/* Orbiting Node Animation */
.orbiting-node {
  width: 12px;
  height: 12px;
  background-color: #d4af37;
  border-radius: 50%;
  position: absolute;
  top: -6px;
  left: 50%;
  margin-left: -6px;
  transform-origin: 6px 126px;
  animation: slowOrbit 10s linear infinite;
}

/* Interactive Animated Feature Cards (Right Side) */
.wcu-feature-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wcu-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 35px;
  background-color: #fdfdfd;
  border: 1px solid rgba(107, 0, 26, 0.05);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

/* Subtle accent background trigger line */
.wcu-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0;
  background-color: #6b001a;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  transition: width 0.3s ease;
}

.wcu-feature-card:hover {
  transform: translateX(8px);
  border-color: rgba(107, 0, 26, 0.15);
  box-shadow: 0 15px 35px rgba(107, 0, 26, 0.03);
  background-color: #ffffff;
}

.wcu-feature-card:hover::before {
  width: 4px; /* Pops a solid maroon edge indicator out smoothly */
}

.wcu-number-tag {
  font-size: 14px;
  font-weight: 800;
  color: #d4af37; /* Pure Luxury Gold Tag */
  background: rgba(212, 175, 55, 0.08);
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.wcu-feature-title {
  font-size: 20px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 8px;
}

.wcu-feature-text {
  color: #555555;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes goldPulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

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

@keyframes slowOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* CSS Scroll Reveal Class Templates (For standard animation triggers) */
.animate-fade-up { animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-scale-up { animation: scaleUpIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-slide-right { animation: slideRightIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleUpIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideRightIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive Scaling Rules */
@media (max-width: 991.98px) {
  .wcu-main-title { font-size: 34px; }
  .wcu-lead-desc { max-width: 100%; }
  .wcu-feature-card { padding: 25px 20px; }
}

/* Premium Vibrant Maroon Footer Wrapper */
.premium-vibrant-footer {
  /* Rich maroon baseline transitioning into a deep luxurious wine gradient */
  background: linear-gradient(185deg, #4a0010 0%, #2b000a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #d4af37; /* Clean luxury gold line top border accent */
}

.footer-vibrant-top {
  padding: 95px 0 65px 0;
  position: relative;
  z-index: 2;
}

/* Glowing Typography Elements */
.vibrant-logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin: 0;
}

.gold-gradient-glow {
  background: linear-gradient(45deg, #ffffff, #fce0ad, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.vibrant-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #f3c675; /* Soft champagne gold subheader accent */
  font-weight: 700;
  display: block;
  margin-top: 6px;
}

.vibrant-text {
  color: #e2d6d8; /* High-readability soft ash pink-white over maroon */
  font-size: 14px;
  line-height: 1.7;
  max-width: 350px;
}

/* Animated Colorful Social Cluster */
.vibrant-social-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vibrant-social-btn:hover {
  color: #ffffff !important;
  transform: translateY(-4px);
}
.instagram-glow:hover { background: #d62976; box-shadow: 0 8px 25px rgba(214, 41, 118, 0.45); border-color: #d62976; }
.linkedin-glow:hover { background: #0077b5; box-shadow: 0 8px 25px rgba(0, 119, 181, 0.45); border-color: #0077b5; }
.facebook-glow:hover { background: #1877f2; box-shadow: 0 8px 25px rgba(24, 119, 242, 0.45); border-color: #1877f2; }
.youtube-glow:hover { background: #ff0000; box-shadow: 0 8px 25px rgba(255, 0, 0, 0.45); border-color: #ff0000; }

/* Academic Column with Active Icons */
.vibrant-heading {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #ffffff;
  border-left: 3px solid #d4af37; /* Gold indicator flag */
  padding-left: 12px;
}

.vibrant-links-grid {
  list-style: none;
  padding: 0; margin: 0;
}

.vibrant-links-grid li {
  margin-bottom: 14px;
}

.vibrant-links-grid li a {
  color: #e2d6d8;
  text-decoration: none;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
}

.track-icon {
  font-size: 14px;
  color: #f3c675; /* Crisp warm gold icons */
  width: 25px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.vibrant-links-grid li a:hover {
  color: #ffffff !important; 
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.vibrant-links-grid li a:hover .track-icon {
  color: #ffffff;
  transform: scale(1.2) rotate(5deg);
}

/* Interactive linkable Contact Modules (Google Maps & Tel Setup) */
.contact-anchor-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none !important;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vibrant-icon-window {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* Clear asset windows that play perfectly over maroon backgrounds */
.location-window { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); color: #ffffff; }
.phone-window { background: rgba(212, 175, 55, 0.15); border: 1px solid rgba(212, 175, 55, 0.3); color: #d4af37; }

.card-meta-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #c9b2b5; /* Distinguishable rose-gray sub labels */
  display: block;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.card-meta-value {
  color: #ffffff;
  font-size: 13.5px;
  line-height: 1.4;
  margin: 0;
}

.phone-highlight {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.card-external-arrow {
  position: absolute;
  top: 15px; right: 15px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

/* Anchor card hover interactions */
.contact-anchor-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.contact-anchor-card:hover .location-window { background: #ffffff; color: #4a0010; }
.contact-anchor-card:hover .phone-window { background: #d4af37; color: #111111; border-color: #d4af37; }
.contact-anchor-card:hover .card-external-arrow { color: #d4af37; transform: translate(2px, -2px); }

/* Sub-Footer Base Layer */
.footer-vibrant-bottom {
  padding: 28px 0;
  background:#4a0010; ; /* Solid darker crimson step down */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vibrant-copyright { color: #9c8487; font-size: 13px; margin: 0; }
.vibrant-legal-links a { color: #9c8487; text-decoration: none; font-size: 13px; transition: color 0.2s ease; }
.vibrant-legal-links a:hover { color: #ffffff; }
.bar-sep { color: white; margin: 0 10px; }

@media (max-width: 991.98px) {
  .vibrant-heading { margin-top: 20px; }
}



.footer-brand-header{
    display:flex;
    align-items:center;
}

.footer-logo{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:50%;
    background:#fff;
    padding:4px;
    border:3px solid #d4af37;
    box-shadow:0 0 18px rgba(212,175,55,.45);
    transition:.4s;
}

.footer-logo:hover{
    transform:rotate(8deg) scale(1.08);
    box-shadow:0 0 30px rgba(212,175,55,.8);
}

.vibrant-logo{
    margin:0;
}

.vibrant-subtitle{
    display:block;
    font-size:13px;
    letter-spacing:0.3px;
    color:#d9d9d9;
}

















/* Curriculum Section Core Base */
.curriculum-section {
  padding: 30px 0;
  background-color: #ffffff;
  position: relative;
}

.curr-badge {
  display: inline-flex;
  align-items: center;
  background: #fbf0f2;
  color: #6b001a;
  border: 1px solid rgba(107, 0, 26, 0.08);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.curr-title {
  color: #111111;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
}

.gold-gradient-glow {
  background: linear-gradient(45deg, #a37f1a, #d4af37, #f3c675);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.curr-desc {
  color: #666666;
  font-size: 16px;
  line-height: 1.65;
  max-width: 580px;
  margin: 15px auto 0 auto;
}

/* Left Stack Navigation System */
.curr-nav-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.curr-nav-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fdfdfd;
  border: 1px solid rgba(107, 0, 26, 0.05);
  padding: 24px 28px;
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.btn-num {
  font-size: 13px;
  font-weight: 800;
  color: #6b001a;
  background: rgba(107, 0, 26, 0.04);
  padding: 4px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.btn-label {
  font-size: 17px;
  font-weight: 800;
  color: #111111;
  transition: all 0.3s ease;
}

.btn-subtext {
  font-size: 12px;
  color: #777777;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.btn-arrow {
  font-size: 12px;
  color: rgba(0,0,0,0.15);
  transform: translateX(-5px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active Control Target Configuration States */
.curr-nav-btn.active, .curr-nav-btn:hover {
  background-color: #ffffff;
  border-color: #d4af37;
  box-shadow: 0 15px 35px rgba(107, 0, 26, 0.04);
  transform: translateX(6px);
}

.curr-nav-btn.active .btn-num {
  background: #d4af37;
  color: #ffffff;
}

.curr-nav-btn.active .btn-label {
  color: #6b001a;
}

.curr-nav-btn.active .btn-subtext {
  color: #333333;
}

.curr-nav-btn.active .btn-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #d4af37;
}

/* Right Content Display Window */
.curr-display-window {
  background: #ffffff;
  border: 1px solid rgba(107, 0, 26, 0.06);
  box-shadow: 0 25px 60px rgba(0,0,0,0.02);
  border-radius: 16px;
  padding: 45px;
  height: 100%;
  position: relative;
  min-height: 480px;
}

/* Panel Animations using Advanced CSS Hardware Acceleration */
.curr-panel {
  position: absolute;
  top: 45px; left: 45px; right: 45px;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.4s;
}

.curr-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
  position: relative;
  top: 0; left: 0; right: 0;
}

/* Display Components Inside Content Cards */
.panel-header-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.panel-icon {
  width: 55px;
  height: 55px;
  background: rgba(107, 0, 26, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b001a;
  font-size: 22px;
}

.panel-main-title {
  font-size: 24px;
  font-weight: 800;
  color: #111111;
  margin: 0;
}

.panel-timeline {
  font-size: 12px;
  color: #d4af37;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: block;
  margin-top: 2px;
}

.panel-summary {
  color: #555555;
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 35px;
}

/* Sequential Staggered Timeline Modules */
.module-timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 2px solid rgba(107, 0, 26, 0.06);
  padding-left: 25px;
  position: relative;
}

.timeline-node {
  font-size: 14.5px;
  color: #444444;
  line-height: 1.5;
  position: relative;
}

/* Bullet nodes using advanced layout coordinates */
.timeline-node::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border: 2px solid #6b001a;
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s ease;
}

.curr-panel.active .timeline-node::before {
  background: #d4af37;
  border-color: #d4af37;
}

.node-tag {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  color: #6b001a;
  background: #fbf0f2;
  padding: 2px 8px;
  border-radius: 3px;
  margin-right: 10px;
  letter-spacing: 0.5px;
}

/* Responsive Structural Breakpoints */
@media (max-width: 991.98px) {
  .curr-title { font-size: 34px; }
  .curr-display-window { padding: 30px 20px; min-height: auto; margin-top: 15px; }
  .curr-panel { position: relative; top: 0; left: 0; right: 0; }
}




/* Curriculum Section Core Base */
.curriculum-section {
  padding: 30px 0;
  background-color: #ffffff;
  position: relative;
}

.curr-badge {
  display: inline-flex;
  align-items: center;
  background: #fbf0f2;
  color: #6b001a;
  border: 1px solid rgba(107, 0, 26, 0.08);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.curr-title {
  color: #111111;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
}

.gold-gradient-glow {
  background: linear-gradient(45deg, #a37f1a, #d4af37, #f3c675);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.curr-desc {
  color: #666666;
  font-size: 16px;
  line-height: 1.65;
  max-width: 580px;
  margin: 15px auto 0 auto;
}

/* Left Stack Navigation System */
.curr-nav-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.curr-nav-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fdfdfd;
  border: 1px solid rgba(107, 0, 26, 0.05);
  padding: 20px 24px;
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.btn-num {
  font-size: 13px;
  font-weight: 800;
  color: #6b001a;
  background: rgba(107, 0, 26, 0.04);
  padding: 4px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.btn-label {
  font-size: 16px;
  font-weight: 800;
  color: #111111;
  transition: all 0.3s ease;
}

.btn-subtext {
  font-size: 12px;
  color: #777777;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.btn-arrow {
  font-size: 12px;
  color: rgba(0,0,0,0.15);
  transform: translateX(-5px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active Button Focus States */
.curr-nav-btn.active, .curr-nav-btn:hover {
  background-color: #ffffff;
  border-color: #d4af37;
  box-shadow: 0 15px 35px rgba(107, 0, 26, 0.04);
  transform: translateX(6px);
}

.curr-nav-btn.active .btn-num {
  background: #d4af37;
  color: #ffffff;
}

.curr-nav-btn.active .btn-label {
  color: #6b001a;
}

.curr-nav-btn.active .btn-subtext {
  color: #333333;
}

.curr-nav-btn.active .btn-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #d4af37;
}

/* Desktop Panel Base Container rules */
.curr-display-window {
  background: #ffffff;
  border: 1px solid rgba(107, 0, 26, 0.06);
  box-shadow: 0 25px 60px rgba(0,0,0,0.02);
  border-radius: 16px;
  padding: 45px;
  height: 100%;
  position: relative;
  min-height: 520px;
}

.curr-panel {
  position: absolute;
  top: 45px; left: 45px; right: 45px;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.4s;
}

.curr-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
  position: relative;
  top: 0; left: 0; right: 0;
}

.panel-header-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.panel-icon {
  width: 55px;
  height: 55px;
  background: rgba(107, 0, 26, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b001a;
  font-size: 22px;
}

.panel-main-title {
  font-size: 24px;
  font-weight: 800;
  color: #111111;
  margin: 0;
}

.panel-timeline {
  font-size: 12px;
  color: #d4af37;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: block;
  margin-top: 2px;
}

.panel-summary {
  color: #555555;
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 35px;
}

.module-timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 2px solid rgba(107, 0, 26, 0.06);
  padding-left: 25px;
  position: relative;
}

.timeline-node {
  font-size: 14.5px;
  color: #444444;
  line-height: 1.5;
  position: relative;
}

.timeline-node::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border: 2px solid #6b001a;
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s ease;
}

.curr-panel.active .timeline-node::before {
  background: #d4af37;
  border-color: #d4af37;
}

.node-tag {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  color: #6b001a;
  background: #fbf0f2;
  padding: 2px 8px;
  border-radius: 3px;
  margin-right: 10px;
  letter-spacing: 0.5px;
}

/* ========================================== */
/*   ADVANCED MOBILE & TABLET MEDIAS ENGINE   */
/* ========================================== */
@media (max-width: 991.98px) {
  .curriculum-section {
    padding: 30px 0;
  }
  
  .curr-title { 
    font-size: 32px; 
  }

  /* Transforms sidebar menu into a native horizontal thumb-slider */
  .curr-nav-stack {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px; /* Leaves clean room for movement tracks */
    margin-bottom: 10px;
    gap: 10px;
  }

  /* Adjusts button blueprints for sleek slider cards on responsive displays */
  .curr-nav-btn {
    flex-shrink: 0;
    width: auto;
    min-width: 210px;
    padding: 15px 18px;
    scroll-snap-align: start;
  }

  .curr-nav-btn:hover, .curr-nav-btn.active {
    transform: none; /* Disables side movement on slide interfaces */
  }

  .btn-arrow {
    display: none; /* Drops side vectors to make space on small screens */
  }

  .btn-label {
    font-size: 14.5px;
  }

  /* Removes relative overlay parameters to drop breaking bounds */
  .curr-display-window {
    padding: 30px 20px;
    min-height: auto;
    position: relative;
  }

  .curr-panel {
    position: absolute;
    top: 30px; left: 20px; right: 20px;
  }

  .curr-panel.active {
    position: relative;
    top: 0; left: 0; right: 0;
  }
  
  .panel-main-title {
    font-size: 20px;
  }
  
  .panel-summary {
    font-size: 14px;
    margin-bottom: 25px;
  }
}

/* Section Container Framework */
.training-section {
  padding: 30px 0;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  background: #fbf0f2;
  color: #6b001a;
  border: 1px solid rgba(107, 0, 26, 0.08);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.process-title {
  color: #111111;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
}

.gold-gradient-glow {
  background: linear-gradient(45deg, #a37f1a, #d4af37, #f3c675);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-desc {
  color: #666666;
  font-size: 16px;
  max-width: 520px;
  margin: 15px auto 0 auto;
}

/* Timeline Pipeline Base Architecture */
.timeline-pipeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0 auto;
  padding: 20px 0;
}

/* Central spine connector element line */
.timeline-pipeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(107, 0, 26, 0.06);
  transform: translateX(-50%);
  z-index: 1;
}

/* Alternating Card Structural Nodes */
.timeline-card-wrapper {
  display: flex;
  position: relative;
  margin-bottom: 50px;
  width: 50%;
  z-index: 2;
}

/* Left/Right Asymmetrical Layout Logic Mapping */
.timeline-card-wrapper:nth-child(even) {
  left: 0;
  padding-right: 60px;
  justify-content: flex-end;
}

.timeline-card-wrapper:nth-child(odd) {
  left: 50%;
  padding-left: 60px;
  justify-content: flex-start;
}

/* Floating Chronological Numerical Index Dots */
.timeline-dot {
  position: absolute;
  top: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #6b001a;
  color: #6b001a;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-card-wrapper:nth-child(even) .timeline-dot {
  right: -20px;
}

.timeline-card-wrapper:nth-child(odd) .timeline-dot {
  left: -20px;
}

/* Card Visual Containers styling */
.timeline-card {
  background: #ffffff;
   border: 1px solid black;
  padding: 30px;
  border-radius: 16px;
  max-width: 420px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.01);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(107, 0, 26, 0.04);
  color: #6b001a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.card-step-title {
  font-size: 19px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 10px;
}

.card-step-text {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* Hover Interactive Elevation System updates */
.timeline-card-wrapper:hover .timeline-card {
  border-color: #d4af37;
  box-shadow: 0 20px 40px rgba(107, 0, 26, 0.04);
  transform: translateY(-4px);
}

.timeline-card-wrapper:hover .timeline-dot {
  background: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
  transform: scale(1.1) rotate(360deg);
}

.timeline-card-wrapper:hover .card-icon-box {
  background: #6b001a;
  color: #ffffff;
}

/* Premium Navigation CTA Control Blocks */
.action-button-group {
  display: flex;
  gap: 15px;
  background: #ffffff;
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0 15px 40px rgba(107, 0, 26, 0.06);
  border: 1px solid rgba(107, 0, 26, 0.04);
}

.btn-action {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-call {
  background: #6b001a;
  color: #ffffff;
}

.btn-call:hover {
  background: #520013;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-demo {
  background: #fbf0f2;
  color: #6b001a;
}

.btn-demo:hover {
  background: #d4af37;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ========================================== */
/*    HIGH PERFORMANCE SCROLL ENGINE STATES   */
/* ========================================== */
.scroll-animate {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Left components entry offset profiles */
.timeline-card-wrapper:nth-child(even).scroll-animate {
  transform: translateX(-40px);
}

/* Right components entry offset profiles */
.timeline-card-wrapper:nth-child(odd).scroll-animate {
  transform: translateX(40px);
}

/* Global entry baseline target for buttons/titles */
div.scroll-animate:not(.timeline-card-wrapper) {
  transform: translateY(30px);
}

/* Activated State Triggered via JavaScript Engine */
.scroll-animate.animated-in {
  opacity: 1 !important;
  transform: translateX(0) !important;
  transform: translateY(0) !important;
}

/* ========================================== */
/*    STRICT MOBILE & TABLET LAYOUT ENGINE    */
/* ========================================== */
@media (max-width: 820px) {
  .process-title { font-size: 32px; }
  
  .timeline-pipeline::before {
    left: 20px; /* Shifts central pipeline tracking spine leftward */
  }

  .timeline-card-wrapper {
    width: 100% !important;
    left: 0 !important;
    padding-left: 55px !important;
    padding-right: 0 !important;
    justify-content: flex-start !important;
    margin-bottom: 35px;
  }

  .timeline-dot {
    left: 0 !important;
    right: auto !important;
  }

  /* Adjusts direction vectors on mobile viewports so everything floats from left to right */
  .timeline-card-wrapper:nth-child(even).scroll-animate,
  .timeline-card-wrapper:nth-child(odd).scroll-animate {
    transform: translateX(30px);
  }
  
  .timeline-card {
    max-width: 100%;
  }

  .action-button-group {
    flex-direction: column;
    width: 100%;
    padding: 15px;
    border-radius: 20px;
  }

  .btn-action {
    text-align: center;
    width: 100%;
  }
}

/* ========================================== */
/*     FIXED SIDEBAR ACTIONS COMPONENT       */
/* ========================================== */
.fixed-right-sticky-actions {
  position: fixed;
  right: 0; /* Pinned to the right edge */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 99999;
}

/* Base Structural Tab Design rules */
.sticky-action-bar-btn {
  display: flex;
  align-items: center;
  flex-direction: row-reverse; /* Flips icon and text order for the right side */
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  border: none;
  outline: none;
  padding: 0;
  height: 48px;
  width: 48px;
  border-radius: 8px 0 0 8px; /* Rounded inner left corners only */
  cursor: pointer;
  overflow: hidden;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.3s ease;
}

/* Icon Housing Frame */
.sticky-btn-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

/* Hidden Text Description Label */
.sticky-btn-text {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  padding-left: 20px; /* Padding adjusted for left-side expansion text */
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Color Identity Coding Specifications */
.sticky-demo-trigger {
  background: #6b001a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sticky-syllabus-trigger {
  background: #111111;
}

/* Interactive Expansion Triggers on Hover */
.sticky-action-bar-btn:hover {
  width: 200px; /* Slides out leftward smoothly */
  color: #ffffff;
}

.sticky-action-bar-btn:hover .sticky-btn-text {
  opacity: 1;
  transition-delay: 0.1s;
}

.sticky-demo-trigger:hover {
  background: #d4af37;
}

.sticky-syllabus-trigger:hover {
  background: #222222;
}

/* ========================================== */
/*   MOBILE PREFERENCES & COHORT LAYOUT CONVERT  */
/* ========================================== */
@media (max-width: 767.98px) {
  .fixed-right-sticky-actions {
    position: fixed;
    left: 0; right: 0; bottom: 0; top: auto;
    transform: none;
    flex-direction: row; /* Stays flat on mobile screens */
    gap: 0;
    width: 100%;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.1);
  }

  .sticky-action-bar-btn {
    width: 50% !important;
    height: 55px;
    border-radius: 0;
    flex-direction: row; /* Resets to normal left-to-right alignment for mobile bar */
    justify-content: center;
    padding: 0 10px;
  }

  .sticky-btn-icon {
    width: auto;
    margin-right: 8px;
    font-size: 14px;
  }

  .sticky-btn-text {
    opacity: 1 !important;
    padding-left: 0;
    font-size: 12px;
  }
  
  .sticky-demo-trigger {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}


/* ========================================== */
/*        3D COURSE CARD INTERFACES          */
/* ========================================== */
.courses-flip-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.courses-badge {
  display: inline-flex;
  background: #fbf0f2;
  color: #6b001a;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.courses-section-title {
  color: #111111;
  font-size: 38px;
  font-weight: 900;
}

.courses-section-subtitle {
  color: #666666;
  font-size: 15px;
}

/* Structural Card Container Rules */
.flip-card-container {
  background-color: transparent;
  width: 100%;
  height: 440px; /* Scaled vertical footprint to naturally hold icons + images */
  perspective: 1200px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.flip-card-container:hover .flip-card-inner,
.flip-card-container.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  border: 1px solid rgba(107, 0, 26, 0.05);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02);
}

/* ========================================== */
/*         CARD FRONT SURFACE DESIGN          */
/* ========================================== */
.flip-card-front {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card-front-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.course-icon-shield {
  width: 60px;
  height: 60px;
  background: rgba(107, 0, 26, 0.04);
  color: #6b001a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Course Image Window Structure */
.course-img-frame {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: #fafafa;
  margin-bottom: 20px;
}

.course-display-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-front-title {
  color: #111111;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 16px 0;
  min-height: 56px; /* Ensures text bounding stays perfectly uniform */
}

.flip-hint-tag {
  font-size: 11px;
  color: #999999;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Interactive Front State Enhancements */
.flip-card-container:hover .course-icon-shield {
  background: #6b001a;
  color: #ffffff;
}

.flip-card-container:hover .course-display-img {
  transform: scale(1.06);
}

/* ========================================== */
/*          CARD BACK SURFACE DESIGN          */
/* ========================================== */
.flip-card-back {
  background:maroon;
  transform: rotateY(180deg);
  padding: 30px;
  display: flex;
  align-items: center;
}

.card-back-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.course-back-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  margin-bottom: 12px;
  border-left: 3px solid #d4af37;
  padding-left: 10px;
}

.course-back-text {
  color: white;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
}

/* Dual Column Rear Actions Row */
.course-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.btn-card-action {
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  border: none; outline: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-expert {
  background: black;
  color: #ffffff;
}

.btn-expert:hover {
  background: #d4af37;
}

.btn-read-more {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-read-more:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

/* ========================================== */
/*          MOBILE COMPRESSION DRIVER         */
/* ========================================== */
@media (max-width: 575.98px) {
  .courses-section-title { font-size: 28px; }
  .flip-card-container { height: 460px; }
  .course-back-text { -webkit-line-clamp: 9; }
}

/* ========================================== */
/*     COURSE DETAILED BLUEPRINT STYLING     */
/* ========================================== */
.course-details-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.details-badge {
  display: inline-flex;
  background: #fbf0f2;
  color: #6b001a;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.details-main-title {
  color: #111111;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
}

.details-main-subtitle {
  color: #555555;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Luxury Segment Divider */
.luxury-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(107, 0, 26, 0) 0%, rgba(107, 0, 26, 0.15) 50%, rgba(107, 0, 26, 0) 100%);
  opacity: 1;
}

/* Overview Highlight Metric Cards Block */
.highlight-metric-card {
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.highlight-metric-card:hover {
  background: #ffffff;
  border-color: rgba(107, 0, 26, 0.1);
  box-shadow: 0 15px 40px rgba(107, 0, 26, 0.04);
  transform: translateY(-2px);
}

.metric-icon {
  width: 50px;
  height: 50px;
  background: rgba(107, 0, 26, 0.05);
  color: #6b001a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.metric-title {
  color: #111111;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.metric-desc {
  color: #666666;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* ========================================== */
/*     PREMIUM DARK ARCHITECTURE ACCORDION     */
/* ========================================== */
.premium-dark-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.premium-dark-accordion .accordion-item {
  background: #111111; /* Clean high-contrast dark space background */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Opened Dynamic Highlight Active state overrides */
.premium-dark-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(214, 175, 55, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Accordion Trigger Headings */
.premium-dark-accordion .accordion-button {
  background: #111111;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  padding: 24px 30px;
  box-shadow: none !important;
  border: none;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.premium-dark-accordion .accordion-button:not(.collapsed) {
  color: #d4af37; /* Shifts heading to premium gold flag on reveal */
  background: #161616;
}

/* Numeric Section Indicators */
.accordion-number {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: monospace;
}

.premium-dark-accordion .accordion-button:not(.collapsed) .accordion-number {
  color: #d4af37;
  background: rgba(214, 175, 55, 0.1);
}

/* Native Drop Arrow Override */
.premium-dark-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: 14px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-dark-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Interior Description Container Body Elements */
.premium-dark-accordion .accordion-body {
  background: #161616;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 10px 35px 35px 35px;
}

.body-intro-text {
  color: white;
  font-size: 14.5px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Content List Blueprint Layout elements */
.premium-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.premium-details-list li {
  position: relative;
  padding-left: 24px;
  color: #cccccc;
  font-size: 13.5px;
  line-height: 1.6;
}

.premium-details-list li strong {
  color: #ffffff;
  font-weight: 600;
}

.premium-details-list li::before {
  content: "\f00c"; /* FontAwesome Solid Check Symbol */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0; top: 2px;
  font-size: 11px;
  color: #d4af37;
}

/* Sub-card Schedule Blocks */
.schedule-sub-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 24px;
}

.schedule-sub-card h5 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.schedule-sub-card p {
  color: #bbbbbb;
  font-size: 13px;
  margin-bottom: 6px;
  line-height: 1.5;
}
.schedule-sub-card p:last-child { margin-bottom: 0; }
.gold-text { color: #d4af37; }

/* Pricing Summary Internal Action Box */
.pricing-notice-text {
  color: #999999;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.pricing-action-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
}

.btn-accordion-cta {
  width: 100%;
  background: #6b001a;
  color: #ffffff;
  border: none; outline: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.btn-accordion-cta:hover {
  background: #d4af37;
  transform: translateY(-1px);
}

/* ========================================== */
/*    RESPONSIVE BREAKPOINT RETRANSLATIONS    */
/* ========================================== */
@media (max-width: 767.98px) {
  .details-main-title { font-size: 28px; }
  .premium-dark-accordion .accordion-button {
    font-size: 15px;
    padding: 20px;
  }
  .premium-dark-accordion .accordion-body {
    padding: 5px 20px 24px 20px;
  }
}



/* ========================================== */
/*     PROGRAM HIGHLIGHTS SECTION STYLES      */
/* ========================================== */
.highlights-section {
  padding: 30px 0;
  background-color: #fdfdfd; /* Seamless pearl white continuity */
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(107, 0, 26, 0.05);
}

.highlights-badge {
  display: inline-flex;
  background: rgba(107, 0, 26, 0.05);
  color: #6b001a;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 1px solid rgba(107, 0, 26, 0.08);
}

.highlights-section-title {
  color: #111111;
  font-size: 38px;
  font-weight: 900;
}

.maroon-text-glow {
  color: #6b001a;
}

.highlights-section-subtitle {
  color: #666666;
  font-size: 15px;
  max-width: 580px;
  margin: 0 auto;
}

/* ========================================== */
/*         PREMIUM PREMIUM FEATURE CARDS       */
/* ========================================== */
.highlight-premium-card {
  background: #ffffff;
  border: 1px solid rgba(107, 0, 26, 0.04);
  border-radius: 24px;
  padding: 35px;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 15px 35px rgba(107, 0, 26, 0.01);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-premium-card:hover {
  transform: translateY(-6px);
  border-color: rgba(107, 0, 26, 0.12);
  box-shadow: 0 30px 60px rgba(107, 0, 26, 0.06);
}

/* Luxury Interactive Top Accent Bar */
.card-edge-glow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #6b001a, #d4af37);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-premium-card:hover .card-edge-glow {
  transform: scaleX(1);
}

/* Micro Icon Environments */
.highlight-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(107, 0, 26, 0.06);
  color: #6b001a;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.4s ease;
}

.highlight-icon-box.gold-variant {
  background: rgba(214, 175, 55, 0.08);
  color: #d4af37;
}

.highlight-premium-card:hover .highlight-icon-box {
  transform: scale(1.05);
}

/* Card Content Typography */
.highlight-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-title {
  color: #111111;
  font-size: 19px;
  font-weight: 800;
  margin: 0;
}

.highlight-desc {
  color: #555555;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* ========================================== */
/*     ON-SCROLL ENTRY TRANSITION STATES     */
/* ========================================== */
.reveal-on-scroll {
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll[data-reveal="left"] { transform: translateX(-50px); }
.reveal-on-scroll[data-reveal="right"] { transform: translateX(50px); }
.reveal-on-scroll[data-reveal="fade-up"] { transform: translateY(50px); }

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* Responsive Structural Fine-Tuning */
@media (max-width: 991.98px) {
  .highlights-section { padding: 80px 0; }
  .highlights-section-title { font-size: 30px; }
  .highlight-premium-card { padding: 28px; }
  .reveal-on-scroll { transform: none !important; transition: none !important; opacity: 1 !important; }
}


/* ========================================== */
/*     STUDENT LAUNCHPAD ARCHITECTURE STYLES  */
/* ========================================== */
.launchpad-section {
  padding: 120px 0;
  background-color: #fdfdfd; /* Clean minimal pearl white background */
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(107, 0, 26, 0.05);
}

.launchpad-badge {
  display: inline-flex;
  background: rgba(107, 0, 26, 0.05);
  color: #6b001a;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 1px solid rgba(107, 0, 26, 0.08);
}

.launchpad-section-title {
  color: #111111;
  font-size: 38px;
  font-weight: 900;
}

.maroon-text-glow {
  color: #6b001a;
}

.launchpad-section-subtitle {
  color: #666666;
  font-size: 15px;
  max-width: 580px;
  margin: 0 auto;
}

/* ========================================== */
/*       PREMIUM LAUNCHPAD CARD COMPONENT     */
/* ========================================== */
.launchpad-asset-card {
  background: #ffffff;
  border: 1px solid rgba(107, 0, 26, 0.04);
  border-radius: 24px;
  padding: 35px;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: 0 15px 35px rgba(107, 0, 26, 0.01);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Feature Spotlight Focus state for Live Projects card */
.feature-highlighted-card {
  border-color: rgba(107, 0, 26, 0.12) !important;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(135deg, #6b001a, #d4af37) border-box;
}

.launchpad-asset-card:hover {
  transform: translateY(-6px);
  border-color: rgba(107, 0, 26, 0.15);
  box-shadow: 0 30px 60px rgba(107, 0, 26, 0.06);
}

/* Micro Status Edge Accent Lines */
.asset-status-glow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: #6b001a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.asset-status-glow.gold-glow {
  background: #d4af37;
}

.launchpad-asset-card:hover .asset-status-glow {
  transform: scaleX(1);
}

/* Layout Top Bar inside Card */
.asset-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.asset-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(107, 0, 26, 0.06);
  color: #6b001a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.asset-icon-box.gold-variant {
  background: rgba(214, 175, 55, 0.08);
  color: #d4af37;
}

.asset-icon-box.maroon-variant {
  background: #6b001a;
  color: #ffffff;
}

/* Fine Pill Badge Configurations */
.asset-check-badge {
  font-size: 11px;
  font-weight: 700;
  color: #6b001a;
  background: rgba(107, 0, 26, 0.05);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(107, 0, 26, 0.1);
}

.asset-check-badge.gold-badge {
  color: #d4af37;
  background: rgba(214, 175, 55, 0.05);
  border-color: rgba(214, 175, 55, 0.12);
}

.asset-check-badge.extreme-badge {
  color: #ffffff;
  background: #6b001a;
  border-color: #6b001a;
}

/* Typography Body Controls */
.asset-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.asset-title {
  color: #111111;
  font-size: 19px;
  font-weight: 800;
  margin: 0;
}

.asset-desc {
  color: #555555;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* ========================================== */
/*            RESPONSIVE MEDIA SYSTEM         */
/* ========================================== */
@media (max-width: 991.98px) {
  .launchpad-section { padding: 80px 0; }
  .launchpad-section-title { font-size: 30px; }
  .launchpad-asset-card { padding: 28px; }
}





/* Section */
.pure-maps-section{
    padding: 30px 0;
}

/* Wrapper */
.luxury-map-viewport-wrapper{
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

/* Responsive Map */
.map-iframe-container{
    position: relative;
    width: 100%;
    height: 550px;
}

.map-iframe-container iframe{
    width: 100%;
    height: 100%;
    border: 0;
}

/* Tablet */
@media (max-width: 992px){
    .pure-maps-section{
        padding: 20px 0;
    }

    .map-iframe-container{
        height: 450px;
    }
}

/* Mobile */
@media (max-width: 768px){
    .pure-maps-section{
        padding: 20px 0;
    }

    .hud-main-heading{
        font-size: 32px;
    }

    .map-iframe-container{
        height: 320px;
    }

    .luxury-map-viewport-wrapper{
        border-radius: 15px;
    }
}

/* Small Mobile */
@media (max-width: 576px){
    .container-fluid{
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .hud-main-heading{
        font-size: 28px;
    }

    .map-iframe-container{
        height: 250px;
    }
}

