/* ============================================
   GLOBAL ENHANCEMENTS (KEEP)
   ============================================ */
:root { --brand1:#1144A2; --brand2:#B533BA; --glass: rgba(255,255,255,.08); }

body {
  background: linear-gradient(135deg, #0077ff 0%, #8b2bff 40%, #ff5bea 100%) !important;
  color: #ffffff !important;
}

a.btn { text-transform: none; letter-spacing:.2px; }

/* Sticky menu enhancements */
.landing-nav {
    position:sticky;
    top:80px;
    z-index:1020;
    background: rgba(0,10,43,.45);
    backdrop-filter: blur(6px);
}
.landing-nav .nav-link { color:#fff; opacity:.9; font-weight:600; }
.landing-nav .nav-link:hover { opacity:1; }
.landing-nav .btn-cta { margin-left:auto; }

/* ============================================
   SECTION + CARD STYLES (KEEP)
   ============================================ */
.section { padding: 70px 0; }
.section.light {
  background: linear-gradient(180deg, rgba(0,20,60,.6), rgba(0,0,0,0) 70%);
}

/* Card-lite fix (non-hero usage) */
.card-lite {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  border-radius:16px;
  color:#fff !important;
}

/* ============================================
   PROGRAM GRID (KEEP)
   ============================================ */
.prog-card {
  padding:20px;
  height:100%;
  display:flex;
  gap:6px;
  flex-direction:column;
}
.prog-card h3 { font-size:18px; margin:0; }
.prog-card p { color:#bcd2ff; font-size:14px; }
.prog-card .tags { display:flex; gap:6px; flex-wrap:wrap; }
.tag {
  font-size:12px;
  border:1px solid rgba(255,255,255,.15);
  padding:3px 8px;
  border-radius:999px;
  color:#cfe0ff;
}

/* ============================================
   LOGO STRIP (KEEP)
   ============================================ */
.logo-strip {
  display:grid;
  grid-template-columns: repeat(6,1fr);
  gap:14px;
}
@media (max-width: 991px) {
  .logo-strip { grid-template-columns: repeat(3,1fr); }
}

/* ============================================
   STICKY CTA (KEEP)
   ============================================ */
.sticky-cta {
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:1050;
  background: rgba(0,0,0,0.55) !important;
  backdrop-filter: blur(6px);
  padding:10px 14px;
  display:none;
}
@media (max-width: 991px) {
  .sticky-cta { display:block; }
}

/* ============================================
   ACCORDION (KEEP)
   ============================================ */
.accordion-button {
  background: rgba(255,255,255,0.2) !important;
  color:#fff !important;
}
.accordion-button:not(.collapsed) {
  background: rgba(255,255,255,0.3) !important;
}
.accordion-item,
.accordion-body {
  background:#0b0f1f;
  color:#dfe6ff;
  border:1px solid rgba(255,255,255,.08);
}

/* Anchor offset for sticky header */
[id]:target { scroll-margin-top: 110px; }

/* ============================================
   WEBINAR SECTION (KEEP)
   ============================================ */
#webinar {
  background: linear-gradient(135deg, #061537 0%, #14003a 50%, #35007a 100%) !important;
}

/* ============================================
   TESTIMONIALS SECTION (KEEP)
   ============================================ */
#testimonials {
  background: linear-gradient(135deg, #061537 0%, #14003a 50%, #35007a 100%) !important;
  padding: 80px 0 !important;
}

/* ============================================
   TYPOGRAPHY OVERRIDES (GLOBAL)
   ============================================ */
p, li, .text-light, .text-muted {
  color: #f1f4ff !important;
}

/* ============================================
   BUTTON STYLES (GLOBAL, not hero-only)
   ============================================ */
.btn-glass {
  background: rgba(0,0,0,0.35) !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
  color:#fff !important;
}
.btn-glass:hover {
  background: rgba(0,0,0,0.50) !important;
}

.btn-gradient {
  background: linear-gradient(90deg, #ff5bea, #8b2bff) !important;
  color:#fff !important;
  font-weight:600 !important;
  border:none !important;
  box-shadow:0 0 18px rgba(255, 0, 255, 0.35) !important;
}
.btn-gradient:hover {
  background: linear-gradient(90deg, #ff78ff, #a65cff) !important;
  box-shadow:0 0 28px rgba(255, 0, 255, 0.55) !important;
  transform: translateY(-2px) !important;
}

/* FIX NAVBAR SPACING ABOVE HERO */
.navbar {
    background: #05032b !important; /* dark menu background */
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
}


/* MOBILE FORM TWEAKS */
@media (max-width: 575px) {
  .modal-dialog { margin: 10px; }
  .modal-body { padding: 15px; }
  .card-lite { border-radius: 12px; }
}
