/* =====================================================
   RajSkill Academy — Main Stylesheet
   ===================================================== */
:root {
  --primary: #3d6818;
  --primary-dk: #2a4a10;
  --primary-lt: #5a8828;
  --primary-pale: #ecf4e2;
  --gold-pale: #eff6ff;
  --dark: #0f172a;
  --text: #1e293b;
  --muted: #475569;
  --border: #e5e7eb;
  --cream: #faf9f5;
  --light-bg: #f5f8f0;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: "Lato", sans-serif;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}

/* Fix select dropdown options */
select.ff option {
  background: #fff !important;
  color: #111827 !important;
}

/* ---- TOAST ---- */
.toast-msg {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 380px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  animation: slideIn 0.35s ease;
}
.toast-msg button {
  background: none;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  color: #fff;
  margin-left: auto;
  padding: 0 0 0 8px;
}
.toast-msg button:hover {
  opacity: 1;
}
.toast-success {
  background: #2e6b35;
  color: #fff;
}
.toast-error {
  background: #b52b27;
  color: #fff;
}
@keyframes slideIn {
  from {
    transform: translateX(110%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ---- TOPBAR ---- */
.topbar {
  background: #1a2a0a;
  padding: 7px 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}
.topbar a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.topbar a:hover {
  color: #fff;
}
.topbar i {
  font-size: 0.82rem;
  margin-right: 4px;
  color: var(--gold-lt);
}

/* ---- NAVBAR ---- */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  padding: 8px 0;
}
.navbar-brand img {
  height: 48px;
  width: auto;
}
.nav-link {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--dark) !important;
  padding: 6px 12px !important;
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}
.btn-nav {
  background: var(--primary);
  color: #fff !important;
  border-radius: 6px;
  padding: 8px 18px !important;
}
.btn-nav:hover {
  background: var(--primary-dk) !important;
}
.btn-nav-gold {
  background: var(--gold);
  color: #fff !important;
  border-radius: 6px;
  padding: 8px 18px !important;
}
.btn-nav-gold:hover {
  background: var(--gold-lt) !important;
}

/* ---- HERO ---- */
.hero {
  background: #fff;
  padding: 68px 0 0;
  border-bottom: 1px solid #edf0e8;
}
.hero-tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-dot {
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.hero-h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.hero-h1 span {
  color: var(--primary);
}
.hero-sub {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 26px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-solid {
  background: var(--primary);
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-solid:hover {
  background: var(--primary-dk);
  color: #fff;
}
.btn-gold-ol {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 10px 22px;
  border-radius: 8px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-gold-ol:hover {
  background: var(--gold);
  color: #fff;
}

/* social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hsp-avatars {
  display: flex;
}
.hsp-avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.hsp-avatars img:first-child {
  margin-left: 0;
}
.hero-social-proof strong {
  display: block;
  font-size: 0.88rem;
  color: var(--dark);
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.hero-social-proof small {
  font-size: 0.72rem;
  color: var(--muted);
}

/* hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 400px;
  padding: 20px 50px 0;
}
.hero-circle-bg {
  position: absolute;
  width: 340px;
  height: 340px;
  background: var(--primary-pale);
  border-radius: 50%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.hero-person-img {
  height: 400px;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  object-position: top center;
  position: relative;
  z-index: 1;
  border-radius: 12px 12px 0 0;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.12));
}

/* floating cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.13);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fcFloat 3.5s ease-in-out infinite;
}
.float-card:nth-child(3) {
  animation-delay: 0.6s;
}
.float-card:nth-child(4) {
  animation-delay: 1.2s;
}
.float-card:nth-child(5) {
  animation-delay: 1.8s;
}
.fc-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.float-card strong {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.97rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
}
.float-card small {
  font-size: 0.67rem;
  color: var(--muted);
}
.fc-tl {
  top: 30px;
  left: 0;
}
.fc-tr {
  top: 70px;
  right: 0;
}
.fc-bl {
  bottom: 90px;
  left: 0;
}
.fc-br {
  bottom: 110px;
  right: 0;
}
@keyframes fcFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

/* hero feature strip */
.hero-features {
  background: #fff;
  border-top: 1.5px solid var(--border);
  margin-top: 50px;
}
.hf-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 16px;
  border-right: 1px solid var(--border);
}
.hf-item:last-child {
  border-right: none;
}
.hf-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.hf-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  font-family: "Lato", sans-serif;
}
.hf-item small {
  font-size: 0.72rem;
  color: var(--muted);
}

/* legacy - keep for other pages */
.hero-info-box {
  background: var(--primary-dk);
  border-radius: 14px;
  padding: 26px 22px;
}
.hib-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.hib-item:last-child {
  border-bottom: none;
}
.hib-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-lt);
  flex-shrink: 0;
}
.hib-item strong {
  display: block;
  font-size: 0.88rem;
  color: #fff;
  font-weight: 700;
}
.hib-item small {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.78);
  display: block;
  margin-top: 2px;
}

/* ---- SECTION COMMONS ---- */
section {
  padding: 52px 0;
}
.sec-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}
.sec-h {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.3px;
}
.divider {
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px 0;
}
.sec-p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ---- COURSES SECTION ---- */
.courses-sec {
  background: var(--light-bg);
}

/* filter tabs */
.course-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.cf-tab {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Poppins", sans-serif;
}
.cf-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.cf-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* course card */
.course-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.22s;
}
.course-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 22px rgba(61, 104, 24, 0.11);
  transform: translateY(-3px);
}
.cc-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 9px;
  flex-shrink: 0;
}
.cc-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.cc-cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 5px;
}
.cc-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
  flex-grow: 1;
}
.cc-dur {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.cc-dur i {
  color: var(--primary);
}
.cc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  padding: 5px 10px;
  border: 1.5px solid var(--primary-pale);
  border-radius: 6px;
  background: var(--primary-pale);
  transition: all 0.2s;
  margin-top: auto;
}
.cc-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* show-more */
.show-more-wrap {
  text-align: center;
  margin-top: 30px;
}
.btn-show-more {
  background: #fff;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 10px 28px;
  border-radius: 6px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-show-more:hover {
  background: var(--primary);
  color: #fff;
}

/* ---- SERVICES ---- */
.services-sec {
  background: #fff;
}
.svc-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 26px 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}
.svc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.svc-card:hover {
  border-color: var(--gold-lt);
  box-shadow: 0 6px 24px rgba(61, 104, 24, 0.1);
  transform: translateY(-3px);
}
.svc-card:hover::after {
  transform: scaleX(1);
}
.svc-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 14px;
}
.svc-card h5 {
  font-size: 0.97rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 7px;
}
.svc-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.svc-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
}
.svc-link:hover {
  color: var(--gold);
}

/* ---- ABOUT / WHY ---- */
.why-box {
  background: var(--primary-dk);
  border-radius: 14px;
  padding: 38px 30px;
  color: #fff;
  height: 100%;
}
.why-box h3 {
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.3;
}
.why-box h3 span {
  color: var(--gold-lt);
}
.why-box p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin: 12px 0 20px;
}
.why-stat {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 13px 10px;
  text-align: center;
}
.why-stat span {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold-lt);
  font-family: "Lato", sans-serif;
}
.why-stat p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 2px 0 0;
}
.why-point {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 12px;
  font-size: 0.86rem;
  color: #444;
}
.why-point i {
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.why-point strong {
  color: var(--dark);
  font-weight: 600;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 6px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-gold:hover {
  background: var(--gold-lt);
  color: #fff;
}

/* ---- AI COURSE ---- */
.ai-course-sec {
  background: linear-gradient(135deg, #0a1005 0%, #162208 60%, #0a1005 100%);
  padding: 78px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ai-course-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}
.ai-course-sec .container {
  position: relative;
}
.ai-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.28);
  color: var(--gold-lt);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 15px;
}
.ai-sec-h {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.ai-sec-h span {
  color: var(--gold-lt);
}
.ai-sec-sub {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 10px;
}
.ai-module {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ai-module:last-child {
  border-bottom: none;
}
.ai-mod-num {
  width: 34px;
  height: 34px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.24);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--gold-lt);
  flex-shrink: 0;
}
.ai-mod-title {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  margin-bottom: 3px;
}
.ai-mod-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.80);
  margin: 0;
}
.ai-enroll-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 14px;
  padding: 30px 24px;
}
.ai-price-main {
  font-family: "Lato", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-lt);
}
.ai-price-old {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: line-through;
  margin-left: 8px;
}
.ai-limited {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 0.8rem;
  color: var(--gold-lt);
  font-weight: 600;
  margin: 14px 0 18px;
}
.ai-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.72);
}
.ai-feature:last-of-type {
  border-bottom: none;
}
.ai-feature i {
  color: var(--gold-lt);
  font-size: 0.88rem;
  flex-shrink: 0;
}
.ai-ff {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 10px 13px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.84rem;
  outline: none;
  transition: border 0.2s;
  margin-bottom: 10px;
}
.ai-ff::placeholder {
  color: rgba(255, 255, 255, 0.58);
}
.ai-ff:focus {
  border-color: var(--gold-lt);
}
.btn-enroll {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 6px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.btn-enroll:hover {
  background: var(--gold-lt);
}
.ai-enroll-label {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.80);
  display: block;
  margin-bottom: 5px;
}
.ai-form-wrap {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---- BLOG PREVIEW ---- */
.blog-prev-sec {
  background: var(--cream);
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--border);
  transition: all 0.22s;
  height: 100%;
}
.blog-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
  border-color: var(--primary);
}
.blog-thumb {
  height: 172px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: rgba(255, 255, 255, 0.75);
}
.blog-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-cat {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  display: block;
  margin-bottom: 7px;
}
.blog-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 0.81rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
  flex-grow: 1;
}
.blog-meta {
  font-size: 0.73rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: auto;
}
.blog-read-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ---- PRICING ---- */
.pricing-sec {
  background: var(--light-bg);
}
.price-card {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 28px 22px;
  height: 100%;
  transition: all 0.2s;
  background: #fff;
}
.price-card.featured {
  background: #202020;
  color: #fff;
  border-color: #000000;
}
.price-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
}
.ptag {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.price-card.featured .ptag {
  color: var(--gold-lt);
}
.price-card h4 {
  font-size: 1.02rem;
  font-weight: 900;
  margin-bottom: 13px;
  color: var(--dark);
}
.price-card.featured h4 {
  color: #fff;
}
.price-amt {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary);
  font-family: "Lato", sans-serif;
}
.price-card.featured .price-amt {
  color: var(--gold-lt);
}
.price-amt span {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
}
.price-card.featured .price-amt span {
  color: rgba(255, 255, 255, 0.78);
}
.pfeatures {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  font-size: 0.82rem;
}
.pfeatures li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
}
.price-card.featured .pfeatures li {
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}
.pfeatures li i {
  color: var(--primary);
  font-size: 0.86rem;
  flex-shrink: 0;
}
.price-card.featured .pfeatures li i {
  color: #fff;
}
.pop-badge {
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.btn-price {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  text-decoration: none;
  display: block;
  border: 2px solid var(--primary);
  color: var(--primary);
  transition: all 0.2s;
}
.btn-price:hover {
  background: var(--primary);
  color: #fff;
}
.price-card.featured .btn-price {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.price-card.featured .btn-price:hover {
  background: var(--gold-lt);
}

/* ---- CONTACT ---- */
.contact-sec {
  background: #fff;
  color: var(--dark);
  padding: 60px 0;
  border-top: 1.5px solid var(--border);
}
.ci {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 16px;
}
.ci-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.ci-label {
  font-size: 0.68rem;
  color: var(--muted);
  font-family: "Lato", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ci a,
.ci p {
  font-size: 0.86rem;
  color: var(--dark);
  text-decoration: none;
  margin: 2px 0 0;
  font-weight: 600;
}
.ci a:hover { color: var(--primary); }
.ff {
  width: 100%;
  background: #f8f9fa;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 10px 13px;
  color: var(--dark);
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border 0.2s;
}
.ff::placeholder {
  color: var(--muted);
}
.ff:focus {
  border-color: var(--primary);
  background: #fff;
}
.flabel {
  font-size: 0.74rem;
  color: var(--text);
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
.btn-submit {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 7px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.btn-submit:hover {
  background: var(--primary-dk);
}

/* ---- FOOTER ---- */
.footer-main {
  background: #202020;
  padding: 40px 0 24px;
}
.footer-logo img {
  height: 44px;
  width: auto;
 
}
.footer-desc {
  font-size: 0.8rem;
  color: #fff;
  line-height: 1.75;
  margin-top: 12px;
  max-width: 270px;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--primary);
  color: #fff;
}
.footer-head {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  font-size: 0.81rem;
  color: #fff;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold-lt);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: #fff;
}
.footer-contact-item i {
  color: #fff;
  margin-top: 2px;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.footer-contact-item a {
  color: #fff;
}
.footer-contact-item a:hover {
  color: var(--gold-lt);
}
.footer-bottom {
  background: #141414;
  padding: 12px 0;
  font-size: 0.75rem;
  color:#fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}
.footer-bottom a:hover {
  color: var(--gold-lt);
}

/* ---- FAB ---- */
.fab-wrap {
  position: fixed;
  bottom: 22px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}
.fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s;
}
.fab:hover {
  transform: scale(1.1);
  color: #fff;
}
.fab-wa {
  background: #25d366;
}
.fab-ph {
  background: var(--primary);
}

/* ---- HERO IMAGE ---- */
.hero-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0;
}
.hero-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.hero-img-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--primary-dk);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
}

/* ---- RAJWEBINFO BANNER ---- */
.rwi-banner {
  
  border-bottom: 2px solid rgba(61, 104, 24, 0.12);

  margin-bottom: 40px;
}
.rwi-logo {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.rwi-divider {
  width: 1px;
  background: rgba(61, 104, 24, 0.15);
  align-self: stretch;
  display: none;
}
.rwi-content h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: var(--dark);
  margin: 8px 0 10px;
}
.rwi-content p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}
.rwi-stats {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.rwi-stats div strong {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
}
.rwi-stats div small {
  font-size: 0.72rem;
  color: var(--muted);
}
/* remove old small logo from heading */
.svc-brand-logo {
  display: none;
}

/* ---- MODAL BACKDROP — fully dark, hide site behind ---- */
.modal-backdrop.show {
  opacity: 1 !important;
  background-color: #020a02 !important;
}

/* ---- WELCOME POPUP ---- */
.wm-header {
  background: var(--primary-dk);
  padding: 28px 24px 22px;
  position: relative;
}
.wm-offer-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--gold-lt);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.wm-title {
  font-family: "Lato", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 6px;
}
.wm-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}
.wm-body {
  padding: 22px 24px;
}
.wm-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 10px 13px;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  color: var(--dark);
  outline: none;
  transition: border 0.2s;
  background: #fff;
}
.wm-input:focus {
  border-color: var(--primary);
}
.wm-input option {
  background: #fff;
  color: var(--dark);
}
.wm-submit {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 7px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  transition: background 0.2s;
}
.wm-submit:hover {
  background: var(--gold-lt);
}
.wm-note {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin: 12px 0 0;
}
.wm-note i {
  color: var(--primary);
}

/* ---- COURSE MODAL ---- */
.modal-course-header {
  background: var(--primary-dk);
  color: #fff;
  padding: 22px 24px 18px;
  border-radius: 0;
}
.modal-course-name {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 4px;
}
.modal-course-body {
  padding: 24px;
}
.course-modal-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  display: block;
  margin-bottom: 5px;
}
.course-modal-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 10px 13px;
  font-family: "Poppins", sans-serif;
  font-size: 0.86rem;
  color: var(--dark);
  outline: none;
  transition: border 0.2s;
  background: #fff;
}
.course-modal-input:focus {
  border-color: var(--primary);
}
.btn-modal-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 7px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.btn-modal-submit:hover {
  background: var(--primary-dk);
}
button.cc-btn {
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

/* =====================================================
   BLOG PAGE (blog.php)
   ===================================================== */
.blog-banner {
  background: var(--primary-dk);
  color: #fff;
  padding: 50px 0;
}
.blog-banner h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
}
.blog-banner p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.93rem;
  margin-top: 8px;
}
.blog-grid-sec {
  background: #fff;
  padding: 60px 0;
}
.blog-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.bf-tab {
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  color: var(--muted);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Poppins", sans-serif;
}
.bf-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.bf-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* =====================================================
   BLOG POST PAGE (blog-post.php)
   ===================================================== */
.post-hero {
  background: var(--primary-dk);
  color: #fff;
  padding: 50px 0 40px;
}
.post-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.3;
}
.post-meta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
}
.post-meta-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-cat-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.18);
  color: var(--gold-lt);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.post-content-sec {
  background: #fff;
  padding: 50px 0 60px;
}
.post-thumb {
  height: 300px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}
.post-body {
  max-width: 760px;
}
.post-body h3 {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--dark);
  margin: 26px 0 10px;
}
.post-body p {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 16px;
}
.post-body strong {
  color: var(--dark);
}
.post-share {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 18px 22px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.post-share span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}
.share-btn {
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.share-btn:hover {
  opacity: 0.85;
  color: #fff;
}
.share-wa {
  background: #25d366;
  color: #fff;
}
.share-tw {
  background: #1da1f2;
  color: #fff;
}
.share-li {
  background: #0a66c2;
  color: #fff;
}
.related-sec {
  background: var(--light-bg);
  padding: 50px 0;
}
.related-sec h4 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 24px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
/* ========== TABLET (768–991px) ========== */
@media (max-width: 991px) {
  .hero {
    padding: 40px 0 0;
  }
  .hero-h1 {
    font-size: 1.9rem;
  }
  .hero-sub {
    font-size: 0.88rem;
  }
  .hero-visual {
    min-height: 280px;
    padding: 14px 28px 0;
  }
  .hero-circle-bg {
    width: 240px;
    height: 240px;
  }
  .hero-person-img {
    height: 280px;
  }
  .fc-tl {
    top: 10px;
    left: 0;
  }
  .fc-tr {
    top: 50px;
    right: 0;
  }
  .fc-bl {
    bottom: 60px;
    left: 0;
  }
  .fc-br {
    bottom: 70px;
    right: 0;
  }
  section {
    padding: 44px 0;
  }
  .sec-h {
    font-size: 1.55rem;
  }
  .contact-sec {
    padding: 48px 0;
  }
  .rwi-logo {
    max-width: 260px;
  }
  .rwi-banner {
    padding: 30px 0;
    margin-bottom: 30px;
  }
}

/* ========== MOBILE (≤767px) ========== */
@media (max-width: 767px) {
  /* Hero */
  .hero {
    padding: 32px 0 0;
  }
  .hero-h1 {
    font-size: 1.65rem;
    line-height: 1.18;
  }
  .hero-sub {
    font-size: 0.84rem;
    margin-bottom: 20px;
  }
  .hero-btns {
    gap: 9px;
    margin-bottom: 20px;
  }
  .btn-solid,
  .btn-gold-ol {
    padding: 10px 18px;
    font-size: 0.83rem;
  }
  .hero-social-proof {
    margin-top: 18px;
  }
  .hsp-avatars img {
    width: 30px;
    height: 30px;
  }
  .hero-social-proof strong {
    font-size: 0.8rem;
  }
  .hero-visual {
    min-height: 220px;
    padding: 8px 16px 0;
  }
  .hero-circle-bg {
    width: 190px;
    height: 190px;
  }
  .hero-person-img {
    height: 220px;
  }
  .float-card {
    padding: 6px 9px;
    gap: 6px;
    border-radius: 9px;
  }
  .fc-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    border-radius: 6px;
  }
  .float-card strong {
    font-size: 0.76rem;
  }
  .float-card small {
    font-size: 0.58rem;
  }
  .fc-tl {
    top: 5px;
    left: -4px;
  }
  .fc-tr {
    top: 30px;
    right: -4px;
  }
  .fc-bl {
    bottom: 45px;
    left: -4px;
  }
  .fc-br {
    bottom: 55px;
    right: -4px;
  }
  /* Feature strip */
  .hf-item {
    padding: 12px 8px;
    gap: 8px;
  }
  .hf-icon {
    width: 34px;
    height: 34px;
    font-size: 0.88rem;
  }
  .hf-item strong {
    font-size: 0.75rem;
  }
  .hf-item small {
    font-size: 0.66rem;
  }
  /* Sections */
  section {
    padding: 36px 0;
  }
  .sec-h {
    font-size: 1.3rem;
  }
  .sec-p {
    font-size: 0.84rem;
  }
  /* Course cards */
  .course-filter {
    gap: 5px;
  }
  .cf-tab {
    padding: 6px 13px;
    font-size: 0.82rem;
  }
  .cc-title {
    font-size: 0.9rem;
  }
  .cc-cat {
    font-size: 0.72rem;
  }
  .cc-dur {
    font-size: 0.78rem;
  }
  /* Services */
  .svc-card {
    padding: 18px 14px;
  }
  .svc-card h5 {
    font-size: 0.9rem;
  }
  .svc-card p {
    font-size: 0.78rem;
  }
  /* About */
  .why-box {
    padding: 24px 18px;
  }
  .why-box h3 {
    font-size: 1.2rem;
  }
  /* Contact */
  .contact-sec {
    padding: 38px 0;
  }
  /* Footer */
  .footer-main {
    padding: 32px 0 20px;
  }
  .footer-desc {
    max-width: 100%;
  }
  /* RajWebInfo */
  .rwi-logo {
    max-width: 200px;
  }
  .rwi-banner {
    padding: 24px 0;
    margin-bottom: 24px;
  }
  .rwi-content h3 {
    font-size: 1.15rem;
  }
  .rwi-stats div strong {
    font-size: 1.3rem;
  }
  /* Post */
  .post-thumb {
    height: 180px;
  }
  .post-meta-row {
    gap: 8px;
    font-size: 0.74rem;
  }
}

/* ========== SMALL MOBILE (≤575px) ========== */
@media (max-width: 575px) {
  .hero-h1 {
    font-size: 1.45rem;
  }
  .hero-tag-row {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }
  .fc-tl,
  .fc-bl {
    left: -6px;
  }
  .fc-tr,
  .fc-br {
    right: -6px;
  }
  .hero-visual {
    padding: 8px 10px 0;
  }
  .hero-circle-bg {
    width: 165px;
    height: 165px;
  }
  .hero-person-img {
    height: 195px;
  }
  /* hide 2 feature items on tiny mobile */
  .hf-item:nth-child(4),
  .hf-item:nth-child(5) {
    display: none;
  }
  .price-card {
    padding: 20px 14px;
  }
  .price-amt {
    font-size: 1.6rem;
  }
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .2s, box-shadow .2s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.09);
}
.testi-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testi-text {
  font-size: .86rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: .86rem;
  color: var(--dark);
  font-weight: 700;
}
.testi-author small {
  font-size: .75rem;
  color: var(--muted);
}

/* =====================================================
   PORTFOLIO
   ===================================================== */
.portfolio-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  transition: transform .2s, box-shadow .2s;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
}
.portfolio-thumb {
  height: 170px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform .35s;
}
.portfolio-card:hover .portfolio-thumb {
  transform: scale(1.04);
}
.portfolio-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
}
.portfolio-type {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .4px;
}
.portfolio-body {
  padding: 18px 18px 20px;
}
.portfolio-body h6 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.portfolio-body p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.portfolio-tags span {
  background: var(--primary-pale);
  color: var(--primary-dk);
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
}

/* =====================================================
   HOW WE WORK / PROCESS
   ===================================================== */
.process-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 22px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.09);
}
.process-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: .78rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin: 8px 0 14px;
}
.process-card h6 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.process-card p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-item {
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-btn {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: var(--dark) !important;
  background: #fff !important;
  padding: 16px 20px;
  box-shadow: none !important;
}
.faq-btn:not(.collapsed) {
  color: var(--primary) !important;
  background: var(--primary-pale) !important;
}
.faq-btn::after {
  filter: none;
}
.faq-body {
  font-size: .85rem;
  color: var(--text);
  line-height: 1.75;
  background: #fafcf7;
  padding: 14px 20px 18px;
}
.faq-body strong {
  color: var(--dark);
}
