
body {
  margin:0;
  font-family:'Poppins', sans-serif;
  background:#f4f6f8;
  color:#222;
}
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
}

.top-blue {height:30px;background:#1E3C72}
.gold-line {height:4px;background:#FFCC29}

.navbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 40px;
  background:white;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

/* LOGO TOP LEFT */
    .logo {
      top: 22px;
      left: 5px;
      z-index: 5;
    }

    .logo img {
      width: 70px;
    }

.logo a {
  text-decoration: none;   /* removes underline */
  color: inherit;          /* prevents blue color */
}

.nav-links a {
  margin-left:20px;
  text-decoration:none;
  color:#34457D;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover {color:#00A859}

.nav-links a.active {
  background: linear-gradient(90deg, #00A859, #FFCC29);
  color: #0f2e4d;
  padding: 8px 14px;
  border-radius: 6px;
}

.hero-wrapper {
  position: relative;
  height: 500px;
  overflow: hidden;
}

/* IMAGE */
.hero-bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2;
}

/* TRANSPARENT HERO */
.hero {
  position: relative;
  z-index: 3;
  background: transparent !important;
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 700px;
}

.btn {
  padding:12px 22px;
  border:none;
  margin:5px;
  cursor:pointer;
  border-radius:6px;
  font-weight:600;
}

.btn {
  text-decoration: none; /* removes underline */
  display: inline-block;
}

.btn.outline {background:#FFCC29; color: #0f2e4d; /* BLUE TEXT */}


section {
  padding: 100px 40px;
  position: relative;
}

/* LIGHT PREMIUM BACKGROUND */
.section-light {
  background: linear-gradient(180deg, #ffffff, #f4faf7);
}

/* RICH BRAND SECTION */
.section-brand {
  background: linear-gradient(135deg, #0f2e4d, #00A859);
  color: white;
}

/* SOFT GOLD ACCENT STRIP */
.section-accent {
  background: linear-gradient(180deg, #fff, #fff9e6);
}

section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
  transform: translateX(-50%);
}

.why-member {
  padding: 100px 40px;
  max-width: 900px;
  margin: auto;
}

/* LIST LAYOUT */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}

/* ITEM */
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
}

/* NUMBER CIRCLE */
.why-number {
  min-width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #0f2e4d;
  background: white;
  position: relative;
}

/* GRADIENT BORDER */
.why-number::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #00A859, #FF8C42);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* TEXT */
.why-text h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #0f2e4d;
}

.why-text p {
  margin: 5px 0 0;
  color: #555;
  line-height: 1.6;
}

.categories {
  padding: 100px 40px;
  background: linear-gradient(135deg, #0f2e4d, #163d63);
  color: white;
  text-align: center;
}

.category-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 16px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.category-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: white;
  color: #0f2e4d;
  border-bottom: 4px solid #FFCC29;
}


.steps {
  padding: 100px 20px;
  text-align: center;
}

/* TIMELINE CONTAINER */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 60px auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: #e0e0e0; /* base line (light) */
  transform: translateX(-50%);
}

/* ANIMATED LINE */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, #00A859, #0f2e4d);
  transform: translateX(-50%);
  transition: height 0.3s ease-out;
}

/* ITEM */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px;
  opacity: 0;
  transform: translateY(40px);
}

/* LEFT / RIGHT */
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

/* DOT */
.timeline-dot {
  position: absolute;
  top: 30px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: #FFCC29;
  border-radius: 50%;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

/* CONTENT BOX */
.timeline-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ICON */
.step-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.footer {
  background: linear-gradient(180deg, #0f2e4d, #081a2c);
  color: #fff;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

/* GOLD LINE */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 3px;
  background: #FFCC29;
}

/* subtle glow */
.footer::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(0,168,89,0.15);
  border-radius: 50%;
  filter: blur(100px);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
}

/* BRAND */
.footer-brand h2 {
  font-size: 1.8rem;
}

.footer-brand p {
  color: #ccc;
  margin: 10px 0 20px;
  line-height: 1.5;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.socials a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.socials img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1); /* makes icons white */
}

.socials a:hover {
  background: #FFCC29;
  transform: translateY(-4px) scale(1.05);
}

.icon {
  width: 18px;
  height: 18px;
  fill: white;
  transition: 0.3s;
}


/* LINKS */
.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
  margin-bottom: 12px;
  color: #FFCC29;
}

.footer-links a {
  display: block;
  color: #ddd;
  margin-bottom: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #FFCC29;
  transform: translateX(5px);
}

/* CONTACT */
.footer-contact p {
  margin: 6px 0;
  color: #ccc;
}

/* NEWSLETTER */
.newsletter-box {
  display: flex;
  margin-top: 10px;
}

.newsletter-box input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 6px 0 0 6px;
}

.newsletter-box button {
  background: #00A859;
  border: none;
  padding: 10px 15px;
  color: white;
  cursor: pointer;
  border-radius: 0 6px 6px 0;
  transition: 0.3s;
}

.newsletter-box button:hover {
  background: #008c47;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 18px;
  background: rgba(0,0,0,0.3);
  font-size: 0.9rem;
  color: #bbb;
}
@keyframes fadeIn {
  from {opacity:0; transform:translateY(-20px)}
  to {opacity:1; transform:translateY(0)}
}

/* ========================= */
/* DESKTOP DEFAULT */
/* ========================= */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  gap: 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* HAMBURGER ICON */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #0f2e4d;
  border-radius: 3px;
  transition: 0.3s;
}

/* MOBILE NAV */
@media (max-width: 768px) {

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
/* ========================= */
/* MOBILE (≤ 768px) */
/* ========================= */
@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo span {
    font-size: 0.8rem;
  }

  .nav-links {
    display: none;
  }

  /* HERO */
  .hero {
    padding: 60px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
  /* FOOTER */
  .footer-top {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .newsletter-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-box input,
  .newsletter-box button {
    width: 100%;
  }

  /* SECTION SPACING */
  .section {
    padding: 40px 20px;
  }
}
