/* ================================
   RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;   /* Full app bg white on desktop */
  color: #111111;
}

/* ================================
   HEADER
================================ */

/* Main header bar */
.sw-header {
  background: #ffffff;
  padding: 12px 20px;
  border-bottom: 2px solid #f5c400; /* Yellow underline */
  position: sticky;
  top: 0;
  z-index: 900;
}

/* Inner row layout */
.sw-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

/* BRAND / LOGO TEXT */
.sw-logo {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  white-space: nowrap;
}

/* ================================
   TOP NAV (DESKTOP ONLY)
================================ */
.sw-main-topnav {
  display: flex;
  align-items: center;
  gap: 26px;
}

/* Menu link style */
.sw-main-topnav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  text-decoration: none;
  color: #000000;
  transition: 0.22s ease;
  padding: 4px 0;
}

.sw-main-topnav a i {
  font-size: 15px;
}

.sw-main-topnav a:hover,
.sw-main-topnav a.active {
  color: #f5c400; /* Highlight color */
}

/* ================================
   LOGOUT BUTTON (VISIBLE ALWAYS)
================================ */
/* LOGOUT BUTTON (works for both <a> and <button>) */
.sw-logout-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  background: #111;
  color: #ffffff;
  text-decoration: none;

  padding: 7px 16px;
  border-radius: 999px;

  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;

  transition: background 0.25s ease, color 0.25s ease;
}

/* Icon color */
.sw-logout-btn i {
  color: #f5c400;
  font-size: 16px;
}

/* Hover State */
.sw-logout-btn:hover {
  background: #000;
  color: #ffffff;
}

.sw-logout-btn:hover i {
  color: #ffd84a;
}

/* ================================
   RESPONSIVE BEHAVIOR (MOBILE)
================================ */
@media (max-width: 768px) {

  /* Hide ALL top menu on mobile */
  .sw-main-topnav {
    display: none;
  }

  /* Header layout → Logo left, Logout right */
  .sw-header-inner {
    justify-content: space-between;
  }

  /* Compact logout button (only icon) */
  .sw-logout-btn span {
    display: none; /* hide "Logout" text on mobile */
  }

  .sw-logout-btn {
    padding: 6px 8px;
  }
}



/* ================================
   HERO SECTION
================================ */
.sw-hero {
  position: relative;
  min-height: calc(100vh - 140px); /* header + footer space on desktop */
  background: url('https://images.pexels.com/photos/1477656/pexels-photo-1477656.jpeg?auto=compress&cs=tinysrgb&w=1600')
              center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* dark overlay so text is readable */
.sw-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* content card */
.sw-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 650px;
  padding: 70px 17px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 12px;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
}

.sw-hero-content h1 {
  font-size: 35px;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f5c400;
}

.sw-hero-content p {
  font-size: 23px;
  margin-bottom: 43px;
  line-height: 1.7;
}

/* CTA BUTTON */
.sw-hero-btn {
  display: inline-block;
  background: #f5c400;
  color: #000000;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.25s ease;
}

.sw-hero-btn:hover {
  background: #ffd84a;
  transform: translateY(-2px);
}

/* Top Login Button */
.sw-login-main-btn {
  display: inline-block;
  background: #f5c400;
  color: #000;
  padding: 10px 26px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 20px;
  transition: 0.2s ease;
}

.sw-login-main-btn:hover {
  background: #ffd84a;
}

/* Bottom Register Link */
.sw-register-text {
  margin-top: 14px;
  font-size: 15px;
  color: #fff;
}

.sw-register-text a {
  color: #f5c400;
  font-weight: 600;
  text-decoration: none;
}

.sw-register-text a:hover {
  text-decoration: underline;
}

  /* Mobile body – no extra white bg, no bottom padding */
  body {
    padding-bottom: 0;
    background-color: #000000;   /* jate hero image er niche white na dekha jay */
  }

  /* Hero full viewport height on mobile */
  .sw-hero {
    min-height: 93vh;           /* pure screen height */
    padding: 30px 16px 28px;    /* niche padding jate bottom nav er sathe clash na hoy */
  }

  .sw-header-inner {
    justify-content: center;     /* logo center mobile e */
  }

  .sw-hero-content {
    padding: 50px 40px;
  }

  .sw-hero-content h1 {
    font-size: 35px;
  }

  .sw-hero-content p {
    font-size: 22px;
  }

  .sw-hero-btn {
    font-size: 20px;
    padding: 15px 26px;
  }

  

/* =======================================
   FORM PAGE STYLES
======================================= */

.sw-form-wrapper {
  min-height: calc(100vh - 140px);
  background: #f5f5f5;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 56px 24px;              /* more spacious */
}

.sw-form-card {
  width: 100%;
  max-width: 960px;
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px 36px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  border-top: 4px solid #f5c400;
}

.sw-form-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
}

.sw-form-subtitle {
  font-size: 14px;
  text-align: center;
  color: #666;
  margin-bottom: 24px;
}

.sw-form-section-title {
  font-size: 18px;
  margin: 28px 0 14px;
  border-left: 4px solid #f5c400;
  padding-left: 10px;
}

/* layout */
.sw-form {
  width: 100%;
}

.sw-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;                /* horizontal gap */
  row-gap: 18px;                   /* vertical gap */
  margin-bottom: 10px;
}

.sw-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;                        /* label & input gap */
  margin-bottom: 4px;
}

.sw-form-group-full {
  grid-column: 1 / -1;
}

.sw-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #222;
}

.sw-form-group label span {
  color: #d32f2f;
}

.sw-form-group input,
.sw-form-group select,
.sw-form-group textarea {
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid #cccccc;
  font-size: 14px;
  outline: none;
  background-color: #fafafa;
}

.sw-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.sw-form-group input:focus,
.sw-form-group select:focus,
.sw-form-group textarea:focus {
  border-color: #f5c400;
  box-shadow: 0 0 0 2px rgba(245, 196, 0, 0.25);
  background-color: #ffffff;
}

/* terms box */
.sw-terms-box {
  margin-top: 26px;
  padding: 16px 16px 14px;
  background: #fffbea;
  border-radius: 12px;
  border: 1px solid #f5c400;
  font-size: 13px;
}

.sw-terms-box h3 {
  margin-bottom: 8px;
  font-size: 15px;
}

.sw-terms-box ul {
  margin-left: 20px;
  margin-bottom: 8px;
}

.sw-terms-box li {
  margin-bottom: 4px;
  line-height: 1.4;
}

.sw-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.sw-checkbox input {
  width: 16px;
  height: 16px;
}

/* actions */
.sw-form-actions {
  margin-top: 24px;
  text-align: center;
}

.sw-form-submit {
  width: 240px;
}


/* ---------- responsive for form ---------- */
@media (max-width: 768px) {

  .sw-form-wrapper {
    min-height: 100vh;
    padding: 32px 14px 120px;     /* niche space for bottom nav */
    background: #f0f0f0;
  }

  .sw-form-card {
    padding: 22px 18px 28px;
    border-radius: 16px;
  }

  .sw-form-title {
    font-size: 20px;
  }

  .sw-form-subtitle {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .sw-form-grid {
    grid-template-columns: 1fr;   /* single column on mobile */
    row-gap: 14px;
  }

  .sw-form-group {
    margin-bottom: 2px;
  }

  .sw-form-group input,
  .sw-form-group select,
  .sw-form-group textarea {
    font-size: 14px;
    padding: 10px 12px;
  }

  .sw-terms-box {
    margin-top: 20px;
  }

  .sw-form-submit {
    width: 100%;
    max-width: 400px;
  }
}




/* =======================================
   SUCCESS POPUP
======================================= */
.sw-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.sw-popup-overlay.active {
  display: flex;
}

.sw-popup-box {
  background: #ffffff;
  color: #111111;
  padding: 26px 22px 20px;
  border-radius: 18px;
  max-width: 330px;
  width: 88%;
  text-align: center;
  border-top: 4px solid #f5c400;
  box-shadow: 0 14px 40px rgba(0,0,0,0.30);
}

.sw-popup-box h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.sw-popup-box p {
  font-size: 14px;
  margin-bottom: 16px;
}

.sw-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sw-popup-btn {
  background: #f5c400;
  color: #000;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.sw-popup-cta {
  background: #111;
  color: #fff;
  padding: 10px 22px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
}

.sw-popup-cta:hover {
  background: #333;
}




/* ================================
   DASHBOARD STYLING
================================ */

.dash-wrapper {
  padding: 20px;
  background: #f5f5f5;
  min-height: calc(100vh - 100px);
}

/* TOP NAV */
.dash-top-nav {
  background: #111111;
  padding: 10px 12px;
  border-radius: 12px;
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.dash-top-nav a {
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.dash-top-nav a i {
  font-size: 15px;
}

.dash-top-nav a span {
  display: inline-block;
}

.dash-top-nav a.active,
.dash-top-nav a:hover {
  color: #f5c400;
}

/* TOP STAT CARDS */
.dash-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.dash-stat-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  border-left: 4px solid #f5c400;
}

.stat-label {
  font-size: 13px;
  color: #555;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  margin: 4px 0 6px;
}

.badge {
  display: inline-block;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
}

.badge-progress {
  background: rgb(205, 170, 30);
  color: #b58800;
}

.badge-class {
  background: rgba(0, 166, 90, 0.83);
  color: #00884f;
}

.badge-due {
  background: rgb(197, 9, 27);
  color: #b0202c;
}

/* MAIN LAYOUT */
.dash-main-layout {
  display: grid;
  grid-template-columns: 2.1fr 1.1fr;
  gap: 20px;
}

/* CARDS */
.dash-card {
  background: #ffffff;
  padding: 18px 16px;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.dash-card-title {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
}

/* USER CARD */
.user-card {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
}

.user-photo-wrap {
  flex-shrink: 0;
}

.user-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #f5c400;
  object-fit: cover;
}

.user-info p {
  margin: 2px 0;
  font-size: 13px;
  color: #444;
}

.user-info p i {
  margin-right: 6px;
  color: #f5c400;
}

.user-name {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
}

/* GRID INSIDE MAIN */
.dash-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

/* CLASS LIST */
.class-list,
.activity-list,
.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.class-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.class-title {
  font-size: 14px;
  font-weight: 600;
}

.class-meta {
  font-size: 12px;
  color: #777;
}

.badge-upcoming {
  background: rgba(55, 95, 250, 0.92);
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
}

.badge-upcoming-light {
  background: rgba(197, 17, 59, 0.92);
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
}

/* ACTIVITY LIST */
.activity-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}

.activity-time {
  font-size: 11px;
  color: #777;
  margin-left: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.dot-success {
  background: #00a65a;
}

.dot-warning {
  background: #f5c400;
}

.dot-info {
  background: #0d6efd;
}

/* RIGHT SIDE DETAILS */
.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 13px;
}

.detail-row span {
  color: #555;
}

.detail-row strong {
  text-align: right;
}

/* NOTICE CARD */
.notice-card .notice-list li {
  font-size: 13px;
  margin-bottom: 6px;
}

/* MOBILE VIEW */
@media (max-width: 992px) {
  .dash-main-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .dash-wrapper {
    padding: 16px 12px 100px; /* bottom space for mobile nav */
  }

  .dash-top-nav {
    padding: 8px 10px;
    gap: 6px;
  }

  .dash-top-nav a span {
    font-size: 12px;
  }

  .dash-stat-grid {
    grid-template-columns: 1fr;
  }

  .dash-main-layout {
    grid-template-columns: 1fr;
  }

  .user-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .dash-grid {
    grid-template-columns: 1fr;
  }
}


.dash-main-layout {
  display: grid;
  grid-template-columns: 2fr 1.2fr; /* left wider, right sidebar */
  gap: 18px;
}

.dash-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dash-side {
  display: flex;
  flex-direction: column;
  gap: 18px;   /* spacing between cards on the right */
}

/* On mobile – stack everything */
@media (max-width: 992px) {
  .dash-main-layout {
    grid-template-columns: 1fr;
  }
}



/* ================================
   CLASSES DASHBOARD
================================ */

.cls-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  gap: 10px;
}

.cls-header h1 {
  font-size: 22px;
  margin-bottom: 4px;
}

.cls-header p {
  font-size: 13px;
  color: #555;
}

.cls-book-btn {
  background: #f5c400;
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.cls-book-btn i {
  font-size: 14px;
}

/* STATS (TOP CARDS) */

.cls-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.cls-stat-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 12px 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  border-top: 3px solid #f5c400;
}

.cls-stat-label {
  font-size: 12px;
  color: #666;
}

.cls-stat-value {
  font-size: 18px;
  font-weight: 700;
  margin: 2px 0 6px;
}

.cls-pill {
  display: inline-block;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f0f0f0;
  color: #555;
}

.cls-pill-success {
  background: rgba(0, 166, 90, 0.1);
  color: #00884f;
}

.cls-pill-info {
  background: rgba(13, 110, 253, 0.12);
  color: #0d6efd;
}

.cls-pill-danger {
  background: rgba(220, 53, 69, 0.12);
  color: #b0202c;
}

/* MAIN LAYOUT */

.cls-main-layout {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 18px;
}

.cls-main-left,
.cls-main-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* CALENDAR */

.cls-calendar-card {
  padding-bottom: 14px;
}

.cls-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 8px;
}

.cls-calendar-header h3 {
  margin-bottom: 2px;
}

.cls-calendar-header p {
  font-size: 12px;
  color: #666;
}

.cls-month-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cls-month-switch button {
  border: none;
  background: #111;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
}

.cls-month-switch span {
  font-size: 13px;
  font-weight: 600;
}

/* Calendar grid */

.cls-calendar-days,
.cls-calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.cls-calendar-days span {
  font-size: 11px;
  text-align: center;
  color: #777;
  padding-bottom: 4px;
}

.cls-date {
  border: none;
  padding: 6px 0;
  background: #ffffff;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  border: 1px solid #eee;
}

.cls-date.muted {
  opacity: 0.4;
}

.cls-date.has-class {
  background: rgba(245, 196, 0, 0.15);
  border-color: #f5c400;
  font-weight: 600;
}

.cls-date:hover {
  border-color: #f5c400;
}

.cls-calendar-legend {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
  font-size: 11px;
  color: #666;
}

.legend-box {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  margin-right: 4px;
}

.legend-box.has {
  background: rgba(245, 196, 0, 0.7);
}

.legend-box.none {
  background: #e0e0e0;
}

/* SUMMARY CARD */

.cls-summary-card p {
  font-size: 13px;
  margin-bottom: 6px;
}

/* BOOKING MODAL */

.cls-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.cls-modal.active {
  display: flex;
}

.cls-modal-box {
  background: #ffffff;
  border-radius: 16px;
  max-width: 520px;
  width: 92%;
  padding: 16px 16px 18px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
}

.cls-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cls-modal-header h3 {
  margin: 0;
}

.cls-modal-header button {
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.cls-modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cls-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.cls-modal-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.cls-modal-group input,
.cls-modal-group select,
.cls-modal-group textarea {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 7px 10px;
  font-size: 13px;
}

.cls-modal-group textarea {
  resize: vertical;
}

.cls-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 6px;
}

.cls-modal-btn-secondary,
.cls-modal-btn-primary {
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 13px;
  border: none;
  cursor: pointer;
}

.cls-modal-btn-secondary {
  background: #f0f0f0;
}

.cls-modal-btn-primary {
  background: #f5c400;
  color: #000;
}

/* ================================
   RESPONSIVE (CLASSES DASHBOARD)
================================ */

@media (max-width: 992px) {
  .cls-main-layout {
    grid-template-columns: 1fr;
  }
}

/* Tablet / Mobile */
@media (max-width: 768px) {
  .dash-wrapper {
    padding: 16px 12px 100px; /* bottom space for mobile nav */
  }

  .cls-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .cls-book-btn {
    width: 100%;
    justify-content: center;
  }

  .cls-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .cls-main-layout {
    grid-template-columns: 1fr;
  }

  .cls-main-left,
  .cls-main-right {
    gap: 12px;
  }

  .cls-calendar-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cls-calendar-days span {
    font-size: 10px;
  }

  .cls-date {
    font-size: 11px;
    padding: 5px 0;
  }

  .cls-modal-box {
    padding: 14px 12px 16px;
  }

  .cls-modal-grid {
    grid-template-columns: 1fr;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .cls-header h1 {
    font-size: 19px;
  }

  .cls-stat-grid {
    grid-template-columns: 1fr;
  }

  .cls-book-btn {
    font-size: 13px;
  }

  .cls-calendar-header p {
    font-size: 11px;
  }
}




/* ================================
   MY PROFILE DASHBOARD
================================ */

.profile-hero {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: #ffffff;
  padding: 18px 16px;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  margin-bottom: 20px;
  border-left: 4px solid #f5c400;
}

.profile-hero-left {
  display: flex;
  gap: 16px;
  align-items: center;
}

.profile-avatar-wrap {
  position: relative;
}

.profile-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f5c400;
}

.profile-status-dot {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 14px;
  height: 14px;
  background: #00a65a;
  border-radius: 50%;
  border: 2px solid #ffffff;
}

.profile-name {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
}

.profile-tagline {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}

.profile-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.profile-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #ddd;
}

.profile-pill i {
  font-size: 12px;
}

.profile-pill.primary {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.profile-pill.soft {
  background: #fff9dc;
  border-color: #f5c400;
  color: #8a6a00;
}

.profile-hero-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.profile-progress-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: conic-gradient(#f5c400 0 58%, #eeeeee 58% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-progress-ring .ring-inner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ring-value {
  font-size: 18px;
  font-weight: 700;
}

.ring-label {
  font-size: 10px;
  color: #666;
}

.profile-hero-meta p {
  font-size: 12px;
  margin: 2px 0;
}

.profile-hero-meta p span {
  color: #666;
  font-weight: 600;
}

/* LAYOUT */
.profile-layout {
  display: grid;
  grid-template-columns: 2.1fr 1.1fr;
  gap: 18px;
}

/* CARDS */
.profile-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  padding: 16px 16px 14px;
  margin-bottom: 0;
}

.profile-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.profile-card-header h2 {
  font-size: 16px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.profile-card-header i {
  color: #f5c400;
}

/* DETAILS GRID */
.profile-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 20px;
}

.profile-details-grid .detail-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.profile-details-grid .detail-item.full {
  grid-column: 1 / -1;
}

.detail-item .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #777;
}

.detail-item .value {
  font-size: 13px;
  font-weight: 500;
}

/* GRID 2 */
.profile-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin: 16px 0;
}

/* PAYMENT */
.payment-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
  align-items: center;
}

.payment-summary {
  font-size: 13px;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.payment-row span {
  color: #555;
}

.payment-row.due strong {
  color: #b0202c;
}

.payment-pill {
  display: inline-block;
  margin-top: 6px;
  background: rgba(220,53,69,0.08);
  color: #b0202c;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
}

.payment-chart-wrap {
  max-width: 180px;
  margin: 0 auto;
}

/* TABLE */
.profile-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.profile-table thead {
  background: #111111;
  color: #ffffff;
}

.profile-table th,
.profile-table td {
  padding: 8px 8px;
  text-align: left;
}

.profile-table tbody tr:nth-child(even) {
  background: #f8f8f8;
}

.status-pill {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
}

.status-pill.done {
  background: rgba(0,166,90,0.12);
  color: #00884f;
}

.status-pill.upcoming {
  background: rgba(13,110,253,0.12);
  color: #0d6efd;
}

.status-pill.pending {
  background: rgba(245,196,0,0.2);
  color: #8a6a00;
}

/* SIDE COLUMN */
.profile-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* DOC LIST */
.doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doc-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
}

.doc-title {
  font-size: 13px;
  font-weight: 600;
}

.doc-meta {
  font-size: 11px;
  color: #777;
}

/* QUICK ACTIONS */
.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qa-btn {
  border-radius: 999px;
  border: 1px solid #dddddd;
  background: #ffffff;
  padding: 8px 12px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.qa-btn i {
  color: #f5c400;
}

.qa-btn.primary {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .profile-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-hero-right {
    align-self: stretch;
    justify-content: flex-start;
  }

  .profile-layout {
    grid-template-columns: 1fr;
  }

  .profile-grid-2 {
    grid-template-columns: 1fr;
  }

  .profile-details-grid {
    grid-template-columns: 1fr;
  }

  .payment-layout {
    grid-template-columns: 1fr;
  }

  .profile-avatar {
    width: 90px;
    height: 90px;
  }

  .profile-name {
    font-size: 20px;
  }

  .dash-wrapper {
    padding-bottom: 100px; /* space for mobile bottom nav */
  }
}

@media (max-width: 480px) {
  .profile-hero {
    padding: 14px 12px;
  }

  .profile-name {
    font-size: 18px;
  }

  .profile-pill-row {
    gap: 4px;
  }

  .profile-table th,
  .profile-table td {
    font-size: 12px;
    padding: 6px 6px;
  }
}




/* EDIT BUTTON IN CARD HEADER */
.profile-edit-btn {
  border-radius: 999px;
  border: 1px solid #dddddd;
  background: #111111;
  color: #ffffff;
  font-size: 12px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.profile-edit-btn i {
  font-size: 12px;
  color: #f5c400;
}

.profile-edit-btn:hover {
  background: #000000;
}

/* PROFILE MODALS */
.profile-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 4000;
}

.profile-modal.active {
  display: flex;
}

.profile-modal-box {
  background: #ffffff;
  border-radius: 16px;
  max-width: 520px;
  width: 92%;
  padding: 18px 18px 16px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

.profile-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.profile-modal-header h3 {
  margin: 0;
  font-size: 17px;
}

.profile-modal-close {
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.profile-modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.profile-modal-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.profile-modal-group.full {
  grid-column: 1 / -1;
}

.profile-modal-group input,
.profile-modal-group select,
.profile-modal-group textarea {
  border-radius: 8px;
  border: 1px solid #cccccc;
  padding: 7px 10px;
  font-size: 13px;
}

.profile-modal-group textarea {
  resize: vertical;
}

.profile-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
}

.profile-modal-btn {
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 13px;
  border: none;
  cursor: pointer;
}

.profile-modal-btn-secondary {
  background: #f0f0f0;
}

.profile-modal-btn-primary {
  background: #f5c400;
  color: #000000;
}

/* Mobile */
@media (max-width: 576px) {
  .profile-modal-box {
    padding: 14px 14px 16px;
  }

  .profile-modal-grid {
    grid-template-columns: 1fr;
  }
}





/* ================================
   LOGIN / AUTH PAGE
================================ */

.auth-wrapper {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: radial-gradient(circle at top, #222 0, #000 55%, #000 100%);
}

/* Card */
.auth-card {
  width: 100%;
  max-width: 440px;
  background: #050505;
  border-radius: 20px;
  padding: 26px 24px 26px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.75);
  color: #ffffff;
}

/* subtle glass feel */
.auth-card-glass {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
}

/* badge */
.auth-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(245, 196, 0, 0.15);
  color: #f5c400;
  margin-bottom: 8px;
}

/* headings */
.auth-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

.auth-subtitle {
  font-size: 14px;
  color: #d2d2d2;
  text-align: center;
  margin-bottom: 18px;
}

/* form layout */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* label + field group */
.auth-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.auth-group label {
  color: #f5f5f5;
}

/* input with icon */
.auth-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #050505;
  border-radius: 999px;
  border: 1px solid #333;
  padding: 4px 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease,
              background-color 0.25s ease;
}

.auth-input:focus-within {
  border-color: #f5c400;
  box-shadow: 0 0 0 1px rgba(245, 196, 0, 0.7);
  background: #070707;
}

.auth-icon {
  color: #888;
  display: flex;
  align-items: center;
}

.auth-input input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
  padding: 7px 4px;
}

.auth-input input::placeholder {
  color: #777;
}

/* show/hide password button */
.auth-eye-btn {
  border: none;
  background: transparent;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 2px;
  font-size: 15px;
}

.auth-eye-btn:hover {
  color: #f5c400;
}

/* remember + forgot row */
.auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-top: 2px;
}

.auth-remember {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.auth-remember input {
  width: 14px;
  height: 14px;
}

.auth-forgot {
  color: #f5c400;
  text-decoration: none;
}

.auth-forgot:hover {
  text-decoration: underline;
}

/* login button */
.auth-btn-main {
  margin-top: 10px;
}

.auth-btn {
  width: 100%;
  background: #f5c400;
  color: #000;
  border: none;
  border-radius: 999px;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
              background-color 0.15s ease;
}

.auth-btn:hover {
  background: #ffd84a;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(245, 196, 0, 0.4);
}

.auth-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* register under button */
.auth-register {
  margin-top: 16px;
  font-size: 14px;
  text-align: center;
  color: #e5e5e5;
}

.auth-register a {
  color: #f5c400;
  font-weight: 600;
  text-decoration: none;
}

.auth-register a:hover {
  text-decoration: underline;
}

/* mobile tweaks */
@media (max-width: 480px) {
  .auth-card {
    padding: 22px 18px 22px;
  }

  .auth-title {
    font-size: 23px;
  }

  .auth-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}



/* =========================================
   FIX TOP BAR (HEADER) FOR ALL PAGES
   – Stays on top while scrolling
========================================= */
/*.sw-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}*/

/* =========================================
   PAYMENT PAGE LAYOUT
========================================= */

/* Wrapper for payment page ONLY
   (main element has both dash-wrapper & payment-wrapper) */
.dash-wrapper.payment-wrapper {
  padding: 45px 20px 20px;   /* 90px = space for fixed header */
  background: #f5f5f5;
}

/* Top summary cards */
.pay-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.pay-stat-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  border-top: 3px solid #f5c400;
}

.pay-stat-label {
  font-size: 13px;
  color: #666;
}

.pay-stat-value {
  font-size: 22px;
  font-weight: 700;
  margin: 6px 0 8px;
}

/* Pills inside summary cards */
.pay-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
}

.pill-dark {
  background: #111;
  color: #fff;
}

.pill-success {
  background: rgba(0, 166, 90, 0.12);
  color: #00884f;
}

.pill-danger {
  background: rgba(220, 53, 69, 0.12);
  color: #b0202c;
}

/* Main 2-column layout: left (charts/history) + right (quick pay etc.) */
.pay-main-layout {
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 18px;
}

.pay-main-left,
.pay-main-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Chart cards */
.pay-chart-grid .dash-card {
  min-height: 260px;
}

/* Payment history table */
.pay-trans-card {
  margin-top: 4px;
}

.pay-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pay-tag {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #f0f0f0;
  color: #555;
}

.pay-table-wrapper {
  overflow-x: auto;
}

.pay-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.pay-table thead {
  background: #fafafa;
}

.pay-table th,
.pay-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}

.pay-table th {
  text-align: left;
  font-weight: 600;
  color: #555;
}

/* Status pills in table */
.pay-status {
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
}

.pay-status.success {
  background: rgba(0, 166, 90, 0.12);
  color: #00884f;
}

.pay-status.failed {
  background: rgba(220, 53, 69, 0.12);
  color: #b0202c;
}

/* Quick Pay card */
.pay-quick-card .pay-quick-text {
  font-size: 14px;
  margin-bottom: 10px;
}

.pay-quick-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 12px;
  font-size: 13px;
  color: #555;
}

.pay-quick-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.pay-quick-list i {
  color: #00884f;
}

/* Buttons */
.pay-btn-primary,
.pay-btn-secondary {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pay-btn-primary {
  background: #f5c400;
  color: #000;
  margin-top: 4px;
}

.pay-btn-primary:hover {
  background: #ffd84a;
}

.pay-btn-secondary {
  background: #111;
  color: #fff;
  margin-top: 10px;
}

.pay-btn-secondary:hover {
  background: #000;
}

.pay-quick-note {
  font-size: 12px;
  color: #777;
  margin-top: 8px;
}

/* Upload screenshot section */
.pay-upload-text {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.pay-upload-drop {
  border-radius: 12px;
  border: 1px dashed #ccc;
  padding: 16px 12px;
  text-align: center;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 6px;
}

.pay-upload-drop i {
  font-size: 26px;
  color: #f5c400;
  margin-bottom: 4px;
}

.pay-upload-drop p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.pay-upload-drop span {
  font-size: 12px;
  color: #777;
}

.pay-upload-drop small {
  font-size: 11px;
  color: #999;
}

.pay-upload-label {
  display: inline-block;
  margin-top: 4px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

.pay-upload-label input {
  display: none;
}

/* Last payment summary card */
.pay-last-card .detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 13px;
}

/* QR modal overlay */
.pay-qr-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

.pay-qr-overlay.active {
  display: flex;
}

/* QR modal box */
.pay-qr-modal {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px 20px;
  max-width: 360px;
  width: 90%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
}

.pay-qr-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.pay-qr-header h3 {
  margin: 0;
}

.pay-qr-close {
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.pay-qr-amount,
.pay-qr-upi,
.pay-qr-note {
  font-size: 14px;
  margin: 6px 0;
}

.pay-qr-box {
  margin-top: 8px;
  border-radius: 12px;
  padding: 10px;
  background: #fafafa;
  display: flex;
  justify-content: center;
}

.pay-qr-box img {
  max-width: 180px;
  height: auto;
}

/* =========================================
   PAYMENT RESPONSIVE
========================================= */

/* Tablet: side column stacks under main */
@media (max-width: 992px) {
  .pay-main-layout {
    grid-template-columns: 1fr;
  }
}

/* Mobile: cards in single column, more padding bottom for bottom nav */
@media (max-width: 768px) {

  .dash-wrapper.payment-wrapper {
    padding: 45px 12px 100px;  /* 90 top for header, 100 bottom for mobile nav */
  }

  .pay-stat-grid {
    grid-template-columns: 1fr;
  }

  .pay-main-layout {
    grid-template-columns: 1fr;
  }

  .dash-card {
    padding: 16px 14px;
  }
}

/* Small mobile tweaks */
@media (max-width: 480px) {

  .pay-table th,
  .pay-table td {
    padding: 6px 8px;
    font-size: 12px;
  }

  .pay-qr-modal {
    padding: 14px 12px 16px;
    max-width: 95%;
  }

  .pay-qr-box img {
    max-width: 150px;
  }
}


/* ================================
   FOOTER (DESKTOP ONLY)
================================ */
.sw-footer {
  background: #ffffff;
  color: #111111;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  border-top: 1px solid #e5e5e5;
}

.sw-footer p {
  margin: 0;
}

/* =======================================
   BOTTOM NAV (APP STYLE) – HIDDEN DESKTOP
======================================= */
.sw-bottom-nav {
  display: none; /* desktop e show hobena */
}

/* Desktop footer visible by default */
.sw-footer {
  display: block;
}

/* =======================================
   RESPONSIVE (TABLET & MOBILE)
======================================= */
/* Hide footer completely on mobile */
@media (max-width: 768px) {

  .sw-nav-desktop {
    display: none;
  }

  .sw-footer {
    display: none !important;
  }
}

/* =======================================
   APP-STYLE BOTTOM NAV BAR (MOBILE/TABLET)
======================================= */

/* Desktop e hidden thakbe */
.sw-bottom-nav {
  display: none;
}

/* Up to tablet: show app-style nav */
@media (max-width: 768px) {

  .sw-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 420px;
    width: 92%;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    justify-content: space-between;
    padding: 6px 4px;
    z-index: 999;
  }

  .sw-bottom-nav a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #444444;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 0;
  }

  .sw-bottom-nav a i {
    font-size: 18px;
  }

  .sw-bottom-nav a span {
    font-size: 11px;
  }

  .sw-bottom-nav a.active {
    color: #f5c400;
  }

  .sw-bottom-nav a.active i {
    transform: translateY(-1px);
  }

  .sw-bottom-nav a:active {
    background: rgba(245, 196, 0, 0.12);
    border-radius: 12px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {

  .sw-hero-content h1 {
    font-size: 37px;
  }

  .sw-hero-content p {
    font-size: 20px;
  }

  .sw-bottom-nav a i {
    font-size: 17px;
  }

  .sw-bottom-nav a span {
    font-size: 10px;
  }
}

.auth-login-btn {
  display: flex;              /* button feel */
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 48px;               /* same as input height */
  
  text-decoration: none;
  border-radius: 999px;

  font-weight: 600;
  font-size: 15px;
}
/* PAYMENT CARD */
.sw-payment-card {
  background: #ffffff;
  border: 2px solid #facc15; /* Yellow border */
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* PAYMENT ROWS */
.sw-payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 16px;
  border: 1px solid #e5e7eb;
}

/* TOTAL AMOUNT (Professional Highlight) */
.sw-payment-row.total {
  background: #fef9c3; /* light yellow */
  color: #000000;
  font-weight: 600;
  border: 1px solid #facc15;
}

/* DUE AMOUNT (Attention but clean) */
.sw-payment-row.due {
  background: #fffbea; /* very soft yellow */
  color: #92400e; /* dark yellow/brown */
  font-weight: 700;
  border: 1px dashed #facc15;
}

/* AMOUNT TEXT */
.sw-payment-row strong {
  font-size: 20px;
  color: #000000;
}

/* ADVANCE INPUT */
.sw-payment-card input {
  height: 46px;
  border-radius: 10px;
  border: 2px solid #000000; /* black border */
  padding: 0 14px;
  font-size: 15px;
  background: #ffffff;
  color: #000000;
}

/* INPUT FOCUS */
.sw-payment-card input:focus {
  outline: none;
  border-color: #facc15; /* yellow focus */
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.3);
}
.sw-success-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fffbea;
}

.sw-success-card {
  background: #ffffff;
  border: 2px solid #facc15;
  border-radius: 16px;
  padding: 40px;
  max-width: 420px;
  text-align: center;
}

.sw-credentials-box {
  background: #fef9c3;
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
}
body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #fffbea;
    }

    .sw-success-wrapper {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .sw-success-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 42px 36px;
      max-width: 460px;
      width: 100%;
      text-align: center;
      box-shadow: 0 25px 50px rgba(0,0,0,0.12);
      border-top: 6px solid #facc15;
    }

    .sw-success-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      border-radius: 50%;
      background: #facc15;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
      font-weight: bold;
      color: #000;
    }

    .sw-success-card h1 {
      margin: 12px 0 8px;
      font-size: 26px;
      color: #000;
    }

    .sw-success-card p {
      color: #444;
      font-size: 15px;
      line-height: 1.6;
    }

    .sw-credentials-box {
      background: #fef9c3;
      border-radius: 14px;
      padding: 18px;
      margin: 22px 0;
      text-align: left;
      font-size: 15px;
      color: #000;
    }

    .sw-credentials-box p {
      margin: 8px 0;
    }

    .sw-credentials-box span {
      font-weight: 700;
      letter-spacing: 1px;
    }

    .sw-info-note {
      font-size: 13px 👉  
      color: #555;
      margin-top: 10px;
    }

    .sw-success-actions {
      margin-top: 28px;
    }

    .sw-success-actions a {
      display: inline-block;
      background: #000;
      color: #fff;
      text-decoration: none;
      padding: 14px 26px;
      border-radius: 12px;
      font-weight: 600;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .sw-success-actions a:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    }/* =========================
   PROFILE HERO – RESPONSIVE
========================= */

.profile-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border-left: 6px solid #facc15;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  flex-wrap: wrap;
}

/* LEFT SIDE */
.profile-hero-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 520px;
}

/* AVATAR */
.profile-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #facc15;
  background: #fff;
}

.profile-status-dot {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 14px;
  height: 14px;
  background: #16a34a;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* TEXT */
.profile-hero-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-name {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #000;
}

.profile-tagline {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* PILLS */
.profile-pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.profile-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.profile-pill.primary {
  background: #000;
  color: #fff;
}

.profile-pill.soft {
  background: #facc15;
  color: #000;
}

/* RIGHT SIDE */
.profile-hero-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
}

/* PROGRESS RING */
.profile-progress-ring {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: conic-gradient(
    #facc15 calc(var(--percent, 0) * 1%),
    #e5e7eb 0
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring-inner {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ring-value {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.ring-label {
  font-size: 10px;
  color: #555;
}

/* META */
.profile-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.profile-hero-meta span {
  font-weight: 600;
  color: #000;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {
  .profile-hero {
    padding: 18px;
  }

  .profile-hero-left {
    flex: 1 1 100%;
  }

  .profile-hero-right {
    width: 100%;
    justify-content: space-between;
    margin-top: 12px;
  }

  .profile-name {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .profile-hero-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-avatar {
    width: 80px;
    height: 80px;
  }

  .profile-hero-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
/* ===== PROGRESS RING ===== */
.profile-progress-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:
    conic-gradient(
      #facc15 var(--progress),
      #e5e7eb 0
    );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* Inner white circle */
.ring-inner {
  width: 85px;
  height: 85px;
  background: #ffffff;
  border-radius: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Percentage */
.ring-value {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

/* Label */
.ring-label {
  font-size: 12px;
  color: #6b7280;
}

/* Right meta text */
.profile-hero-meta p {
  margin: 4px 0;
  font-size: 14px;
  color: #111;
}

.profile-hero-meta span {
  font-weight: 600;
  color: #000;
}
/* CARD */
.profile-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}

/* HEADER */
.profile-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.profile-card-header h5 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  display: flex;
  gap: 8px;
  align-items: center;
}

.profile-card-header i {
  color: #facc15;
}

/* EDIT BUTTON */
.btn-edit {
  background: #facc15;
  color: #000;
  border: none;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-edit:hover {
  background: #000;
  color: #fff;
}

/* GRID */
.profile-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
}

/* ITEMS */
.detail-item span {
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 600;
}

.detail-item p {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.full-width {
  grid-column: 1 / -1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .profile-details-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== PAYMENT LAYOUT ===== */
.payment-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
}

/* SUMMARY */
.payment-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.payment-row span {
  color: #6b7280;
  font-weight: 500;
}

.payment-row.due strong {
  color: #dc2626;
}

/* STATUS PILL */
.payment-pill {
  align-self: flex-start;
  margin-top: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  background: #e5e7eb;
  color: #111;
}

.payment-pill.paid {
  background: #dcfce7;
  color: #166534;
}

.payment-pill.partial {
  background: #fef9c3;
  color: #854d0e;
}

.payment-pill.pending {
  background: #fee2e2;
  color: #991b1b;
}

/* CHART */
.payment-chart-wrap {
  width: 100%;
  max-width: 220px;
  margin: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .payment-layout {
    grid-template-columns: 1fr;
  }

  .payment-chart-wrap {
    max-width: 180px;
  }
}
.pay-input-wrap {
  margin: 15px 0;
}

.pay-input-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.pay-amount-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 16px;
}
.pay-qr-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.pay-qr-overlay.active {
  display: flex;
}

.pay-qr-modal {
  background: #fff;
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  animation: zoomIn 0.25s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.pay-qr-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pay-qr-close {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

.pay-qr-box img {
  max-width: 220px;
  margin: 15px auto;
  display: block;
}
/* =========================
   PAYMENT UPLOAD CARD
========================= */
.pay-upload-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* Header */
.pay-upload-header {
  margin-bottom: 20px;
}

.pay-upload-text {
  font-size: 14px;
  color: #6b7280;
  margin-top: 6px;
}

/* Upload Box */
.pay-upload-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 2px dashed #e5e7eb;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 18px;
  background: #fafafa;
}

.pay-upload-icon {
  width: 48px;
  height: 48px;
  background: #fef3c7;
  color: #92400e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.pay-upload-content {
  flex: 1;
}

.pay-upload-label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.pay-upload-input {
  font-size: 14px;
}

.pay-upload-hint {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
  display: block;
}

/* Submit Button */
.pay-upload-btn {
  width: 100%;
  margin-top: 8px;
}

/* Note */
.pay-upload-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 14px;
  font-size: 13px;
  color: #374151;
  background: #f9fafb;
  padding: 10px 12px;
  border-radius: 8px;
}
.success-icon {
  font-size: 48px;
  color: #16a34a;
}
.cls-calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.cls-date {
  padding: 10px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: #f5f5f5;
  font-weight: 600;
}

.cls-date:hover { background: #ffe066; }

.cls-date.has-class {
  background: #ffd000;
  color: #000;
}

.cls-date.muted {
  opacity: 0.4;
  pointer-events: none;
}

.cls-date.active {
  outline: 2px solid #000;
}

.legend-box {
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 6px;
  border-radius: 3px;
}
.legend-box.has { background: #ffd000; }
.legend-box.none { background: #ddd; }

.class-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.badge-upcoming {
  background: #16a34a;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.badge-upcoming-light {
  background: #e5e7eb;
  color: #111;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.empty {
  text-align: center;
  color: #777;
  padding: 20px;
}
.cls-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
/* MODAL MESSAGE – PROFESSIONAL */
.cls-modal-message {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  animation: fadeSlideIn 0.35s ease;
}

.msg-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.msg-content {
  flex: 1;
}

.msg-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.msg-text {
  margin: 4px 0 0;
  font-size: 14.5px;
  line-height: 1.45;
  opacity: 0.95;
}

/* STATES */
.msg-success {
  background: #f0fbf6;
  border: 1px solid #ccefe0;
}

.msg-success .msg-icon {
  background: #198754;
  color: #fff;
}

.msg-success .msg-title {
  color: #0f5132;
}

.msg-warning {
  background: #fff8e6;
  border: 1px solid #ffe1a3;
}

.msg-warning .msg-icon {
  background: #ffc107;
  color: #000;
}

.msg-warning .msg-title {
  color: #664d03;
}

.msg-danger {
  background: #fdecea;
  border: 1px solid #f5c2c7;
}

.msg-danger .msg-icon {
  background: #dc3545;
  color: #fff;
}

.msg-danger .msg-title {
  color: #842029;
}

/* ANIMATION */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .cls-modal-message {
    padding: 14px;
    gap: 12px;
  }
  .msg-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}
/* CLASS LIST CONTAINER */
.class-list {
  max-height: 320px;              /* Desktop limit */
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;          /* Firefox */
}

/* Hide scrollbar but keep scroll (Webkit) */
.class-list::-webkit-scrollbar {
  width: 6px;
}

.class-list::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 6px;
}

.class-list::-webkit-scrollbar-track {
  background: transparent;
}
.class-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
}

.class-title {
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 2px;
}

.class-meta {
  font-size: 12.5px;
  color: #6c757d;
}
@media (max-width: 576px) {

  .class-list {
    max-height: 260px;   /* Smaller on mobile */
  }

  .class-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .class-list li span {
    margin-top: 6px;
    align-self: flex-start;
  }

  .class-title {
    font-size: 14px;
  }

  .class-meta {
    font-size: 12px;
  }
}
.badge-booked {
  background: #e8f8f1;
  color: #0f5132;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.badge-requested {
  background: #fff3cd;
  color: #664d03;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.badge-completed {
  background: #e7f1ff;
  color: #084298;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.badge-missed {
  background: #fdecea;
  color: #842029;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.badge-cancelled {
  background: #f8d7da;
  color: #842029;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
/* REMARKS */
.remarks-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 520px;
  overflow-y: auto;
}

.remark-item {
  padding: 14px 12px;
  border-bottom: 1px solid #eee;
}

.remark-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.remark-date {
  font-size: 12.5px;
  color: #6c757d;
}

.remark-topic {
  font-weight: 600;
  margin: 6px 0 4px;
}

.remark-text {
  font-size: 13.5px;
  color: #444;
  line-height: 1.4;
}

.remark-badge {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.remark-excellent {
  background: #e8f8f1;
  color: #0f5132;
}

.remark-good {
  background: #e7f1ff;
  color: #084298;
}

.remark-warning {
  background: #fff3cd;
  color: #664d03;
}
.summary-status {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 8px;
}

.summary-status.good {
  background: #e8f8f1;
  color: #0f5132;
}

.summary-status.warning {
  background: #fff3cd;
  color: #664d03;
}

.summary-status.danger {
  background: #fdecea;
  color: #842029;
}
/* PAYMENT CARD POLISH */
.dash-card {
  padding: 22px;
}

.dash-card-title {
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}
/* ACTION BAR */
.sw-actions-fixed {
  position: relative;
  margin-top: 32px;
  text-align: center; /* keeps submit exactly centered */
}

/* CANCEL – LEFT MOST */
.sw-btn-cancel {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 20px;
  border-radius: 8px;
  background: #f3f4f6;
  color: #374151;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #d1d5db;
}

.sw-btn-cancel:hover {
  background: #e5e7eb;
}

/* MOBILE RESPONSIVENESS FIX */
@media (max-width: 600px) {

  .sw-actions-fixed {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
  }

  .sw-btn-cancel,
  .sw-form-submit {
    position: static !important;
    transform: none !important;
    width: 100%;
    text-align: center;
  }

  /* Submit should appear first on mobile */
  .sw-form-submit {
    order: 1;
  }

  .sw-btn-cancel {
    order: 2;
  }
}
.doc-info-box {
  margin-top: 14px;
  padding: 14px;
  background: #fff8e6;
  border: 1px solid #f0c36d;
  border-radius: 10px;
  font-size: 14px;
}

.doc-info-title {
  font-weight: 700;
  margin-bottom: 6px;
  color: #8a5b00;
}

.doc-info-text {
  margin: 6px 0;
  color: #333;
  line-height: 1.5;
}

.doc-info-contact {
  margin-top: 10px;
  font-size: 13px;
  color: #444;
}

.status-pill.done {
  background: #e6f6ed;
  color: #137333;
}

.status-pill.pending {
  background: #fff4e5;
  color: #b26a00;
}
/* ================= DESKTOP ENHANCEMENTS ================= */
@media (min-width: 1024px) {

  /* Constrain width like real dashboards */
  .cls-notice-wrapper,
  .cls-header-main-wrapper {
    max-width: 1900px;
    margin: 0 auto;
  }

  /* NOTICE */
  .cls-notice {
    padding: 18px 22px;
    align-items: center;
  }

  .cls-notice-content h4 {
    font-size: 17px;
  }

  .cls-notice-content p {
    font-size: 14.5px;
  }

  /* HEADER MAIN */
  .cls-header-main {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  }

  .cls-header-text h1 {
    font-size: 28px;
    font-weight: 700;
  }

  .cls-header-text p {
    font-size: 15px;
    max-width: 520px;
  }

  /* BOOK BUTTON */
  .cls-book-btn {
    padding: 12px 22px;
    font-size: 15px;
    box-shadow: 0 6px 16px rgba(244,180,0,.35);
  }

}
/* ================= FULL-WIDTH HEADER BAR ================= */
@media (min-width: 1024px) {

  .cls-header-main-wrapper {
    width: 100%;
    margin: 0;
  }

  .cls-header-main--full {
    width: 100%;
    max-width: none;          /* 🔥 full width */
    display: flex;
    align-items: center;
    justify-content: space-between; /* 🔥 even spacing */
    gap: 24px;

    background: #fff;
    border-radius: 0;         /* 🔥 flat full-width bar */
    padding: 22px 40px;       /* breathing space */
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  }

  .cls-header-text h1 {
    font-size: 28px;
    margin: 0;
  }

  .cls-header-text p {
    margin-top: 6px;
    max-width: 600px;
    font-size: 15px;
    color: #666;
  }

}

.sw-alert-popup {
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.sw-alert-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.sw-alert-confirm {
    color: #000 !important;
    font-weight: 700;
    border-radius: 999px !important;
    padding: 10px 22px !important;
}

.sw-alert-cancel {
    color: #374151 !important;
    font-weight: 600;
    border-radius: 999px !important;
    padding: 10px 22px !important;
}
/* ==============================
   TOP WARNING BAR (NON-STICKY)
============================== */

.top-warning-bar {
  width: 100%;
  background: #fff8db;
  color: #000;
  border-left: 4px solid #facc15;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 16px;

  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
}

/* ICON */
.warning-icon {
  font-size: 16px;
  line-height: 1;
}

/* TEXT */
.warning-text {
  line-height: 1.4;
  text-align: center;
}

.warning-text strong {
  font-weight: 700;
}

/* ==============================
   MOBILE OPTIMIZATION
============================== */

@media (max-width: 768px) {
  .top-warning-bar {
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .top-warning-bar {
    gap: 8px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .warning-icon {
    font-size: 14px;
  }
}
/* ==============================
   LEARNER ALERT
============================== */

.learner-alert {
  display: flex;
  gap: 14px;
  align-items: flex-start;

  background: #fff;
  border-left: 4px solid #facc15;
  border-radius: 12px;

  padding: 16px 18px;
  margin-bottom: 20px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.learner-alert-icon {
  font-size: 22px;
  line-height: 1;
}

.learner-alert-content h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.learner-alert-content p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 600px) {
  .learner-alert {
    padding: 14px;
  }

  .learner-alert-content h4 {
    font-size: 14px;
  }

  .learner-alert-content p {
    font-size: 13px;
  }
}
.doc-info-box.warning {
  border-left: 4px solid #facc15;
  background: #fffdf2;
}

.doc-info-box.warning .doc-info-title {
  color: #9a6b00;
}
/* Learner Licence status pill */
.status-pill.warning {
  background: #fff3cd;
  color: #8a6d00;
  font-weight: 600;
}

/* Improve header alignment */
.profile-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Subtle emphasis for licence card */
.profile-card .doc-info-box.warning {
  margin-top: 14px;
}
.pay-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 16px;
  background: #25D366;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.pay-btn-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-1px);
}
.pay-whatsapp-btn {
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.pay-whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: translateY(-1px);
}

.pay-whatsapp-btn:active {
  transform: scale(0.98);
}
/* =========================
   RTO CTA – FIXED UI
========================= */

.rto-cta-card {
  background: #000;
  border: 2px solid #f5c400;
  border-radius: 18px;
  padding: 26px 30px;
}

.rto-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* TEXT */
.rto-cta-text h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: #f5c400;
}

.rto-cta-text p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  max-width: 520px;
  line-height: 1.6;
}

/* BUTTON – MAIN FIX */
.rto-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: #f5c400;
  color: #000;
  font-weight: 700;
  font-size: 14px;

  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  white-space: nowrap;

  box-shadow: 0 6px 0 #c9a300;
  transition: all 0.2s ease;
}

.rto-cta-btn:hover {
  background: #ffcc00;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 0 #c9a300;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .rto-cta-content {
    flex-direction: column;
    align-items: stretch;
  }

  .rto-cta-btn {
    justify-content: center;
    width: 100%;
  }
}



