@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PT Sans", sans-serif;
}
html {
  scroll-behavior: smooth;
}
/* Navbar Styling */
.navbar {
  background-color: #f8f8f8;
  top: 0;
  position: sticky;
  z-index: 1000;
  width: 100%;
  padding: 10px 0;
}

.navbar-brand {
  font-size: 2rem;
  font-weight: bold;
  color: #4e5964;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-size: 1.1rem;
  font-weight: 40;
  transition: color 0.3s ease-in-out;
  color: #4e5964ce;
  padding: 8px 15px;
}
footer a:hover,
.navbar-nav {
  text-decoration: none;
  color: #4e5964;
  transition: 0.2s;
}
.nav-link:hover {
  border-bottom: 2px solid #77c2ae;
  transition: 0.1s;
}
/* Search Bar */
.input-group .form-control {
  border-radius: 20px 0 0 20px;
  border: 1px solid #ccc !important;
  padding: 8px;
}

.input-group-text {
  border-radius: 0 20px 20px 0;
  border: 1px solid #ccc !important;
  cursor: pointer;
  transition: background 0.3s;
  background-color: #4e5964 !important;
}

.input-group-text i {
  color: white;
}

.input-group-text:hover {
  background: #4e5964ce;
}
.form-control:focus {
  box-shadow: none;
  border-color: #4e5964ce;
}

/* Navbar Toggler */
.navbar-toggler {
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 5px 10px;
  border-radius: 5px;
}

.navbar-toggler:focus {
  box-shadow: none;
}
.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
}
/* footer section   */
footer {
  background-color: #f8f8f8 !important;
}
footer .h5 {
  font-weight: 500;
}
footer a {
  color: #4e5964ce;
  text-decoration: none;
  font-weight: 200;
}
.row,
.social-icons {
  color: #4e5964;
}
