@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;
  }
}

/* contact us */

.form-container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.sub-heading {
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.form-control {
  padding: 0.75rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: #666;
}

textarea.form-control {
  min-height: 200px;
}

.submit-btn {
  background-color: #222;
  color: white;
  padding: 0.75rem 3rem;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  transition: background-color 0.3s;
}
.back {
  background-color: #fff;
  color: #333;
}
.submit-btn:hover {
  background-color: #000;
}

.phone-number {
  color: #666;
  text-decoration: none;
}

.phone-number:hover {
  color: #333;
}

/* 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;
}

.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;
}
