* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  background: #fff;
  color: #031c47;
  overflow-x: hidden;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none !important;
}

.container {
  width: 92%;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container2 {
  width: 88%;
  margin: auto;
}

/* TOP HEADER */

.top-header {
  background: #02152f;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
}

.top-header .container {
  width: 88%;
  gap: 25px;
}

.top-contact,
.top-social {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-contact a,
.top-social a {
  color: #c8d2df !important;
  transition: .3s;
}

.top-contact a:hover,
.top-social a:hover {
  color: #d8a74f !important;
}

.top-contact i {
  color: #d8a74f;
  margin-left: 7px;
}

.top-message {
  color: #d8a74f;
  font-weight: 800;
  text-align: center;
}

.top-social {
  gap: 14px;
}

.top-social a {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.top-social a:hover {
  background: #d8a74f;
  color: #02152f !important;
}

/* HEADER */

.header {
  width: 100%;
  height: 88px;
  background: rgba(244,245,247,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 8px 28px rgba(3,28,71,.06);
}

.logo img {
  width: 92px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links li a {
  color: #031c47 !important;
  font-size: 16px;
  font-weight: 800;
  position: relative;
  transition: .3s;
}

.nav-links li a:hover,
.nav-links li.active a {
  color: #d8a74f !important;
}

.nav-links li.active a::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: 0;
  width: 100%;
  height: 3px;
  background: #d8a74f;
  border-radius: 10px;
}

.consult-btn {
  width: 185px;
  height: 50px;
  background: #031c47;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 900;
  transition: .3s;
  box-shadow: 0 12px 28px rgba(3,28,71,.16);
}

.consult-btn:hover {
  background: #05285f;
  transform: translateY(-3px);
  color: #fff !important;
}

/* HERO */

.about-hero {
  background:
    linear-gradient(rgba(3,28,71,.88), rgba(3,28,71,.88)),
    url("about-us.png") center/cover no-repeat;
  padding: 120px 0;
  text-align: center;
  color: #fff;
}

.about-hero span {
  color: #d8a74f;
  font-size: 18px;
  font-weight: 900;
}

.about-hero h1 {
  max-width: 850px;
  margin: 20px auto;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.5;
}

.about-hero p {
  max-width: 760px;
  margin: auto;
  font-size: 18px;
  line-height: 2;
  color: #e9eef5;
}

/* ABOUT */

.about-section {
  padding: 90px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.about-img {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(3,28,71,.12);
  border: 1px solid rgba(3,28,71,.08);
}

.about-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.small-title {
  color: #d8a74f;
  font-size: 17px;
  font-weight: 900;
}

.about-content h2 {
  color: #031c47;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.5;
  margin: 15px 0 20px;
}

.about-content p {
  color: #555;
  font-size: 17px;
  line-height: 2;
  margin-bottom: 16px;
}

.about-btn {
  margin-top: 15px;
  width: 190px;
  height: 56px;
  background: #031c47;
  color: #fff !important;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  transition: .3s;
}

.about-btn:hover {
  background: #d8a74f;
  color: #031c47 !important;
  transform: translateY(-3px);
}

/* MISSION */

.mission-section {
  padding: 80px 0;
  background: #f7f9fc;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.info-card {
  background: #fff;
  border: 1px solid #e6eaf0;
  border-radius: 24px;
  padding: 36px 28px;
  box-shadow: 0 16px 38px rgba(3,28,71,.07);
  transition: .35s;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(3,28,71,.14);
}

.info-card i {
  width: 62px;
  height: 62px;
  background: rgba(216,167,79,.14);
  color: #d8a74f;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

.info-card h3 {
  color: #031c47;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 12px;
}

.info-card p {
  color: #666;
  font-size: 16px;
  line-height: 1.9;
}

/* STATS */

.stats-section {
  background:
    linear-gradient(rgba(3,28,71,.92), rgba(3,28,71,.92)),
    url("about-us.png") center/cover fixed;
  padding: 75px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat-box {
  text-align: center;
  color: #fff;
  padding: 28px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}

.stat-box h3 {
  color: #d8a74f;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 17px;
  font-weight: 800;
}

/* WHY */

.why-section {
  padding: 90px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
}

.section-title span {
  color: #d8a74f;
  font-size: 17px;
  font-weight: 900;
}

.section-title h2 {
  color: #031c47;
  font-size: 40px;
  font-weight: 900;
  margin: 12px 0;
}

.section-title p {
  color: #666;
  font-size: 17px;
  line-height: 1.9;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  background: #fff;
  border: 1px solid #e6eaf0;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 16px 38px rgba(3,28,71,.07);
  text-align: center;
  transition: .35s;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(3,28,71,.14);
}

.why-card i {
  width: 62px;
  height: 62px;
  background: #031c47;
  color: #d8a74f;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  margin-bottom: 20px;
}

.why-card h3 {
  color: #031c47;
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 10px;
}

.why-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.9;
}

/* FOOTER */

.footer {
  background: #02152f;
  padding-top: 70px;
}

.footer-container {
  width: 88%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 45px;
  padding-bottom: 45px;
}

.footer-col h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 25px;
}

.footer-about img {
  width: 120px;
  margin-bottom: 20px;
}

.footer-about p {
  color: #c8d2df;
  line-height: 2;
  font-size: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 16px;
}

.footer-col ul li a {
  color: #c8d2df !important;
  font-size: 15px;
  transition: .3s;
}

.footer-col ul li a:hover {
  color: #d8a74f !important;
}

.contact-info li {
  color: #c8d2df;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info li i {
  color: #d8a74f;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  transition: .3s;
}

.social-links a:hover {
  background: #d8a74f;
  color: #031c47 !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px;
  text-align: center;
  color: #c8d2df;
  font-size: 14px;
}

/* WHATSAPP */

.floating-whatsapp {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  background: #25d366;
  color: #fff !important;
  border-radius: 50%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 18px 40px rgba(37,211,102,.35);
  transition: .3s;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.08);
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .header {
    height: auto;
    padding: 18px 0;
  }

  .container {
    flex-direction: column;
    gap: 18px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .top-header .container {
    flex-direction: column;
    gap: 10px;
  }

  .top-contact {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .about-img img {
    height: 360px;
  }

  .about-hero h1 {
    font-size: 38px;
  }

  .about-content h2,
  .section-title h2 {
    font-size: 32px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .container,
  .container2 {
    width: 92%;
  }

  .about-hero {
    padding: 80px 0;
  }

  .about-hero h1 {
    font-size: 30px;
  }

  .about-section,
  .mission-section,
  .why-section {
    padding: 55px 0;
  }

  .stats-section {
    padding: 55px 0;
  }

  .stats-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
    font-size: 28px;
    left: 16px;
    bottom: 16px;
  }
}