/* ============================================================
   Qas Immigration Services Inc. — Site #12
   Navy Charcoal + Electric Blue
   Fresh patterns: Curved Wave, Mega Hover List, Badges,
   Overlay Cards, Checklist, Chat Card, Trust Guarantee
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --primary: #1a1a2e;
  --accent: #00d4ff;
  --accent2: #7c3aed;
  --light: #f0fdf4;
  --bg: #ffffff;
  --text: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --nav-height: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 26, 46, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--primary);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* --- Hero — Curved Wave Background --- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--primary);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 680px;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero .accent-line {
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background: #00e0ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Floating decorative diamond */
.hero-float {
  position: absolute;
  right: 8%;
  top: 35%;
  width: 60px;
  height: 60px;
  background: var(--accent);
  transform: rotate(45deg);
  border-radius: 8px;
  opacity: 0.2;
  animation: float-diamond 6s ease-in-out infinite;
  z-index: 1;
}

.hero-float-2 {
  width: 30px;
  height: 30px;
  top: 55%;
  right: 18%;
  opacity: 0.1;
  animation-delay: -3s;
  border-radius: 50%;
  transform: none;
}

@keyframes float-diamond {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-30px); }
}

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* --- Section Common --- */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* --- Services — Mega Hover List --- */
.services-section {
  background: var(--bg);
}

.services-list {
  max-width: 900px;
  margin: 0 auto;
}

.service-item {
  border-bottom: 1px solid #e2e8f0;
  cursor: pointer;
  transition: background var(--transition);
  overflow: hidden;
}

.service-item:nth-child(odd) {
  background: #f8fafc;
}

.service-item:nth-child(even) {
  background: #ffffff;
}

.service-item:hover {
  background: #f1f5f9;
}

.service-item:first-child {
  border-top: 1px solid #e2e8f0;
}

.service-main {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 32px;
  transition: padding var(--transition);
}

.service-item:hover .service-main {
  padding-bottom: 12px;
}

.service-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.service-info {
  flex: 1;
}

.service-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.service-info .service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-arrow {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: transform var(--transition);
  margin-top: 4px;
}

.service-item:hover .service-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.service-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 32px 0 112px;
}

.service-item:hover .service-details {
  max-height: 160px;
  padding: 0 32px 28px 112px;
}

.service-details ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.service-details li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- About — Achievement Badges --- */
.about-section {
  background: #f8fafc;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.badge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.badge-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.badge-circle::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  z-index: -1;
  opacity: 0.4;
  transition: opacity var(--transition);
}

.badge-card:hover .badge-circle {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.badge-card:hover .badge-circle::before {
  opacity: 1;
}

.badge-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.badge-sublabel {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.badge-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* --- Industries — Image Cards with Overlay --- */
.industries-section {
  background: var(--bg);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.industry-card {
  position: relative;
  background: var(--primary);
  border-radius: var(--radius-lg);
  height: 240px;
  overflow: hidden;
  cursor: pointer;
}

.industry-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  padding: 32px;
  text-align: center;
  transition: transform var(--transition);
}

.industry-card:hover .industry-card-inner {
  transform: translateY(-20px);
}

.industry-card-icon {
  font-size: 2.6rem;
}

.industry-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.industry-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform var(--transition);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.industry-card:hover .industry-overlay {
  transform: translateY(0);
}

.industry-overlay p {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  line-height: 1.5;
}

/* --- Approach — Checklist with Results --- */
.approach-section {
  background: #f8fafc;
}

.checklist {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.checklist-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.check-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checklist-item.rise .check-icon {
  transform: scale(1);
}

.check-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.check-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Contact — Embedded Chat Card --- */
.contact-section {
  background: var(--primary);
  padding: 100px 0 120px;
  position: relative;
}

.chat-card {
  max-width: 420px;
  margin: 0 auto 32px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.chat-header {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.chat-avatar {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.chat-header-info h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

.chat-header-info span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
}

.chat-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 200px;
}

.chat-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 0.88rem;
  line-height: 1.5;
  animation: bubble-in 0.4s ease-out;
}

@keyframes bubble-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-bubble.received {
  align-self: flex-start;
  background: #f1f5f9;
  color: var(--text-secondary);
  border-bottom-left-radius: 6px;
}

.chat-bubble.sent {
  align-self: flex-end;
  background: var(--accent);
  color: var(--primary);
  border-bottom-right-radius: 6px;
}

.chat-bubble:nth-child(2) { animation-delay: 0.2s; }
.chat-bubble:nth-child(3) { animation-delay: 0.4s; }
.chat-bubble:nth-child(4) { animation-delay: 0.6s; }

.chat-input-row {
  display: flex;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid #e2e8f0;
}

.chat-input-row input {
  flex: 1;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.chat-input-row input:focus {
  border-color: var(--accent);
}

.chat-input-row button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}

.chat-input-row button:hover {
  background: #00e0ff;
}

.contact-info-below {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 420px;
  margin: 0 auto;
}

.contact-info-below a {
  color: var(--accent);
  transition: color var(--transition);
}

.contact-info-below a:hover {
  color: #ffffff;
}

/* --- CTA — Trust Signal Guarantee --- */
.cta-section {
  background: var(--accent);
  padding: 90px 0;
  text-align: center;
}

.cta-section .section-tag {
  color: rgba(26, 26, 46, 0.6);
}

.cta-section h2 {
  color: var(--primary);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-shield {
  font-size: 4rem;
  margin-bottom: 24px;
  display: block;
}

.cta-section .cta-main-text {
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 500;
  max-width: 560px;
  margin: 0 auto 20px;
  line-height: 1.7;
  opacity: 0.85;
}

.cta-trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.cta-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.8;
}

.cta-trust-badge .trust-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.5;
}

.cta-section .btn {
  background: var(--primary);
  color: #ffffff;
  font-size: 1rem;
  padding: 16px 40px;
}

.cta-section .btn:hover {
  background: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.3);
}

/* --- Footer --- */
.footer {
  background: var(--primary);
  padding: 48px 0 32px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
  padding: 4px 0;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-address {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* --- Scroll Animation --- */
.rise {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rise.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Privacy & Terms Pages --- */
.legal-page {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  background: var(--bg);
}

.legal-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-container h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.legal-container .legal-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-container h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 36px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}

.legal-container p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
  min-font-size: 16px;
}

.legal-container a {
  color: var(--accent2);
  font-weight: 500;
}

.legal-container a:hover {
  text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.05rem;
  }

  .hero-float {
    right: 4%;
    top: 30%;
    width: 40px;
    height: 40px;
  }

  .hero-float-2 {
    width: 20px;
    height: 20px;
    right: 12%;
    top: 50%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-main {
    padding: 22px 20px;
  }

  .service-details {
    padding: 0 20px 0 100px;
  }

  .service-item:hover .service-details {
    padding: 0 20px 22px 100px;
  }

  .checklist-item {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    align-items: center;
  }

  .chat-card {
    max-width: 100%;
  }

  .section {
    padding: 70px 0;
  }
}

@media (max-width: 480px) {
  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .badge-circle {
    width: 100px;
    height: 100px;
  }

  .badge-number {
    font-size: 1.4rem;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

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