@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

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

[data-bs-theme="dark"] .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar[data-bs-theme="dark"] {
  --bs-navbar-hover-color: rgba(255, 255, 255, 1);
}

.head {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 500;
}

.navbar-toggler {
  color: black;
  outline: none;
  border: none;
}
.logo {
  width: 200px;
}

/* hero */
.heads {
  background-color: #000;
  color: #fff;
}
.hero {
  height: calc(55vh - 80px);
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 5rem;
  font-weight: bold;
  letter-spacing: 0.5rem;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

/* we pride */
.main-heading {
  font-size: 3rem;
  font-weight: 700;
  /* width: 50%; */
  line-height: 1.2;
}

.content-text {
  font-size: 1.3rem;
  line-height: 2;
  color: #6f6f6f;
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 2.5rem;
  }
}

/* new */

.stats-section {
  padding: 150px 0;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

.stat-heading {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.stat-description {
  color: #a9a9a9;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .stat-heading {
    font-size: 1.5rem;
  }
  .stat-description {
    font-size: 0.9rem;
  }
}

/* we would */

.main {
  background-color: #edebeb;
  color: #000;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section {
  text-align: center;
}

.cta-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.cta-button {
  color: #000;
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 30px;
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .cta-heading {
    font-size: 2rem;
  }
}

/* footer */

.footer {
  background-color: #000;
  color: #fff;
  padding: 4rem 0 2rem;
}
.footer-logo {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.footer-logo span {
  color: #ff4500;
}
.social-icons {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.social-icons a {
  color: #fff;
  margin-right: 1rem;
}
.footer-nav {
  list-style: none;
  padding: 0;
}
.footer-nav li {
  margin-bottom: 0.5rem;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
}
.footer-heading {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1rem;
}
.footer-contact {
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer-blog-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.footer-blog-link {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #888;
}
.links {
  text-decoration: none;
  color: #fff;
}
