/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */


.hero {
  position: relative !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 0 0 0;
  /* min-height: 52vh; */
}
.hero img {
  position: absolute;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  top: 0; left: 0; z-index: 0;
  transition: opacity 0.3s;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.18);
  z-index: 1;
}
.hero .container {
  position: relative; z-index: 2;
  width: 100%; max-width: 760px;
  padding: 5rem 2rem;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgb(97 72 72 / 25%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.5);
  color: #1e293b;
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700;
  margin-bottom: 1.1rem;
  letter-spacing: 0.3px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: #667eea; border-radius: 50%;
  display: inline-block;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; color: #0f172a;
  margin-bottom: 0.9rem; line-height: 1.15;
}
.hero-gradient-text {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.05rem; color: #334155;
  max-width: 520px; line-height: 1.65;
}

@media (max-width: 768px) {
  /* .hero { min-height: 44vh !important; } */
  .hero .container { padding: 3rem 1.2rem; }
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2rem); }
  .hero p  { font-size: 0.93rem; }
  .hero-badge { font-size: 0.76rem; }
}

/* ═══════════════════════════════════════
   PAGE LAYOUT
═══════════════════════════════════════ */
.page-content {
  background: linear-gradient(160deg, #f1f5f9 0%, #e8edf5 100%);
  padding: 0;
}

/* ═══════════════════════════════════════
   CONTENT BOX
═══════════════════════════════════════ */
.content-box {
  background: white;
  padding: 48px max(24px, calc((100% - 960px) / 2));
  margin-bottom: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #edf0f7;
  transition: background 0.2s;
  width: 100%;
}
.content-box:nth-child(even) {
  background: #edf0f7;
}
.content-box:nth-child(even):hover {
  background: #e8ecf4;
}
.content-box:hover {
  /* background: #fafbff; */
}
.content-box h2 {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.55rem; font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f1f5f9;
  line-height: 1.2;
}
.content-box > p {
  color: #475569; line-height: 1.85;
  margin-bottom: 14px; font-size: 0.97rem;
}
.content-box > p:last-child { margin-bottom: 0; }
.content-box strong { color: #1e293b; font-weight: 700; }

@media (max-width: 768px) {
  .content-box { padding: 28px 20px; border-radius: 0; }
  .content-box h2 { font-size: 1.25rem; margin-bottom: 12px; padding-bottom: 10px; }
  .content-box > p { font-size: 0.92rem; }
}

/* ═══════════════════════════════════════
   STATS ROW (inside Who We Are)
═══════════════════════════════════════ */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 28px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 14px;
  overflow: hidden;
}
.about-stat {
  text-align: center;
  padding: 22px 10px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.about-stat:last-child { border-right: none; }
.about-stat-num {
  font-size: 1.9rem; font-weight: 900;
  color: #fff; line-height: 1; margin-bottom: 5px;
}
.about-stat-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.78);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px;
}
@media (max-width: 580px) {
  .about-stats-row { grid-template-columns: repeat(2,1fr); }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); padding: 16px 8px; }
  .about-stat:nth-child(3), .about-stat:nth-child(4) { border-bottom: none; }
  .about-stat-num { font-size: 1.5rem; }
}

/* ═══════════════════════════════════════
   WHAT WE OFFER GRID
═══════════════════════════════════════ */
.features-grid-2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px; margin-top: 20px;
}
.feature-item {
  padding: 26px 20px; border-radius: 14px;
  background: #f8fafc; border: 1px solid #edf0f7;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s, background 0.22s;
}
.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(102,126,234,0.13);
  background: white; border-color: #c7d2fe;
}
.feature-item i {
  font-size: 2.2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px; display: block;
}
.feature-item h3 { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.feature-item p  { font-size: 0.88rem; color: #64748b; line-height: 1.65; margin: 0; }
@media (max-width: 640px) {
  .features-grid-2 { grid-template-columns: 1fr; gap: 12px; }
  .feature-item { padding: 20px 16px; }
}

/* ═══════════════════════════════════════
   HOW IT WORKS LIST
═══════════════════════════════════════ */
.benefits-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 16px;
}
.benefits-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: white;
  border: 1px solid #edf0f7;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}
.benefits-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 16px rgba(102,126,234,0.10);
  background: white; border-color: #c7d2fe;
}
.benefits-list i {
  color: #667eea; font-size: 1rem;
  flex-shrink: 0; width: 20px;
  text-align: center; margin-top: 2px;
}
.benefits-list li strong {
  display: block; font-size: 0.94rem;
  font-weight: 700; color: #0f172a; margin-bottom: 3px;
}
.benefits-list li span {
  display: block; font-size: 0.84rem;
  color: #64748b; line-height: 1.65;
}
@media (max-width: 640px) {
  .benefits-list li { padding: 13px 14px; gap: 11px; }
  .benefits-list li strong { font-size: 0.9rem; }
  .benefits-list li span  { font-size: 0.82rem; }
}

/* ═══════════════════════════════════════
   VALUES GRID
═══════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-top: 20px;
}
.value-card {
  background: #f8fafc; border: 1px solid #edf0f7;
  border-radius: 16px; padding: 24px 18px;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s, background 0.22s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(102,126,234,0.12);
  border-color: #c7d2fe; background: white;
}
.value-icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h3 { font-size: 0.97rem; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.value-card p  { font-size: 0.84rem; color: #64748b; line-height: 1.65; margin: 0; }
@media (max-width: 768px) { .values-grid { grid-template-columns: repeat(2,1fr); gap: 12px; } }
@media (max-width: 440px) { .values-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   CTA BLOCK
═══════════════════════════════════════ */
.about-cta {
  background: linear-gradient(135deg, #667eea, #764ba2);
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(102,126,234,0.30);
}
.about-cta h2 {
  color: white !important;
  -webkit-text-fill-color: white !important;
  font-size: 1.9rem !important;
  font-weight: 900 !important;
  border-bottom: none !important;
  margin-bottom: 12px !important;
  padding-bottom: 0 !important;
}
.about-cta p {
  color: rgba(255,255,255,0.88) !important;
  font-size: 1rem !important;
  max-width: 480px;
  margin: 0 auto 28px !important;
  line-height: 1.7 !important;
}
.about-cta-btns {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}
.about-btn-primary {
  display: inline-block; padding: 14px 32px;
  background: white; color: #667eea;
  border-radius: 50px; font-weight: 800; font-size: 0.97rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.about-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(0,0,0,0.2); }
.about-btn-secondary {
  display: inline-block; padding: 14px 32px;
  background: rgba(255,255,255,0.14);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50px; font-weight: 700; font-size: 0.97rem;
  text-decoration: none;
  transition: background 0.2s;
}
.about-btn-secondary:hover { background: rgba(255,255,255,0.24); }
@media (max-width: 480px) {
  .about-cta { padding: 32px 20px; }
  .about-cta h2 { font-size: 1.5rem !important; }
  .about-btn-primary, .about-btn-secondary { width: 100%; text-align: center; padding: 13px 20px; }
}

/* ═══════════════════════════════════════
   SHIMMER
═══════════════════════════════════════ */
.shimmer-box { position: relative; overflow: hidden; }
.shimmer-box::before {
  content: ''; position: absolute;
  top: 0; left: -150%; width: 150%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
  animation: shimmerMove 1.8s infinite; z-index: 1;
}
@keyframes shimmerMove { 0% { left: -150%; } 100% { left: 150%; } }

.shimmer-title  { width: 38%; height: 28px; background: #e2e8f0; border-radius: 8px; margin-bottom: 18px; }
.shimmer-text   { width: 100%; height: 14px; background: #e2e8f0; border-radius: 4px; margin-bottom: 10px; }
.shimmer-text.short { width: 68%; }
.shimmer-features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 18px; }
.shimmer-feature { text-align: center; }
.shimmer-icon   { width: 56px; height: 56px; background: #e2e8f0; border-radius: 50%; margin: 0 auto 12px; }
.shimmer-feature-title { width: 75%; height: 18px; background: #e2e8f0; border-radius: 4px; margin: 0 auto 8px; }
.shimmer-list   { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.shimmer-list-item { width: 100%; height: 52px; background: #e2e8f0; border-radius: 10px; }
@media (max-width: 640px) {
  .shimmer-features-grid { grid-template-columns: 1fr; }
  .shimmer-title { width: 55%; }
}

/* ═══════════════════════════════════════
   CONTACT / MISC (kept for other pages)
═══════════════════════════════════════ */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.contact-info { background: #f8fafc; padding: 2rem; border-radius: 12px; }
.contact-info h2 { color: #2563EB; margin-bottom: 1rem; }
.contact-info > p { color: #475569; margin-bottom: 2rem; line-height: 1.6; }
.contact-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start; }
.contact-item i { font-size: 2rem; color: #2563EB; width: 50px; height: 50px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item h3 { color: #1e293b; margin-bottom: 0.3rem; font-size: 1.1rem; }
.contact-item p  { color: #64748b; margin: 0.2rem 0; font-size: 0.95rem; }
.submit-btn { width: 100%; padding: 1rem; background: linear-gradient(135deg,#667eea,#764ba2); color: white; border: none; border-radius: 8px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(102,126,234,0.3); }
.faq-item { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid #e2e8f0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { color: #1e293b; margin-bottom: 0.5rem; font-size: 1.1rem; }
.faq-item p  { color: #64748b; line-height: 1.6; }
@media (max-width: 768px) { .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; } }

/* shimmer extras */
.shimmer-contact-item { display: flex; align-items: flex-start; gap: 15px; margin: 20px 0; }
.shimmer-form-field { width: 100%; height: 45px; background: #e2e8f0; border-radius: 8px; margin-bottom: 20px; }
.shimmer-form-field.large { height: 120px; }
.shimmer-button { width: 100%; height: 50px; background: #e2e8f0; border-radius: 8px; margin-top: 10px; }

/* ── Contact Us Strip ── */
.contact-us-strip {
  background:white;
  /* text-color: #0f172a; */
  padding: 28px max(24px, calc((100% - 960px) / 2));
}
.contact-us-strip-inner {
  
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.contact-us-left {
  display: flex; align-items: center; gap: 16px;
}
.contact-us-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: black;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
}
.contact-us-icon i { color: white; font-size: 1.3rem; }
.contact-us-left h3 { font-size: 1rem; font-weight: 800; color: black; margin: 0 0 4px; }
.contact-us-left p  { font-size: 0.85rem; color: black; margin: 0; }
.contact-us-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  background: white; color: #667eea;
  font-weight: 800; font-size: 0.9rem; text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.contact-us-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,0.2); }
@media (max-width: 640px) {
  .contact-us-strip-inner { flex-direction: column; align-items: flex-start; }
  .contact-us-btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════
   DARK MODE — instant via html.dark-mode
   Applies to: About, FAQ, Terms, Privacy, Contact
   ══════════════════════════════════════════ */

/* Body & page bg */
html.dark-mode body,
body.dark-mode {
  background: #0d1117 !important;
  color: #e6edf3 !important;
  transition: none !important;
}
html.dark-mode .page-content,
body.dark-mode .page-content {
  background: #0d1117 !important;
  transition: none !important;
}

/* Content boxes — instant bg + border */
html.dark-mode .content-box,
body.dark-mode .content-box {
  background: #161b22 !important;
  border-bottom-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .content-box:hover,
body.dark-mode .content-box:hover {
  background: #161b22 !important;
}
html.dark-mode .content-box:nth-child(even),
body.dark-mode .content-box:nth-child(even) {
  background: #0d1117 !important;
}
html.dark-mode .content-box:nth-child(even):hover,
body.dark-mode .content-box:nth-child(even):hover {
  background: #0d1117 !important;
}
html.dark-mode .content-box h2,
body.dark-mode .content-box h2 {
  border-bottom-color: #30363d !important;
}
html.dark-mode .content-box > p,
body.dark-mode .content-box > p { color: #8b949e !important; }
html.dark-mode .content-box strong,
body.dark-mode .content-box strong { color: #e6edf3 !important; }

/* Hero */
html.dark-mode .hero::before,
body.dark-mode .hero::before {
  background: rgba(13,17,23,0.55) !important;
}
html.dark-mode .hero-badge,
body.dark-mode .hero-badge {
  background: rgba(124,106,247,0.18) !important;
  border-color: rgba(124,106,247,0.35) !important;
  color: #c9d1d9 !important;
}
html.dark-mode .hero-badge-dot,
body.dark-mode .hero-badge-dot { background: #a78bfa !important; }
html.dark-mode .hero h1,
body.dark-mode .hero h1 { color: #e6edf3 !important; }
html.dark-mode .hero p,
body.dark-mode .hero p { color: #8b949e !important; }

/* Feature items */
html.dark-mode .feature-item,
body.dark-mode .feature-item {
  background: #1c2333 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .feature-item:hover,
body.dark-mode .feature-item:hover {
  background: #21293d !important;
  border-color: #7c6af7 !important;
}
html.dark-mode .feature-item h3,
body.dark-mode .feature-item h3 { color: #e6edf3 !important; }
html.dark-mode .feature-item p,
body.dark-mode .feature-item p { color: #8b949e !important; }

/* Benefits list */
html.dark-mode .benefits-list li,
body.dark-mode .benefits-list li {
  background: #1c2333 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .benefits-list li:hover,
body.dark-mode .benefits-list li:hover {
  background: #21293d !important;
  border-color: #7c6af7 !important;
}
html.dark-mode .benefits-list i,
body.dark-mode .benefits-list i { color: #a78bfa !important; }
html.dark-mode .benefits-list li strong,
body.dark-mode .benefits-list li strong { color: #e6edf3 !important; }
html.dark-mode .benefits-list li span,
body.dark-mode .benefits-list li span { color: #8b949e !important; }

/* Value cards */
html.dark-mode .value-card,
body.dark-mode .value-card {
  background: #1c2333 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .value-card:hover,
body.dark-mode .value-card:hover {
  background: #21293d !important;
  border-color: #7c6af7 !important;
}
html.dark-mode .value-card h3,
body.dark-mode .value-card h3 { color: #e6edf3 !important; }
html.dark-mode .value-card p,
body.dark-mode .value-card p { color: #8b949e !important; }

/* FAQ accordion */
html.dark-mode .faq-item,
body.dark-mode .faq-item {
  background: #161b22 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .faq-item:hover,
body.dark-mode .faq-item:hover {
  border-color: #7c6af7 !important;
}
html.dark-mode .faq-item.open,
body.dark-mode .faq-item.open {
  background: #1c2333 !important;
  border-color: #7c6af7 !important;
  border-left-color: #7c6af7 !important;
}
html.dark-mode .faq-q,
body.dark-mode .faq-q { color: #e6edf3 !important; }
html.dark-mode .faq-icon,
body.dark-mode .faq-icon { color: #484f58 !important; }
html.dark-mode .faq-item.open .faq-icon,
body.dark-mode .faq-item.open .faq-icon { color: #a78bfa !important; }
html.dark-mode .faq-a,
body.dark-mode .faq-a {
  color: #8b949e !important;
  border-top-color: #30363d !important;
}
html.dark-mode .faq-cat-head,
body.dark-mode .faq-cat-head { border-bottom-color: #30363d !important; }
html.dark-mode .faq-cat-btn,
body.dark-mode .faq-cat-btn {
  background: #1c2333 !important;
  border-color: #30363d !important;
  color: #8b949e !important;
}
html.dark-mode .faq-cat-btn:hover,
body.dark-mode .faq-cat-btn:hover {
  background: rgba(124,106,247,0.1) !important;
  border-color: #7c6af7 !important;
  color: #a78bfa !important;
}

/* Contact us strip */
html.dark-mode .contact-us-strip,
body.dark-mode .contact-us-strip {
  background: #161b22 !important;
  border-top-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .contact-us-icon,
body.dark-mode .contact-us-icon { background: rgba(124,106,247,0.15) !important; }
html.dark-mode .contact-us-icon i,
body.dark-mode .contact-us-icon i { color: #a78bfa !important; }
html.dark-mode .contact-us-left h3,
body.dark-mode .contact-us-left h3 { color: #e6edf3 !important; }
html.dark-mode .contact-us-left p,
body.dark-mode .contact-us-left p { color: #8b949e !important; }

/* ── Shimmer — dark-correct, no transition ── */
html.dark-mode .shimmer-title,
html.dark-mode .shimmer-text,
html.dark-mode .shimmer-icon,
html.dark-mode .shimmer-feature-title,
html.dark-mode .shimmer-list-item,
html.dark-mode .shimmer-form-field,
html.dark-mode .shimmer-button,
html.dark-mode .shimmer-contact-item,
body.dark-mode .shimmer-title,
body.dark-mode .shimmer-text,
body.dark-mode .shimmer-icon,
body.dark-mode .shimmer-feature-title,
body.dark-mode .shimmer-list-item,
body.dark-mode .shimmer-form-field,
body.dark-mode .shimmer-button,
body.dark-mode .shimmer-contact-item {
  background: #21293d !important;
  transition: none !important;
}
html.dark-mode .shimmer-box::before,
body.dark-mode .shimmer-box::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent) !important;
  transition: none !important;
}
