@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Saira:ital,wght@0,100..900;1,100..900&display=swap");

html {
  scroll-behavior: smooth;
}

.manrope {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.saira {
  font-family: "Saira", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* MENU STYLE */
.navbar {
  background-color: transparent !important;
  border: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
}

.navbar-collapse.show {
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-collapse.show .nav-link {
  color: #20242c !important;
  padding: 10px 0;
}

.navbar-collapse.show .nav-link:hover {
  color: #3f88c8 !important;
}

.navbar-toggler {
  border: none;
  background-color: transparent !important;
}

.navbar-toggler-icon {
  filter: brightness(100%);
}

.navbar-brand img {
  max-width: 50px;
}

@media (min-width: 992px) {
  .navbar-collapse {
    background-color: transparent !important;
    box-shadow: none !important;
  }

  .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
  }

  .navbar-nav .nav-link:hover {
    color: #fff !important;
  }

  .navbar {
    background-color: transparent !important;
  }
}

/* TESTIMONIAL STYLE */

.testimonials-section {
  background-color: #f8f9fa;
}

.testimonials-section h6 {
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.testimonials-section h2 {
  font-size: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: #555;
}

.carousel-indicators button {
  background-color: #3f88c8;
}

/* CONTACT FORM STYLE */
.bg-white {
  background-color: #ffffff;
}

.shadow-sm {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 0.25rem;
  border: 1px solid #ddd;
}

.formbtn:hover {
  background-color: #1d1954;
}

/* FOOTER STYLE */

.footer {
  background: #222;
  color: white;
  padding: 60px 0 20px;
  text-align: center;
}

.footer .quick-links,
.footer .newsletter {
  margin-bottom: 30px;
}

.footer h5 {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 15px;
}

.footer-link {
  color: #3f88c8;
  text-decoration: none;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer .newsletter input[type="email"] {
  border-radius: 5px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  width: calc(100% - 90px);
  margin-right: 10px;
}

.footer .newsletter button {
  padding: 8px 20px;
  border: none;
  background: #3f88c8;
  color: #fff;
  border-radius: 5px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-icon {
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: background 0.3s, color 0.3s;
}

.social-icon:hover {
  background: white;
  color: #3f88c8;
}

@media (max-width: 576px) {
  .social-icons {
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }

  .text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.authors {
  text-decoration: none !important;
  color: #3f88c8;
}