@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap");
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  margin: 0px;
  padding: 0px;
  font-family: "Inter", sans-serif;
  background-color: #f9f9f9;
  font-family: "Poppins", sans-serif;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
  position: relative;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #111;
  margin-left: -50px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn.solid {
  background-color: #3b2ce3;
  color: white;
  border: none;
}

.btn.outline {
  background-color: transparent;
  color: #3b2ce3;
  border: 2px solid #3b2ce3;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100vh;
  background-color: rgba(34, 34, 34, 0.9);
  color: white;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
  transition: left 0.3s ease;
}

.mobile-menu a,
.mobile-menu button {
  color: white;
  text-align: left;
  text-decoration: none;
  background: none;
  border: none;
  font-size: 1rem;
}

.close-btn {
  align-self: flex-end;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 900;
}

@media screen and (max-width: 768px) {
  .nav-links,
  .auth-buttons {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}
/* Contact us start  */


.contact-section {
  background-color: #f9fbfc;
}

.contact-title {
  font-size: 2rem;
}

.contact-subtext {
  font-size: 1rem;
  color: #6b7280;
  max-width: 600px;
  margin: auto;
}

.contact-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e4e4e4;
}

.input-custom {
  border-radius: 8px;
  border: 1px solid #d0d0d0;
  padding: 10px 14px;
  font-size: 0.95rem;
}

.input-custom:focus {
  border-color: #236df7;
  box-shadow: 0 0 0 0.15rem rgba(35, 109, 247, 0.25);
}

.btn-send {
  border-radius: 8px;
  background-color: #236df7;
  font-weight: 600;
}

.btn-send:hover {
  background-color: #1d5ee1;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-blue {
  background-color: #3b82f6;
}

.bg-purple {
  background-color: #6366f1;
}

.bg-gray {
  background-color: #6b7280;
}

.cta-card {
  background-color: #1f52dc;
  border-radius: 12px;
}

.cta-card .btn {
  border-radius: 8px;
  font-size: 0.95rem;
}

/* Contact us end */

/* Footer start  */


.footer {
  background-color: #02033B;
  color: white;
  font-family: Arial, sans-serif;
}

.newsletter-box {
  background-color: #FFC247;
  border-radius: 25px;
  padding: 2rem;
  background-image: url('../assets/Icons/certo-dark-yellow.svg.png');
  /* Replace with actual image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  max-width: 400px;
}

.newsletter-box h5 {
  font-weight: 700;
  color: #1D1D1D;
}

.newsletter-box p {
  font-size: 0.9rem;
  color: #1D1D1D;
}

.newsletter-input {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 1rem;
}

.newsletter-input input {
  flex: 1;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.newsletter-input button {
  background-color: #02004D;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.footer-links h6 {
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.contact-info p {
  font-size: 0.9rem;
  margin: 0.2rem 0;

}

.contact-info p a {
  text-decoration: none;
  color: white;
}

.social-icons a {
  color: white;
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid white;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 768px) {
  .newsletter-box {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .newsletter-input input {
    padding: 0.5rem;
  }

  .newsletter-input button {
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }
}