@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  background-color: #ffffff;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 100%;
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
  max-width: 1600px;
}

.navbar-logo img {
  width: 150px; /* Adjust to your preference */
  height: auto; /* Keeps aspect ratio */
}

.navbar-container .navbar-menu {
  display: flex;
  text-align: center;
  gap: 1.3rem;
  list-style-type: none;
}

.navbar-container .navbar-menu li a {
  text-decoration: none;
  color: #0041c2;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 3px 20px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.7s ease;
  white-space: nowrap;
}

.navbar-container
  .navbar-menu
  li
  a:hover
  .navbar-container
  .navbar-menu
  li
  a.active {
  background-color: #0041c2;
  color: #fff;
  border: 2px solid #0041c2;
}

.navbar-toggle {
  display: none;
  background: transparent;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #0041c2;
  transition: all 0.3s ease-in-out;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  padding: 40px 20px;
}
.about-h1 {
  height: 400px;
  width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #0041c2;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 20px;
  padding: 10px 20px;
  border-radius: 10px;
}

.about-h1 a {
  margin-top: 20px;
  padding: 10px 20px;
  background: #1ba9f5;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.about-h1 a:hover {
  background-color: #0c0c0c;
}
span {
  color: #1ba9f5;
  font-size: 40px;
  font-weight: 700;
}
.inline-span {
  font-size: 20px;
}
.about-content {
  max-width: 70%;
  text-align: left;
  font-size: 1rem;
  color: #0c0c0c;
  line-height: 1.8;
  margin-bottom: 20px;
}

.boast {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  margin-bottom: 40px;
}

.pitch {
  max-width: 400px;
  padding: 10px;
  border-radius: 5px;
  color: #000000;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  align-items: left;
  text-align: left;
  gap: 10px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.pitch-span {
  color: #515151;
  font-size: 20px;
  font-weight: 700;
}

.footer {
  display: flex;
  flex-direction: row;
  gap: 40px;
  background: #ffffff;
  padding: 3rem 2rem;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.footer-logo img {
  width: 160px;
  margin-bottom: 0.5rem;
}

.tagline {
  color: #0041c2;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.col-title {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}

.footer-col a,
.footer-col p {
  font-size: 13px;
  color: #0c0c0c;
  text-decoration: none;
  line-height: 1.6;
}

.footer-col a:hover {
  color: #0073ff;
}

.footer-col i {
  color: #0041c2;
  margin-right: 8px;
}

.social-icons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 8px;
}

.social-icons a i {
  font-size: 22px;
  color: #0041c2;
}

.social-icons a i:hover {
  color: #1ba9f5;
}

.copyright {
  background: #0041c2;
  text-align: center;
  padding: 1rem;
  font-size: 12px;
  color: #ffffff;
  border-top: 0.5px solid #222;
}

@media (max-width: 880px) {
  .navbar-container .navbar-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.7rem !important;
    position: absolute;
    height: 100vh;
    width: 250px;
    top: 0;
    right: 0;
    padding: 5rem 1.5rem;
    background-color: white;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  }
  .navbar-container .navbar-menu.active {
    display: flex;
  }
  .navbar-toggle {
    display: block;
    z-index: 999;
  }

  .navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .navbar-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .navbar-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Smaller screen */

@media (max-width: 480px) {
  .navbar-container {
    padding: 0 1rem;
  }

  .navbar-logo {
    font-size: 1.5rem;
  }
  .navbar-container .navbar-menu li a {
    font-size: 1.1rem;
    padding: 3px 15px;
  }
  .footer {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: #ffffff;
    padding: 3rem 2rem;
    align-items: flex-start;
  }

  .about-h1 {
    height: 350px;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #0041c2;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    margin: 20px;
    padding: 10px 20px;
    border-radius: 10px;
  }

  .about-h1 a {
    margin-top: 20px;
    padding: 10px 20px;
    background: #1ba9f5;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  span {
    color: #1ba9f5;
    font-size: 30px;
    font-weight: 700;
  }

  .about-content {
    max-width: 70%;
    text-align: left;
    font-size: 0.9rem;
    color: #0c0c0c;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .about-content {
    max-width: 80%;
    text-align: left;
    font-size: 1rem;
    color: #0c0c0c;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .boast {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-bottom: 40px;
  }

  .pitch {
    max-width: 250px;
    padding: 10px;
    border-radius: 5px;
    color: #000000;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: left;
    text-align: left;
    gap: 5px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .pitch-span {
    color: #515151;
    font-size: 16px;
    font-weight: 700;
  }
}
