/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BASE ================= */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}
/* ================= HEADER ================= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0b2e4f;

  height: 88px;
  padding: 0 48px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand */
.brand {
  height: 100%;
  display: flex;
  align-items: center;
}

.brand img {
  max-height: 76px;
  width: auto;
  object-fit: contain;
}

.brand span {
  font-size: 17px;
  letter-spacing: 0.5px;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.3px;
}

nav a:hover {
  text-decoration: underline;
}

/* ================= HEADER – MOBILE ================= */
@media (max-width: 768px) {
  header {
    height: auto;
    padding: 14px 16px;
    flex-direction: column;
    align-items: center;
  }

  .brand {
    height: auto;
    margin-bottom: 10px;
  }

  .brand img {
    max-height: 54px;
  }

  nav {
    width: 100%;
  }

  nav ul {
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  nav a {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
  }
}


.brand img {
  max-height: 76px;     /* IMPORTANT */
  width: auto;
  object-fit: contain;
}
}
.brand {
  height: 100%;
  display: flex;
  align-items: center;
}

.brand span {
  font-size: 17px;
  letter-spacing: 0.5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}


nav a {
  color: #ffffff;
  font-weight: 600;     /* stronger */
  font-size: 16px;      /* increased */
  letter-spacing: 0.3px;
}

nav a:hover {
  text-decoration: underline;
}
/* ================= HERO ================= */
.hero {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: #ffffff;
  padding: 80px 20px 90px;   /* top | sides | bottom */
  text-align: center;
}
.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero p {
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: 18px;
  opacity: 0.95;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btn {
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
}
.btn-primary {
  background: #ffffff;
  color: #1e3a8a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}
.hero-trust {
  margin-top: 28px;
  font-size: 14px;
  opacity: 0.9;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* ================= HERO – MOBILE ================= */
@media (max-width: 768px) {
  .hero {
    padding: 64px 16px 72px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.25;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* ================= FOOTER ================= */
footer {
  background: #111827;
  color: #9ca3af;
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
}

footer p {
  margin-bottom: 12px;
}
/* ================= FOOTER SOCIAL BAR ================= */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  background: linear-gradient(180deg, #0b1220, #020617);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

footer {
  background: #020617;
  color: #9ca3af;
  text-align: center;
  font-size: 14px;
}

.footer-content {
  padding: 32px 20px;
}

.footer-social a {
  color: #ffffff;
  font-size: 26px;
  opacity: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover .fa-whatsapp {
  color: #25D366;
}

.footer-social a:hover .fa-instagram {
  color: #E1306C;
}

.footer-social a:hover .fa-facebook-f {
  color: #1877F2;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* ================= WHY CHOOSE ================= */
.why-choose {
  max-width: 1100px;
  margin: 90px auto;
  padding: 0 20px;
  text-align: center;
}

.why-choose h2 {
  font-size: 32px;
  margin-bottom: 48px;
  color: #1e3a8a;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.why-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card i {
  font-size: 32px;
  color: #1e3a8a;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111827;
}

.why-card p {
  font-size: 15px;
  color: #374151;
  line-height: 1.5;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}
/* ================= SERVICES (FORCE FIX) ================= */
.services {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #1e3a8a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.service-card h3 {
  margin-bottom: 12px;
  color: #1e3a8a;
  font-size: 20px;
}

.service-card p {
  color: #374151;
  font-size: 16px;
  line-height: 1.5;
}
input {
  width: 100%;
  padding: 12px;
  margin: 8px 0 18px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 15px;
}
/* ================= GOAL CALCULATOR ================= */

.goal-selector {
  background: #f3f4f6;
  padding: 20px;
}

.goal-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.goal-tab {
  padding: 14px 18px;
  border: none;
  background: #e5e7eb;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
}

.goal-tab.active {
  background: #facc15;
  color: #111827;
}

.goal-calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.calculator-inputs,
.calculator-results {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.calculator-inputs label {
  display: block;
  margin-top: 14px;
  font-weight: 600;
}

.calculator-inputs input {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
}

.calculator-results h2 {
  margin-bottom: 20px;
}

.calc-note {
  font-size: 13px;
  margin-top: 20px;
  color: #6b7280;
}

@media (max-width: 768px) {
  .goal-calculator {
    grid-template-columns: 1fr;
  }
}
.calculator-inputs label input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.1);
}
















