/* ============================================================
   WELLS ICT HUB — MODERN SHARED STYLES
   ============================================================ */
:root {
  --primary: #1d2253;
  --accent: #00AFEF;
  --accent2: #0b5fa5;
  --light: #f4f8fc;
  --dark: #0d1025;
  --text: #4b5563;
  --border: #e5eaf2;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── NAVBAR ── */
.wn-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;
  background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: box-shadow .3s;
}
.wn-nav .container { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.wn-brand { display: flex; align-items: center; }
.wn-logo { height: 280px; width: 100%; display: block; object-fit: contain; }
.wn-links { display: flex; align-items: center; list-style: none; gap: 2px; }
.wn-links > li > a { padding: 8px 12px; font-size: 13.5px; font-weight: 600; color: var(--primary); border-radius: 6px; transition: .2s; display: block; }
.wn-links > li > a:hover, .wn-links > li.active > a { color: var(--accent); background: var(--light); }
.wn-enroll { background: linear-gradient(135deg, var(--primary), var(--accent)) !important; color: #fff !important; border-radius: 20px !important; padding: 9px 20px !important; }
.wn-enroll:hover { opacity: .88; }

/* Dropdown */
.wn-drop { position: relative; }
.wn-drop-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 16px; min-width: 440px; z-index: 9999; border: 1px solid var(--border);
}
.wn-drop:hover .wn-drop-menu,
.wn-drop-menu.open { display: flex; gap: 12px; }
.wn-drop-col { display: flex; flex-direction: column; gap: 2px; min-width: 190px; }
.wn-drop-col h6 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); padding: 4px 10px 8px; border-bottom: 1px solid var(--border); margin-bottom: 4px; }
.wn-drop-menu a { display: block; padding: 7px 10px; font-size: 13px; color: var(--primary); border-radius: 6px; font-weight: 500; white-space: nowrap; transition: .15s; }
.wn-drop-menu a:hover { background: var(--light); color: var(--accent); }

/* Hamburger */
.wn-ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.wn-ham span { width: 26px; height: 2.5px; background: var(--primary); border-radius: 2px; display: block; transition: .3s; }
.wn-mob { display: none; position: fixed; top: 72px; left: 0; width: 100%; background: #fff; z-index: 9998; box-shadow: 0 8px 24px rgba(0,0,0,.1); max-height: calc(100vh - 72px); overflow-y: auto; padding: 12px 0; }
.wn-mob.open { display: block; }
.wn-mob a { display: block; padding: 12px 24px; font-size: 14px; font-weight: 600; color: var(--primary); border-bottom: 1px solid #f0f2f5; transition: .15s; }
.wn-mob a:hover { color: var(--accent); background: var(--light); }
.wn-mob-sub { padding-left: 16px; background: #f9fafb; }
.wn-mob-sub a { font-weight: 400; font-size: 13px; }

/* ── PAGE HERO BANNER ── */
.wn-page-hero {
  margin-top: 72px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 100%);
  padding: 60px 0 50px;
  position: relative; overflow: hidden;
}
.wn-page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../img/slide1.jpg') center/cover no-repeat; opacity: .08;
}
.wn-page-hero .container { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.wn-page-hero h1 { font-size: 38px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.wn-page-hero p { font-size: 16px; color: rgba(255,255,255,.78); max-width: 560px; }
.wn-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.wn-breadcrumb a, .wn-breadcrumb span { font-size: 13px; color: rgba(255,255,255,.65); }
.wn-breadcrumb a:hover { color: #fff; }
.wn-breadcrumb i { font-size: 10px; color: rgba(255,255,255,.4); }

/* ── SECTION UTILITIES ── */
.wn-section { padding: 80px 0; }
.wn-section.bg-light { background: var(--light); }
.wn-section.bg-dark { background: var(--primary); }
.wn-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.wn-tag { display: inline-block; background: rgba(0,175,239,.12); color: var(--accent); padding: 4px 14px; border-radius: 20px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.wn-heading { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 10px; line-height: 1.2; }
.wn-section.bg-dark .wn-heading { color: #fff; }
.wn-sub { font-size: 15.5px; color: var(--text); max-width: 580px; line-height: 1.75; }
.wn-section.bg-dark .wn-sub { color: rgba(255,255,255,.7); }
.wn-divider { width: 48px; height: 4px; background: var(--accent); border-radius: 2px; margin: 12px 0 24px; }
.wn-center { text-align: center; }
.wn-center .wn-divider { margin-left: auto; margin-right: auto; }
.wn-center .wn-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.wn-btn { display: inline-block; padding: 13px 30px; border-radius: 8px; font-weight: 700; font-size: 14.5px; transition: .2s; cursor: pointer; border: none; }
.wn-btn-primary { background: var(--accent); color: #fff; }
.wn-btn-primary:hover { background: #0099d4; color: #fff; }
.wn-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.wn-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.wn-btn-dark { background: var(--primary); color: #fff; }
.wn-btn-dark:hover { background: #151a40; color: #fff; }
.wn-btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 6px; }

/* ── COURSE CARDS ── */
.wn-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wn-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.wn-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.wn-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: .3s; }
.wn-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.wn-card-img { width: 100%; height: 190px; object-fit: cover; }
.wn-card-body { padding: 20px; }
.wn-card-tag { display: inline-block; background: rgba(0,175,239,.1); color: var(--accent); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.wn-card-body h4 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 8px; line-height: 1.35; }
.wn-card-body p { font-size: 13px; color: var(--text); line-height: 1.65; margin-bottom: 16px; }
.wn-card-footer { display: flex; gap: 8px; flex-wrap: wrap; }
.wn-card-footer a { font-size: 12.5px; padding: 7px 14px; border-radius: 6px; font-weight: 600; transition: .15s; }
.wn-btn-read { background: var(--light); color: var(--primary); border: 1px solid var(--border); }
.wn-btn-read:hover { background: #dde8f5; }
.wn-btn-enroll { background: var(--accent); color: #fff; }
.wn-btn-enroll:hover { background: #0099d4; color: #fff; }

/* ── PROCESS STEPS ── */
.wn-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.wn-process-item { padding: 32px 20px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); transition: .3s; }
.wn-process-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.wn-process-num { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 22px; font-weight: 800; color: #fff; }
.wn-process-item h4 { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.wn-process-item p { font-size: 13px; color: var(--text); }

/* ── WHY US CARDS ── */
.wn-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wn-why-card { padding: 28px 24px; background: #fff; border-radius: var(--radius); border-left: 4px solid var(--accent); box-shadow: var(--shadow); transition: .3s; }
.wn-why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.wn-why-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.wn-why-icon i { color: #fff; font-size: 20px; }
.wn-why-card h4 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.wn-why-card p { font-size: 13.5px; color: var(--text); line-height: 1.65; }

/* ── STATS BAR ── */
.wn-stats { background: linear-gradient(135deg, var(--primary), var(--accent2)); padding: 50px 0; }
.wn-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.wn-stat h3 { font-size: 40px; font-weight: 800; color: #fff; }
.wn-stat p { font-size: 13px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .8px; margin-top: 4px; }

/* ── CTA BANNER ── */
.wn-cta { background: linear-gradient(135deg, var(--primary), var(--accent2)); padding: 70px 0; text-align: center; }
.wn-cta h2 { font-size: 34px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.wn-cta p { font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 30px; max-width: 560px; margin-left: auto; margin-right: auto; }
.wn-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── ABOUT PAGE ── */
.wn-about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.wn-about-intro img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; max-height: 420px; }
.wn-about-text p { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.wn-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wn-value-card { padding: 28px 22px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; transition: .3s; border-top: 4px solid var(--accent); }
.wn-value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.wn-value-card .icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.wn-value-card .icon i { color: #fff; font-size: 22px; }
.wn-value-card h4 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.wn-value-card p { font-size: 13.5px; color: var(--text); }
.wn-skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wn-skill-item { margin-bottom: 4px; }
.wn-skill-label { display: flex; justify-content: space-between; font-size: 13.5px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.wn-skill-bar { height: 8px; background: rgba(255,255,255,.15); border-radius: 4px; overflow: hidden; }
.wn-skill-fill { height: 100%; background: var(--accent); border-radius: 4px; }

/* ── CONTACT PAGE ── */
.wn-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.wn-contact-info h3 { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.wn-contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.wn-contact-item .ci-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wn-contact-item .ci-icon i { color: #fff; font-size: 16px; }
.wn-contact-item h5 { font-size: 13px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.wn-contact-item p, .wn-contact-item a { font-size: 14px; color: var(--text); line-height: 1.6; }
.wn-contact-item a:hover { color: var(--accent); }
.wn-contact-form { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 36px; border: 1px solid var(--border); }
.wn-contact-form h3 { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.wn-form-group { margin-bottom: 16px; }
.wn-form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.wn-form-group input, .wn-form-group textarea, .wn-form-group select {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; color: var(--primary); outline: none; transition: .2s; background: #fff;
  font-family: 'Roboto', sans-serif;
}
.wn-form-group input:focus, .wn-form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,175,239,.1); }
.wn-form-group textarea { height: 110px; resize: vertical; }
.wn-map { border-radius: var(--radius); overflow: hidden; margin-top: 28px; }
.wn-map iframe { width: 100%; height: 260px; border: none; display: block; }

/* ── FOOTER ── */
.wn-footer { background: var(--dark); padding: 64px 0 0; }
.wn-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.wn-footer-brand a { display: inline-block; }
.wn-footer-logo { height: 100%; width: auto; display: block; object-fit: contain; }
.wn-footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.55); margin-top: 0; line-height: 1.75; }
.wn-footer h5 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 18px; }
.wn-footer-links { list-style: none; }
.wn-footer-links li { margin-bottom: 10px; }
.wn-footer-links a { font-size: 13.5px; color: rgba(255,255,255,.55); transition: .2s; }
.wn-footer-links a:hover { color: var(--accent); }
.wn-footer-contact p { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 2; }
.wn-footer-contact i { color: var(--accent); margin-right: 8px; width: 16px; }
.wn-social { display: flex; gap: 10px; margin-top: 18px; }
.wn-social a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); font-size: 14px; transition: .2s; }
.wn-social a:hover { background: var(--accent); color: #fff; }
.wn-footer-form input, .wn-footer-form textarea {
  width: 100%; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px; padding: 10px 14px; color: #fff; font-size: 13px; margin-bottom: 10px;
  outline: none; transition: .2s; font-family: 'Roboto', sans-serif;
}
.wn-footer-form input::placeholder, .wn-footer-form textarea::placeholder { color: rgba(255,255,255,.35); }
.wn-footer-form input:focus, .wn-footer-form textarea:focus { border-color: var(--accent); }
.wn-footer-form textarea { height: 80px; resize: none; }
.wn-footer-form button { background: var(--accent); color: #fff; border: none; padding: 10px 22px; border-radius: 7px; font-weight: 700; font-size: 13.5px; cursor: pointer; width: 100%; transition: .2s; }
.wn-footer-form button:hover { background: #0099d4; }
.wn-footer-bottom { border-top: 1px solid rgba(255,255,255,.07); margin-top: 50px; padding: 18px 0; }
.wn-footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); text-align: center; }
.wn-footer-bottom a { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .wn-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 991px) {
  .wn-links { display: none; }
  .wn-ham { display: flex; }
  .wn-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .wn-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .wn-process-grid { grid-template-columns: repeat(2, 1fr); }
  .wn-why-grid { grid-template-columns: repeat(2, 1fr); }
  .wn-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .wn-about-intro { grid-template-columns: 1fr; gap: 32px; }
  .wn-contact-grid { grid-template-columns: 1fr; }
  .wn-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .wn-grid-3, .wn-grid-2 { grid-template-columns: 1fr; }
  .wn-grid-4 { grid-template-columns: 1fr 1fr; }
  .wn-process-grid { grid-template-columns: 1fr 1fr; }
  .wn-why-grid { grid-template-columns: 1fr; }
  .wn-stats-grid { grid-template-columns: 1fr 1fr; }
  .wn-values-grid { grid-template-columns: 1fr; }
  .wn-footer-grid { grid-template-columns: 1fr; }
  .wn-page-hero h1 { font-size: 26px; }
  .wn-heading { font-size: 24px; }
  .wn-cta h2 { font-size: 24px; }
  .wn-contact-form { padding: 24px; }
  .wn-skills-grid { grid-template-columns: 1fr; }
}

/* ── COURSE DETAIL PAGES ── */
.wn-course-hero {
  margin-top: 72px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 100%);
  padding: 64px 0 56px;
  position: relative; overflow: hidden;
}
.wn-course-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../img/slide1.jpg') center/cover no-repeat; opacity: .07;
}
.wn-course-hero .wn-container { position: relative; z-index: 2; }
.wn-course-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 5px 14px; border-radius: 20px; margin-bottom: 16px;
}
.wn-course-hero h1 { font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.15; }
.wn-course-hero p { font-size: 16px; color: rgba(255,255,255,.78); max-width: 600px; line-height: 1.7; margin-bottom: 28px; }
.wn-course-hero-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.wn-course-hero-meta span { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: rgba(255,255,255,.75); }
.wn-course-hero-meta i { color: var(--accent); }

/* Course layout: main + sidebar */
.wn-course-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.wn-course-main {}
.wn-course-sidebar {}

/* Course image */
.wn-course-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); object-fit: cover; max-height: 380px; margin-bottom: 36px; }

/* About section */
.wn-course-about { background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--border); margin-bottom: 28px; }
.wn-course-about h2 { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--light); }
.wn-course-about p { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 12px; }

/* Curriculum */
.wn-curriculum { background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--border); margin-bottom: 28px; }
.wn-curriculum h2 { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--light); }
.wn-module { margin-bottom: 20px; }
.wn-module-title { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 700; color: var(--primary); background: var(--light); padding: 12px 16px; border-radius: 8px; margin-bottom: 10px; border-left: 4px solid var(--accent); }
.wn-module-title i { color: var(--accent); font-size: 16px; }
.wn-module-items { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; padding: 0 8px; }
.wn-module-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text); padding: 5px 0; }
.wn-module-item::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* Outcomes */
.wn-outcomes { background: linear-gradient(135deg, var(--primary), var(--accent2)); border-radius: var(--radius); padding: 32px; margin-bottom: 28px; }
.wn-outcomes h2 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 20px; }
.wn-outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wn-outcome-item { display: flex; align-items: flex-start; gap: 10px; }
.wn-outcome-item i { color: var(--accent); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.wn-outcome-item span { font-size: 13.5px; color: rgba(255,255,255,.85); line-height: 1.5; }

/* Sidebar enroll card */
.wn-enroll-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--border); overflow: hidden; position: sticky; top: 88px; }
.wn-enroll-card-top { background: linear-gradient(135deg, var(--primary), var(--accent2)); padding: 24px; text-align: center; }
.wn-enroll-card-top h3 { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.wn-enroll-card-top p { font-size: 13px; color: rgba(255,255,255,.75); }
.wn-enroll-card-body { padding: 24px; }
.wn-enroll-feature { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--text); }
.wn-enroll-feature:last-of-type { border-bottom: none; }
.wn-enroll-feature i { color: var(--accent); width: 18px; text-align: center; }
.wn-enroll-btn { display: block; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff; text-align: center; padding: 15px; border-radius: 8px; font-weight: 700; font-size: 15px; margin-top: 20px; transition: .2s; }
.wn-enroll-btn:hover { opacity: .9; color: #fff; }
.wn-enroll-btn-wa { display: block; background: #25D366; color: #fff; text-align: center; padding: 12px; border-radius: 8px; font-weight: 700; font-size: 14px; margin-top: 10px; transition: .2s; }
.wn-enroll-btn-wa:hover { background: #1da851; color: #fff; }

/* Other courses sidebar */
.wn-other-courses { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); padding: 24px; margin-top: 24px; }
.wn-other-courses h4 { font-size: 14px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--light); }
.wn-other-link { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; color: var(--primary); font-weight: 500; transition: .15s; }
.wn-other-link:last-child { border-bottom: none; }
.wn-other-link i { color: var(--accent); font-size: 12px; }
.wn-other-link:hover { color: var(--accent); padding-left: 4px; }

/* Responsive course layout */
@media (max-width: 991px) {
  .wn-course-layout { grid-template-columns: 1fr; }
  .wn-enroll-card { position: static; }
  .wn-course-hero h1 { font-size: 30px; }
  .wn-module-items { grid-template-columns: 1fr; }
  .wn-outcomes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .wn-course-hero h1 { font-size: 24px; }
  .wn-course-hero p { font-size: 14px; }
  .wn-course-about, .wn-curriculum, .wn-outcomes { padding: 20px; }
  .wn-enroll-card-body { padding: 16px; }
}

/* ── INDEX HERO ── */
.wn-hero {
  margin-top: 72px;
  background: linear-gradient(135deg, #0d1340 0%, #1d2253 55%, #0b5fa5 100%);
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.wn-hero-bg {
  position: absolute; inset: 0;
  background: url('../img/slide1.jpg') center/cover no-repeat;
  opacity: .1;
}
.wn-hero-inner {
  position: relative; z-index: 2;
  padding-top: 64px; padding-bottom: 64px;
  width: 100%;
}
.wn-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.wn-hero-badge {
  display: inline-block;
  background: rgba(0,175,239,.18); color: #00AFEF;
  border: 1px solid rgba(0,175,239,.35);
  padding: 5px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 20px;
}
.wn-hero-h1 {
  font-size: 50px; font-weight: 800; color: #fff;
  line-height: 1.12; margin-bottom: 20px;
}
.wn-hero-h1 span { color: #00AFEF; }
.wn-hero-p {
  font-size: 16px; color: rgba(255,255,255,.82);
  line-height: 1.8; margin-bottom: 36px;
}
.wn-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.wn-hero-btn-primary {
  background: #00AFEF; color: #fff;
  padding: 15px 36px; border-radius: 8px;
  font-weight: 700; font-size: 15px; transition: .2s;
}
.wn-hero-btn-primary:hover { background: #0099d4; color: #fff; }
.wn-hero-btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  padding: 15px 36px; border-radius: 8px;
  font-weight: 700; font-size: 15px; transition: .2s;
}
.wn-hero-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.wn-hero-stats {
  display: flex; gap: 36px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.12);
}
.wn-hero-stat { text-align: center; }
.wn-hero-stat-num { font-size: 32px; font-weight: 800; color: #fff; line-height: 1; }
.wn-hero-stat-label {
  font-size: 11px; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .8px; margin-top: 5px;
}
.wn-hero-img-wrap { display: flex; justify-content: center; align-items: center; }
.wn-hero-img {
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  width: 100%; height: 420px; object-fit: cover;
}

/* Hero responsive */
@media (max-width: 991px) {
  .wn-hero { min-height: auto; }
  .wn-hero-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .wn-hero-btns { justify-content: center; }
  .wn-hero-stats { justify-content: center; gap: 28px; }
  .wn-hero-img { height: 300px; }
  .wn-hero-h1 { font-size: 38px; }
  .wn-hero-inner { padding-top: 48px; padding-bottom: 48px; }
}
@media (max-width: 600px) {
  .wn-hero-h1 { font-size: 28px; }
  .wn-hero-p { font-size: 14px; margin-bottom: 24px; }
  .wn-hero-btns { flex-direction: column; }
  .wn-hero-btn-primary, .wn-hero-btn-outline { width: 100%; text-align: center; padding: 14px 20px; }
  .wn-hero-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .wn-hero-stat-num { font-size: 26px; }
  .wn-hero-img { height: 220px; }
  .wn-hero-inner { padding-top: 32px; padding-bottom: 32px; }
}

/* ── SIGNUP PAGE ── */
.wn-signup-hero {
  margin-top: 72px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 100%);
  padding: 56px 0 44px; text-align: center; position: relative; overflow: hidden;
}
.wn-signup-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../img/slide1.jpg') center/cover no-repeat; opacity: .07;
}
.wn-signup-hero .wn-container { position: relative; z-index: 2; }
.wn-signup-hero h1 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.wn-signup-hero p { font-size: 15px; color: rgba(255,255,255,.78); }
.wn-signup-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 40px 44px; margin: -28px auto 60px; max-width: 840px;
  border: 1px solid var(--border); position: relative; z-index: 3;
}
.wn-form-section-title {
  font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase;
  letter-spacing: 1.2px; border-bottom: 1px solid var(--border); padding-bottom: 8px;
  margin: 28px 0 18px; display: flex; align-items: center; gap: 8px;
}
.wn-form-section-title i { font-size: 14px; }
.wn-signup-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wn-signup-input {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; color: var(--primary); outline: none; transition: .2s;
  font-family: 'Roboto', sans-serif; background: #fff;
}
.wn-signup-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,175,239,.1); }
.wn-signup-label { display: block; font-size: 13px; font-weight: 600; color: #444; margin-bottom: 5px; }
.wn-signup-label .req { color: #e74c3c; margin-left: 2px; }
.wn-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin-top: 6px; }
.wn-check-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); cursor: pointer; }
.wn-check-item input[type=checkbox] { width: 15px; height: 15px; accent-color: var(--accent); cursor: pointer; }
.wn-ref-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,175,239,.08); border: 1px dashed var(--accent);
  border-radius: 8px; padding: 10px 16px; font-size: 13px; color: var(--primary);
  font-weight: 700; margin-bottom: 24px;
}
.wn-submit-btn {
  width: 100%; background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; border: none; border-radius: 8px; height: 50px; font-size: 15px;
  font-weight: 700; cursor: pointer; transition: .2s; margin-top: 28px;
  font-family: 'Roboto', sans-serif;
}
.wn-submit-btn:hover { opacity: .9; }
.wn-reset-btn {
  width: 100%; background: var(--light); color: var(--text); border: 1.5px solid var(--border);
  border-radius: 8px; height: 44px; font-size: 14px; font-weight: 600; cursor: pointer;
  margin-top: 10px; transition: .2s; font-family: 'Roboto', sans-serif;
}
.wn-reset-btn:hover { background: #dde8f5; }
.wn-privacy-note { font-size: 12px; color: #aaa; text-align: center; margin-top: 16px; }
.wn-privacy-note a { color: var(--accent); }
@media (max-width: 700px) {
  .wn-signup-card { padding: 24px 16px; margin: 0 12px 40px; }
  .wn-signup-row { grid-template-columns: 1fr; }
  .wn-check-grid { grid-template-columns: 1fr; }
  .wn-signup-hero h1 { font-size: 26px; }
}
