    :root{
      --ew-bg: #050713;
      --ew-bg-soft: #0b0f26;
      --ew-accent: #dbb668;       /* gold accent */
      --ew-accent-soft: rgba(245,185,65,.25);
      --ew-text: #f9fafb;
      --ew-text-muted: #9ca3af;
      --ew-border: rgba(148,163,184,.4);
      --ew-pill-bg: rgba(15,23,42,.9);
      --ew-pill-active: #dbb668;
      --ew-pill-active-text: #020617;
    }
    

    /* ===== GLOBAL ===== */
    body{
      margin:0;
      font-family: "Poppins", sans-serif;
      background:#ffffff;                 /* ✅ LIGHT site background */
      color:#111827;                      /* dark text */
    }

    /* ================= HEADER / NAVBAR ================= */
.ew-header{
  position: sticky;
  top:0;
  z-index: 1000;
  backdrop-filter: blur(18px);

 background: #ebecee;  /* deep navy */

  border-bottom: 1px solid rgba(148,163,184,.35);
}
    .ew-navbar{
      padding: .65rem 0;
    }

    /* Logo link */
.ew-logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

/* ✅ Logo image only */
.ew-logo-img{
  height: 80px;      /* adjust based on your logo */
  width: auto;
  display:block;
  object-fit: contain;
}

    /* ===== Desktop Nav Links in ONE LINE ===== */
    .ew-nav-links{
      display:flex !important;           /* force row layout */
      flex-direction: row;
      align-items: center;
      gap: 18px;                         /* space between links */
    }

    .ew-nav-links .nav-link{
      position:relative;
      padding: 0;
      font-size:.9rem;
      font-weight:400;
      color: #000;
      transition: color .18s ease, transform .18s ease;
    }
    .ew-nav-links .nav-link::after{
      content:"";
      position:absolute;
      left: 0;
      right:0;
      bottom: -0.25rem;
      height: 2px;
      border-radius:999px;
      background: linear-gradient(90deg, transparent, var(--ew-accent), transparent);
      transform: scaleX(0);
      transform-origin:center;
      transition: transform .22s ease-out;
    }
    .ew-nav-links .nav-link:hover,
    .ew-nav-links .nav-link:focus{
      color: #111827;
      transform: translateY(-1px);
    }
    .ew-nav-links .nav-link.active{
      color: var(--ew-accent);
      font-weight:500;
    }
    .ew-nav-links .nav-link.active::after{
      transform: scaleX(1);
    }

    /* Utilities: language + location */
    .ew-utilities{
      display:flex;
      align-items:center;
      gap: .75rem;
      margin-left:auto;
    }

    .ew-pill-toggle{
      display:inline-flex;
      background: var(--ew-pill-bg);
      border-radius: 999px;
      padding: 3px;
      border: 1px solid rgba(148,163,184,.4);
    }
    .ew-pill-toggle a{
      border:0;
      background: transparent;
      color: #fff !important;
      font-size: .78rem;
      padding: 4px 10px;
      border-radius: 999px;
      display:flex;
      align-items:center;
      gap:4px;
      cursor:pointer;
      transition: background .18s ease, color .18s ease, box-shadow .18s ease;
      white-space: nowrap;
    }
    .ew-pill-toggle a span.flag{
      font-size: .9rem;
    }
    .ew-pill-toggle a.active{
      background: var(--ew-pill-active);
      color: var(--ew-pill-active-text);
      box-shadow: 0 0 12px rgba(245,185,65,.65);
      font-weight:500;
    }

    /* Mobile menu button */
    .ew-menu-btn{
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,.55);
      padding: 6px 10px;
      background: rgba(15,23,42,.7);
      color: var(--ew-text);
      display:flex;
      align-items:center;
      gap: 6px;
      font-size: .82rem;
    }
    .ew-menu-btn i{
      font-size: 1.1rem;
    }

    /* ================= OFFCANVAS (MOBILE MENU) ================= */
    .ew-offcanvas.offcanvas{
      background: radial-gradient(circle at top, rgba(245,185,65,.18), transparent 55%)
                , #020617;
      color: var(--ew-text);
      border-right: 1px solid var(--ew-border);
      max-width: 280px;
    }
    .ew-offcanvas .offcanvas-header{
      border-bottom: 1px solid rgba(30,64,175,.6);
    }
    .ew-offcanvas .offcanvas-title{
      font-size: .9rem;
      letter-spacing:.16em;
      text-transform: uppercase;
      color: var(--ew-text-muted);
    }
    .ew-offcanvas .btn-close{
      filter: invert(1) grayscale(100%);
      opacity:.75;
    }
    .ew-offcanvas .navbar-nav .nav-link{
      padding: .6rem 0;
      border-bottom: 1px solid rgba(30,64,175,.45);
      font-size: .9rem;
      color: var(--ew-text-muted);
    }
    .ew-offcanvas .navbar-nav .nav-link:last-child{
      border-bottom:0;
    }
    .ew-offcanvas .navbar-nav .nav-link.active{
      color: var(--ew-accent);
      font-weight:500;
    }

    .ew-offcanvas .section-label{
      font-size: .75rem;
      text-transform: uppercase;
      letter-spacing: .22em;
      color: var(--ew-text-muted);
      margin-bottom: .4rem;
    }

    /* Small screen tweaks */
    @media (max-width: 991.98px){
      .ew-navbar{
        padding: .55rem 0;
      }
      .ew-logo-title{
        font-size: .9rem;
      }
      .ew-logo-subtitle{
        font-size: .7rem;
      }
    }
    /* ✅ Hide desktop nav links on tablets & mobiles */
@media (max-width: 991.98px){
  .ew-nav-links{
    display: none !important;
  }
  
}
.ew-profile-icon{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #dbb668;
  border: 1px solid rgba(18, 18, 18, 0.22) !important;
  background: rgba(255,255,255,.08)  !important;
  margin-left: 10px;
  transition: transform .15s ease, background .15s ease;
}

.ew-profile-icon i{
  font-size: 20px;
  line-height: 1;
}

.ew-profile-icon:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.14);
  color: #000;
}
    a{text-decoration: none;}












        .checkout-shell{
      padding: 40px 0;
    }
    .checkout-card{
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
      overflow: hidden;
    }
    .checkout-left{
      padding: 24px 24px 24px 24px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    }
    @media (min-width: 992px){
      .checkout-left{
        border-right: 1px solid rgba(148, 163, 184, 0.25);
        border-bottom: none;
        padding: 28px 28px 28px 28px;
      }
      .checkout-right{
        padding: 28px 28px 28px 24px;
      }
    }
    .checkout-right{
      padding: 24px;
    }
    .course-mini{
      display: flex;
      gap: 16px;
    }
    .course-thumb-sm{
      flex-shrink: 0;
      width: 96px;
      height: 72px;
      border-radius: 12px;
      overflow: hidden;
      background: #0f172a;
    }
    .course-thumb-sm img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .course-mini-title{
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .course-mini-meta{
      font-size: 0.85rem;
      color: #6b7280;
    }
    .checkout-price-tag{
      margin-top: 18px;
      padding: 12px 14px;
      border-radius: 12px;
      background: #eef2ff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.95rem;
    }
    .checkout-price-main{
      font-size: 1.35rem;
      font-weight: 700;
      color: #1f2933;
    }
    .checkout-badge-gateway{
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 0.8rem;
      background: #eff6ff;
      color: #1d4ed8;
    }
    .checkout-form-title{
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .checkout-form-sub{
      font-size: 0.9rem;
      color: #6b7280;
      margin-bottom: 16px;
    }
    .form-control, .form-select{
      border-radius: 999px;
      padding-left: 14px;
      padding-right: 14px;
    }
    .btn-checkout{
      border-radius: 999px;
      padding: 10px 18px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: 100%;
      background: linear-gradient(135deg, #2563eb, #3b82f6);
      border: none;
    }
    .btn-checkout:hover{
      opacity: .94;
    }
    .secure-note{
      font-size: 0.8rem;
      color: #6b7280;
      margin-top: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .checkout-error{
      background: #fee2e2;
      color: #b91c1c;
      border-radius: 999px;
      padding: 8px 14px;
      font-size: 0.85rem;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }