/* ========================================
   Skillforce Consolidated Styles
   Theme Color: #9ac28d (Sage Green)
   ======================================== */

/* ========================================
   1. CSS VARIABLES
   ======================================== */

:root {
  /* Primary Theme Colors */
  --sf-primary-rgb: 154, 194, 141;
  --offcanvas-width: auto;
  --header-height: 60px;
  --sf-primary: #81b371;
  --sf-primary-light: #a8cfa0;
  --sf-primary-dark: #5d8a4f;
  --sf-bg-soft: #f6faf5;
  --chat-bg: #f8fafc;
  --accent: #3366ff;
  --bubble-radius: 14px;
  --font-size: 16px;

  /* Background Colors */
  --sf-bg-soft: #f7fbf6;
  --chat-bg: #f8fafc;

  /* Layout */
  --offcanvas-width: auto;
  --header-height: 60px;

  /* Accent */
  --accent: #3366ff;

  /* Chat */
  --bubble-radius: 14px;
}

#layout,
#main,
#content {
  max-width: 100%;

  overflow-x: clip; /* or hidden */
}

body#float {
  overflow: auto !important;
}

.flash {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 24%;
  background-image: url("../assets/images/banner-first.jpg");
}

.cat_icon {
 
  /* width: 200px */
  /* height: 200px */
  border: 1px solid #4e7b4a;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  
}

.sf-hero{position: relative;
  min-height: 78vh;background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media (max-width: 767.98px){ .sf-hero{ min-height: 70vh; } }

.sf-hero__overlay{
  position: absolute; inset: 0; z-index: 0;
  /* dark at top for text contrast, brand green at the base */
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.30) 45%, rgba(62,155,33,.50) 100%);
}
.sf-hero__content{ position: relative; z-index: 1; }

.sf-hero__title{
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  letter-spacing: .5px;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.sf-hero__accent{ color: #9ac28d; }   /* sage accent */

.sf-hero__sub{
  max-width: 60ch; margin-inline: auto;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}

.sf-hero__eyebrow{
  background: rgba(255,255,255,.15);
  color: #fff; font-weight: 600;
  padding: .5rem 1rem; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}

.sf-hero__btn{ border-radius: 50rem; transition: transform .15s ease, box-shadow .15s ease; }
.sf-hero__btn:hover{ transform: translateY(-2px); box-shadow: 0 .5rem 1rem rgba(0,0,0,.25); }

.sf-hero__trust{ font-size: .95rem; opacity: .95; }
.sf-hero__trust i{ color: #9ac28d; }
@media (max-width: 575.98px){
  .sf-hero__trust .list-inline-item{ display:block; margin: .35rem 0 !important; }
}




.cat_icon:hover {
  transition: all 0.3s ease;
  border: 3px solid #83b841;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  font-weight: bold;
  font-size: 20px;
  color: #a8cfa0;
  opacity: 0.6;
}


.topNav {
  display: flex;                     /* aligns icon + text cleanly */
  align-items: center;               /* vertical centering */
  width: 100%;                       /* full‑row tap target */
  padding: 12px 16px;                /* comfortable thumb area */
  font-size: 1rem;                   /* readable on small screens */
  line-height: 1.4;                  /* prevents clipping */
  text-decoration: none;
  border-radius: 6px;                /* modern mobile feel */
  -webkit-tap-highlight-color: transparent; /* removes blue flash on iOS */ color: #a8cfa0;
}

.topNav:active {
  transform: scale(0.98);            /* subtle tactile feedback */
}

.topNav:hover,
.topNav:focus {
  background-color: rgba(255, 255, 255, 0.904); /* light hover for mobile/desktop */
  text-decoration: none;
}

.nav-pills .nav-link.active {
  background-color: #cbdfc4
}



.nav-tabs-wrapper::-webkit-scrollbar {
    height: 4px;
}

.nav-tabs-wrapper::-webkit-scrollbar-thumb {
    background: rgba(120,120,120,.35);
    border-radius: 20px;
}


#sidebar .nav-link {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	border-radius: var(--bs-border-radius-sm);font-size: 0.90rem;margin: 1px 0.5rem;
	padding: 0.5rem 0.875rem;
}

#sidebar .nav-link i {
	width: 1.25rem;
	text-align: center;
	opacity: 0.55;
}

#sidebar .nav-link:hover:not(.active) {
	background-color: var(--bs-tertiary-bg);
}

#sidebar .nav-link.active i {
	opacity: 1;
}

.top-header{
  padding-left: 8px;
  padding-right: 8px;
  
}

.dropdown-menu .dropdown-divider {
  margin: 0.4rem 0;
}
.resources {
  border: 0.5px solid #47994c;
  height: 200px;
}

.resources:hover {
  color: #fff;
  background-color: #83b841;
  transition-duration: 0.3s;
}

.flash_page {
  background-repeat: no-repeat;
  background-size: cover;
}
.iconClass {
  position: relative;
  /* width: 40px */
  border-width: 0px;
}

.iconClass.span {
  position: absolute;
  /* margin-top: 0px */
  /* margin-left: 0px */
  display: block;
  top: 0px;
  right: 0px;
  color: #000;
  font-size: 9px;
  background-color: #e5e5e5;
}
.hr-fade {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #198754, transparent);
  opacity: .4;
}

@media (prefers-color-scheme: dark) {
  .hr-fade {
    background: linear-gradient(to right, transparent, #4ade80, transparent);
    opacity: .6;
  }
}


.theme-switch-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(108,117,125,0.25);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .25s ease;
}

.theme-switch-circle:hover {
  background-color: rgba(108,117,125,0.45);
}


/* Step Indicator (Bootstrap-friendly) */
.step-indicator{
  --step-color: #83b841;          /* active + completed */
  --step-muted: #cfd6dc;          /* upcoming */
  --step-text: #212529;           /* label text */
  --step-bg: #ffffff;
  --step-size: 34px;
  --step-line: 3px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  padding: 1rem .75rem;
  width: 100%;
  overflow-x: auto;              /* allows scroll on very small screens */
  -webkit-overflow-scrolling: touch;
}

.step-indicator .step-item{
  position: relative;
  flex: 1 0 auto;
  min-width: 92px;               /* helps mobile readability */
  text-align: center;
  padding: 0 .25rem;
}

/* connector line (drawn behind circles) */
.step-indicator .step-item:not(:last-child)::after{
  content: "";
  position: absolute;
  top: calc(var(--step-size) / 2);
  left: calc(50% + (var(--step-size) / 2));
  right: calc(-50% + (var(--step-size) / 2) * -1);
  height: var(--step-line);
  background: var(--step-muted);
  transform: translateY(-50%);
  z-index: 0;
}

/* circle */
.step-indicator .step-circle{
  width: var(--step-size);
  height: var(--step-size);
  border-radius: 999px;
  margin: 0 auto .35rem;

  display: grid;
  place-items: center;

  font-weight: 700;
  font-size: .95rem;

  color: var(--step-muted);
  background: var(--step-bg);
  border: 2px solid var(--step-muted);

  position: relative;
  z-index: 1; /* sits above connector */
  transition: all .2s ease-in-out;
}

/* label */
.step-indicator .step-label{
  font-size: .875rem;
  line-height: 1.1;
  color: var(--step-text);
  opacity: .85;
  transition: opacity .2s ease-in-out;
  white-space: nowrap;
}

/* ACTIVE step */
.step-indicator .step-item.active .step-circle{
  border-color: var(--step-color);
  color: #fff;
  background: var(--step-color);
  box-shadow: 0 0 0 .25rem rgba(131, 184, 65, .20);
}

.step-indicator .step-item.active .step-label{
  opacity: 1;
  font-weight: 600;
}

/* COMPLETED steps */
.step-indicator .step-item.completed .step-circle{
  border-color: var(--step-color);
  background: #f3faea;
  color: var(--step-color);
}

.step-indicator .step-item.completed .step-label{
  opacity: 1;
}

/* completed connector line */
.step-indicator .step-item.completed:not(:last-child)::after{
  background: var(--step-color);
}

.progress-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin: 16px 0;
    }

    .progress-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #e9ecef;
        transition: all 0.3s ease;
    }

    .progress-dot.active {
        background: linear-gradient(135deg, var(--success-primary) 0%, var(--success-light) 100%);
        transform: scale(1.3);
        box-shadow: 0 2px 8px rgba(129, 179, 113, 0.4);
    }

/* ========================================
   2. FORM CONTROLS
   ======================================== */

/* Input Styling */
.form-control.myInput {
  border: 1px solid var(--sf-primary);
  border-radius: 5px;
  font-size: 12px;
  padding-left: 10px;
}

.form-control.search:hover {
  border: 1px solid #000;
}

/* OTP Input */
#inp_otp_hash {
  letter-spacing: 0.5em;
}

/* Phone Input Group */
.phone-input-group {
  display: flex;
  align-items: center;
}

.phone-prefix {
  background-color: #2a2a2a;
  color: #ffffff;
  padding: 0.375rem 0.75rem;
  border: 1px solid #444;
  border-right: none;
  border-radius: 0.375rem 0 0 0.375rem;
  font-size: 1rem;
  line-height: 1.5;
  white-space: nowrap;
}

.phone-input-group .form-control {
  border-radius: 0 0.375rem 0.375rem 0;
}

/* ========================================
   3. PASSWORD TOGGLE
   ======================================== */

.password-toggle {
  position: relative;
}

.password-toggle-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6c757d;
  transition: color 0.3s;
  z-index: 10;
}

.password-toggle-icon:hover {
  color: var(--sf-primary);
}

.password-toggle input {
  padding-right: 45px;
}

/* ========================================
   4. CHECKBOXES & RADIOS
   ======================================== */

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  border-width: 2px;
  margin-top: 0.125rem;
}

.form-check-input:checked {
  background-color: var(--sf-primary);
  border-color: var(--sf-primary);
}

.rating-step-panel {
  min-height: 96px;
}

.radio-stars {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 2px;
}

.radio-stars input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-stars label {
  margin: 0;
  cursor: pointer;
  color: #111;
  font-size: 1.6rem;
  line-height: 1;
  transition: color .2s ease;
}

.radio-stars label i {
  pointer-events: none;
}

.radio-stars label:hover,
.radio-stars label:hover ~ label,
.radio-stars input[type="radio"]:checked ~ label {
  color: #f7a600;
}

#btnNextRating {
  width: 48px;
  height: 40px;
  border-radius: .4rem;
}


/* Star Rating */
.star-icon label {
  font-size: 1.2rem;
  color: #ced4da;
  cursor: pointer;
  transition: color 0.2s;
}

.star-icon input {
  display: none;
}

.star-icon input:checked ~ label,
.star-icon label:hover,
.star-icon label:hover ~ label {
  color: var(--sf-primary);
}



/* ========================================
   5. PROGRESS & STEPS
   ======================================== */

.progress-step {
  position: relative;
  text-align: center;
  color: #6c757d;
}

.progress-step.active {
  color: var(--sf-primary);
  font-weight: 600;
}

.progress-step::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: #dee2e6;
  top: 50%;
  left: 50%;
  z-index: -1;
}

.progress-step.active::after {
  background: var(--sf-primary);
}

.step-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto;
}

/* ========================================
   6. ACCOUNT TYPE SELECTION
   ======================================== */

.account-type-option {
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* background: #ffffff */
  margin-bottom: 12px;
  border: 2px solid #dee2e6;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.account-type-option:hover {
  border-color: var(--sf-primary);
  background: rgba(var(--sf-primary-rgb), 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--sf-primary-rgb), 0.15);
}

.account-type-option input[type="radio"]:checked ~ .account-type-content {
  color: var(--sf-primary);
  font-weight: 600;
}

.account-type-option input[type="radio"]:checked {
  border-color: var(--sf-primary);
}

.account-type-option:has(input[type="radio"]:checked) {
  border-color: var(--sf-primary);
  background: rgba(var(--sf-primary-rgb), 0.05);
  box-shadow: 0 0 0 3px rgba(var(--sf-primary-rgb), 0.1);
}

/* ========================================
   7. ALERTS
   ======================================== */

.alert-enhanced {
  border-radius: 12px;
  border-width: 0 0 0 4px;
  padding: 16px 20px;
  background: linear-gradient(
    135deg,
    rgba(var(--sf-primary-rgb), 0.05) 0%,
    rgba(var(--sf-primary-rgb), 0.02) 100%
  );
}

/* ========================================
   8. BUTTONS
   ======================================== */

.btn-enhanced {
  border-radius: 10px;
  padding: 14px 40px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(var(--sf-primary-rgb), 0.25);
}

.btn-enhanced:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--sf-primary-rgb), 0.35);
}

.btn-enhanced:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn.round {
  border-radius: 16px;
}

.btn-ghost {
  background: transparent;
  border: 0;
  color: var(--accent);
}

.btn.invite {
  width: 50px;
  height: 50px;
  max-width: 50px;
  max-height: 50px;
}

/* ========================================
   9. HERO & CARDS
   ======================================== */

.hero-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--sf-bg-soft) 100%);
}

.stat-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
}

.process-card {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
}

/* ========================================
   10. CHAT COMPONENTS
   ======================================== */

.chat-modal {
  border-radius: 12px;
  overflow: hidden;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial;
}

.chat-header {
  background: linear-gradient(90deg, #3366ff, #4f9bff);
  color: #fff;
  padding: 12px 16px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
}

.messages {
  background: linear-gradient(180deg, #fff, var(--chat-bg));
}

.message-bubble {
  border-radius: var(--bubble-radius);
  box-shadow: 0 3px 10px rgba(30, 40, 60, 0.06);
  max-width: 80%;
  padding: 0.75rem 1rem;
  position: relative;
}

.message-bubble.bg-primary {
  background: var(--accent);
  color: #fff;
}

.message-bubble.bg-light {
  background: #f1f5f9;
  color: #111827;
}

.message-bubble.sent {
  align-self: flex-end;
  background-color: var(--bs-primary);
  color: white;
  border-bottom-right-radius: 0.25rem;
}

.message-bubble.received {
  align-self: flex-start;
  background-color: var(--bs-light);
  border-bottom-left-radius: 0.25rem;
}

.message-time {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.message.user {
  background-color: #d1e7dd;
  align-self: flex-end;
}

.message.bot {
  background-color: #f8d7da;
  align-self: flex-start;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.chat-input {
  border-top: 1px solid var(--bs-border-color);
  padding: 1rem;
  background-color: var(--bs-body-bg);
}

#chatMessages {
  display: flex;
  flex-direction: column;
}

/* Typing Indicator */
.typing-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 2px;
  background: #cbd5e1;
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
}

/* Chat User List */
.user-status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
}

.user-status.online {
  background-color: var(--bs-success);
}

.user-status.offline {
  background-color: var(--bs-secondary);
}

.chat-user-list .list-group-item {
  transition: background-color 0.2s;
}

.chat-user-list .list-group-item:hover {
  background-color: var(--bs-light);
  cursor: pointer;
}

.chat-user-list .list-group-item.active {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

/* ChatBot Offcanvas */
.offcanvas.chatBot {
  min-height: 300px;
  height: 300px;
  max-height: 300px;
  position: fixed;
  bottom: 20px;
  top: auto;
  right: 10px;
  border: solid var(--sf-primary);
  border-width: 1px 1px 0px;
  border-top-left-radius: 9px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  min-width: 400px;
  max-width: 400px;
}

.chat-panel { border-radius:12px; }

.eligible-card { transition: transform .08s ease, box-shadow .08s ease, border-color .08s ease; }
.eligible-card:hover { transform: translateY(-1px); box-shadow: 0 .5rem 1rem rgba(0,0,0,.08) !important; }

/* ========================================
   11. LAYOUT COMPONENTS
   ======================================== */

#userHeader {
  height: var(--header-height);
}

.main_login {
  margin-top: var(--header-height);
}

#offcanvasCookies.offcanvas-bottom.offcanUser {
  height: 120px;
  max-height: 150px;
  overflow-y: auto;
  overflow-x: hidden;
}

.offcanvas-start.sidecanvas {
  width: 75%;
}

.footer_level {
  height: 30px;
  min-height: 30px;
  max-height: 30px;
}

/* ========================================
   12. UTILITY CLASSES
   ======================================== */

.asteric {
  font-size: 15px;
  margin-right: 5px;
  padding-top: 1px;
  padding-bottom: 1px;
  font-weight: bold;
}

.check_mark_id {
  margin-bottom: 0px;
  margin-left: -8px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.collapse {
  transition:
    height 0.3s ease,
    opacity 0.3s ease;
}

/* ========================================
   13. ANIMATIONS
   ======================================== */

#installBadge {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--sf-primary-rgb), 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(var(--sf-primary-rgb), 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(var(--sf-primary-rgb), 0);
  }
}

/* ========================================
   14. SIGNATURE PAD
   ======================================== */

.signature-pad {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 10px;
  width: 100%;
  height: 100%;
  max-width: 700px;
  max-height: 460px;
  min-height: 200px;
  border: 1px solid #e8e8e8;
  background-color: #fff;
  box-shadow:
    0 1px 4px rgba(0, 0, 0, 0.27),
    0 0 40px rgba(0, 0, 0, 0.08) inset;
  border-radius: 4px;
  margin-bottom: 3px;
  padding: 8px;
}

.signature-pad::before,
.signature-pad::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 40%;
  height: 10px;
  bottom: 10px;
  background: transparent;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}

.signature-pad::before {
  left: 20px;
  transform: skew(-3deg) rotate(-3deg);
}

.signature-pad::after {
  right: 20px;
  transform: skew(3deg) rotate(3deg);
}

.signature-pad--body {
  position: relative;
  flex: 1;
}

.signature-pad--body.empty {
  background-color: #333;
}

.signature-pad--body canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.02) inset;
}

.signature-pad--footer {
  color: #c3c3c3;
  text-align: center;
  font-size: 1.2em;
  margin-top: 8px;
}

.signature-pad--actions {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.signature-pad--actions .column {
  padding: 0.1em;
}

.signature-pad--actions .button {
  margin: 0.2em;
}

.btn.btn-facebook-rounded {
  background-color: #1877F2;
  color: #fff;
  border: none;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}


.btn.btn-facebook:hover {
   background-color: #0f5dc8;
  transform: translateY(-1px);

}

.btn.btn-facebook:active {
  background-color: #0c4da8;
  transform: translateY(0);

}

.btn.btn-x {
  background-color: transparent;
  color: #000;
  border: 2px solid #000;
  padding: 0.55rem 1rem;
  font-weight: 600;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn.btn-x:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-1px);
}

.btn.btn-x:active {
  background-color: #111;
  transform: translateY(0);
}



/* ========================================
   15. PRINT STYLES
   ======================================== */

@page {
  size: A4;
  margin: 20mm;
}

.a4-container {
  width: 210mm;
  height: 297mm;
  background: white;
  margin: auto;
  padding: 20mm;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.header,
.footer {
  text-align: center;
  padding: 10px 0;
  font-size: 16px;
  font-weight: bold;
  background: #007bff;
  color: white;
}

.content {
  flex-grow: 1;
  padding: 20px;
  font-size: 14px;
  text-align: justify;
}

@media print {
  .a4-container {
    box-shadow: none;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
  }

  .header,
  .footer {
    background: none;
    color: black;
  }
}

/* ========================================
   16. SIDEBAR & NAVIGATION
   ======================================== */

.dropdown-item.side {
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 10px 0px 10px 40px;
  font-size: 13px;
  border-width: 1px;
  border-color: #d2e6dd;
  border-radius: 0;
}

.dropdown-item.side:hover {
  font-style: italic;
}

.main_select:hover {
  transition-delay: 3s;
  transition-duration: 3s;
  border: 0.5px solid var(--sf-primary);
  border-radius: 8px;
}

.col.flashi {
  height: 400px;
  min-width: 400px;
  background-size: cover;
  background-image: url("../assets/images/uploads/workermen_2.png");
}

.drop_inner {
  font-size: 14px;
  padding: 10px 16px;
  transition: background 0.15s ease, padding-left 0.15s ease;
}

.drop_inner:hover {
  background: #f8f9fa;
  padding-left: 20px;
}

.dropdown-menu.subdropmenu {
  border-radius: 10px;
  width: 250px;
  margin-top: 15px;
}

/* ========================================
   17. RESPONSIVE BREAKPOINTS
   ======================================== */

/* Small devices (≥576px) */
@media (min-width: 576px) {
  .container {
    margin: 0 auto;
  }

  .offcanvas-backdrop {
    display: none !important;
  }
}

/* Medium devices (≤768px) */
@media (max-width: 768px) {
  #topNav {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    margin-right: 0;
    max-width: 100%;
  }

  .step-indicator{
    --step-size: 30px;
    padding: .75rem .5rem;
  }
  .step-indicator .step-item{
    min-width: 80px;
  }
  .step-indicator .step-label{
    font-size: .8rem;
  }

  #navfirst {
    position: relative;
  }

  #navsecond {
    margin-right: 10px;
    height: 110px;
  }

  /* Hamburger Menu */
  .bar1,
  .bar2,
  .bar3 {
    width: 35px;
    height: 5px;
    background-color: #333;
    margin: 6px 0;
    transition:
      transform 0.3s ease-in-out,
      opacity 0.3s ease-in-out;
  }

  .change .bar1 {
    transform: translateY(11px) rotate(-45deg);
  }

  .change .bar2 {
    opacity: 0;
  }

  .change .bar3 {
    transform: translateY(-11px) rotate(45deg);
  }

  .col-equal {
    display: block;
    width: 100%;
  }

  .inboxtable {
    overflow-y: scroll;
    height: 200px;
  }

  .ddnotify {
    height: 600px;
  }
}

/* Tablet-large devices (≥768px) */
@media (min-width: 768px) {
  .signuprow {
    background-image: linear-gradient(
      0deg,
      var(--sf-primary-dark) 0%,
      white 100%
    );
  }

  .cat_class {
    width: auto;
    min-height: auto;
    border: 1px solid var(--sf-primary);
    border-radius: 1px;
  }
}

/* Mobile devices (≤480px) */
@media (max-width: 480px) {
  .signature-pad--actions .button {
    display: block;
    width: 100%;
    min-height: 2em;
  }

  .signup-square-col {
    padding: 5px;
    margin-bottom: 5px;
    width: 100%;
    height: auto;
  }

 .btn.btn-facebook,
  .btn.btn-facebook-rounded {
    width: 100%;
    justify-content: center;
  }

  .btn.btn-x,
  .btn.btn-x-outline {
    width: 100%;
    justify-content: center;
  }

  # .acctHeader {
    font-size: 16px;
  }
 

  

  /* Typography Adjustments */
  h1 {
    font-size: 24px;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2px;
    word-wrap: break-word;
    hyphens: auto;
  }

  h2 {
    font-size: 22px;
    margin-bottom: 0.45rem;
    letter-spacing: 0.15px;
    word-wrap: break-word;
    hyphens: auto;
  }

  h3 {
    font-size: 20px;
    margin-bottom: 0.45rem;
    word-wrap: break-word;
    hyphens: auto;
  }

  h4 {
    font-size: 18px;
    margin-bottom: 0.4rem;
  }

  h5 {
    font-size: 16px;
    margin-bottom: 0.35rem;
  }

  h6 {
    font-size: 13px;
    margin-bottom: 0.3rem;
  }

  p {
    font-size: 13px;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    hyphens: auto;
  }

 
}
/* Tablet size (≤750px) */
@media (max-width: 750px) {
  #sidebar .offcanvas .offcanvas-end {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
.wappler-temp {
}
@media (min-width: 1200px) {
  .cat_icon {
    
  }
  .:hover {
    transition-timing-function: ease, ease;
    transition-delay: 2s;
    transition-duration: 2s;
  }
}

.dropdown-item {
  padding-top: 20px;
  padding-bottom: 20px;
}


