/* ===== Reset & Basics ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: 'Outfit', sans-serif;
  background: #fff;
  color: #111;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
}

main {
  flex-grow: 1;
}

/* ===== Header ===== */
/* ---------- Header ---------- */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
}

.logo img {
  max-height: 90px;
  width: auto;
}

/* ---------- Navigation Links ---------- */
nav ul.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul.nav-links li a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

nav ul.nav-links li a:hover,
nav ul.nav-links li a:focus {
  color: #004a99;
  background-color: rgba(0, 74, 153, 0.15);
  box-shadow: 0 0 8px rgba(0, 74, 153, 0.4);
  border: 1px solid #004a99;
  outline: none;
}

/* ---------- Hamburger (Hidden on Desktop) ---------- */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #222;
}

/* ---------- Responsive (Mobile) ---------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 22px;
    z-index: 1001;
  }

  nav ul.nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    right: 0;
    background: #fff;
    width: 75%;
    height: 100vh;
    padding: 30px 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  
  .logo img {
    max-height: 55px;
    width: auto;
  }

  nav ul.nav-links.open {
    display: flex;
    transform: translateX(0);
  }

  nav ul.nav-links li {
    margin-bottom: 20px;
  }
}




/* ===== Main Section Styles ===== */
.section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Content blocks */
.block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.block .image {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  text-align: center;
}

.block .image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.block .image img:hover {
  transform: scale(1.05);
}

.block .content {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

.block .content h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  color: #111;
  font-weight: 700;
}

.block .content p {
  font-size: 1.125rem;
  color: #444;
  line-height: 1.6;
}

/* Reverse layout for mission block */
.block.mission {
  flex-direction: row-reverse;
}

/* ===== What Sets Us Apart Section ===== */
.sets-us-apart-section {
  background: #f4faff;
  padding: 4rem 1rem 6rem;
  font-family: 'Outfit', sans-serif;
  color: #1a1a1a;
  max-width: 1200px;
  margin: 0 auto 80px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 123, 189, 0.15);
}

.sets-us-apart-section .container {
  padding: 0 20px;
}

.section-title {
  font-size: 2.75rem;
  color: #007bbd;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,123,189,0.3);
}

/* Feature Cards Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Feature Card */
.feature-card {
  background: white;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 123, 189, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(0, 123, 189, 0.25);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #007bbd;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

/* ===== Why Choose Us Section ===== */
..why-choose-us {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
  overflow-x: auto;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  color: #007bbd;
  margin-bottom: 2.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
}

/* Stats Grid - now a horizontal scrollable row */
.stats {
  display: flex;
  flex-wrap: nowrap; /* Force one line */
  justify-content: flex-start;
  gap: 2rem;
  padding-bottom: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.stat {
  background: white;
  padding: 2rem 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 123, 189, 0.1);
  width: 250px;
  min-width: 250px;
  text-align: center;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
}

.stat:hover,
.stat:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 123, 189, 0.25);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #007bbd;
  margin-bottom: 1rem;
  letter-spacing: 1.2px;
}

.stat-label {
  font-size: 1.15rem;
  color: #555;
  font-weight: 600;
  line-height: 1.3;
}

/* CTA Section */
.cta {
  max-width: 750px;
  margin: 2rem auto 0;
  padding-top: 1rem;
}

.cta p {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 2rem;
  line-height: 1.5;
  user-select: none;
}

.btn-primary {
  background-color: #007bbd;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 15px 45px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 0 7px 20px rgba(0, 123, 189, 0.4);
  transition: background-color 0.3s ease, transform 0.2s ease;
  user-select: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #005f8a;
  transform: scale(1.07);
  outline: none;
}

/* ===== Footer ===== */
footer {
  background-color: #001f3f;
  color: #aad8ff;
  font-family: 'Outfit', sans-serif;
  padding: 3rem 2rem 2rem;
  font-size: 1rem;
  user-select: none;
  text-align: center;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 220px;
  text-align: left;
}

.footer-col h3 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #50aaff;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  margin-bottom: 12px;
}

nav ul li a {
  color: #aad8ff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  font-weight: 500;
}

nav ul li a:hover,
nav ul li a:focus {
  color: #50aaff;
  transform: translateX(6px);
  outline: none;
}

.social-icons {
  display: flex;
  gap: 1.25rem;
  justify-content: start;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #003366;
  color: #aad8ff;
  font-size: 1.25rem;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(80, 170, 255, 0.4);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.social-icons a:hover,
.social-icons a:focus {
  background-color: #50aaff;
  color: #001f3f;
  transform: scale(1.2);
  outline: none;
  box-shadow: 0 0 18px #50aaff;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid #003366;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #6699cc;
  user-select: none;
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 768px) {
  .section {
    margin: 40px 15px;
  }

  .block {
    flex-direction: column;
    text-align: left;
  }

  .block.mission {
    flex-direction: column;
  }

  .block .image,
  .block .content {
    max-width: 100%;
    width: 100%;
  }

  .block .content h2 {
    font-size: 1.75rem;
  }

  .block .content p {
    font-size: 1rem;
  }

  .features {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}
