@media (max-width: 991.98px) {
  .navbar-brand img {
    height: 45px;
    width: auto;
    margin-top: -30px; /* pull logo up */
  }
  .navbar {
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
  }
}
body {
  font-family: "Lora", serif;
  color: #1c1c1c;
  font-size: 16px;
  background-color: #f8f9fa;
}

/* navbar details */
.navbar {
  height: 140px;
  font-family: "Lora", serif;
  background-color: #0a3d62;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.navbar-nav .nav-link {
  color: #ffffff;
  margin: 0 10px;
  padding: 8px 12px;
  font-weight: 500;
}
.navbar-nav .nav-link:hover {
  background-color: #227093;
  border-radius: 6px;
  color: #fff;
}
.navbar-brand img {
  height: 180px;
  width: 230px;
  object-fit: contain;
}

/* .offer-btn {
  background-color: #38a1db;
  color: #fff;
  width: 100px;
  margin-left: 8px;
  text-align: center;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
} */
 
.offer-btn:hover {
  background-color: #227093;
}

/* Mobile navbar */
.mobile-slide-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 60vw;
  background-color: #0a3d62;
  z-index: 999;
  padding: 1rem 1.5rem;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.mobile-slide-menu.active {
  transform: translateX(0);
  opacity: 1;
}

.mobile-slide-menu .nav-link {
  color: #fff;
  padding: 18px 0;

}

.mobile-slide-menu .offer-btn {
  background-color: #ffc107;
  padding: 6px 15px;
  border-radius: 6px;
  text-decoration: none;
  color: #000;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.mobile-slide-menu.active .close-btn {
  opacity: 1;
}

/* section details */
.section-bg {
  background-color: #e9f1f7;
}

/* heading details */
.heading {
  color: #3c6382; /* Deep Blue */
  font-family: "Playfair Display", serif;
}
.heading_1 {
  color: #3c6382; /* Deep Blue */
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
}

.heading_2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 600;
  color: #3c6382;
}

h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 500;
  color: #3c6382;
}

.paragraph {
  color: #2f2f2f; /* Charcoal for readability */
  font-family: "Lora", serif;
  font-size: 16px;
  line-height: 1.9;
}

/* button details */
.btn-primary {
  background-color: #38a1db !important;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}

.btn-primary:hover {
  background-color: #227093 !important;
}

.btn-outline-primary {
  color: #3c6382 !important;
  border-color: #3c6382 !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background-color: #38a1db !important;
  color: white !important;
  border-color: #3c6382 !important;
  box-shadow: none !important; /* optional: remove blue focus ring */
}

/* get involved page styles */
.form-container {
  background-color: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.form-heading {
  font-weight: bold;
}

textarea {
  resize: none;
}
