* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

body {
  font-family: 'Inter', sans-serif;
  color: #1F2937;
  line-height: 1.6;
  margin: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 50px;
  /* fixed height so it fits nicely in header */
  width: auto;
  display: block;
}

.logo span {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  letter-spacing: 0.03em;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto
}

/* =========================
   NEW HEADER INDEX
========================= */

/* Weather pill keep as you have or similar */
.weather-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  font-size: 12px;
}

.weather-temp {
  font-weight: 600;
}

/* New donate button (more attractive) */
.btn-donate-hero {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #1e7f43;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.btn-donate-hero:hover {
  transform: translateY(-1px);
  background-color: rgb(20, 223, 135);
}


.btn-donate-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 13px;
}

/* Single auth button */
.btn-auth {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #ffffff;
  color: #111827;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
}

.btn-auth:hover {
  background: #f3f4ff;
  border-color: #1E7F43;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.15);
}

.btn-auth:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

.btn-auth-icon {
  font-size: 14px;
}

/* =========================
   NAV MENU
========================= */
.nav {
  display: flex;
  gap: 20px;
}

.nav-item {
  position: relative;
}

.nav-item>a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  padding: 8px 4px;
}

.nav-item:hover>a {
  color: #1E7F43;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 130%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
  display: none;
  z-index: 200;
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: #374151;
  text-decoration: none;
}

.dropdown a:hover {
  background: #EAF6EF;
  color: #1E7F43;
}

.nav-item:hover .dropdown {
  display: block;
}

/* =========================
   PROFILE MENU
========================= */
.profile-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

.profile-pic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-name {
  font-weight: 500;
  font-size: 14px;
}

/* Profile Dropdown */
.profile-dropdown {
  position: absolute;
  right: 0;
  top: 120%;
  background: #fff;
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
  display: none;
  z-index: 300;
}

.profile-dropdown a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  color: #374151;
  text-decoration: none;
}

.profile-dropdown a:hover {
  background: #F0FDF4;
}

.profile-dropdown hr {
  border: none;
  border-top: 1px solid #E5E7EB;
  margin: 6px 0;
}

.profile-dropdown .danger {
  color: #DC2626;
}

.profile-menu.active .profile-dropdown {
  display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .profile-name {
    display: none;
  }
}

/* PROFILE PAGE */
.header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
  position: sticky;
  top: 0;
  z-index: 100
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.logo img {
  height: 60px;
  /* adjust as needed */
  width: auto;
}

.logo span {
  color: #1E7F43;
}

.logo b {
  color: #1C9BEF;
}

.header-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, #1E7F43, #1C9BEF, #1E7F43);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-donate {
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  background: #1E7F43;
  border: 1px solid #1E7F43;
  box-shadow: 0 4px 12px rgba(6, 105, 17, 0.35);
}

.btn-donate:hover {
  background: #9bd6b0;
}

.nav a {
  margin: 0 14px;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #1E7F43;
  transition: .3s;
}

.nav a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.weather {
  background: #EAF6EF;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px
}

.weather-card {
  min-width: unset;
  padding: 6px 12px;
  font-size: 13px;
}

/* BUTTONS */
.btn-primary {
  background: #1E7F43;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer
}

.btn-outline {
  border: 2px solid #1E7F43;
  color: #1E7F43;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  background: none
}

.btn-white {
  background: #fff;
  color: #1E7F43;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600
}

/* HERO */

.hero {
  background: linear-gradient(#EAF6EF, #fff);
  padding: 80px 0
}

/* Hero should not inherit container limits */

/* Full-screen-width hero strip */
.sliderimage {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  /* break out of any centered layout */
}

/* Visible slider area (full width, fixed height) */
.sliderimage-vertical-slider {
  width: 100%;
  height: 70vh;
  /* make it 100vh if you want full screen height */
  overflow: hidden;
  position: relative;
}

/* Track that moves up/down */
.sliderimage-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.6s ease-in-out;
}

/* Each slide image fills width */
.sliderimage-track img {
  width: 100%;
  height: 70vh;
  /* must match .hero-vertical-slider height */
  object-fit: cover;
  /* keep image covering the area */
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}

.hero-text h1 {
  font-family: 'Poppins';
  font-size: 42px;
  margin-bottom: 20px
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px
}

.image-placeholder {
  background: #E5E7EB;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #6B7280
}

.hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  /* controls image size */
  height: auto;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


/* WEATHER STRIP */
.weather-card {
  background: #EAF6EF;
  padding: 10px 16px;
  border-radius: 14px;
  text-align: center;
  min-width: 90px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}

.wc-temp {
  font-size: 18px;
  font-weight: 700;
}

.wc-meta {
  font-size: 13px;
  color: #065F46;
}


/* QUICK SERVICES */

.qs-heading {
  font-family: 'Poppins';
  font-size: 32px;
  text-align: center;
  margin-bottom: 35px;
  color: #1F2937;
}

.quick-services {
  background: linear-gradient(135deg, #ECFDF5, #F0FDF4);
  padding: 70px 0 50px;
  border-top: 1px solid #D1FAE5;
  border-bottom: 1px solid #D1FAE5;
}

.qs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.qs-card {
  background: #F9FAFB;
  font-size: 34px;
  border-radius: 18px;
  padding: 25px 18px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
  font-weight: 600;
  transition: .3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.qs-card h4 {
  font-family: 'Poppins';
  margin: 12px 0 6px;
  font-size: 18px;
}

.qs-card p {
  font-size: 14px;
  font-weight: 400;
  color: #6B7280;
}

.qs-card:hover {
  transform: translateY(-6px);
  background: #EAF6EF;
  transform: translateY(-8px) scale(1.02);
}


/* Responsive */
@media (max-width: 992px) {
  .header-flex {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 0;
  }

  .header-right {
    width: 100%;
    justify-content: center;
  }

  .nav {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .header-right {
    flex-direction: column;
    gap: 8px;
  }

  .weather-card {
    width: 100%;
    max-width: 220px;
    text-align: center;
  }

  .btn-outline,
  .btn-primary {
    width: 100%;
    max-width: 220px;
  }
}

@media(max-width:900px) {
  .qs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* TODAY TIPS */
.todays-tips {
  padding: 24px 0 20px;
  background: #f9fafb;
}

.tips-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.todays-tips h2 {
  font-size: 20px;
  font-weight: 600;
}

.tips-sub {
  font-size: 13px;
  color: #6b7280;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.tip-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.tip-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.tip-card p {
  font-size: 12px;
  color: #4b5563;
}

/*REELS*/

.reels {
  padding: 24px 0 24px;
  background: #eef2ff;
  /* softer colored bg (indigo-100 type) */
}

.reels-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.reels h2 {
  font-size: 20px;
  font-weight: 600;
}

.reels-sub {
  font-size: 13px;
  color: #6b7280;
}

.reels-view-all {
  font-size: 13px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
}

.reels-view-all:hover {
  text-decoration: underline;
}

/* Bigger reels, more on screen */
.reels-row {
  display: flex;
  flex-wrap: wrap;
  /* allow multiple rows, no horizontal scroll */
  gap: 12px;
  overflow-x: visible;
  /* no scroll bar */
  padding-bottom: 0;
}

/* remove scrollbar styles if you had them */
.reels-row::-webkit-scrollbar {
  display: none;
}

.reel-card {
  flex: 1 1 calc(25% - 12px);
  /* 4 per row with gap */
  max-width: 200px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.reel-thumb {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
}


.reel-info {
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reel-title {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}

.reel-meta {
  font-size: 11px;
  color: #6b7280;
}

/* Add Reels tile */
.add-reel {
  border-style: dashed;
  border-color: #9ca3af;
  background: #e5e7eb;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.add-reel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 100%;
}

.add-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
}

.add-text {
  font-size: 12px;
  font-weight: 500;
  color: #111827;
}

/* Modal overlay */
/* Overlay */
.reel-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.reel-modal-overlay.open {
  display: flex;
}

/* Instagram-style reel container */
.reel-modal-ig {
  position: relative;
  width: 100%;
  max-width: 420px;
  /* narrow like phone screen */
  height: 100vh;
  max-height: 780px;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Close button */
.reel-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
  border: none;
  border-radius: 999px;
  width: 28px;
  height: 28px;
  font-size: 18px;
  cursor: pointer;
  z-index: 3;
}

/* Vertical media */
.reel-ig-media-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-ig-media-wrap img,
.reel-ig-media-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* full-bleed like Instagram Reels */
}

/* Actions column (right side) */
.reel-ig-actions {
  position: absolute;
  right: 16px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  z-index: 2;
}

.ig-action-btn {
  background: transparent;
  border: none;
  color: #f9fafb;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 18px;
}

.ig-action-btn span {
  font-size: 11px;
}

.ig-action-btn.danger span {
  color: #fca5a5;
}

/* Mobile: full-screen with smaller radius */
@media (max-width:768px) {
  .reel-modal-ig {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
  }
}

/*JOB VIEW*/
.jobs {
  padding: 24px 0 24px;
  background: #f9fafb;
}

.jobs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.jobs h2 {
  font-size: 20px;
  font-weight: 600;
}

.jobs-sub {
  font-size: 13px;
  color: #6b7280;
}

.jobs-view-all {
  font-size: 13px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
}

.jobs-view-all:hover {
  text-decoration: underline;
}

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.job-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.job-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.job-meta {
  font-size: 12px;
  color: #6b7280;
}

.job-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.job-tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
}

.job-apply-btn {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 999px;
  border: none;
  background: #16a34a;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.job-apply-btn:hover {
  background: #15803d;
}

@media (max-width:640px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-side {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}
/*VIEW SMART VILLAGE*/
.smart-village {
  padding: 32px 0 36px;
  background: #f9fafb;
}

.sv-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.sv-header h2 {
  margin: 0;
  font-size: 22px;
}

.sv-sub {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}

.sv-view-all {
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(37,99,235,0.3);
}
.sv-view-all:hover {
  background: #2563eb;
  color: #ffffff;
}

.sv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.sv-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.6);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 20px rgba(15,23,42,0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.sv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15,23,42,0.12);
}

.sv-thumb {
  height: 140px;
  background-size: cover;
  background-position: center;
}

.sv-body {
  padding: 10px 12px 12px;
}

.sv-name {
  margin: 0 0 4px;
  font-size: 15px;
}

.sv-meta {
  font-size: 12px;
  color: #6b7280;
}

@media (max-width: 640px) {
  .sv-header {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ABOUT */
.about {
  padding: 80px 0
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px
}

.about h2 {
  font-family: 'Poppins';
  font-size: 32px;
  margin-bottom: 20px
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.stat-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
  text-align: center
}

.stat-card b {
  display: block;
  font-size: 24px;
  margin: 10px 0
}

/* FEATURES */
.features {
  background: #F9FAFB;
  padding: 80px 0
}

.center {
  text-align: center;
  margin-bottom: 50px
}

.center h2 {
  font-family: 'Poppins';
  font-size: 32px
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}


.feature-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .06)
}

.feature-card h3 {
  font-family: 'Poppins';
  margin-bottom: 12px
}

/* MODULE ICONS */
.module-icon {
  font-size: 38px;
  margin-bottom: 14px;
}

.feature-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.feature-card:hover {
  transform: translateY(-6px);
}



/* IMPACT */
.impact {
  background: #EAF6EF;
  padding: 80px 0
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  font-weight: 600
}

.impact-section {
  background: #d9f9e0;
  padding: 80px 0;
}

.impact-heading {
  font-family: 'Poppins';
  font-size: 32px;
  text-align: center;
  margin-bottom: 50px;
}

.impact-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.india-map img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: auto;
}

.map-note {
  text-align: center;
  font-size: 14px;
  color: #6B7280;
}

.impact-card {
  background: #fff;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

/* CTA */
.cta {
  background: #1E7F43;
  color: #fff;
  text-align: center;
  padding: 80px 20px
}

.cta h2 {
  font-family: 'Poppins';
  margin-bottom: 25px;
  font-size: 32px
}

/* FOOTER */
.footer {
  background: #0F172A;
  color: #CBD5E1;
  padding: 60px 0 20px
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px
}

.footer h3,
.footer h4 {
  color: #fff;
  margin-bottom: 12px;
  font-family: 'Poppins'
}

.footer a {
  display: block;
  color: #CBD5E1;
  text-decoration: none;
  margin: 6px 0;
  font-size: 14px
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  opacity: .7
}

/* MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999
}

.modal {
  background: #fff;
  width: 360px;
  padding: 30px;
  border-radius: 14px;
  position: relative
}

.modal h2 {
  font-family: 'Poppins';
  text-align: center;
  margin-bottom: 20px
}

.modal input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #D1D5DB
}

.full {
  width: 100%
}

.switch {
  text-align: center;
  font-size: 14px
}

.switch span {
  color: #1E7F43;
  font-weight: 600;
  cursor: pointer
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer
}

.competition-section {
  background: #EAF6EF;
  padding: 80px 0;
  overflow: hidden;
}

.competition-heading {
  font-family: 'Poppins';
  font-size: 32px;
  text-align: center;
  margin-bottom: 10px;
}

.competition-sub {
  text-align: center;
  color: #6B7280;
  margin-bottom: 40px;
}

.competition-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.competition-track {
  display: flex;
  gap: 25px;
  width: max-content;
  /* 👈 KEY FIX */
  flex-wrap: nowrap;
  animation: marquee 22s linear infinite;
}

.competition-marquee:hover .competition-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.competition-card {
  min-width: 300px;
  height: 320px;
  /* 👈 FIXED HEIGHT */
  background: #fff;
  border-radius: 18px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
  text-align: center;
  flex: 0 0 auto;
  /* 👈 PREVENT FLEX RESIZE */
  width: 300px;
  display: flex;
  /* 👈 FLEX LAYOUT */
  flex-direction: column;
  align-items: center;

  font-size: 28px;
}

/* Title */
.competition-card h4 {
  font-family: 'Poppins';
  font-size: 18px;
  margin: 12px 0;
  min-height: 44px;
  /* 👈 SAME TITLE SPACE */
}

/* Description */
.competition-card p {
  font-size: 14px;
  color: #374151;
  line-height: 1.4;
  flex-grow: 1;
  /* 👈 TAKES EQUAL SPACE */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Button always at bottom */
.participate-btn {
  margin-top: auto;
  /* 👈 PUSH TO BOTTOM */
  padding: 10px 18px;
  background: #1E7F43;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: .3s;
}

.participate-btn:hover {
  background: #16A34A;
  transform: translateY(-2px);
}


.footer {
  background: #0F172A;
  color: #CBD5E1;
  padding: 50px 0 20px;
}

.footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-col {
  min-width: 160px;
}

.footer h3,
.footer h4 {
  color: #fff;
  font-family: 'Poppins';
  margin-bottom: 10px;
}

.footer a {
  display: block;
  color: #CBD5E1;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 6px;
}

.footer a:hover {
  color: #1E7F43;
}

/* NEWSLETTER */
.newsletter-col {
  min-width: 260px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  padding: 10px;
  border-radius: 6px;
  border: none;
  width: 150px;
}

.newsletter-form button {
  padding: 10px 14px;
  border-radius: 6px;
  border: none;
  background: #1E7F43;
  color: #fff;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: #16A34A;
}

/* COPYRIGHT */
.footer-bottom {
  margin-top: 25px;
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .newsletter-form {
    justify-content: center;
  }
}


/* RESPONSIVE */
@media(max-width:900px) {

  .hero-grid,
  .about-grid,
  .feature-grid,
  .impact-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .weather-info {
    flex-direction: column;
    gap: 8px;
    text-align: center
  }

  .nav {
    display: none
  }
}

/* MY_VILLAGE Village hero section */
.village-hero {
  background: linear-gradient(135deg, #70ef6b, #baecd1);
  color: #ffffff;
  padding: 0 0 0;
  position: relative;
  overflow: hidden;
}

.village-hero-inner {
  position: relative;
}

.village-hero h1 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

.village-hero h2 {
  font-size: 34px;
  font-weight: 700;
  margin-top: 6px;
}

/* Hero image slider under heading */
.village-hero-slider {
  margin-top: 0;
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.village-hero-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.village-hero-track img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

/* Text overlay on top of slider */
.village-hero-text {
  position: absolute;
  inset: 0;
  /* full area */
  display: flex;
  align-items: center;
  pointer-events: none;
  /* clicks pass through if you want */
}

.village-hero-text .container {
  pointer-events: auto;
  /* allow text / buttons to be clickable if added */
}

.village-hero-text h1,
.village-hero-text h2 {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

/* Optional: add subtle dark overlay for readability */
.village-hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.6));
  z-index: 0;
}

/* Ensure text is above overlay/slider */
.village-hero-text {
  z-index: 1;
}

/* Generic village info sections */
.village-section {
  padding: 32px 0;
  background: #f5f7fb;
}

.village-section:nth-of-type(odd) {
  background: #ffffff;
}

.village-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f172a;
}

.village-section p {
  font-size: 14px;
  color: #4b5563;
}

/* Wrapper for this combined section */
.village-info {
  padding: 40px 0;
  background: linear-gradient(135deg, #f9fafb, #e5edff);
}

/* Two-column layout */
.village-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 20px;
  align-items: flex-start;
}

/* Card styling */
.village-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.village-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #0f172a;
}

/* Basic details list layout */
/* Card heading tweak */
.village-basic-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #0f172a;
}

.village-details-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.village-details-list li {
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff6ff, #e0f2fe);
  border: 1px solid rgba(37, 99, 235, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  position: relative;
  overflow: hidden;
}

.village-details-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2563eb, #22c55e);
}

/* Label / value styling */
.village-details-list span {
  color: #64748b;
  padding-left: 8px;
  /* space after accent bar */
}

.village-details-list strong {
  color: #0f172a;
  font-weight: 600;
}

/* Optional hover for more life */
.village-details-list li:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transition: all 0.18s ease-out;
}

.village-details-list li:last-child {
  border-bottom: none;
}

.village-details-list span {
  color: #6b7280;
}

.village-details-list strong {
  color: #111827;
  font-weight: 600;
}

/* About card text */
.village-about-card p {
  font-size: 14px;
  color: #4b5563;
}

/* See more button */
.btn-see-more {
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-see-more:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

/* Modal overlay */
.about-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: none;
  /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* Modal box */
.about-modal {
  background: #ffffff;
  max-width: 560px;
  width: 90%;
  border-radius: 16px;
  padding: 20px 22px 16px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
}

.about-modal h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f172a;
}

.about-modal p {
  font-size: 14px;
  color: #4b5563;
  max-height: 260px;
  overflow-y: auto;
}

/* Cancel button */
.about-modal-close {
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: #f9fafb;
  color: #111827;
  font-size: 13px;
  cursor: pointer;
}

/* Helper to show modal */
.about-modal-overlay.open {
  display: flex;
}


/* Responsive */
@media (max-width: 768px) {
  .village-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Development status block */
.development {
  padding: 40px 0 48px;
  background: #f9fafb;
}

.development h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #0f172a;
}

/* Development cards grid */
.development-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.dev-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.35);
  text-align: center;
}

.dev-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #111827;
}

.dev-card img {
  width: 150px;
  height: 125px;
  margin-bottom: 8px;
}

.dev-card p {
  font-size: 13px;
  color: #4b5563;
}

/* Responsive tweaks for this page */
@media (max-width: 768px) {
  .village-hero {
    text-align: center;
  }

  .development-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .development-grid {
    grid-template-columns: 1fr;
  }

  .village-hero h2 {
    font-size: 28px;
  }
}

/* SMART VILLAGE*/
.phases-section {
  padding: 28px 0 32px;
  background: radial-gradient(circle at top left, #e0f2fe 0, #f9fafb 40%, #f3f4f6 100%);
}

.phases-sub {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 14px;
}

.phases-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.phase-tab {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: #ffffff;
  font-size: 13px;
  cursor: pointer;
  color: #374151;
}

.phase-tab.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
}

/* DEVELOPMENT PHASES */
.dev-phase-panel {
  display: none;
}

.dev-phase-panel.active {
  display: block;
}

.phase-desc {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 10px;
}

.development-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  margin-bottom: 14px;
}

.dev-card-soft {
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 12px 12px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.dev-card-soft h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.dev-card-soft img {
  width: 100%;
  height: 160px;
  /* same size */
  border-radius: 8px;
  margin-bottom: 6px;
  object-fit: cover;
}

.progress-row {
  font-size: 12px;
  color: #374151;
}

.progress-row span {
  display: block;
  margin-bottom: 4px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

/* MEDIA TABS & PANELS */
.media-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.media-tab {
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  cursor: pointer;
  color: #374151;
}

.media-tab.active {
  background: #16a34a;
  color: #ffffff;
  border-color: #16a34a;
  box-shadow: 0 6px 14px rgba(22, 163, 74, 0.25);
}

.media-panel {
  display: none;
}

.media-panel.active {
  display: block;
}

.gallery-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  margin-top: 4px;
}

.gallery-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 8px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  text-align: center;
  font-size: 12px;
  color: #374151;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  height: 210px;
}

.gallery-item img {
  width: 100%;
  height: 140px;
  border-radius: 8px;
  margin-bottom: 4px;
  object-fit: cover;
}

.gallery-item span {
  margin-top: auto;
}

.media-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.media-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  font-size: 12px;
  color: #4b5563;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.media-item h4 {
  font-size: 13px;
  margin: 0;
}

.media-item p {
  margin: 0;
}

.media-item a {
  font-size: 12px;
  color: #2563eb;
  text-decoration: none;
  margin-top: 2px;
}

.media-item a:hover {
  text-decoration: underline;
}

.gallery-phase-panel {
  display: none;
}

.gallery-phase-panel.active {
  display: block;
}

/* DEVELOPMENT DETAIL MODAL */
.phase-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.phase-modal-overlay.open {
  display: flex;
}

.phase-modal {
  max-width: 900px;
  width: 92vw;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px 18px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.30);
  overflow-y: auto;
  position: relative;
}

.phase-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: #ef4444;
  color: #ffffff;
  border-radius: 999px;
  width: 26px;
  height: 26px;
  font-size: 16px;
  cursor: pointer;
}

.phase-modal h3 {
  margin: 4px 0 10px;
  font-size: 18px;
}

.phase-modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.phase-modal-gallery img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  max-height: 180px;
}

.phase-modal p {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

/* MEDIA & GALLERY IMAGE LIGHTBOX */
.img-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}

.img-modal-overlay.open {
  display: flex;
}

.img-modal-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.img-modal-close {
  position: absolute;
  top: 6px;
  right: 8px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  padding: 2px 8px;
  font-size: 18px;
  cursor: pointer;

}

@media (max-width: 768px) {
  .village-info-grid {
    grid-template-columns: 1fr;
  }

  .header-flex {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}




/* community wall */

:root {
  --sg-green: #198754;
  /* SmartGaon green – adjust to your exact logo */
  --sg-blue: #2563eb;
  --sg-bg: #f5f7fb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: var(--sg-bg);
  color: #111827;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== HEADER ===== */
.header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}


.nav {
  display: flex;
  gap: 16px;
  align-items: center;
}



/* ===== COMMUNITY HERO ===== */
.community-hero {
  background: linear-gradient(135deg, var(--sg-green), #0f5132);
  color: #ffffff;
  padding: 28px 0 24px;
}

.community-hero-inner h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
}

.community-hero-inner p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

/* ===== COMMUNITY SECTION ===== */
.community-section {
  padding: 32px 0 40px;
  background: #e7f3ec;
  /* light SmartGaon green tint */
}

.community-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.community-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.community-heading h2 {
  font-size: 18px;
  color: #0f172a;
}

.view-all-link {
  font-size: 13px;
  color: var(--sg-blue);
  text-decoration: none;
}

/* ===== CARDS ===== */
.cw-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 16px 12px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.45);
  margin-bottom: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.cw-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(25, 135, 84, 0.6);
}

.cw-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: #1d4ed8;
  background: #e0f2fe;
  margin-bottom: 8px;
}

.cw-tag.event {
  color: var(--sg-green);
  background: #d1fae5;
}

.cw-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
}

.cw-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.cw-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #111827;
}

.cw-card p {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 8px;
}

.cw-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 12px;
  color: #6b7280;
}

/* ===== MODAL ===== */
.cw-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.cw-modal-overlay.open {
  display: flex;
}

.cw-modal {
  background: #ffffff;
  max-width: 560px;
  width: 90%;
  border-radius: 16px;
  padding: 20px 22px 16px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
}

.cw-modal-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  display: none;
}

.cw-modal-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.cw-modal h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0f172a;
}

.cw-modal p {
  font-size: 14px;
  color: #4b5563;
  max-height: 260px;
  overflow-y: auto;
}

.cw-modal-close {
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  background: var(--sg-green);
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.cw-modal-close:hover {
  background: #146c43;
  box-shadow: 0 8px 18px rgba(20, 108, 67, 0.4);
}

.cw-modal-close:active {
  background: #0f5132;
  transform: translateY(1px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .community-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== forum ===== */
:root {
  --sg-green: #198754;
  --sg-blue: #2563eb;
  --sg-bg: #f5f7fb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: var(--sg-bg);
  color: #111827;
  line-height: 1.6;
}

.forum-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== HEADER ===== */
.forum-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.forum-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.forum-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.forum-logo img {
  height: 50px;
  width: auto;
}

.forum-logo span {
  font-weight: 600;
  font-size: 18px;
  color: #0f172a;
}

.forum-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.forum-nav a {
  font-size: 14px;
  text-decoration: none;
  color: #0f172a;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.forum-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--sg-blue);
}

.forum-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.forum-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.forum-profile span {
  font-size: 14px;
  font-weight: 500;
}

/* ===== HERO (non-sticky) ===== */
.forum-hero {
  background: linear-gradient(135deg, var(--sg-green), #0f5132);
  color: #ffffff;
  padding: 26px 0 20px;
}

.forum-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
}

.forum-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

/* ===== MAIN LAYOUT ===== */
.forum-main {
  min-height: 100vh;
  padding: 16px 0 32px;
}

.forum-layout {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  /* LEFT: form sticky, RIGHT: feed scroll */
  gap: 24px;
  align-items: flex-start;
}

/* LEFT column: Create a Post - STICKY */
.forum-layout>div:first-child {
  position: sticky;
  top: 120px;
  /* below header + hero area */
  align-self: flex-start;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

/* RIGHT column: Latest Posts - normal page scroll */
.forum-layout>div:last-child {
  overflow-y: visible;
}

.forum-layout-item {
  order: 0;
}

/* Mobile: stack */
@media (max-width: 768px) {
  .forum-layout {
    grid-template-columns: 1fr;
  }

  .forum-layout>div:first-child {
    position: static;
    max-height: none;
  }

  .forum-layout-form {
    order: 1;
  }

  .forum-layout-feed {
    order: 2;
  }
}

.forum-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px 18px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.forum-card h2 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0f172a;
}

.forum-field {
  margin-bottom: 10px;
}

.forum-label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  color: #4b5563;
}

.forum-input,
.forum-textarea,
.forum-select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 7px 10px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: #f9fafb;
}

.forum-input:focus,
.forum-textarea:focus,
.forum-select:focus {
  border-color: var(--sg-green);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(25, 135, 84, 0.25);
}

.forum-textarea {
  min-height: 80px;
  resize: vertical;
}

.forum-helper {
  font-size: 11px;
  color: #6b7280;
}

.forum-btn-primary {
  margin-top: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  background: var(--sg-blue);
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.forum-btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
}

.forum-btn-primary:active {
  background: #1e40af;
  transform: translateY(1px);
}

/* Success alert */
.forum-alert-wrap {
  margin-bottom: 10px;
}

.forum-alert {
  background: #dcfce7;
  border: 1px solid rgba(22, 163, 74, 0.5);
  color: #166534;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== FEED ===== */
.forum-feed-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.forum-feed-title h2 {
  font-size: 18px;
  color: #0f172a;
}

.forum-chip {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #d1fae5;
  color: var(--sg-green);
}

#forumFeed {
  margin-top: 6px;
}

.forum-post {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 15px 12px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.45);
  margin-bottom: 14px;
}

.forum-post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.forum-post-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.forum-post-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.forum-post-author-info span {
  display: block;
  font-size: 13px;
  font-weight: 500;
}

.forum-post-author-info small {
  font-size: 11px;
  color: #6b7280;
}

.forum-post-category {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
}

.forum-post-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111827;
}

.forum-post-body {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 6px;
}

/* Attachments */
.forum-attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.forum-attachment {
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.forum-attachment img {
  width: 130px;
  height: 80px;
  object-fit: cover;
  display: block;
}

.forum-attachment video {
  width: 160px;
  height: 90px;
  display: block;
}

/* Post footer actions */
.forum-post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.forum-actions-left {
  display: flex;
  gap: 10px;
  align-items: center;
}

.forum-action-btn {
  border: none;
  background: transparent;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #4b5563;
  transition: background 0.15s ease, color 0.15s ease;
}

.forum-action-btn:hover {
  background: rgba(15, 23, 42, 0.05);
  color: #111827;
}

.forum-like-count,
.forum-comment-count {
  font-size: 11px;
  color: #6b7280;
}

/* Comments (no replies) */
.forum-comments {
  margin-top: 8px;
  border-top: 1px dashed rgba(148, 163, 184, 0.6);
  padding-top: 6px;
}

.forum-comment {
  margin-bottom: 6px;
  padding: 4px 6px;
  border-radius: 10px;
  background: #f9fafb;
  font-size: 12px;
}

.forum-comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forum-comment-author {
  font-weight: 500;
  font-size: 12px;
}

.forum-comment-meta {
  font-size: 10px;
  color: #9ca3af;
}

.forum-comment-body {
  margin-top: 2px;
  color: #4b5563;
}

.forum-comment-form {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.forum-comment-input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 4px 8px;
  font-size: 11px;
  background: #ffffff;
  outline: none;
}

.forum-comment-input:focus {
  border-color: var(--sg-blue);
}

.forum-btn-small {
  padding: 4px 10px;
  border-radius: 999px;
  border: none;
  background: var(--sg-blue);
  color: #ffffff;
  font-size: 11px;
  cursor: pointer;
}

/* ===== MEDIA VIEWER MODAL ===== */
.forum-media-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.forum-media-overlay.open {
  display: flex;
}

.forum-media-modal {
  max-width: 90vw;
  max-height: 90vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.forum-media-modal img,
.forum-media-modal video {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  background: #000;
}

.forum-media-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  border-radius: 999px;
  padding: 4px 10px;
  background: #ffffff;
  color: #0f172a;
  font-size: 12px;
  cursor: pointer;
}

/* ===== FOOTER ===== */
.forum-footer {
  background: #0f172a;
  color: #e5e7eb;
  padding-top: 26px;
}

.forum-footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  padding-bottom: 14px;
}

.forum-footer-row h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.forum-footer-row h4 {
  font-size: 14px;
  margin-bottom: 8px;
}

.forum-footer-row a {
  display: block;
  font-size: 13px;
  color: #cbd5f5;
  text-decoration: none;
  margin-bottom: 4px;
}

.forum-footer-row a:hover {
  color: #ffffff;
}

.forum-footer-row p {
  font-size: 13px;
}

.forum-footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  text-align: center;
  font-size: 12px;
  padding: 8px 0 12px;
  color: #9ca3af;
}

/* Gaon Talent */

:root {
  --sg-green: #198754;
  --sg-blue: #2563eb;
  --sg-bg: #f5f7fb;
  --sg-dark: #0f172a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #e7f3ec 40%, #f5f7fb);
  color: var(--sg-dark);
  line-height: 1.6;
}

.gt-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.gt-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.gt-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.gt-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gt-logo img {
  height: 34px;
  width: auto;
}

.gt-logo span {
  font-weight: 600;
  font-size: 18px;
  color: var(--sg-dark);
}

.gt-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.gt-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--sg-dark);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.gt-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--sg-blue);
}

.gt-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gt-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.gt-profile span {
  font-size: 14px;
  font-weight: 500;
}

/* HERO */
.gt-hero {
  background: linear-gradient(135deg, #14532d, #15803d);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.gt-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gt-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.gt-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.gt-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

/* MAIN + TABS */
.gt-main {
  padding: 22px 0 40px;
}

.gt-tabs-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  background: #e5f3eb;
  padding: 6px;
  border-radius: 999px;
}

.gt-main-tab {
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
  background: transparent;
  color: #374151;
}

.gt-main-tab.active {
  background: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.gt-tab-panel {
  display: none;
}

.gt-tab-panel.active {
  display: block;
}

.gt-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.45);
  margin-bottom: 16px;
}

.gt-card h2 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--sg-dark);
}

.gt-card-sub {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 10px;
}

.gt-field {
  margin-bottom: 10px;
}

.gt-label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  color: #4b5563;
}

.gt-input,
.gt-select,
.gt-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 7px 10px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: #f9fafb;
}

.gt-input:focus,
.gt-select:focus,
.gt-textarea:focus {
  border-color: var(--sg-blue);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.gt-textarea {
  min-height: 80px;
  resize: vertical;
}

.gt-helper {
  font-size: 11px;
  color: #6b7280;
}

.gt-btn-primary {
  margin-top: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--sg-blue), #1d4ed8);
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.4);
}

/* ALERT */
.gt-alert-wrap {
  margin-bottom: 10px;
}

.gt-alert {
  background: #dcfce7;
  border: 1px solid rgba(22, 163, 74, 0.5);
  color: #166534;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* REELS GRID */
.gt-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.gt-section-title h2 {
  font-size: 18px;
}

.gt-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.gt-tab {
  border: none;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  cursor: pointer;
  background: #e5e7eb;
  color: #374151;
}

.gt-tab.active {
  background: #1d4ed8;
  color: #ffffff;
}

.gt-reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.gt-reel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #020617;
  color: #f9fafb;
  cursor: pointer;
  aspect-ratio: 9 / 16;
  /* reels-style vertical box */
}

.gt-reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #020617;
}

.gt-reel-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 9px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0));
  font-size: 11px;
}

.gt-reel-title {
  font-weight: 500;
  margin-bottom: 2px;
}

.gt-reel-meta {
  font-size: 10px;
  color: #cbd5f5;
}

/* WINNERS */
.gt-winners-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.gt-winner {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.5);
  align-items: center;
  font-size: 12px;
  cursor: pointer;
}

.gt-winner img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
}

.gt-winner-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.gt-winner-meta {
  font-size: 11px;
  color: #6b7280;
}

/* OVERLAYS & MODALS */
.gt-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.gt-overlay.open {
  display: flex;
}

.gt-reel-modal {
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 18px;
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.6);
}

.gt-reel-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.gt-reel-modal-header-title {
  font-size: 13px;
  font-weight: 500;
}

.gt-reel-modal-header-meta {
  font-size: 11px;
  color: #6b7280;
}

.gt-modal-close {
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gt-reel-modal-video-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 6px;
  border-radius: 16px;
  overflow: hidden;
  background: #020617;
  aspect-ratio: 9 / 16;
  /* vertical reels format */
}

.gt-reel-modal-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gt-reel-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.gt-icon-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gt-icon-btn {
  border: none;
  border-radius: 999px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  color: #111827;
  font-size: 14px;
  cursor: pointer;
}

.gt-icon-btn.danger {
  background: #fee2e2;
  color: #b91c1c;
}

.gt-icon-btn.warning {
  background: #fef3c7;
  color: #92400e;
}

.gt-icon-text {
  font-size: 11px;
  color: #4b5563;
}

.gt-reel-modal-comments {
  flex: 1;
  overflow: auto;
  margin-bottom: 4px;
}

.gt-comment-item {
  border-radius: 10px;
  background: #f3f4f6;
  padding: 5px 7px;
  font-size: 12px;
  margin-bottom: 4px;
}

.gt-comment-meta2 {
  font-size: 10px;
  color: #6b7280;
}

.gt-comment-form {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.gt-comment-input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 5px 8px;
  font-size: 12px;
  outline: none;
}

@media (max-width: 768px) {
  .gt-reels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gt-reel-modal {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
}

/* Jobs */

:root {
  --sg-green: #198754;
  --sg-blue: #2563eb;
  --sg-bg: #f5f7fb;
  --sg-dark: #0f172a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #e7f3ec 40%, #f5f7fb);
  color: var(--sg-dark);
  line-height: 1.6;
}

.jb-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.jb-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.jb-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.jb-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jb-logo img {
  height: 34px;
  width: auto;
}

.jb-logo span {
  font-weight: 600;
  font-size: 18px;
  color: var(--sg-dark);
}

.jb-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.jb-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--sg-dark);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.jb-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--sg-blue);
}

.jb-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jb-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.jb-profile span {
  font-size: 14px;
  font-weight: 500;
}

/* HERO */
.jb-hero {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.jb-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.jb-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.jb-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.jb-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

/* MAIN + TABS */
.jb-main {
  padding: 22px 0 40px;
}

.jb-tabs-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  background: #e5f3eb;
  padding: 6px;
  border-radius: 999px;
}

.jb-main-tab {
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
  background: transparent;
  color: #374151;
}

.jb-main-tab.active {
  background: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.jb-tab-panel {
  display: none;
}

.jb-tab-panel.active {
  display: block;
}

.jb-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.45);
  margin-bottom: 16px;
}

.jb-card h2 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--sg-dark);
}

.jb-card-sub {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 10px;
}

/* FILTERS */
.jb-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.jb-input,
.jb-select {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 6px 10px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: #f9fafb;
}

.jb-input:focus,
.jb-select:focus {
  border-color: var(--sg-blue);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.jb-btn-primary {
  padding: 7px 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--sg-blue), #1d4ed8);
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.4);
}

/* JOB LIST */
.jb-job-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jb-job-card {
  background: #f9fafb;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.jb-job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.jb-job-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.jb-job-location {
  font-size: 12px;
  color: #6b7280;
}

.jb-job-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.jb-pill {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #ffffff;
  color: #4b5563;
}

.jb-job-desc {
  font-size: 12px;
  color: #4b5563;
  margin-top: 4px;
  max-width: 520px;
}

.jb-job-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.jb-btn-outline {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.7);
  background: #ffffff;
  font-size: 12px;
  cursor: pointer;
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.jb-btn-outline.danger {
  border-color: #b91c1c;
  color: #b91c1c;
}

.jb-job-id {
  font-size: 11px;
  color: #9ca3af;
  text-align: right;
}

/* ALERT/TOAST */
.jb-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #111827;
  color: #f9fafb;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  display: none;
  z-index: 1001;
}

/* MODAL */
.jb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.jb-overlay.open {
  display: flex;
}

.jb-modal {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 16px 14px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.6);
}

.jb-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.jb-modal-title {
  font-size: 16px;
  font-weight: 600;
}

.jb-modal-close {
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.jb-modal-body {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 10px;
}

.jb-modal-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  margin-bottom: 8px;
}

.jb-modal-label {
  font-weight: 500;
  color: #111827;
}

.jb-modal-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 6px 9px;
  font-size: 13px;
  outline: none;
  background: #f9fafb;
  min-height: 70px;
  resize: vertical;
}

@media (max-width:768px) {
  .jb-job-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .jb-modal {
    max-width: 100%;
    height: auto;
    border-radius: 0;
  }
}

/*BUSINESS */

:root {
  --sg-green: #198754;
  --sg-blue: #2563eb;
  --sg-bg: #f5f7fb;
  --sg-dark: #0f172a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #e7f3ec 40%, #f5f7fb);
  color: var(--sg-dark);
  line-height: 1.6;
}

.bb-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.bb-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.bb-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.bb-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bb-logo img {
  height: 34px;
  width: auto;
}

.bb-logo span {
  font-weight: 600;
  font-size: 18px;
  color: var(--sg-dark);
}

.bb-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.bb-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--sg-dark);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.bb-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--sg-blue);
}

.bb-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bb-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.bb-profile span {
  font-size: 14px;
  font-weight: 500;
}

/* HERO */
.bb-hero {
  background: linear-gradient(135deg, #14532d, #15803d);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.bb-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bb-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.bb-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.bb-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

/* MAIN + TABS */
.bb-main {
  padding: 22px 0 40px;
}

.bb-tabs-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  background: #e5f3eb;
  padding: 6px;
  border-radius: 999px;
}

.bb-main-tab {
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
  background: transparent;
  color: #374151;
}

.bb-main-tab.active {
  background: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.bb-tab-panel {
  display: none;
}

.bb-tab-panel.active {
  display: block;
}

.bb-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.45);
  margin-bottom: 16px;
}

.bb-card h2 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--sg-dark);
}

.bb-card-sub {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 10px;
}

/* FILTERS */
.bb-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.bb-input {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 6px 10px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: #f9fafb;
}

.bb-input:focus {
  border-color: var(--sg-blue);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.bb-btn-primary {
  padding: 7px 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--sg-blue), #1d4ed8);
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.4);
}

/* BUSINESS LIST */
.bb-business-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Card-style grid item */
.bb-business-card {
  background: #f9fafb;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;

  /* grid behavior */
  flex: 1 1 260px;
  /* min card width ~260px, auto grow */
  max-width: 320px;
  /* optional: prevent too-wide cards */
}

.bb-business-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.bb-business-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.bb-business-location {
  font-size: 12px;
  color: #6b7280;
}

.bb-business-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.bb-pill {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #ffffff;
  color: #4b5563;
}

.bb-business-desc {
  font-size: 12px;
  color: #4b5563;
  margin-top: 4px;
  max-width: 520px;
}

.bb-business-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.bb-btn-outline {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.7);
  background: #ffffff;
  font-size: 12px;
  cursor: pointer;
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.bb-btn-outline.danger {
  border-color: #b91c1c;
  color: #b91c1c;
}

.bb-business-id {
  font-size: 11px;
  color: #9ca3af;
  text-align: right;
}

/* IMAGE STRIP */
.bb-image-strip {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  overflow-x: auto;
}

.bb-image-strip img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ALERT/TOAST */
.bb-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #111827;
  color: #f9fafb;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  display: none;
  z-index: 1001;
}

/* MODAL */
.bb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.bb-overlay.open {
  display: flex;
}

.bb-modal {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 16px 14px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.6);
}

.bb-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.bb-modal-title {
  font-size: 16px;
  font-weight: 600;
}

.bb-modal-close {
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.bb-modal-body {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 10px;
}

.bb-modal-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  margin-bottom: 8px;
}

.bb-modal-label {
  font-weight: 500;
  color: #111827;
}

.bb-modal-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 6px 9px;
  font-size: 13px;
  outline: none;
  background: #f9fafb;
  min-height: 70px;
  resize: vertical;
}

.bb-modal-image-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 10px;
}

.bb-modal-image-strip img {
  width: 110px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width:768px) {
  .bb-business-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .bb-modal {
    max-width: 100%;
    height: auto;
    border-radius: 0;
  }
}

/* VILLAGE DIRECTORY*/


:root {
  --sg-blue: #2563eb;
  --sg-green: #16a34a;
  --sg-dark: #0f172a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #e7f3ec 40%, #f5f7fb);
  color: var(--sg-dark);
  line-height: 1.6;
}

.vd-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.vd-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.vd-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.vd-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vd-logo img {
  height: 34px;
  width: auto;
}

.vd-logo span {
  font-weight: 600;
  font-size: 18px;
  color: var(--sg-dark);
}

.vd-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.vd-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--sg-dark);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.vd-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--sg-blue);
}

.vd-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vd-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.vd-profile span {
  font-size: 14px;
  font-weight: 500;
}

/* HERO */
.vd-hero {
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.vd-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vd-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.vd-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.vd-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

/* MAIN */
.vd-main {
  padding: 22px 0 40px;
}

.vd-sections-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.vd-section {
  flex: 1 1 280px;
  min-width: 260px;
}

.vd-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.vd-card h2 {
  font-size: 18px;
  margin-bottom: 4px;
}

.vd-card-sub {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 10px;
}

.vd-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.vd-input,
.vd-select {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 6px 10px;
  font-size: 12px;
  font-family: inherit;
  outline: none;
  background: #f9fafb;
}

.vd-input:focus,
.vd-select:focus {
  border-color: var(--sg-blue);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.vd-btn-primary {
  padding: 6px 12px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--sg-blue), #1d4ed8);
  color: #ffffff;
  font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* LISTS */
.vd-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vd-person-card {
  background: #f9fafb;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.vd-person-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vd-avatar-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
}

.vd-person-text {
  display: flex;
  flex-direction: column;
}

.vd-person-name {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.vd-person-sub {
  font-size: 12px;
  color: #6b7280;
}

.vd-person-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vd-call-link {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: none;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

.vd-call-link i {
  font-size: 14px;
}

.vd-tag-pill {
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 10px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #4b5563;
  background: #ffffff;
}

.vd-helper {
  font-size: 12px;
  color: #6b7280;
}

/* Profile Modal */
.vd-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.vd-profile-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px 14px;
  max-width: 340px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.5);
}

@media (max-width:768px) {
  .vd-sections-grid {
    flex-direction: column;
  }
}

/* REPORT A PROBLEM */


:root {
  --sg-blue: #2563eb;
  --sg-green: #16a34a;
  --sg-dark: #0f172a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #e7f3ec 40%, #f5f7fb);
  color: var(--sg-dark);
  line-height: 1.6;
}

.rp-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.rp-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.rp-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.rp-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rp-logo img {
  height: 34px;
  width: auto;
}

.rp-logo span {
  font-weight: 600;
  font-size: 18px;
  color: var(--sg-dark);
}

.rp-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.rp-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--sg-dark);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.rp-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--sg-blue);
}

.rp-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rp-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.rp-profile span {
  font-size: 14px;
  font-weight: 500;
}

/* HERO */
.rp-hero {
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.rp-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rp-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.rp-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.rp-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

/* MAIN */
.rp-main {
  padding: 22px 0 40px;
}

.rp-top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.rp-top-title {
  font-size: 18px;
  font-weight: 500;
}

.rp-btn-primary {
  padding: 7px 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--sg-blue), #1d4ed8);
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.4);
}

.rp-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.rp-input,
.rp-select {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 6px 10px;
  font-size: 12px;
  font-family: inherit;
  outline: none;
  background: #f9fafb;
}

.rp-input:focus,
.rp-select:focus {
  border-color: var(--sg-blue);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

/* PROBLEM LIST AS CARDS GRID */
.rp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rp-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 260px;
  min-height: 220px;
  cursor: pointer;
}

.rp-thumb {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e5e7eb;
}

.rp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rp-card-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rp-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
}

.rp-problem-title {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.rp-chip {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.3);
  white-space: nowrap;
}

.rp-location {
  font-size: 11px;
  color: #6b7280;
}

.rp-desc {
  font-size: 12px;
  color: #4b5563;
}

.rp-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.rp-meta-left {
  font-size: 11px;
  color: #9ca3af;
}

.rp-status-pill {
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #fef9c3;
  color: #854d0e;
  border: 1px solid rgba(250, 204, 21, 0.6);
}

.rp-helper {
  font-size: 12px;
  color: #6b7280;
}

/* MODAL BASE */
.rp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.rp-modal {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px 14px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.5);
}

.rp-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.rp-modal-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.rp-modal-close {
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #f3f4f6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rp-modal-body {
  font-size: 13px;
  color: #4b5563;
}

.rp-form-group {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rp-form-label {
  font-size: 12px;
  font-weight: 500;
  color: #111827;
}

.rp-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 6px 9px;
  font-size: 13px;
  outline: none;
  background: #f9fafb;
  min-height: 80px;
  resize: vertical;
}

.rp-textarea:focus {
  border-color: var(--sg-blue);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.rp-file-input {
  width: 100%;
  font-size: 12px;
  padding: 4px 0;
}

.rp-modal-actions {
  margin-top: 6px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.rp-btn-secondary {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: #ffffff;
  font-size: 12px;
  cursor: pointer;
}

/* Toast */
.rp-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #111827;
  color: #f9fafb;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  display: none;
  z-index: 1001;
}

/*SUGGEST*/

:root {
  --sg-blue: #2563eb;
  --sg-green: #16a34a;
  --sg-dark: #0f172a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #e7f3ec 40%, #f5f7fb);
  color: var(--sg-dark);
  line-height: 1.6;
}

.si-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.si-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.si-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.si-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.si-logo img {
  height: 34px;
  width: auto;
}

.si-logo span {
  font-weight: 600;
  font-size: 18px;
  color: var(--sg-dark);
}

.si-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.si-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--sg-dark);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.si-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--sg-blue);
}

.si-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.si-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.si-profile span {
  font-size: 14px;
  font-weight: 500;
}

/* HERO */
.si-hero {
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.si-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.si-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.si-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.si-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

/* MAIN */
.si-main {
  padding: 22px 0 40px;
}

.si-top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.si-top-title {
  font-size: 18px;
  font-weight: 500;
}

.si-btn-primary {
  padding: 7px 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--sg-blue), #1d4ed8);
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.4);
}

.si-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.si-input,
.si-select {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 6px 10px;
  font-size: 12px;
  font-family: inherit;
  outline: none;
  background: #f9fafb;
}

.si-input:focus,
.si-select:focus {
  border-color: var(--sg-blue);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

/* SUGGESTION CARDS */
.si-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* 4 cards per row on larger screens */
.si-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 calc(25% - 12px);
  /* 4 per row */
  max-width: calc(25% - 12px);
  min-height: 200px;
  cursor: pointer;
}

/* On small screens, let them stack 2/1 per row */
@media (max-width:900px) {
  .si-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (max-width:600px) {
  .si-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


.si-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.si-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.si-user-info {
  display: flex;
  flex-direction: column;
}

.si-user-name {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}

.si-user-village {
  font-size: 11px;
  color: #6b7280;
}

.si-suggestion-title {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.si-suggestion-snippet {
  font-size: 12px;
  color: #4b5563;
}

.si-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font-size: 11px;
  color: #9ca3af;
}

.si-tag-pill {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.3);
  white-space: nowrap;
}

.si-helper {
  font-size: 12px;
  color: #6b7280;
}

/* MODAL BASE */
.si-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.si-modal {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px 14px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.5);
}

.si-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.si-modal-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.si-modal-close {
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #f3f4f6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.si-modal-body {
  font-size: 13px;
  color: #4b5563;
}

.si-form-group {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.si-form-label {
  font-size: 12px;
  font-weight: 500;
  color: #111827;
}

.si-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 6px 9px;
  font-size: 13px;
  outline: none;
  background: #f9fafb;
  min-height: 80px;
  resize: vertical;
}

.si-textarea:focus {
  border-color: var(--sg-blue);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.si-modal-actions {
  margin-top: 6px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.si-btn-secondary {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: #ffffff;
  font-size: 12px;
  cursor: pointer;
}

/* Toast */
.si-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #111827;
  color: #f9fafb;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  display: none;
  z-index: 1001;
}

/* LOCAL EXPERT */

:root {
  --sg-blue: #2563eb;
  --sg-green: #16a34a;
  --sg-dark: #0f172a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #e7f3ec 40%, #f5f7fb);
  color: var(--sg-dark);
  line-height: 1.6;
}

.le-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.le-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.le-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.le-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.le-logo img {
  height: 34px;
  width: auto;
}

.le-logo span {
  font-weight: 600;
  font-size: 18px;
  color: var(--sg-dark);
}

.le-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.le-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--sg-dark);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.le-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--sg-blue);
}

.le-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.le-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.le-profile span {
  font-size: 14px;
  font-weight: 500;
}

/* HERO */
.le-hero {
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.le-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.le-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.le-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.le-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

/* MAIN */
.le-main {
  padding: 22px 0 40px;
}

.le-top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.le-top-title {
  font-size: 18px;
  font-weight: 500;
}

.le-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.le-input,
.le-select {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 6px 10px;
  font-size: 12px;
  font-family: inherit;
  outline: none;
  background: #f9fafb;
}

.le-input:focus,
.le-select:focus {
  border-color: var(--sg-blue);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.le-btn-primary {
  padding: 7px 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--sg-blue), #1d4ed8);
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.4);
}

/* EXPERT CARDS: 4 per row */
.le-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.le-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 12px 12px 10px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 calc(25% - 12px);
  max-width: calc(25% - 12px);
  min-height: 220px;
}

.le-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.le-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.le-user-info {
  display: flex;
  flex-direction: column;
}

.le-name {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.le-expertise {
  font-size: 12px;
  color: #1d4ed8;
}

.le-detail-line {
  font-size: 12px;
  color: #4b5563;
}

.le-contact-line {
  font-size: 12px;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.le-contact-email {
  font-size: 11px;
  color: #2563eb;
  text-decoration: none;
  word-break: break-all;
}

.le-contact-email:hover {
  text-decoration: underline;
}

.le-call-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
}

.le-call-btn i {
  font-size: 14px;
}

.le-helper {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

@media (max-width:900px) {
  .le-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (max-width:600px) {
  .le-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*PST A JOB*/

:root {
  --sg-blue: #2563eb;
  --sg-green: #16a34a;
  --sg-dark: #0f172a;
  --tab-bg: #e5edff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #e7f3ec 40%, #f5f7fb);
  color: var(--sg-dark);
  line-height: 1.6;
}

.pj-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.pj-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.pj-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.pj-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pj-logo img {
  height: 34px;
  width: auto;
}

.pj-logo span {
  font-weight: 600;
  font-size: 18px;
  color: var(--sg-dark);
}

.pj-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.pj-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--sg-dark);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.pj-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--sg-blue);
}

.pj-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pj-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.pj-profile span {
  font-size: 14px;
  font-weight: 500;
}

/* HERO */
.pj-hero {
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.pj-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pj-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.pj-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.pj-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

/* MAIN */
.pj-main {
  padding: 22px 0 40px;
}

/* TABS */
.pj-tabs {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 10px 12px 14px;
}

.pj-tab-header {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  padding-bottom: 4px;
}

.pj-tab-btn {
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  background: transparent;
  cursor: pointer;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pj-tab-btn-active {
  background: var(--tab-bg);
  color: #1d4ed8;
  font-weight: 500;
}

.pj-tab-panel {
  display: none;
  margin-top: 8px;
}

.pj-tab-panel-active {
  display: block;
}

/* FORM DESIGN */
.pj-form-shell {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #f9fafb;
  padding: 12px 12px 10px;
}

.pj-form-section-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.pj-form-section-title i {
  font-size: 14px;
  color: #2563eb;
}

.pj-form-section-sub {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 8px;
}

.pj-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin-bottom: 8px;
}

.pj-form-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pj-form-group-full {
  grid-column: 1 / -1;
}

.pj-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.pj-label {
  font-size: 12px;
  font-weight: 500;
  color: #111827;
}

.pj-label-tag {
  font-size: 10px;
  color: #2563eb;
  background: #eff6ff;
  padding: 2px 6px;
  border-radius: 999px;
}

.pj-input-wrap {
  position: relative;
}

.pj-input,
.pj-select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 7px 10px 7px 30px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: #f9fafb;
}

.pj-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 7px 10px 7px 30px;
  font-size: 13px;
  outline: none;
  background: #f9fafb;
  min-height: 80px;
  resize: vertical;
}

.pj-input-icon {
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #9ca3af;
}

.pj-input:focus,
.pj-select:focus,
.pj-textarea:focus {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.pj-hint {
  font-size: 11px;
  color: #9ca3af;
}

.pj-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.pj-btn-primary {
  padding: 7px 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--sg-blue), #1d4ed8);
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.4);
}

/* MY JOB POSTS – CARD FORMAT */
.pj-job-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pj-job-card {
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 10px 10px 8px;
}

.pj-job-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.pj-job-title {
  font-size: 15px;
  font-weight: 500;
  color: #111827;
}

.pj-job-meta {
  font-size: 12px;
  color: #6b7280;
}

.pj-job-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.pj-job-chip {
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.3);
  white-space: nowrap;
  align-self: flex-start;
}

.pj-job-delete-btn {
  border: none;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  cursor: pointer;
  background: #fee2e2;
  color: #b91c1c;
}

.pj-job-delete-btn:hover {
  background: #fecaca;
}

.pj-job-desc {
  font-size: 12px;
  color: #4b5563;
  margin-bottom: 4px;
}

.pj-job-req {
  font-size: 12px;
  color: #111827;
  margin-bottom: 4px;
}

.pj-job-deadline {
  font-size: 11px;
  color: #b45309;
  margin-bottom: 6px;
}

.pj-applicants-title {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 4px;
}

.pj-applicants-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.pj-applicants-table th,
.pj-applicants-table td {
  padding: 6px 8px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.pj-applicants-table th {
  background: #f3f4f6;
  font-weight: 500;
  color: #4b5563;
}

/* Applicant avatar cell */
.pj-applicant-main {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.pj-applicant-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.pj-applicant-name {
  font-size: 12px;
  color: #111827;
}

.pj-status-pill {
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #374151;
}

.pj-status-pill-shortlisted {
  background: #dcfce7;
  color: #166534;
}

.pj-status-pill-rejected {
  background: #fee2e2;
  color: #b91c1c;
}

.pj-action-btn {
  border-radius: 999px;
  border: none;
  padding: 3px 8px;
  font-size: 11px;
  cursor: pointer;
  margin-right: 4px;
}

.pj-action-shortlist {
  background: #dcfce7;
  color: #166534;
}

.pj-action-reject {
  background: #fee2e2;
  color: #b91c1c;
}

.pj-helper {
  font-size: 12px;
  color: #6b7280;
}

/* Candidate Profile Modal */
.pj-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.pj-modal {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 16px 12px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.5);
}

.pj-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.pj-modal-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.pj-modal-close {
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #f3f4f6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pj-profile-top {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  align-items: center;
}

.pj-profile-avatar-lg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.pj-profile-main {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pj-profile-name {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.pj-profile-rating {
  font-size: 13px;
  color: #f59e0b;
}

.pj-stars {
  color: #f59e0b;
  margin-right: 4px;
}

.pj-profile-meta {
  font-size: 12px;
  color: #6b7280;
}

.pj-profile-section-label {
  font-size: 12px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 3px;
}

.pj-profile-comments {
  font-size: 12px;
  color: #4b5563;
  border-radius: 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 6px 8px;
  margin-bottom: 6px;
}

.pj-profile-location {
  font-size: 12px;
  color: #4b5563;
}

/* Toast */
.pj-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #111827;
  color: #f9fafb;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  display: none;
  z-index: 1001;
}

@media (max-width:700px) {
  .pj-form-grid {
    grid-template-columns: 1fr;
  }

  .pj-job-header {
    flex-direction: column;
  }
}

/*POST A BUSINESS */

:root {
  --sg-blue: #2563eb;
  --sg-green: #16a34a;
  --sg-dark: #0f172a;
  --tab-bg: #e5edff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #e7f3ec 40%, #f5f7fb);
  color: var(--sg-dark);
  line-height: 1.6;
}

.pb-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.pb-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.pb-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.pb-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pb-logo img {
  height: 34px;
  width: auto;
}

.pb-logo span {
  font-weight: 600;
  font-size: 18px;
  color: var(--sg-dark);
}

.pb-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.pb-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--sg-dark);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.pb-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--sg-blue);
}

.pb-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pb-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.pb-profile span {
  font-size: 14px;
  font-weight: 500;
}

/* HERO */
.pb-hero {
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.pb-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pb-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.pb-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.pb-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

/* MAIN */
.pb-main {
  padding: 22px 0 40px;
}

/* TABS */
.pb-tabs {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 10px 12px 14px;
}

.pb-tab-header {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  padding-bottom: 4px;
}

.pb-tab-btn {
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  background: transparent;
  cursor: pointer;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pb-tab-btn-active {
  background: var(--tab-bg);
  color: #1d4ed8;
  font-weight: 500;
}

.pb-tab-panel {
  display: none;
  margin-top: 8px;
}

.pb-tab-panel-active {
  display: block;
}

/* FORM DESIGN */
.pb-form-shell {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #f9fafb;
  padding: 12px 12px 10px;
}

.pb-form-section-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.pb-form-section-title i {
  font-size: 14px;
  color: #2563eb;
}

.pb-form-section-sub {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 8px;
}

.pb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin-bottom: 8px;
}

.pb-form-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pb-form-group-full {
  grid-column: 1 / -1;
}

.pb-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.pb-label {
  font-size: 12px;
  font-weight: 500;
  color: #111827;
}

.pb-label-tag {
  font-size: 10px;
  color: #2563eb;
  background: #eff6ff;
  padding: 2px 6px;
  border-radius: 999px;
}

.pb-input-wrap {
  position: relative;
}

.pb-input,
.pb-select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 7px 10px 7px 30px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: #f9fafb;
}

.pb-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 7px 10px 7px 30px;
  font-size: 13px;
  outline: none;
  background: #f9fafb;
  min-height: 80px;
  resize: vertical;
}

.pb-input-icon {
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #9ca3af;
}

.pb-input:focus,
.pb-select:focus,
.pb-textarea:focus {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
}

.pb-hint {
  font-size: 11px;
  color: #9ca3af;
}

/* Custom file input */
.pb-file-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pb-file-input {
  display: none;
}

.pb-file-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.7);
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 12px;
  cursor: pointer;
}

.pb-file-list {
  font-size: 11px;
  color: #6b7280;
}

.pb-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.pb-btn-primary {
  padding: 7px 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--sg-blue), #1d4ed8);
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.4);
}

/* BUSINESS POSTS */
.pb-business-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pb-business-card {
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 10px 10px 8px;
}

.pb-business-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.pb-business-title {
  font-size: 15px;
  font-weight: 500;
  color: #111827;
}

.pb-business-meta {
  font-size: 12px;
  color: #6b7280;
}

.pb-business-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.pb-business-chip {
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.3);
  white-space: nowrap;
  align-self: flex-start;
}

.pb-business-delete-btn {
  border: none;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  cursor: pointer;
  background: #fee2e2;
  color: #b91c1c;
}

.pb-business-delete-btn:hover {
  background: #fecaca;
}

.pb-business-desc {
  font-size: 12px;
  color: #4b5563;
  margin-bottom: 4px;
}

.pb-business-images {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.pb-business-thumb {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  background: #e5e7eb;
}

.pb-interested-title {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 4px;
}

.pb-interested-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.pb-interested-table th,
.pb-interested-table td {
  padding: 6px 8px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

.pb-interested-table th {
  background: #f3f4f6;
  font-weight: 500;
  color: #4b5563;
}

.pb-interested-main {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pb-interested-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.pb-interested-name {
  font-size: 12px;
  color: #111827;
}

.pb-interested-detail {
  font-size: 11px;
  color: #6b7280;
}

.pb-helper {
  font-size: 12px;
  color: #6b7280;
}

/* Interested User Profile Modal – new design */
.pb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.pb-modal {
  background: rgba(15, 23, 42, 0.92);
  border-radius: 20px;
  padding: 16px 16px 14px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

.pb-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pb-modal-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #9ca3af;
}

.pb-modal-close {
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  border: 1px solid rgba(75, 85, 99, 0.8);
}

.pb-profile-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 6px;
}

.pb-profile-avatar-lg {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(251, 191, 36, 0.9);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.7);
}

.pb-profile-main {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pb-profile-name {
  font-size: 15px;
  font-weight: 600;
  color: #f9fafb;
}

.pb-profile-meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.pb-profile-meta {
  font-size: 13px;
  color: #e5e7eb;
}

/* Toast */
.pb-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #111827;
  color: #f9fafb;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  display: none;
  z-index: 1001;
}

@media (max-width:700px) {
  .pb-form-grid {
    grid-template-columns: 1fr;
  }

  .pb-business-header {
    flex-direction: column;
  }
}

/*JOB HISTORY */

:root {
  --sg-blue: #2563eb;
  --sg-green: #16a34a;
  --sg-dark: #0f172a;
  --tab-bg: #e5edff;
  --card-border: rgba(148, 163, 184, 0.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #e7f3ec 40%, #f5f7fb);
  color: var(--sg-dark);
  line-height: 1.6;
}

.jh-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.jh-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.jh-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.jh-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jh-logo img {
  height: 34px;
  width: auto;
}

.jh-logo span {
  font-weight: 600;
  font-size: 18px;
  color: var(--sg-dark);
}

.jh-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.jh-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--sg-dark);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.jh-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--sg-blue);
}

.jh-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jh-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.jh-profile span {
  font-size: 14px;
  font-weight: 500;
}

/* HERO */
.jh-hero {
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.jh-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.jh-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.jh-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.jh-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

/* MAIN */
.jh-main {
  padding: 22px 0 40px;
}

.jh-experts-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  padding: 10px 12px 12px;
}

.jh-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  gap: 8px;
}

.jh-section-title {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  gap: 6px;
  align-items: center;
  color: #111827;
}

.jh-section-title i {
  color: #2563eb;
}

.jh-section-sub {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 8px;
}

.jh-expert-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jh-expert-card {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #f9fafb;
  padding: 8px 10px 8px;
}

.jh-expert-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.jh-expert-left {
  display: flex;
  gap: 8px;
}

.jh-expert-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.jh-expert-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.jh-expert-name {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.jh-expert-expertise {
  font-size: 12px;
  color: #2563eb;
}

.jh-expert-location {
  font-size: 11px;
  color: #6b7280;
}

.jh-expert-meta-right {
  text-align: right;
  font-size: 11px;
  color: #6b7280;
}

.jh-expert-count-pill {
  display: inline-flex;
  padding: 2px 7px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.4);
  margin-bottom: 4px;
}

/* STAR RATING (overall) */
.jh-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.jh-rating-stars {
  display: inline-flex;
  gap: 2px;
  cursor: pointer;
}

.jh-rating-star {
  font-size: 16px;
  color: #d1d5db;
  transition: color 0.15s ease;
}

.jh-rating-star.active {
  color: #fbbf24;
}

/* JOB HISTORY CARDS */
.jh-history-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.jh-history-card {
  border-radius: 10px;
  border: 1px dashed rgba(148, 163, 184, 0.8);
  background: #ffffff;
  padding: 7px 8px 7px;
}

.jh-history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.jh-history-job {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}

.jh-history-meta {
  font-size: 11px;
  color: #6b7280;
}

.jh-history-status-pill {
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #166534;
  border: 1px solid rgba(22, 163, 74, 0.4);
  white-space: nowrap;
}

.jh-history-desc {
  font-size: 12px;
  color: #4b5563;
  margin-bottom: 4px;
}

/* Rating + Comment per job */
.jh-job-feedback {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.jh-job-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #6b7280;
}

.jh-job-rating-stars {
  display: inline-flex;
  gap: 2px;
  cursor: pointer;
}

.jh-job-rating-star {
  font-size: 14px;
  color: #d1d5db;
  transition: color 0.15s ease;
}

.jh-job-rating-star.active {
  color: #f59e0b;
}

.jh-job-comment {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 6px 8px;
  font-size: 12px;
  resize: vertical;
  min-height: 48px;
  font-family: inherit;
}

.jh-job-comment:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.18);
  background: #ffffff;
}

.jh-job-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 3px;
}

.jh-save-btn {
  border: none;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  background: #1d4ed8;
  color: #ffffff;
  cursor: pointer;
}

/* Toast */
.jh-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #111827;
  color: #f9fafb;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  display: none;
  z-index: 1001;
}

/*REGISTERED BOARD */

:root {
  --sg-blue: #2563eb;
  --sg-green: #16a34a;
  --sg-dark: #0f172a;
  --card-border: rgba(148, 163, 184, 0.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #e7f3ec 40%, #f5f7fb);
  color: var(--sg-dark);
  line-height: 1.6;
}

.rb-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.rb-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.rb-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.rb-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rb-logo img {
  height: 34px;
  width: auto;
}

.rb-logo span {
  font-weight: 600;
  font-size: 18px;
  color: var(--sg-dark);
}

.rb-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.rb-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--sg-dark);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.rb-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--sg-blue);
}

.rb-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rb-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.rb-profile span {
  font-size: 14px;
  font-weight: 500;
}

/* HERO */
.rb-hero {
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.rb-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rb-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.rb-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.rb-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

/* MAIN */
.rb-main {
  padding: 22px 0 40px;
}

.rb-main-inner {
  max-width: 1040px;
  margin: 0 auto;
}

/* REGISTER FORM CARD */
.rb-form-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  padding: 12px 14px 14px;
}

.rb-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  gap: 8px;
}

.rb-section-title {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  gap: 6px;
  align-items: center;
  color: #111827;
}

.rb-section-title i {
  color: #2563eb;
}

.rb-section-sub {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 8px;
}

.rb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
}

.rb-form-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rb-form-group-full {
  grid-column: 1 / -1;
}

.rb-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.rb-label {
  font-size: 12px;
  font-weight: 500;
  color: #111827;
}

.rb-label-tag {
  font-size: 10px;
  color: #2563eb;
  background: #eff6ff;
  padding: 2px 6px;
  border-radius: 999px;
}

.rb-input-wrap {
  position: relative;
}

.rb-input,
.rb-select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 7px 10px 7px 30px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: #f9fafb;
}

.rb-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  padding: 7px 10px 7px 30px;
  font-size: 13px;
  outline: none;
  background: #f9fafb;
  min-height: 70px;
  resize: vertical;
}

.rb-input-icon {
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #9ca3af;
}

.rb-input:focus,
.rb-select:focus,
.rb-textarea:focus {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

.rb-hint {
  font-size: 11px;
  color: #9ca3af;
}

.rb-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.rb-btn-primary {
  padding: 7px 14px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--sg-blue), #1d4ed8);
  color: #ffffff;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.4);
}

/* Toast */
.rb-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #111827;
  color: #f9fafb;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  display: none;
  z-index: 1001;
}

@media (max-width:700px) {
  .rb-form-grid {
    grid-template-columns: 1fr;
  }
}

/*WEATHER REPORT */

:root {
  --sg-blue: #2563eb;
  --sg-green: #16a34a;
  --sg-dark: #0f172a;
  --card-border: rgba(148, 163, 184, 0.55);
  --danger: #dc2626;
  --warning: #f97316;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #e7f3ec 40%, #f5f7fb);
  color: var(--sg-dark);
  line-height: 1.6;
}

.wr-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.wr-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.wr-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.wr-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wr-logo img {
  height: 34px;
  width: auto;
}

.wr-logo span {
  font-weight: 600;
  font-size: 18px;
  color: var(--sg-dark);
}

.wr-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.wr-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--sg-dark);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.wr-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--sg-blue);
}

.wr-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wr-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.wr-profile span {
  font-size: 14px;
  font-weight: 500;
}

/* HERO */
.wr-hero {
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.wr-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wr-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.wr-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.wr-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

/* MAIN */
.wr-main {
  padding: 22px 0 40px;
}

.wr-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 14px;
  margin-bottom: 14px;
}

/* CURRENT WEATHER CARD */
.wr-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  padding: 12px 14px 14px;
}

.wr-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  gap: 8px;
}

.wr-card-title {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  gap: 6px;
  align-items: center;
  color: #111827;
}

.wr-card-title i {
  color: #2563eb;
}

.wr-card-sub {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 8px;
}

.wr-current-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.wr-temp-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wr-temp-value {
  font-size: 32px;
  font-weight: 600;
  color: #0f172a;
}

.wr-temp-extra {
  font-size: 12px;
  color: #6b7280;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wr-temp-icon {
  font-size: 32px;
  color: #facc15;
}

.wr-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
  font-size: 12px;
  margin-top: 8px;
}

.wr-details-item-label {
  color: #6b7280;
}

.wr-details-item-value {
  color: #111827;
  font-weight: 500;
}

/* AQI CHIP */
.wr-aqi-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fbbf24;
}

/* ALERT / WARNINGS */
.wr-alert-card {
  background: linear-gradient(135deg, #b91c1c, #f97316);
  color: #fef2f2;
  border-radius: 16px;
  padding: 12px 14px 12px;
  border: 1px solid rgba(254, 226, 226, 0.7);
  box-shadow: 0 18px 40px rgba(185, 28, 28, 0.3);
}

.wr-alert-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  gap: 8px;
}

.wr-alert-title {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wr-alert-title i {
  font-size: 16px;
}

.wr-alert-pill {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(254, 202, 202, 0.8);
  background: rgba(248, 250, 252, 0.1);
}

.wr-alert-list {
  font-size: 12px;
  margin-left: 14px;
}

.wr-alert-list li {
  margin-bottom: 4px;
}

/* 7 DAY FORECAST */
.wr-forecast-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  padding: 10px 12px 12px;
}

.wr-forecast-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 6px;
}

.wr-forecast-item {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: #f9fafb;
  padding: 6px 6px 7px;
  font-size: 11px;
  text-align: center;
}

.wr-forecast-day {
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
}

.wr-forecast-icon {
  font-size: 18px;
  margin: 2px 0;
}

.wr-forecast-temp {
  font-size: 11px;
  color: #111827;
}

.wr-forecast-desc {
  font-size: 10px;
  color: #6b7280;
  margin-top: 2px;
}

/* FOOTER NOTE */
.wr-footer-note {
  font-size: 11px;
  color: #6b7280;
  margin-top: 8px;
}

/* Toast (if you later add actions) */
.wr-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #111827;
  color: #f9fafb;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  display: none;
  z-index: 1001;
}

@media (max-width:900px) {
  .wr-grid {
    grid-template-columns: 1fr;
  }

  .wr-forecast-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width:600px) {
  .wr-current-main {
    flex-direction: column;
  }

  .wr-forecast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/*GAON SATHI */

:root {
  --sg-blue: #2563eb;
  --sg-green: #16a34a;
  --sg-dark: #0f172a;
  --card-border: rgba(148, 163, 184, 0.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #e7f3ec 40%, #f5f7fb);
  color: var(--sg-dark);
  line-height: 1.6;
}

.gs-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.gs-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.gs-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.gs-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gs-logo img {
  height: 34px;
  width: auto;
}

.gs-logo span {
  font-weight: 600;
  font-size: 18px;
  color: var(--sg-dark);
}

.gs-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.gs-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--sg-dark);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.gs-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--sg-blue);
}

.gs-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gs-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.gs-profile span {
  font-size: 14px;
  font-weight: 500;
}

/* HERO */
.gs-hero {
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.gs-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gs-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.gs-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.gs-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

/* MAIN */
.gs-main {
  padding: 18px 0 36px;
}

.gs-chat-shell {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--card-border);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  height: 70vh;
  max-height: 680px;
}

.gs-chat-header {
  padding: 10px 14px 8px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.gs-chat-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gs-bot-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 0, #bfdbfe, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #eff6ff;
  font-size: 16px;
  flex-shrink: 0;
}

.gs-chat-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gs-chat-header-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.gs-chat-header-sub {
  font-size: 11px;
  color: #6b7280;
}

.gs-chat-header-right {
  font-size: 11px;
  color: #6b7280;
  text-align: right;
}

/* CHAT BODY */
.gs-chat-body {
  flex: 1;
  padding: 10px 12px 10px;
  overflow-y: auto;
  background: linear-gradient(135deg, #eff6ff, #f9fafb);
}

.gs-msg-row {
  display: flex;
  margin-bottom: 8px;
}

.gs-msg-row.bot {
  justify-content: flex-start;
}

.gs-msg-row.user {
  justify-content: flex-end;
}

.gs-msg-bubble {
  max-width: 75%;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

.gs-msg-bubble.bot {
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(148, 163, 184, 0.6);
  border-bottom-left-radius: 4px;
}

.gs-msg-bubble.user {
  background: #1d4ed8;
  color: #e5ecff;
  border-bottom-right-radius: 4px;
}

.gs-msg-meta {
  font-size: 10px;
  color: #9ca3af;
  margin-top: 2px;
}

/* INPUT AREA */
.gs-chat-input-bar {
  padding: 8px 10px;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gs-quick-hints {
  font-size: 11px;
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gs-hint-pill {
  padding: 4px 8px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  cursor: pointer;
  font-size: 11px;
  border: 1px solid rgba(37, 99, 235, 0.4);
}

.gs-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gs-input-wrap {
  flex: 1;
  position: relative;
}

.gs-input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 8px 34px 8px 12px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background: #ffffff;
}

.gs-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
}

.gs-send-btn {
  border: none;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  background: #1d4ed8;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Mic button */
.gs-mic-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #1d4ed8;
  cursor: pointer;
  font-size: 12px;
}

.gs-mic-btn.listening {
  background: #fee2e2;
  color: #b91c1c;
}

.gs-input-note {
  font-size: 10px;
  color: #9ca3af;
}

/* Toast */
.gs-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #111827;
  color: #f9fafb;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  display: none;
  z-index: 1001;
}

@media (max-width:700px) {
  .gs-chat-shell {
    height: 75vh;
  }

  .gs-msg-bubble {
    max-width: 85%;
  }
}

/*SCHEMES */

:root {
  --sg-blue: #2563eb;
  --sg-green: #16a34a;
  --sg-dark: #0f172a;
  --card-border: rgba(148, 163, 184, 0.55);
  --chip-bg: #eff6ff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #e7f3ec 40%, #f5f7fb);
  color: var(--sg-dark);
  line-height: 1.6;
}

.sc-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.sc-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.sc-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.sc-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sc-logo img {
  height: 34px;
  width: auto;
}

.sc-logo span {
  font-weight: 600;
  font-size: 18px;
  color: var(--sg-dark);
}

.sc-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.sc-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--sg-dark);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.sc-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--sg-blue);
}

.sc-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sc-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.sc-profile span {
  font-size: 14px;
  font-weight: 500;
}

/* HERO */
.sc-hero {
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.sc-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sc-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.sc-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.sc-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

/* MAIN */
.sc-main {
  padding: 20px 0 40px;
}

/* FILTER BAR */
.sc-filter-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  padding: 10px 12px 12px;
  margin-bottom: 14px;
}

.sc-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.sc-filter-title {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #111827;
}

.sc-filter-title i {
  color: #2563eb;
}

.sc-filter-sub {
  font-size: 11px;
  color: #6b7280;
}

.sc-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.sc-filter-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 150px;
}

.sc-filter-label {
  font-size: 11px;
  color: #6b7280;
}

.sc-select {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 6px 10px;
  font-size: 13px;
  background: #f9fafb;
  outline: none;
}

.sc-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
  background: #ffffff;
}

.sc-chip-current {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  background: #ecfdf5;
  color: #166534;
  border: 1px solid rgba(22, 163, 74, 0.4);
}

/* SCHEMES LIST */
.sc-schemes-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  padding: 10px 12px 12px;
}

.sc-schemes-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.sc-schemes-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sc-schemes-title i {
  color: #2563eb;
}

.sc-schemes-count {
  font-size: 11px;
  color: #6b7280;
}

.sc-schemes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.sc-empty {
  font-size: 12px;
  color: #6b7280;
}

.sc-scheme-card {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #f9fafb;
  padding: 8px 9px 8px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.sc-scheme-card.expanded {
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.sc-scheme-header {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
  align-items: flex-start;
}

.sc-scheme-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.sc-scheme-meta {
  font-size: 11px;
  color: #6b7280;
}

.sc-scheme-toggle {
  font-size: 12px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sc-scheme-card.expanded .sc-scheme-toggle {
  color: #2563eb;
}

.sc-scheme-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.sc-tag-pill {
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 10px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.4);
}

.sc-tag-pill-central {
  background: #fef3c7;
  color: #92400e;
  border-color: #fbbf24;
}

.sc-scheme-brief {
  font-size: 12px;
  color: #4b5563;
  margin-bottom: 4px;
}

/* extra (expanded) content */
.sc-scheme-extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.sc-scheme-card.expanded .sc-scheme-extra {
  max-height: 500px;
}

.sc-scheme-detail-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 12px;
  font-size: 11px;
  margin-bottom: 5px;
  margin-top: 4px;
}

.sc-detail-label {
  color: #6b7280;
}

.sc-detail-value {
  color: #111827;
  font-weight: 500;
}

.sc-scheme-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px dashed rgba(148, 163, 184, 0.5);
}

.sc-actions-left {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.sc-btn-link {
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.8);
  background: #ffffff;
  color: #1d4ed8;
  font-size: 11px;
  padding: 5px 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.sc-interest-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
}

.sc-interest-btn {
  border: none;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: #ecfdf5;
  color: #166534;
  border: 1px solid rgba(22, 163, 74, 0.5);
}

.sc-interest-btn.disabled {
  background: #e5e7eb;
  color: #6b7280;
  border-color: #d1d5db;
  cursor: not-allowed;
}

.sc-interest-count {
  font-weight: 600;
}

/* Toast */
.sc-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #111827;
  color: #f9fafb;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  display: none;
  z-index: 1001;
}

@media (max-width:800px) {
  .sc-scheme-detail-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:600px) {
  .sc-scheme-detail-row {
    grid-template-columns: 1fr;
  }
}

/*DAILY QUIZ */

:root {
  --sg-blue: #2563eb;
  --sg-green: #16a34a;
  --sg-dark: #0f172a;
  --card-border: rgba(148, 163, 184, 0.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #e7f3ec 40%, #f5f7fb);
  color: var(--sg-dark);
  line-height: 1.6;
}

.dq-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.dq-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.dq-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.dq-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dq-logo img {
  height: 34px;
  width: auto;
}

.dq-logo span {
  font-weight: 600;
  font-size: 18px;
  color: var(--sg-dark);
}

.dq-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.dq-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--sg-dark);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.dq-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--sg-blue);
}

.dq-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dq-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.dq-profile span {
  font-size: 14px;
  font-weight: 500;
}

/* HERO */
.dq-hero {
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.dq-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dq-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.dq-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.dq-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

/* MAIN */
.dq-main {
  padding: 20px 0 40px;
}

.dq-card {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--card-border);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  padding: 14px 14px 16px;
}

.dq-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.dq-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dq-card-title i {
  color: #2563eb;
}

.dq-card-sub {
  font-size: 11px;
  color: #6b7280;
}

.dq-lang-select-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #f9fafb;
  background: #1d4ed8;
  border-radius: 999px;
  padding: 4px 8px;
}

.dq-lang-select-wrap select {
  border-radius: 999px;
  border: none;
  padding: 2px 6px;
  font-size: 11px;
  outline: none;
  background: #eff6ff;
  color: #111827;
}

.dq-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.dq-chip {
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 10px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.4);
}

.dq-divider {
  height: 1px;
  background: rgba(148, 163, 184, 0.4);
  margin: 8px 0 10px;
}

/* QUESTION AREA */
.dq-question-header {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.dq-question-number {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}

.dq-question-progress {
  font-size: 11px;
  color: #6b7280;
}

.dq-question-text {
  font-size: 14px;
  color: #111827;
  margin-bottom: 8px;
}

.dq-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.dq-option {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  background: #f9fafb;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.dq-option input {
  display: none;
}

.dq-option-label {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.dq-option-letter {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #6b7280;
  background: #ffffff;
}

.dq-option-text {
  flex: 1;
  color: #111827;
}

.dq-option.selected {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
}

/* Buttons */
.dq-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.dq-footer-left {
  font-size: 11px;
  color: #6b7280;
}

.dq-btn {
  border-radius: 999px;
  border: none;
  padding: 7px 14px;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dq-btn-primary {
  background: #2563eb;
  color: #ffffff;
}

.dq-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.dq-btn-secondary {
  background: #e5e7eb;
  color: #111827;
}

/* RESULT AREA */
.dq-result {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.dq-result-header {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.dq-result-score {
  font-size: 14px;
  color: #111827;
}

.dq-result-score span {
  font-weight: 600;
  color: #16a34a;
}

.dq-result-summary {
  font-size: 12px;
  color: #6b7280;
}

.dq-answers-list {
  margin-top: 6px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #f9fafb;
  padding: 8px 9px;
  font-size: 12px;
  max-height: 260px;
  overflow-y: auto;
}

.dq-answer-item {
  margin-bottom: 4px;
}

.dq-answer-item strong {
  color: #111827;
}

.dq-result-actions {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.dq-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #111827;
  color: #f9fafb;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  display: none;
  z-index: 1001;
}

@media (max-width:600px) {
  .dq-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .dq-result-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dq-btn {
    justify-content: center;
    width: 100%;
  }

  .dq-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*QUEZ*/

:root {
  --sg-blue: #2563eb;
  --sg-green: #16a34a;
  --sg-dark: #0f172a;
  --card-border: rgba(148, 163, 184, 0.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe, #e7f3ec 40%, #f5f7fb);
  color: var(--sg-dark);
  line-height: 1.6;
}

.qz-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.qz-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.qz-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.qz-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qz-logo img {
  height: 34px;
  width: auto;
}

.qz-logo span {
  font-weight: 600;
  font-size: 18px;
  color: var(--sg-dark);
}

.qz-nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

.qz-nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--sg-dark);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.qz-nav a:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--sg-blue);
}

.qz-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qz-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.qz-profile span {
  font-size: 14px;
  font-weight: 500;
}

/* HERO */
.qz-hero {
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.qz-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.qz-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.qz-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.qz-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

/* MAIN */
.qz-main {
  padding: 20px 0 200px;
}

.qz-card {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--card-border);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  padding: 14px 14px 16px;
}

.qz-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.qz-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}

.qz-card-title i {
  color: #2563eb;
}

.qz-card-sub {
  font-size: 11px;
  color: #6b7280;
}

.qz-select-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.qz-select-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 140px;
}

.qz-select-label {
  font-size: 11px;
  color: #6b7280;
}

.qz-select {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 6px 10px;
  font-size: 13px;
  background: #f9fafb;
  outline: none;
}

.qz-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
  background: #ffffff;
}

.qz-lang-select-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #f9fafb;
  background: #1d4ed8;
  border-radius: 999px;
  padding: 4px 8px;
  margin-top: 6px;
}

.qz-lang-select-wrap select {
  border-radius: 999px;
  border: none;
  padding: 2px 6px;
  font-size: 11px;
  outline: none;
  background: #eff6ff;
  color: #111827;
}

.qz-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.qz-chip {
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 10px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.4);
}

.qz-divider {
  height: 1px;
  background: rgba(148, 163, 184, 0.4);
  margin: 8px 0 10px;
}

/* QUESTION AREA */
.qz-question-header {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.qz-question-number {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}

.qz-question-progress {
  font-size: 11px;
  color: #6b7280;
}

.qz-question-text {
  font-size: 14px;
  color: #111827;
  margin-bottom: 8px;
}

.qz-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.qz-option {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  background: #f9fafb;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.qz-option-label {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.qz-option-letter {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #6b7280;
  background: #ffffff;
}

.qz-option-text {
  flex: 1;
  color: #111827;
}

.qz-option.selected {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
}

/* Buttons */
.qz-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.qz-footer-left {
  font-size: 11px;
  color: #6b7280;
}

.qz-btn {
  border-radius: 999px;
  border: none;
  padding: 7px 14px;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.qz-btn-primary {
  background: #2563eb;
  color: #ffffff;
}

.qz-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.qz-btn-secondary {
  background: #e5e7eb;
  color: #111827;
}

/* RESULT AREA */
.qz-result {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.qz-result-header {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

.qz-result-score {
  font-size: 14px;
  color: #111827;
}

.qz-result-score span {
  font-weight: 600;
  color: #16a34a;
}

.qz-result-summary {
  font-size: 12px;
  color: #6b7280;
}

.qz-answers-list {
  margin-top: 6px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #f9fafb;
  padding: 8px 9px;
  font-size: 12px;
  max-height: 260px;
  overflow-y: auto;
}

.qz-answer-item {
  margin-bottom: 4px;
}

.qz-answer-item strong {
  color: #111827;
}

.qz-result-actions {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.qz-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #111827;
  color: #f9fafb;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  display: none;
  z-index: 1001;
}

@media (max-width:600px) {
  .qz-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .qz-result-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .qz-btn {
    justify-content: center;
    width: 100%;
  }

  .qz-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*CAREER GUIDANCE */

.cg-hero {
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.cg-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

.cg-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cg-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cg-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.cg-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

.cg-main {
  padding: 24px 0 80px;
  /* space before footer */
}

.cg-card {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  padding: 18px 18px 20px;
}

.cg-card-header {
  margin-bottom: 12px;
}

.cg-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.cg-card-title i {
  color: #2563eb;
}

.cg-card-sub {
  font-size: 13px;
  color: #6b7280;
}

.cg-form {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cg-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cg-label {
  font-size: 13px;
  font-weight: 500;
  color: #111827;
}

.cg-hint {
  font-size: 11px;
  color: #6b7280;
}

.cg-input,
.cg-select,
.cg-textarea {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 8px 10px;
  font-size: 13px;
  outline: none;
  background: #f9fafb;
}

.cg-input:focus,
.cg-select:focus,
.cg-textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.2);
  background: #ffffff;
}

.cg-textarea {
  min-height: 70px;
  resize: vertical;
}

.cg-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.cg-btn-primary {
  border-radius: 999px;
  border: none;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  background: #2563eb;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cg-btn-secondary {
  border-radius: 999px;
  border: none;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
  background: #e5e7eb;
  color: #111827;
}

.cg-result {
  margin-top: 16px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #f9fafb;
  padding: 10px 12px;
  display: none;
}

.cg-result-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.cg-result-body {
  font-size: 13px;
  color: #111827;
  line-height: 1.7;
}

.cg-result-body ul {
  margin: 6px 0 0;
  padding-left: 18px;
}

.cg-result-body li {
  margin-bottom: 3px;
}

.cg-note {
  margin-top: 8px;
  font-size: 11px;
  color: #6b7280;
}

@media (max-width: 600px) {
  .cg-card {
    padding: 14px 12px 16px;
  }

  .cg-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cg-btn-primary,
  .cg-btn-secondary {
    justify-content: center;
    width: 100%;
  }
}

/*SUCCESS STORIES*/

.ss-hero {
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.ss-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

.ss-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ss-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ss-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.ss-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

.ss-main {
  padding: 24px 0 80px;
  background: radial-gradient(circle at top left, #e0f2fe, #e7f3ec 40%, #f5f7fb);
}

.ss-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.ss-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ss-card-header {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ss-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #2563eb;
}

.ss-person {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ss-name {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.ss-location {
  font-size: 11px;
  color: #6b7280;
}

.ss-title {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-top: 4px;
}

.ss-meta {
  font-size: 11px;
  color: #4b5563;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ss-meta span {
  background: #eff6ff;
  border-radius: 999px;
  padding: 3px 7px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  font-size: 10px;
  color: #1d4ed8;
}

.ss-story-short {
  font-size: 12px;
  color: #374151;
  margin-top: 4px;
}

.ss-actions {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.ss-date {
  font-size: 10px;
  color: #9ca3af;
}

.ss-btn {
  border-radius: 999px;
  border: none;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
  background: #2563eb;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Modal */
.ss-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.ss-modal {
  background: #ffffff;
  border-radius: 18px;
  max-width: 640px;
  width: 92%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3);
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
}

.ss-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.ss-modal-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ss-modal-body {
  font-size: 13px;
  color: #111827;
  line-height: 1.7;
  flex: 1 1 auto;
}

.ss-modal-body p {
  margin-bottom: 8px;
}

.ss-modal-tags {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
}

.ss-modal-tags span {
  background: #eff6ff;
  border-radius: 999px;
  padding: 3px 7px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #1d4ed8;
}

.ss-modal-footer {
  border-top: 1px solid #e5e7eb;
  margin-top: 10px;
  padding-top: 8px;
  display: flex;
  justify-content: flex-end;
}

.ss-btn-cancel {
  border-radius: 999px;
  border: none;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  background: #e5e7eb;
  color: #111827;
}

@media(max-width:600px) {
  .ss-card {
    padding: 12px;
  }
}

/* NCERT & ONLINE VIDEO LESSONS */

.ns-hero {
  background: linear-gradient(135deg, #1d4ed8, #22c55e);
  color: #f9fafb;
  padding: 22px 0 18px;
}

.ns-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

.ns-hero-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ns-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ns-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.ns-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.12);
  font-size: 12px;
}

.ns-main {
  padding: 24px 0 80px;
  background: radial-gradient(circle at top left, #e0f2fe, #e7f3ec 40%, #f5f7fb);
}

.ns-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr);
  gap: 18px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .ns-layout {
    grid-template-columns: 1fr;
  }
}

.ns-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  padding: 16px 16px 18px;
}

.ns-card-header {
  margin-bottom: 10px;
}

.ns-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ns-card-title i {
  color: #2563eb;
}

.ns-card-sub {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}

.ns-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 8px;
}

@media (max-width: 700px) {
  .ns-filter-grid {
    grid-template-columns: 1fr;
  }
}

.ns-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ns-label {
  font-size: 12px;
  font-weight: 500;
  color: #111827;
}

.ns-select {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 7px 9px;
  font-size: 13px;
  outline: none;
  background: #f9fafb;
}

.ns-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.18);
  background: #ffffff;
}

.ns-actions {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.ns-btn-primary {
  border-radius: 999px;
  border: none;
  padding: 7px 14px;
  font-size: 13px;
  cursor: pointer;
  background: #2563eb;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ns-btn-secondary {
  border-radius: 999px;
  border: none;
  padding: 7px 12px;
  font-size: 13px;
  cursor: pointer;
  background: #e5e7eb;
  color: #111827;
}

.ns-hint {
  font-size: 11px;
  color: #6b7280;
}

.ns-chip-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ns-chip {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: #f9fafb;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ns-material-list {
  margin-top: 8px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: #f9fafb;
  padding: 10px 10px 12px;
  max-height: 360px;
  overflow-y: auto;
}

.ns-material-header {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.ns-material-header span {
  font-size: 11px;
  color: #6b7280;
}

.ns-material-empty {
  font-size: 12px;
  color: #6b7280;
}

.ns-material-item {
  padding: 7px 6px;
  border-radius: 10px;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 12px;
  color: #111827;
  background: #ffffff;
  margin-bottom: 6px;
}

.ns-material-item:last-child {
  margin-bottom: 0;
}

.ns-material-item:hover {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.ns-m-title {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ns-m-meta {
  font-size: 11px;
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.ns-m-tags {
  font-size: 11px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.ns-m-tag {
  padding: 2px 6px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.ns-m-link {
  font-size: 11px;
  color: #2563eb;
  text-decoration: none;
}

.ns-toast {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #111827;
  color: #f9fafb;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: none;
  z-index: 1200;
}

/* DONATE */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f3f4f6;
  color: #111827;
}

a {
  text-decoration: none;
}

.don-hero {
  background: linear-gradient(135deg, #1d4ed8, #16a34a);
  color: #f9fafb;
  padding: 22px 0 24px;
}

.don-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

.don-hero-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.don-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.don-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.don-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.2);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.don-main {
  padding: 24px 0 60px;
}

.don-tabs {
  display: inline-flex;
  border-radius: 999px;
  background: #e5e7eb;
  padding: 3px;
  margin-bottom: 18px;
}

.don-tab {
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #4b5563;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.don-tab-active {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.18);
}

.don-section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111827;
}

.don-section-title i {
  color: #1d4ed8;
}

.don-section-sub {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 14px;
}

.don-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.don-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.don-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: #e5e7eb;
}

.don-card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.don-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 6px;
}

.don-card-desc {
  font-size: 12px;
  color: #4b5563;
}

.don-amount-row {
  font-size: 12px;
  color: #374151;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

.don-progress-wrap {
  width: 100%;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  height: 8px;
  margin-top: 4px;
}

.don-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  width: 0%;
  transition: width .3s ease;
}

.don-card-footer {
  padding: 8px 14px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.don-btn-primary {
  border: none;
  border-radius: 999px;
  background: #1d4ed8;
  color: #ffffff;
  font-size: 12px;
  padding: 6px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.don-btn-secondary {
  border: none;
  border-radius: 999px;
  background: #e5e7eb;
  color: #111827;
  font-size: 12px;
  padding: 6px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.don-toast {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #111827;
  color: #f9fafb;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: none;
  z-index: 1400;
}

.don-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1300;
}

.don-modal {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35);
  padding: 16px 18px 18px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.don-modal-wide {
  max-width: 640px;
}

.don-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: #6b7280;
}

.don-modal-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 6px;
}

.don-modal-sub {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 10px;
}

.don-modal-row {
  margin-bottom: 10px;
}

.don-label {
  font-size: 12px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 4px;
  display: block;
}

.don-input,
.don-select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 7px 9px;
  font-size: 13px;
  outline: none;
  background: #f9fafb;
}

.don-input:focus,
.don-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.18);
  background: #ffffff;
}

.don-modal-actions {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.don-modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  margin: 8px 0 10px;
}

.don-modal-img {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
  background: #e5e7eb;
}

.don-modal-info {
  font-size: 12px;
  color: #4b5563;
  margin-bottom: 8px;
}

.don-modal-meta {
  font-size: 12px;
  color: #374151;
  margin-bottom: 4px;
}

.don-step-indicator {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 11px;
  color: #6b7280;
}

.don-step-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.don-step-active {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.don-upi-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.don-tag-btn {
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  font-size: 11px;
  padding: 4px 10px;
  cursor: pointer;
  color: #374151;
}

.don-tag-btn-active {
  background: #1d4ed8;
  color: #ffffff;
  border-color: #1d4ed8;
}

.don-success-msg {
  text-align: center;
  font-size: 13px;
  color: #065f46;
  background: #ecfdf5;
  border-radius: 12px;
  padding: 10px;
  border: 1px solid #6ee7b7;
  margin-top: 8px;
}

/*DONATION*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f3f4f6;
  color: #111827;
}

.md-hero {
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  color: #f9fafb;
  padding: 22px 0 22px;
}

.md-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

.md-hero-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.md-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.md-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.md-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.25);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.md-main {
  padding: 24px 0 60px;
}

.md-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 1.1fr);
  gap: 18px;
}

@media (max-width:900px) {
  .md-layout {
    grid-template-columns: 1fr;
  }
}

.md-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  padding: 14px 14px 16px;
}

.md-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.md-card-title {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #111827;
}

.md-card-title i {
  color: #1d4ed8;
}

.md-card-sub {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

.md-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.md-badge {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.md-select {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 6px 10px;
  font-size: 12px;
  background: #f9fafb;
  outline: none;
}

.md-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.18);
  background: #ffffff;
}

.md-btn-secondary {
  border-radius: 999px;
  border: none;
  background: #e5e7eb;
  color: #111827;
  font-size: 12px;
  padding: 6px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.md-summary {
  font-size: 12px;
  color: #374151;
  margin-top: 4px;
}

.md-list {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-height: 460px;
  overflow-y: auto;
}

.md-item {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #ffffff;
  display: grid;
  grid-template-columns: 120px minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 10px;
  padding: 8px 10px;
  align-items: stretch;
}

@media (max-width:780px) {
  .md-item {
    grid-template-columns: 1fr;
  }
}

.md-thumb {
  width: 100%;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  background: #e5e7eb;
}

.md-main-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.md-title-row {
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 6px;
}

.md-pill {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #f3f4ff;
  color: #4b5563;
  border: 1px solid #e5e7eb;
}

.md-desc {
  color: #4b5563;
}

.md-amounts {
  font-size: 11px;
  color: #374151;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.md-progress-wrap {
  width: 100%;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  height: 7px;
  margin-top: 4px;
}

.md-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  width: 0%;
  transition: width .3s ease;
}

.md-meta {
  font-size: 11px;
  color: #6b7280;
}

.md-right {
  font-size: 12px;
  color: #374151;
}

.md-right-block {
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #e5e7eb;
}

.md-right-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.md-gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.md-gallery-img {
  width: 64px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  background: #e5e7eb;
  cursor: pointer;
}

.md-link-btn {
  border: none;
  background: none;
  color: #2563eb;
  font-size: 11px;
  cursor: pointer;
  padding: 0;
}

.md-btn-mini {
  border-radius: 999px;
  border: none;
  background: #16a34a;
  /* green theme */
  color: #ffffff;
  font-size: 11px;
  padding: 5px 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.md-btn-mini:hover {
  background: #15803d;
  /* darker green on hover */
  /*[web:771][web:773]*/
}

.md-btn-mini-outline {
  border-radius: 999px;
  border: 1px solid #16a34a;
  background: #ffffff;
  color: #166534;
  font-size: 11px;
  padding: 5px 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.md-toast {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #111827;
  color: #f9fafb;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: none;
  z-index: 1300;
}

.md-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1250;
}

.md-modal {
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35);
  padding: 14px 16px 16px;
  position: relative;
}

.md-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: #6b7280;
}

.md-modal-title {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  color: #111827;
}

.md-modal-sub {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
}

.md-modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}

.md-modal-img {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
  background: #e5e7eb;
  cursor: pointer;
}

.md-modal-text {
  font-size: 12px;
  color: #4b5563;
  margin-bottom: 4px;
}

.md-modal-meta {
  font-size: 11px;
  color: #374151;
}

/* Enlarged image inside modal */
.md-modal-enlarged-wrap {
  margin-top: 10px;
  /* slightly more space */
  text-align: center;
}

.md-modal-enlarged-img {
  max-width: 100%;
  max-height: 80vh;
  /* was 60vh, now larger */
  /*[web:761][web:762]*/
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

.md-modal-enlarged-label {
  font-size: 11px;
  color: #6b7280;
  margin-top: 4px;
}

/*NOTIFICATION*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f3f4f6;
  color: #111827;
}

.nt-hero {
  background: linear-gradient(135deg, #16a34a, #0ea5e9);
  color: #f9fafb;
  padding: 20px 0 18px;
}

.nt-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

.nt-hero-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.nt-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.nt-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.nt-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.25);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nt-main {
  padding: 22px 0 60px;
}

/* Single-column layout now (only main card) */
.nt-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.nt-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  padding: 14px 14px 16px;
}

.nt-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.nt-card-title {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #111827;
}

.nt-card-title i {
  color: #16a34a;
}

.nt-card-sub {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

.nt-badge-pill {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #22c55e;
}

.nt-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.nt-tab {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #f3f4f6;
  color: #374151;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nt-tab span.count {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #4b5563;
}

.nt-tab.active {
  background: #16a34a;
  color: #f9fafb;
  border-color: #15803d;
}

.nt-tab.active span.count {
  background: #22c55e;
  color: #052e16;
}

.nt-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.nt-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: #4b5563;
}

.nt-select {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 6px 11px;
  font-size: 11px;
  background: #f9fafb;
  outline: none;
}

.nt-select:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.18);
  background: #ffffff;
}

/* Unified button sizing */
.nt-btn {
  border-radius: 999px;
  border: none;
  background: #16a34a;
  color: #ffffff;
  font-size: 11px;
  padding: 6px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.nt-btn:hover {
  background: #15803d;
}

.nt-btn-outline {
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  font-size: 11px;
  padding: 6px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.nt-summary {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 6px;
}

.nt-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-height: 480px;
  overflow-y: auto;
}

.nt-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  align-items: flex-start;
}

.nt-item.unread {
  border-color: #16a34a;
  background: #f0fdf4;
}

.nt-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.nt-icon-gaon {
  background: #dbeafe;
  color: #1d4ed8;
}

.nt-icon-study {
  background: #fef3c7;
  color: #d97706;
}

.nt-icon-donation {
  background: #fee2e2;
  color: #b91c1c;
}

.nt-icon-system {
  background: #e5e7eb;
  color: #111827;
}

.nt-main-text {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nt-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.nt-title {
  font-weight: 600;
  color: #111827;
}

.nt-tag {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #4b5563;
}

.nt-body {
  color: #4b5563;
}

.nt-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #6b7280;
}

.nt-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.nt-meta-pill {
  padding: 2px 6px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
  font-size: 10px;
}

.nt-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  align-items: flex-end;
  justify-content: space-between;
}

.nt-mark-btn {
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #4b5563;
  font-size: 11px;
  padding: 4px 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nt-empty {
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  padding: 16px 0;
}

.nt-toast {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #111827;
  color: #f9fafb;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: none;
  z-index: 1300;
}

/* AND DATA USE INFO*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f3f4f6;
  color: #111827;
}

.pd-hero {
  background: linear-gradient(135deg, #16a34a, #0ea5e9);
  color: #f9fafb;
  padding: 20px 0 18px;
}

.pd-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}

.pd-hero-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.pd-hero h1 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 4px;
}

.pd-hero p {
  font-size: 14px;
  max-width: 520px;
  color: #e5e7eb;
}

.pd-hero-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.25);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pd-main {
  padding: 22px 0 60px;
}

.pd-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
  gap: 18px;
}

@media (max-width:900px) {
  .pd-layout {
    grid-template-columns: 1fr;
  }
}

.pd-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  padding: 14px 16px 18px;
}

.pd-card-title {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #111827;
  margin-bottom: 4px;
}

.pd-card-title i {
  color: #16a34a;
}

.pd-card-sub {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
}

.pd-section {
  margin-top: 10px;
  margin-bottom: 8px;
}

.pd-section h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111827;
}

.pd-section p {
  font-size: 12px;
  color: #4b5563;
  margin-bottom: 4px;
  line-height: 1.55;
}

.pd-section ul {
  font-size: 12px;
  color: #4b5563;
  margin-left: 18px;
  margin-top: 3px;
}

.pd-section li {
  margin-bottom: 2px;
}

.pd-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #22c55e;
  margin-bottom: 6px;
}

.pd-meta-row {
  font-size: 11px;
  color: #6b7280;
  margin-top: 6px;
}

.pd-meta-row span {
  display: inline-block;
  margin-right: 10px;
}

.pd-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.pd-chip {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.pd-contact-box {
  font-size: 12px;
  color: #374151;
}

.pd-contact-box p {
  margin-bottom: 4px;
}

.pd-contact-box a {
  color: #2563eb;
  text-decoration: none;
}

.pd-small {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 8px;
  line-height: 1.5;
}

/*HELP & SUPPORT */

.pd-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

.pd-card {
  max-width: 720px;
  width: 100%;
}

/* Edit bio form */
.edit-bio-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-field input {
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

.form-field input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  background: #e5e7eb;
  color: #111827;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width:768px) {
  .form-row {
    flex-direction: column;
  }
}

/* SEVA BAZAR VARIFICATION */

/* Center the verification card */
.pd-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

.pd-card {
  max-width: 720px;
  width: 100%;
}

/* Verification form */
.verify-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row.single {
  flex-direction: column;
  gap: 0;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}

.form-field input[type="file"] {
  padding: 8px 0;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
}

.field-hint {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-secondary {
  background: #e5e7eb;
  color: #111827;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width:768px) {
  .form-row {
    flex-direction: column;
  }
}