﻿/* Shukria Air */
@charset "UTF-8";
:root {
  --emerald-deep: #063c2c;
  --emerald: #0a5c44;
  --emerald-light: #148566;
  --gold: #c9a35c;
  --gold-light: #e6cb89;
  --gold-dark: #8a6a32;
  --cream: #faf6ec;
  --cream-warm: #f5edd6;
  --sand: #ede2c8;
  --ink: #1a1f1c;
  --ink-soft: #3d4742;
  --muted: #7a857f;
  --crimson: #b02a26;
  --crimson-dark: #8a1f1c;
  --white: #ffffff;
  --border: rgba(10, 77, 58, 0.07);
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.8rem;
  --radius-lg: 1rem;
  --radius-xl: 1.2rem;
  --radius-full: 999px;
  --ease-out: 0.3s ease;
  --ease-soft: 0.25s ease;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: 'Anek Bangla', 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Anek Bangla', 'Marcellus', serif;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul {
  list-style: none;
}
a:focus-visible,
button:focus-visible,
.faq-q:focus-visible,
.floating-card:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201, 163, 92, 0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(201, 163, 92, 0.05); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes gentle-glow {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.92; }
}
.reveal {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.reveal.visible {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  font-weight: 600;
  font-size: 0.88em;
  border-radius: var(--radius-full);
  transition: transform var(--ease-soft), background var(--ease-soft),
              color var(--ease-soft), border-color var(--ease-soft),
              box-shadow var(--ease-soft);
  white-space: nowrap;
  line-height: 1.3;
}
.btn-primary {
  background: linear-gradient(135deg, #d63d37, var(--crimson));
  color: #fff;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--emerald-deep);
}
.btn-gold:hover {
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}
.btn-outline {
  background: transparent;
  color: var(--emerald-deep);
  border: 1.5px solid var(--emerald-deep);
}
.btn-outline:hover {
  background: var(--emerald-deep);
  color: var(--cream);
}
.section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 3vw, 3.5rem);
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold-dark);
  font-size: 0.82em;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}