:root {
  --primary: #eef5ff;     /* Calm blue */
  --primary-dark: #155a91;
  --secondary: #eef5ff;   /* Soft blue background */
  --text-dark: #2b2b2b;
  --text-light: #666;
  --border: #e5e5e5;
}

/* =========================
   RESET & BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
}

body {
  color: var(--text-dark);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #0b6efd;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--text-light);
  max-width: 65ch;
}
/* =========================
   LAYOUT
========================= */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section {
  padding: 3rem 0;
}

.content-narrow {
  max-width: 800px;
}

/* =========================
   HEADER & NAVIGATION
========================= */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo img {
  height: 48px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
}

.main-nav a {
  font-weight: 500;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
}

.btn-primary {
  background: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
}
.btn-secondary {
  border: 2px solid #0b6efd;
  color: #0b6efd;
}

/* =========================
   HERO SECTIONS
========================= */

.page-hero {
  background: linear-gradient(135deg, #1f66d1, #0f4c81);
  color: #155a91;
  min-height: 320px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 40px 20px;
}

.page-hero .container {
  max-width: 800px;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

.hero,
.page-hero {
  background: var(--secondary);
}


.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.page-hero {
  padding: 3rem 0;
  text-align: center;
}
.hero {
  padding: 5rem 0;
}

.hero p {
  font-size: 1.1rem;
}

/* HERO SLIDER */
/* HERO SLIDER - STABLE VERSION */

.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;  /* keeps consistent ratio */
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* prevents distortion */
}

.slide.active {
  opacity: 1;
}

.hero-slider .slides {
  display: flex;
  width: 300%;
  animation: slide 15s infinite;
}

.hero-slider img {
  width: 100%;
  object-fit: cover;
  height: 420px;
}

@keyframes slide {
  0%   { transform: translateX(0); }
  30%  { transform: translateX(0); }

  33%  { transform: translateX(-100%); }
  63%  { transform: translateX(-100%); }

  66%  { transform: translateX(-200%); }
  96%  { transform: translateX(-200%); }

  100% { transform: translateX(0); }
}

/* =========================
   CARDS
========================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid #e5e5e5;
}

.card h3 {
  margin-top: 0;
}

.card {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

/* =========================
   TRUST BLOCK
========================= */
.trust-block {
  padding: 2rem 0;
  background: #f8fbff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  gap: 1rem;
  font-weight: 600;
}

/* =========================
   CTA
========================= */
/* CTA SECTION */

.cta {
  background: linear-gradient(135deg, #1f66d1, #0f4c81);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
  color: white;
}

.cta .btn {
  padding: 14px 28px;
  font-weight: 600;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #f1f1f1;
  padding: 2.5rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* =========================
   FORMS
========================= */
form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

form {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 6px;
}


form input,
form select,
form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.4rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  margin-top: 1.5rem;
}

fieldset {
  border: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

legend {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* =========================
   UTILITIES
========================= */
.link-arrow {
  font-weight: 600;
}

/* MARQUEE SECTION */
.marquee-section {
  background: #0f4c81;
  color: white;
  overflow: hidden;
  padding: 15px 0;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: inline-block;
  animation: scroll 20s linear infinite;
}

.marquee-content span {
  margin: 0 40px;
  font-weight: 500;
}

@keyframes scroll {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* WHY SECTION */

.why-section {
  padding: 90px 0;
  background: #f7f9fc;
}

.why-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.why-header h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.why-header p {
  color: #555;
  font-size: 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  background: white;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.1);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 18px;
}

.why-card h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

.why-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}