@import url('https://fonts.googleapis.com/css?family=League+Spartan&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'League Spartan', sans-serif;
}

h1, h2, h4, h6, p {
  color: #222;
}

h1 {
  font-size: 50px;
  line-height: 64px;
}

h2 {
  font-size: 46px;
  line-height: 54px;
}

h4 {
  font-size: 20px;
}

h6 {
  font-size: 12px;
  font-weight: 700;
}

p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px;
}

/* Sections */
.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

/* Header */
#header {
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background: #E3E6F3;
  box-shadow: 0 15px rgba(0, 0, 0, 0.06);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar li {
  list-style: none;
  padding: 0 20px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a:active {
  color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30%;
  height: 2px;
  background: #088178;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

/* Page Header (About Page) */
#page-header.about-header {
  background: url("https://cdn.wallpapersafari.com/56/23/4aTQWe.jpg") center/cover no-repeat;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
}

#page-header.about-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

#page-header.about-header p {
  font-size: 18px;
}

/* About Section */
#about-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#about-head img {
  width: 50%;
  border-radius: 12px;
}

#about-head div {
  width: 45%;
}

#about-head h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

#about-head p {
  color: #465b52;
  line-height: 1.6;
  margin-bottom: 20px;
}

#about-head abbr {
  color: #088178;
  font-weight: 600;
}

/* Mission Section */
#about-mission {
  background: #f5f5f5;
  text-align: center;
  border-radius: 12px;
}

#about-mission .mission-box {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}

#about-mission h2 {
  margin-bottom: 20px;
}

/* Features Section */
#about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  text-align: center;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.feature-card i {
  font-size: 36px;
  color: #088178;
  margin-bottom: 15px;
}

/* Call to Action */
#about-cta {
  text-align: center;
  background: #e3e6f3;
  padding: 60px 20px;
  border-radius: 12px;
}

#about-cta h2 {
  margin-bottom: 10px;
}

#about-cta p {
  margin-bottom: 20px;
  color: #465b52;
}

button.normal {
  background: #088178;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
}

button.normal:hover {
  background: #065e58;
}

/* Responsive */
@media (max-width: 768px) {
  #header {
    padding: 20px;
    flex-direction: column;
  }

  #navbar {
    flex-wrap: wrap;
  }

  #about-head {
    flex-direction: column;
  }

  #about-head img,
  #about-head div {
    width: 100%;
  }

  .section-p1 {
    padding: 20px;
  }

  #about-mission .mission-box {
    padding: 30px 10px;
  }
}

/* Footer */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #f5f5f5;
  padding: 60px 80px;
}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

footer h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

footer p,
footer a {
  font-size: 14px;
  color: #465b52;
  margin-bottom: 8px;
  text-decoration: none;
  transition: 0.3s;
}

footer a:hover {
  color: #088178;
}

footer .follow {
  margin-top: 20px;
}

footer .follow i {
  color: #465b52;
  padding-right: 8px;
  cursor: pointer;
  transition: 0.3s;
}

footer .follow i:hover {
  color: #088178;
}

footer .install img {
  border: 1px solid #088178;
  border-radius: 6px;
  width: 120px;
  margin: 10px 10px 15px 0;
}

footer .copyright {
  width: 100%;
  text-align: center;
  border-top: 1px solid #eaeaea;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: #465b52;
}
