html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; }

.brand-gradient { background: linear-gradient(135deg, #1da7e0 0%, #0a142f 100%); }
.navy-gradient { background: linear-gradient(160deg, #0a142f 0%, #06102a 100%); }

.btn-red {
  background: #1da7e0;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(29,167,224,.35);
  transition: all .2s ease;
}
.btn-red:hover { background: #0e87bd; transform: translateY(-2px); }

.card-shadow { box-shadow: 0 10px 30px rgba(0,0,0,.08); }

/* Category image cards with overlay text */
.cat-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.cat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,20,47,.45);
  transition: background .3s;
}
.cat-card:hover::after { background: rgba(10,20,47,.6); }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cat-card .label {
  position: relative; z-index: 2;
  color: #fff; font-weight: 800; font-size: 1.6rem;
  text-align: center; line-height: 1.2; text-transform: uppercase;
  letter-spacing: .5px; padding: 0 1rem;
}

.section-pad { padding: 4rem 1rem; }

/* process step circle */
.step-circle {
  position: relative; width: 220px; height: 220px; border-radius: 50%;
  overflow: hidden; margin: 0 auto;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.step-circle img { width: 100%; height: 100%; object-fit: cover; }
.step-badge {
  position: absolute; top: 0; right: -10px;
  background: #1da7e0; color: #fff; font-weight: 800; font-size: 1.6rem;
  width: 90px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(29,167,224,.4); z-index: 3;
}

/* FAQ accordion */
.faq-item .faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-chevron { transition: transform .3s; }

/* mobile menu */
#mobileMenu { transition: transform .3s ease; }

.flag-circle { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,.3); margin: 0 auto; }
.flag-circle img { width: 100%; height: 100%; object-fit: cover; }
