/* // footer and nav */
body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
/* Navbar styles */
.navbar {
  padding: 15px 0 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.navbar-brand img {
  height: 40px;
}
.active-link {
    color: #017b63 !important; /* Change color */
    font-weight: bold; /* Make text bold */
    border-bottom: 2px solid #017b63; /* Add underline */
  }

.nav-link {
  color: #333 !important;
  font-weight: 450 !important;
  margin: 0 10px !important;
  transition: color 0.3s ease !important;
}

.nav-link:hover {
  color: #017b63 !important;
}

.navbar-nav {
  margin-left: auto !important;
}

.auth-links {
  display: flex !important;
  align-items: center !important;
}

.btn-contact {
  background-color: #017b63 !important;
  color: white !important;
  border: none;
  padding: 8px 20px !important;
  border-radius: 4px !important ;
  font-weight: 500 !important;
  transition: background-color 0.3s ease;
}

.btn-contact:hover {
  background-color: #03567f;
  color: white;
}

/* //footer section */
/* footer */
:root {
  --primary-color: #005f89;
}

.footer {
  width: 100%;
  background: white;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
}

.f-logo img {
  max-width: 230px;
  height: auto;
  margin-top: 1.5rem;
}
@media (max-width: 1024px) {
  .f-logo img {
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .f-logo img {
    max-width: 150px;
  }
  .stat-item:not(:last-child)::after {
    left: 14rem;
    color: white;
  }
}

@media (max-width: 480px) {
  .f-logo img {
    max-width: 120px;
  }
  .stat-item:not(:last-child)::after {
    left: 13rem;
    color: white;
  }
  .navbar-brand img {
    height: 20px;
  }
  .navbar-nav {
    display: flex; /* Enables flexbox */
    justify-content: center; /* Centers elements horizontally */
    align-items: center; /* Centers elements vertically */
    width: 100%; /* Ensures full width */
  }
  .auth-links {
    display: flex; /* Enables flexbox */
    justify-content: center; /* Centers elements horizontally */
    align-items: center; /* Centers elements vertically */
    width: 100%; /* Ensures full width */
  }
}

.footer-title {
  color: #017b63;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #005f89;
}

.newsletter-input {
  width: 100%;
  padding: 0.625rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 0.625rem;
}

.subscribe-btn {
  width: 100%;
  padding: 0.625rem;
  background: #017b63;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.subscribe-btn:hover {
  background-color: #017b63;
}

.footer-bottom {
  background: var(--Blue, #03567f);
}

.copyright {
  color: white;
  font-size: 14px;
}

.social-links a {
  color: white;
  margin-left: 1.25rem;
  font-size: 18px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #6fc4b0;
}

@media (max-width: 450px) {
  .footer-title {
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .f-logo {
    text-align: center;
    margin-bottom: 1rem;
  }

  .newsletter {
    text-align: center;
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .social-links {
    margin-top: 1rem;
  }

  .social-links a:first-child {
    margin-left: 0;
  }
  .navbar-nav {
    display: flex; /* Enables flexbox */
    justify-content: center; /* Centers elements horizontally */
    align-items: center; /* Centers elements vertically */
    width: 100%; /* Ensures full width */
  }
  .auth-links {
    display: flex; /* Enables flexbox */
    justify-content: center; /* Centers elements horizontally */
    align-items: center; /* Centers elements vertically */
    width: 100%; /* Ensures full width */
  }
}
/* Media queries for responsiveness */
@media (max-width: 992px) {
  .navbar-collapse {
    margin-top: 15px;
  }

  .nav-link {
    margin: 5px 0;
  }

  .auth-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-contact {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .auth-links {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

.faq-section {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00695c;
}

.accordion-button:not(.collapsed) {
  background-color: #00695c;
  color: white;
}


.accordion-item {
  border: none;
}
