/* ============================================================
   BVSS Professional Website – css/style.css
   Color Scheme: Primary #0A4D8C | Secondary #1E88E5 | Accent #FFC107
   Font: Poppins (body) + Montserrat (headings)
   ============================================================ */

/* ── Google Fonts loaded in HTML ── */

/* ── CSS Variables ── */
:root {
  --primary:       #0A4D8C;
  --primary-dark:  #083d70;
  --primary-light: #1565c0;
  --secondary:     #1E88E5;
  --accent:        #FFC107;
  --accent-dark:   #e5ac00;
  --bg:            #F8F9FA;
  --white:         #ffffff;
  --text:          #1a1a2e;
  --text-muted:    #6b7280;
  --border:        #e5e7eb;
  --card-shadow:   0 4px 24px rgba(10,77,140,0.10);
  --card-shadow-lg:0 12px 40px rgba(10,77,140,0.18);
  --radius:        12px;
  --radius-sm:     8px;
  --transition:    0.3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Topbar ── */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.80);
  font-size: 0.80rem;
  padding: 7px 0;
  font-family: 'Poppins', sans-serif;
}
.topbar a { color: rgba(255,255,255,0.80); }
.topbar a:hover { color: var(--accent); }
.topbar .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.10);
  border-radius: 6px;
  margin-left: 5px;
  font-size: 0.85rem;
  transition: background var(--transition), color var(--transition);
}
.topbar .social-icons a:hover { background: var(--accent); color: var(--primary-dark); }

/* ── NAVBAR ── */
.navbar {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(10,77,140,0.10);
  padding: 10px 0;
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(10,77,140,0.18);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-brand img { height: 56px; width: auto; }
.brand-text h6 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
  line-height: 1.2;
}
.brand-text small {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
}
.navbar-nav .nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text) !important;
  padding: 8px 13px !important;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: var(--primary);
  color: var(--white) !important;
}
/* Dropdown */
.navbar-nav .dropdown-menu {
  border: none;
  border-top: 3px solid var(--primary);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--card-shadow-lg);
  padding: 8px 0;
  min-width: 220px;
  animation: dropIn 0.2s ease;
}
@keyframes dropIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
.navbar-nav .dropdown-item {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text);
  padding: 9px 18px;
  transition: background var(--transition), color var(--transition);
}
.navbar-nav .dropdown-item:hover { background: var(--bg); color: var(--primary); }
.navbar-nav .dropdown-submenu { position: relative; }
.navbar-nav .dropdown-submenu > .dropdown-menu {
  top: 0; left: 100%;
  border-top: 3px solid var(--accent);
  display: none;
}
.navbar-nav .dropdown-submenu:hover > .dropdown-menu { display: block; }

/* ── HERO SLIDER ── */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,77,140,0.82) 0%, rgba(10,77,140,0.50) 60%, rgba(0,0,0,0.30) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 660px;
}
.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-content p {
  font-size: 1.05rem;
  opacity: 0.90;
  margin-bottom: 28px;
  max-width: 520px;
}
/* Carousel controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.40);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  backdrop-filter: blur(4px);
  transition: background var(--transition);
  opacity: 1;
}
.hero-slider .carousel-control-prev { left: 20px; }
.hero-slider .carousel-control-next { right: 20px; }
.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover { background: var(--accent); border-color: var(--accent); }
.hero-slider .carousel-indicators button {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.45); border: none;
  transition: all 0.3s;
}
.hero-slider .carousel-indicators button.active {
  background: var(--accent); width: 28px; border-radius: 5px;
}

/* ── SECTION UTILITIES ── */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.section-bg { background: var(--bg); }
.section-dark { background: var(--primary); }

.section-label {
  display: inline-block;
  background: rgba(10,77,140,0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-dark .section-label { background: rgba(255,255,255,0.12); color: var(--accent); }
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--primary);
  margin-bottom: 14px;
}
.section-dark .section-title { color: var(--white); }
.section-sub { color: var(--text-muted); max-width: 560px; font-size: 0.97rem; }
.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 14px 0 0;
}
.divider.center { margin: 14px auto 0; }

/* ── BUTTONS ── */
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-custom:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,77,140,0.30); }
.btn-accent {
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-accent:hover { background: var(--accent-dark); color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,193,7,0.35); }
.btn-outline-primary-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-primary-custom:hover { background: var(--primary); color: var(--white); }
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.70);
  color: var(--white);
  background: transparent;
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-white:hover { background: var(--white); color: var(--primary); }

/* ── ABOUT SECTION ── */
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius); box-shadow: var(--card-shadow-lg); }
.about-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--card-shadow);
}
.about-badge .num { font-size: 2rem; font-family: 'Montserrat', sans-serif; font-weight: 800; display: block; line-height: 1; }
.about-badge .lbl { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-feature { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.feat-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(10,77,140,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.2rem;
  transition: background var(--transition), color var(--transition);
}
.about-feature:hover .feat-icon { background: var(--primary); color: var(--white); }
.feat-text h6 { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; color: var(--primary); margin-bottom: 2px; }
.feat-text p { font-size: 0.84rem; color: var(--text-muted); margin: 0; }

/* ── WHY CHOOSE US ── */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-lg);
  border-color: var(--primary);
}
.feature-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.7rem; color: var(--white);
  transition: transform var(--transition);
}
.feature-card:hover .feature-icon { transform: rotate(5deg) scale(1.08); }
.feature-card h5 { font-family: 'Montserrat', sans-serif; font-size: 1rem; color: var(--primary); margin-bottom: 10px; }
.feature-card p { font-size: 0.87rem; color: var(--text-muted); margin: 0; }

/* ── COURSE CARDS ── */
.course-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow-lg); }
.course-card .card-img-wrap { position: relative; height: 200px; overflow: hidden; }
.course-card .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.course-card:hover .card-img-wrap img { transform: scale(1.06); }
.course-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent); color: var(--primary-dark);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 20px;
}
.course-card .card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.course-card h5 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; color: var(--primary); margin-bottom: 10px; }
.course-card p { font-size: 0.87rem; color: var(--text-muted); margin-bottom: 16px; flex: 1; }
.course-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--border); }
.course-meta span { font-size: 0.82rem; color: var(--text-muted); }
.course-meta a { font-size: 0.85rem; font-weight: 700; color: var(--primary); }
.course-meta a:hover { color: var(--secondary); }

/* ── STATS COUNTER ── */
.stats-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.stats-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.stat-card {
  text-align: center;
  color: var(--white);
  padding: 20px;
  position: relative; z-index: 1;
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem; font-weight: 800;
  color: var(--accent);
  display: block; line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.92rem; opacity: 0.85; font-weight: 500; }
.stat-icon { font-size: 2rem; opacity: 0.25; position: absolute; top: 10px; right: 20px; }

/* ── EVENTS ── */
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  display: flex;
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-lg); }
.event-date-box {
  background: var(--primary);
  color: var(--white);
  min-width: 80px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 16px 12px; text-align: center;
}
.event-date-box .day { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 800; line-height: 1; }
.event-date-box .month { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
.event-date-box .year { font-size: 0.72rem; opacity: 0.65; }
.event-body { padding: 18px; flex: 1; }
.event-body h6 { font-family: 'Montserrat', sans-serif; font-size: 1rem; color: var(--primary); margin-bottom: 6px; }
.event-body p { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 12px; }
.event-meta span { font-size: 0.80rem; color: var(--text-muted); margin-right: 14px; }

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.10;
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
}
.testimonial-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}
.testimonial-name { font-family: 'Montserrat', sans-serif; font-size: 1rem; color: var(--primary); margin-bottom: 2px; }
.testimonial-course { font-size: 0.80rem; color: var(--secondary); }
.stars { color: var(--accent); font-size: 0.90rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.92rem; color: var(--text-muted); font-style: italic; margin-top: 14px; }

/* ── GALLERY ── */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(10,77,140,0.70);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 2rem; }

/* Lightbox */
.lightbox-modal .modal-content { background: #000; border: none; }
.lightbox-modal .modal-body img { max-height: 80vh; object-fit: contain; margin: 0 auto; display: block; }

/* ── GALLERY FILTERS ── */
.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  border-radius: 30px;
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.cta-section p { font-size: 1rem; opacity: 0.85; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── PARTNERS SLIDER ── */
.partner-logo {
  padding: 16px 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  height: 80px;
  filter: grayscale(100%);
  opacity: 0.60;
  transition: all var(--transition);
}
.partner-logo:hover { filter: none; opacity: 1; border-color: var(--primary); }

/* ── CONTACT ── */
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  text-align: center;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-lg); }
.contact-card .icon {
  width: 60px; height: 60px;
  background: rgba(10,77,140,0.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem; color: var(--primary);
}
.contact-card h6 { font-family: 'Montserrat', sans-serif; color: var(--primary); margin-bottom: 8px; }
.contact-card p, .contact-card a { font-size: 0.88rem; color: var(--text-muted); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.92rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,77,140,0.10);
  outline: none;
}
.form-label { font-size: 0.87rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }

/* Map */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-shadow); }
.map-wrap iframe { display: block; }

/* ── TIMELINE (About) ── */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px; top: 6px;
  width: 14px; height: 14px;
  background: var(--primary); border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-item h6 { font-family: 'Montserrat', sans-serif; color: var(--primary); margin-bottom: 4px; }
.timeline-item .year { font-size: 0.78rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 6px; }
.timeline-item p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* Team card */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-lg); }
.team-img { height: 220px; object-fit: cover; width: 100%; }
.team-body { padding: 20px; }
.team-body h6 { font-family: 'Montserrat', sans-serif; color: var(--primary); margin-bottom: 4px; }
.team-body span { font-size: 0.82rem; color: var(--secondary); }

/* ── PAGE BANNER ── */
.page-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 70px 0 55px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1400&q=30') center/cover;
  opacity: 0.06;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 10px; }
.breadcrumb-custom { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; opacity: 0.80; }
.breadcrumb-custom a { color: var(--accent); }

/* ── COURSE SEARCH / FILTER ── */
.course-search-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

/* ── SUCCESS STORIES ── */
.success-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  display: flex;
  gap: 0;
  transition: box-shadow var(--transition);
}
.success-card:hover { box-shadow: var(--card-shadow-lg); }
.success-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 4px solid var(--accent); flex-shrink: 0; margin: 24px; }
.success-body { padding: 24px 24px 24px 0; }
.success-body h6 { font-family: 'Montserrat', sans-serif; color: var(--primary); margin-bottom: 2px; }
.success-course { font-size: 0.80rem; color: var(--secondary); margin-bottom: 10px; display: block; }
.success-text { font-size: 0.88rem; color: var(--text-muted); font-style: italic; }

/* ── FOOTER ── */
footer {
  background: #051e3e;
  color: rgba(255,255,255,0.70);
  padding: 70px 0 0;
}
footer h5 {
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.87rem; line-height: 1.8; margin: 16px 0 20px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px; margin-right: 8px;
  color: rgba(255,255,255,0.70); font-size: 0.95rem;
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--primary-dark); }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.70);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--accent); font-size: 1rem; }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { font-size: 0.87rem; margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1; padding: 12px 16px; border: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-size: 0.88rem; background: rgba(255,255,255,0.08); color: #fff; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.40); }
.newsletter-form button { background: var(--accent); color: var(--primary-dark); border: none; padding: 0 18px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-weight: 700; cursor: pointer; transition: background var(--transition); font-size: 0.88rem; }
.newsletter-form button:hover { background: var(--accent-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  margin-top: 50px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center; justify-content: center;
  z-index: 9998;
  box-shadow: 0 4px 16px rgba(10,77,140,0.30);
  transition: background var(--transition), transform var(--transition);
}
#backToTop.show { display: flex; }
#backToTop:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-3px); }

/* ── AOS overrides ── */
[data-aos] { transition-duration: 0.6s !important; }

/* ── EVENTS PAGE ── */
.event-full-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-full-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-lg); }
.event-full-card .event-img { height: 200px; object-fit: cover; width: 100%; }
.event-full-card .event-info { padding: 22px; }
.event-full-card h5 { font-family: 'Montserrat', sans-serif; color: var(--primary); margin-bottom: 10px; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .about-badge { position: static; margin-top: 16px; display: inline-flex; gap: 10px; align-items: center; padding: 14px 18px; }
  .hero-slide { height: 460px; }
  .section-pad { padding: 70px 0; }
}
@media (max-width: 768px) {
  .hero-slide { height: 380px; }
  .hero-content h1 { font-size: 1.8rem; }
  .stat-number { font-size: 2.2rem; }
  .event-card { flex-direction: column; }
  .event-date-box { flex-direction: row; gap: 10px; padding: 12px; justify-content: flex-start; }
  .success-card { flex-direction: column; align-items: center; text-align: center; }
  .success-body { padding: 0 24px 24px; }
}
