/* @import '~bootstrap-icons/font/bootstrap-icons'; */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&family=Poppins:wght@400;500;600;700&display=swap');

main h1,
main h2,
main h3,
section h2,
section h3,
p,
a {
  font-family: 'Inter', sans-serif;
}

a {
  color: #1372b6;
  text-decoration: underline;
}

a:hover {
  color: #0d5a8a;
  text-decoration: underline;
}

/* Focus styles for better keyboard navigation */
a:focus,
button:focus,
.btn:focus {
  outline: 2px solid #1372b6 !important;
  outline-offset: 2px !important;
}

/* Improve focus visibility for all interactive elements */
*:focus {
  outline: 2px solid #1372b6 !important;
  outline-offset: 2px !important;
}

b {
  color: #1372b6;
}

p {
  font-size: 18px;
  font-weight: 500;
  line-height: 26.1px;
  word-wrap: break-word;
  color: #687281;
}
/* Heading */
main h1 {
  text-align: center;
  font-weight: 800;
  font-size: 4rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

/* Subheading */
main h2 {
  text-align: center;
  font-weight: 400;
  color: #687281;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.nav-links {
  text-align: center;
  margin-bottom: 2rem;
}

a.nav-link {
  color: #1372b6;
  font-size: 18px;
  font-weight: 500;
}

main h3 {
  text-align: center;
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

section {
  padding-top: 32px;
  padding-bottom: 32px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  gap: 20px;
}

section h2 {
  text-align: left;
  color: black;
  font-size: 24px;
  font-weight: 600;
}

section h3 {
  text-align: left;
  color: black;
  font-size: 24px;
  font-weight: 600;
}

section.mahi-section h3 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Contact page */
.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.contact-form-width {
  max-width: 800px;
  flex-grow: 1;
}

button.btn,
a.btn {
  font-size: 18px;
  font-weight: medium;
  border-radius: 12px;
}

.btn.btn-primary {
  background: #000000;
  border: 2px solid #000000;
  color: #ffffff;
}

.btn.btn-secondary {
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.15);
  color: #000000;
}

.img-fluid {
  width: 100%;
  height: 100%;
}

footer {
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  border-width: 1px 0px 0px;
  padding: 24px 0px;
}

/* Scroll animations */
.fade-slide-up,
.fade-slide-left,
.fade-slide-right {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.fade-slide-left {
  transform: translateX(-40px);
}

.fade-slide-right {
  transform: translateX(40px);
}

.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
