* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #fafcff;
  color: #1e2b3c;
  line-height: 1.5;
}

/* container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* header / navigation */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  gap: 1rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(145deg, #1e3557, #2a4b7c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
  color: #2d4059;
  transition: 0.2s;
  font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: #1d4e89;
  border-bottom: 2px solid #1d4e89;
  padding-bottom: 4px;
}

.header-cta {
  background: #1d4e89;
  color: white;
  border: none;
  padding: 0.65rem 1.8rem;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 8px 14px -6px rgba(29, 78, 137, 0.25);
}

.header-cta:hover {
  background: #123b63;
  transform: scale(1.02);
}

/* mobile menu button (js toggle) */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid #ccdbe9;
  border-radius: 12px;
  font-size: 1.8rem;
  padding: 0.2rem 0.9rem;
  color: #1d4e89;
  cursor: pointer;
}

/* hero section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  margin: 2.5rem 0 4rem 0;
}

.hero-content {
  flex: 1 1 350px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0b1d2f;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: #1d4e89;
  border-bottom: 3px solid #e7eef5;
  display: inline-block;
  padding-bottom: 2px;
}

.hero-desc {
  font-size: 1.1rem;
  color: #445e77;
  max-width: 500px;
  margin-bottom: 2.2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons a {
  text-decoration: none;
}

.btn-primary {
  background: #1d4e89;
  color: white;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 12px 20px -8px rgba(29, 78, 137, 0.35);
}

.btn-primary:hover {
  background: #123b63;
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #1d4e89;
  color: #1d4e89;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: #1d4e89;
  color: white;
  transform: translateY(-3px);
}

.hero-image {
  flex: 1 1 350px;
  border-radius: 38px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 30px 30px -15px rgba(0, 30, 50, 0.15);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

stats .stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: white;
  border-radius: 40px;
  padding: 2rem 2.5rem;
  margin: 3rem 0 4rem;
  box-shadow: 0 15px 30px -12px rgba(29, 78, 137, 0.08);
}

.stat-item {
  text-align: center;
  flex: 1 0 120px;
}

.stat-number {
  font-size: 2.3rem;
  font-weight: 700;
  color: #1d4e89;
}

.stat-label {
  color: #566e86;
  font-weight: 400;
  font-size: 1rem;
}

/* services / management features */
.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #14273e;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: #46617b;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin: 3rem 0 5rem;
}

.feature-card {
  background: white;
  padding: 2rem 1.8rem;
  border-radius: 30px;
  transition: 0.2s;
  box-shadow: 0 10px 20px -5px #e1eaf1;
  border: 1px solid #f0f5fa;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 30px -12px #c1d5e8;
}

.feature-icon {
  background: #e8f0fe;
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #1d4e89;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.feature-card p {
  color: #4f657e;
  font-size: 0.95rem;
}

/* footer */
.footer {
  background: #122b41;
  color: #e6edf6;
  border-radius: 40px 40px 0 0;
  padding: 3rem 5rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
}
.footer-col:last-child {
  text-align: right;
}

.footer-col p {
  color: #b7cfdd;
  margin: 1rem 0;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin: 0.7rem 0;
}

.footer-col a {
  color: #c7dbea;
  text-decoration: none;
}

.footer-col a:hover {
  color: white;
}

.social-icons {
  display: flex;
  gap: 1.2rem;
  font-size: 1.6rem;
  margin-top: 1.5rem;
}

.copyright {
  border-top: 1px solid #294e6e;
  margin-top: 2.5rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #a0bbcf;
}

/* responsive adjustments */
@media (max-width: 850px) {
  .nav-links {
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 15px 30px -8px #bacddc;

    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.35s ease;
  }

  .nav-links.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .menu-toggle {
    display: inline-block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .stats {
    flex-direction: column;
    gap: 1.8rem;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
  .footer {
    padding: 3rem 2rem; /* reduce side padding for mobile */
  }

  .footer-grid {
    grid-template-columns: 1fr; /* single column */
    gap: 2.5rem;
  }

  .footer-col:last-child {
    text-align: left; /* reset right align */
  }

  .social-icons {
    justify-content: flex-start; /* keep icons aligned nicely */
  }

  .logo {
    font-size: 1rem;
  }
}

/* HERO ABOUT */
.about-hero {
  text-align: center;
  padding: 4rem 0 3rem;
}

.about-hero h1 {
  font-size: 3rem;
  color: #0b1d2f;
  margin-bottom: 1rem;
}

.about-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: #445e77;
  font-size: 1.1rem;
}

/* MISSION SECTION */
.mission {
  background: white;
  border-radius: 40px;
  padding: 3rem;
  margin: 3rem 0;
  box-shadow: 0 20px 40px -15px rgba(29, 78, 137, 0.1);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mission-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #14273e;
}

.mission-text p {
  color: #4f657e;
  margin-bottom: 1rem;
}

.mission-img {
  border-radius: 30px;
  overflow: hidden;
  height: 300px;
}

.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* VALUES */
.values {
  margin: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #14273e;
  margin-bottom: 1rem;
}

.section-sub {
  text-align: center;
  color: #46617b;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 30px;
  box-shadow: 0 10px 20px -5px #e1eaf1;
  border: 1px solid #f0f5fa;
  text-align: center;
  transition: 0.25s;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 30px -12px #c1d5e8;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: #e8f0fe;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #1d4e89;
  margin: 0 auto 1.2rem;
}

/* TEAM */
.team {
  margin: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  background: white;
  border-radius: 30px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 20px -5px #e1eaf1;
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-card h4 {
  margin-bottom: 0.3rem;
}

.team-card span {
  color: #1d4e89;
  font-weight: 500;
  font-size: 0.9rem;
}

/* ABOUT HERO */
@media (max-width: 850px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  /* MISSION SECTION */
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-img {
    height: 250px;
  }

  .mission-text h2 {
    font-size: 1.8rem;
  }

  .mission-text p {
    font-size: 1rem;
  }

  /* VALUES SECTION */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .value-card {
    padding: 1.5rem;
  }

  .value-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  /* TEAM SECTION */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .team-card {
    padding: 1.5rem;
  }

  .team-card img {
    width: 100px;
    height: 100px;
  }

  .team-card h4 {
    font-size: 1.1rem;
  }

  .team-card span {
    font-size: 0.85rem;
  }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 1.8rem;
  }

  .about-hero p {
    font-size: 0.95rem;
  }

  .mission-img {
    height: 200px;
  }

  .mission-text h2 {
    font-size: 1.5rem;
  }

  .mission-text p {
    font-size: 0.95rem;
  }

  .value-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .team-card img {
    width: 80px;
    height: 80px;
  }

  .team-card h4 {
    font-size: 1rem;
  }

  .team-card span {
    font-size: 0.8rem;
  }

  .mission,
  .values,
  .team {
    padding: 2rem 1rem;
  }
}

.contact-hero {
  text-align: center;
  padding: 4rem 0 3rem;
}

.contact-hero h1 {
  font-size: 3rem;
  color: #0b1d2f;
  margin-bottom: 1rem;
}

.contact-hero p {
  max-width: 650px;
  margin: 0 auto;
  color: #445e77;
  font-size: 1.1rem;
}

/* CONTACT CARDS */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0 5rem;
}

.contact-card {
  background: white;
  padding: 2.5rem;
  border-radius: 30px;
  box-shadow: 0 15px 30px -10px rgba(29, 78, 137, 0.1);
  text-align: center;
  transition: 0.25s;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 35px -12px rgba(29, 78, 137, 0.18);
}

.contact-icon {
  width: 65px;
  height: 65px;
  background: #e8f0fe;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #1d4e89;
  margin: 0 auto 1.5rem;
}

.contact-card h3 {
  margin-bottom: 0.6rem;
}

.contact-card p {
  color: #4f657e;
}

/* OFFICE SECTION */
.offices {
  background: white;
  padding: 3rem;
  border-radius: 40px;
  box-shadow: 0 20px 40px -15px rgba(29, 78, 137, 0.1);
  margin-bottom: 5rem;
}

.offices h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #14273e;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.office-card {
  padding: 1.5rem;
  border-radius: 20px;
  background: #f6f9fc;
}

.office-card h4 {
  margin-bottom: 0.5rem;
  color: #1d4e89;
}

.office-card p {
  font-size: 0.95rem;
  color: #4f657e;
}

/* CTA */
.cta {
  text-align: center;
  margin-bottom: 5rem;
}

.btn-primary {
  background: #1d4e89;
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 12px 20px -8px rgba(29, 78, 137, 0.35);
}

.btn-primary:hover {
  background: #123b63;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.2rem;
  }
}

/* FAQ SECTION */
.faq-section {
  padding: 5rem 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h1 {
  font-size: 2.8rem;
  color: #0b1d2f;
  margin-bottom: 1rem;
}

.faq-header p {
  max-width: 650px;
  margin: 0 auto;
  color: #445e77;
  font-size: 1.1rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: white;
  border-radius: 30px;
  box-shadow: 0 15px 30px -10px rgba(29, 78, 137, 0.1);
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #14273e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  color: #1d4e89;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: #4f657e;
  font-size: 0.95rem;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 2rem;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}
