/* styles.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #1a1a2e;
  background: #fff;
}

/* ── Navigation Bar ── */
.navbar {
  background: #0d1b4b;
  padding: 12px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #4a6cf7;
}

/* ── Hero with Enhanced Professional Pattern Background ── */
.hero {
  background: 
   linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)),
    url("images/grid_banner.jpg") center/cover no-repeat;
  text-align: center;
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h2 {
  color: #FFFFFF;
}

.hero h1 .highlight {
  color: #4a6cf7;
}

.hero p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  background: #4a6cf7;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #3a5ce5;
}

.sub-note {
  font-size: 0.8rem;
  color: #888;
  margin-top: 8px;
}

/* ── Mission ── */
.mission {
  padding: 60px 20px;
  max-width: 1140px; /* 1200px - 30px left - 30px right */
  margin: 30px auto;
}

.mission-label {
  font-size: 1.25rem;
  font-weight: 600;
  color: #4a6cf7;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.mission h2 {
  font-size: 1.50rem;
  font-weight: 800;
  color: #0d1b4b;
  line-height: 1.25;
}

.mission h2 span {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
}

.mission-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  flex-direction: row;
}

.mission-column1 {
  flex: 0 0 300px;
}

.mission-column2 {
  flex: 1;
  min-width: 500px;
}

.mission-column2 h2:last-child {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  line-height: 1.6;
}
  

/* ── How It Works ── */
.how-it-works {
  background: #0d1b4b;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 20px;
  margin: 20px 40px;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #a0b4ff;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.how-it-works h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
  width: 200px;
  text-align: left;
}

.step-num {
  display: inline-block;
  background: #4a6cf7;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  text-align: center;
  line-height: 22px;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.step p {
  font-size: 0.78rem;
  color: #a0b4cc;
  line-height: 1.5;
}

/* ── Footer ── */
footer {
  background: #0a1535;
  color: #ccc;
  padding: 50px 40px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-top: 0;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #4a6cf7;
  margin-bottom: 16px;
}

.footer-left {
  max-width: 320px;
}

.footer-left p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: #aaa;
}

.footer-location {
  margin-top: 12px;
  font-size: 0.8rem;
  color: #888;
}

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

.footer-links h4 {
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  font-size: 0.82rem;
  color: #aaa;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  font-size: 0.78rem;
  color: #666;
}




/* ── Team Section ── */
.team-section {
  padding: 60px 20px;
  background: #fff;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d1b4b;
  text-align: center;
  margin-bottom: 40px;
}

.team-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  padding: 30px 0;
  border-bottom: 1px solid #e0e7ff;
}

.team-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.team-image {
  flex: 0 0 300px;
}

.image-placeholder {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.team-text {
  flex: 1;
  max-width: 500px;
}

.team-text h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0d1b4b;
  margin-bottom: 12px;
}

.team-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Reverse layout for alternating rows */
.team-row.reverse {
  flex-direction: row-reverse;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .team-row {
    flex-direction: column;
    gap: 20px;
  }
  .team-image {
    flex: 0 0 200px;
  }
  .image-placeholder {
    height: 200px;
  }
  .team-text {
    max-width: 100%;
  }
}


.team-section {
  padding: 60px 200px;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px; /* Optional: limits width on very large screens */
}

