:root {
  --primary: #054a8b;
  --primary-dark: #003e78;
  --dark: #1a252f;
  --dark-alt: #2d3e50;
  --light: #f8f9fa;
  --white: #fff;
  --gray: #e0e0e0;
}
:root {
  --dark: #1a252f;
  --dark-alt: #2d3e50;
  --light: #f8f9fa;
  --white: #fff;
  --gray: #e0e0e0;
  --accent: #34c759; /* Green accent for sporty vibe */
}
body,
html {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: var(--light);
  color: #333;
  font-size: 14px;
}

header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  transition: color 0.3s ease;
  color: var(--white);
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

.navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  padding: 10px 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.navbar-nav {
  gap: 10px;
}
.navbar-nav .nav-link:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.nav-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
  display: inline-block;
}

.nav-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
}
.icon-item {
  background: #1c4595;
  color: white;
  padding: 0px 10px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
}
.offcanvas {
  color: var(--white);
  width: 250px;
}

.offcanvas-header {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: bold;
}

.offcanvas-body {
  padding: 20px;
}

.offcanvas .nav-link {
  display: block;
  padding: 10px 15px;
  font-size: 1.1rem;
}

.offcanvas .nav-btn {
  display: inline-block;
  margin: 10px 0;
  text-align: center;
  width: 100%;
}

.navbar-toggler {
  border: none;
  padding: 5px;
}
.navbar-toggler:focus {
  box-shadow: none;
}
a.navbar-brand img {
  height: 50px;
}
a.homelink {
  color: white;
  position: absolute;
  z-index: 10;
  top: 15px;
  left: 15px;
  font-size: 18px;
  text-decoration: none;
}
a.homelink svg {
  height: 20px;
  width: 20px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='var(--white)rgba(255, 111, 97, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.fancy-dropdown .dropdown-toggle {
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  padding: 8px 16px;
  border-radius: 30px;
  transition: background 0.3s, box-shadow 0.3s;
}

.fancy-dropdown .dropdown-toggle:hover {
  background: linear-gradient(135deg, #1565c0, #1e88e5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.fancy-menu {
  margin-top: 10px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.4s ease;
  overflow: hidden;
  background: #ffffff;
}

.fancy-menu .fancy-item {
  padding: 12px 20px;
  transition: background 0.3s, color 0.3s;
}

.fancy-menu .fancy-item:hover {
  background: #f0f4ff;
  color: #1e88e5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
ul.dropdown-menu {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  border-width: 0px;
}
.dropdown-item {
  padding: 10px;
}
.custom-dropdown {
  position: relative;
  cursor: pointer;
  font-weight: 600;
}

.custom-dropdown .dropdown-toggle_custom::after {
  content: " ▼" !important;
  font-size: 0.8em;
  border-width: 0px !important;
  height: 10px;
}

.custom-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #222;
  min-width: 180px;
  padding: 0;
  margin: 0;
  list-style: none;
  display: none;
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.custom-dropdown:hover .dropdown-menu {
  display: block;
}

.custom-dropdown .dropdown-menu li a {
  display: block;
  padding: 8px 12px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.custom-dropdown .dropdown-menu li a:hover {
  background: #444;
}

.hero {
  height: 100vh;
  position: relative;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1s ease-in;
}

.hero p {
  font-size: 1.5rem;
  max-width: 600px;
  margin-bottom: 30px;
}

.search-bar {
  max-width: 800px;
  width: 100%;
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 15px 10px;
  transition: box-shadow 0.3s ease;
}

.search-bar:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.search-bar input,
.search-bar select {
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  background: var(--gray);
  border-radius: 10px;
  margin: 0 8px;
  flex: 1;
  transition: all 0.3s ease, transform 0.2s ease;
}

.search-bar input:focus,
.search-bar select:focus {
  /* background: var(--white); */
  outline: none;
  transform: scale(1.02);
}

.search-bar select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 12l-6-6h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.search-bar button {
  border-radius: 10px;
  padding: 12px 30px;
}

section {
  padding: 80px 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--dark);
}

.section-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1rem;
  color: #555;
}

.search-filters {
  background: var(--white);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.search-filters select,
.search-filters input {
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  background: var(--gray);
  border-radius: 25px;
  transition: background 0.3s ease, transform 0.2s ease;
  width: 100%;
}

.search-filters select:focus,
.search-filters input:focus {
  /* background: var(--white); */
  outline: none;
  transform: scale(1.02);
}

.search-filters select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 12l-6-6h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
.testimonial-card {
  margin-bottom: 40px !important;
}
.fancy-card,
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.fancy-card:hover,
.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid var(--primary);
}
.fancy-card {
  padding-top: 40px;
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.fancy-card img {
  height: 200px;
  width: calc(100% + 20px);
  border-radius: 10px;
  margin: -80px 0px 20px -10px;
  object-fit: cover;
}
.coach-slider .card {
  margin: 0 15px;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.coach-slider .card:hover {
  transform: scale(1.05);
}

.coach-slider .card-img-top {
  height: 200px;
  object-fit: cover;
}
.academy-slider,
.tournament-slider,
.testimonial-slider {
  margin: 0 -15px;
}

.academy-slider .gallery-card,
.tournament-slider .fancy-card,
.testimonial-slider .testimonial-card {
  margin: 0 15px;
}

.slick-prev,
.slick-next {
  z-index: 1;
}

.slick-prev:before,
.slick-next:before {
  color: #333;
}

.feature-card {
  background: var(--white);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 60px;
  margin-bottom: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
  transform: scale(1.1);
}

.gallery-card:hover img {
  transform: scale(1.2);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}
.academyImg {
  height: 200px;
  overflow: hidden;
}
.academyImg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 20px 40px;
}

.footer-links a,
.footer-contact a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--primary);
}

.social-icons a {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary);
}

.listing-card {
  border-radius: 15px;
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
  position: relative;
}

.listing-card:hover {
  transform: scale(1.05);
}
.listingImg {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}
.listingImg img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.listing-card-body {
  padding: 20px;
  text-align: center;
  /* min-height: 176px; */
}
.fancy-card h5,
.gallery-card h5 {
  font-weight: bold;
}
h5.listingTitle {
  position: absolute;
  left: 20px;
  bottom: 10px;
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 7px rgba(0, 0, 0, 1);
}
.verified-badge {
  position: absolute;
  top: 10px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.material-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.2s ease;
  cursor: pointer;
}

.material-btn:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.material-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.material-btn.outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  box-shadow: none;
}

.material-btn.outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.material-btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

.pagination .page-link {
  color: var(--primary);
  border: none;
  margin: 0 5px;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.pagination .page-link:hover {
  background-color: var(--primary);
  color: var(--white);
}

.pagination .page-item.active .page-link {
  background-color: var(--primary);
  color: var(--white);
}
.page-header {
  position: relative;
  background: url("https://img.freepik.com/free-photo/young-couple-playing-tennis-court_1303-16307.jpg?t=st=1750906807~exp=1750910407~hmac=5e401be84a3ef2e5b00d3bec596fee182bcbfdb35c20248eba41dfc8c513d620&w=1380")
    no-repeat center center/cover;
  color: var(--white);
  display: block;
  padding: 80px 10px 70px 0px !important;
}
.page-header > .container {
  position: relative;
  z-index: 1;
}
.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-title {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1s ease-in;
}

.page-header-count {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 10px 0;
  color: var(--white);
}

.page-header-info {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
ul.fancy-list {
  list-style: none;
  text-align: left;
  padding: 0;
  /* line-height: 1.9rem; */
}
.cardHeader {
  background: #054989;
  padding: 10px;
  border-radius: 8px;
  margin: -12px -12px 10px;
  color: white;
}
.calendar span {
  display: block;
  padding: 5px;
  line-height: 17px;
}
img.flag {
  height: 17px;
  width: 25px;
  object-fit: contain;
  margin: 0;
}
.calendar {
  background: var(--primary);
  color: white;
  flex-direction: column;
  width: 52px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  padding: 5px;
  text-align: center;
}
span.calendar-day {
  font-weight: bold;
  font-size: 20px;
  background: #fff;
  border-radius: 5px;
  display: block;
  width: 100%;
  color: var(--primary);
}
ul.fancy-list > li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}
.auth-page {
  display: flex;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--white), var(--light));
}

.auth-left {
  flex: 1;
  position: relative;
  background: url("https://img.freepik.com/free-photo/tennis-court-background_23-2148187178.jpg")
    no-repeat center/cover;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  overflow: hidden;
}

.auth-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 37, 47, 0.8),
    rgba(45, 62, 80, 0.8)
  );
  z-index: 1;
}

.auth-info {
  position: relative;
  z-index: 2;
}

.auth-logo {
  width: 130px;
  margin-bottom: 20px;
  animation: bounceIn 1s ease-in;
}

.auth-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-in;
}

.auth-info p {
  font-size: 1.2rem;
  max-width: 500px;
  margin: 0 auto 30px;
  color: var(--white);
  line-height: 1.6;
  animation: fadeInUp 1.2s ease-in;
}

.auth-image {
  width: 300px;
  height: 300px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  animation: fadeInUp 1.4s ease-in;
  object-fit: cover;
}

.auth-image:hover {
  transform: scale(1.05);
}

.auth-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--white);
}

.auth-form-container {
  width: 100%;
  max-width: 450px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  padding: 40px;
  transition: transform 0.3s ease;
}

.auth-form-container:hover {
  transform: translateY(-5px);
}

.auth-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  background: var(--gray);
  border-radius: 50px;
  padding: 5px;
}

.auth-tab {
  flex: 1;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-alt);
  padding: 12px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50px;
  text-align: center;
}

.auth-tab:hover {
  background: rgba(255, 111, 97, 0.1);
  color: var(--primary);
}

.auth-tab.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.auth-form .form-group {
  margin-bottom: 25px;
  position: relative;
}

.auth-form label {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--dark-alt);
  transition: all 0.3s ease;
  pointer-events: none;
}

.auth-form input,
.auth-form select,
.auth-form textarea {
  width: 100%;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  background: var(--gray);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
}

.auth-form input:focus + label,
.auth-form input:not(:placeholder-shown) + label,
.auth-form select:focus + label,
.auth-form textarea:focus + label {
  top: -10px;
  left: 15px;
  font-size: 0.8rem;
  color: var(--primary);
  background: var(--white);
  padding: 0 5px;
}

.auth-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 12l-6-6h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.auth-form textarea {
  resize: vertical;
}

.auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--dark-alt);
}

.auth-switch a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.auth-switch a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.coach-profile {
  height: 150px;
  width: 160px;
  overflow: hidden;
  border-radius: 19px;
  margin-bottom: 20px;
  position: relative;
}
.coach-profile img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
img.verified_badge {
  height: 25px;
  width: auto;
  object-fit: contain;
}

section.overlap_top .container {
  padding-top: 0px;
  margin-top: -160px;
  position: relative;
}
.slick-prev {
  left: 0;
  border-radius: 10px;
  background: white;
  line-height: 40px !important;
}
.slick-next {
  right: 0;
  border-radius: 10px;
  background: white;
  line-height: 40px !important;
}
@media (max-width: 768px) {
  section.overlap_top .container {
    padding-top: 0px;
    margin-top: -100px;
    position: relative;
  }
  section {
    padding: 20px !important;
  }
  .auth-page {
    flex-direction: column;
  }

  .auth-left,
  .auth-right {
    flex: none;
    width: 100%;
    min-height: 40vh;
  }

  .auth-left {
    background: linear-gradient(135deg, var(--dark), var(--dark-alt));
  }

  .auth-info h2 {
    font-size: 2rem;
  }

  .auth-info p {
    font-size: 1rem;
  }

  .auth-image {
    width: 200px;
  }

  .auth-form-container {
    padding: 30px 20px;
    max-width: 100%;
  }

  .auth-tabs {
    flex-direction: column;
    background: none;
  }

  .auth-tab {
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 12px;
    background: var(--gray);
  }

  .auth-tab.active {
    background: var(--primary);
    color: var(--white);
  }

  .material-btn {
    width: 100%;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .navbar-brand {
    font-size: 1rem;
  }

  .navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 8px 10px;
  }

  .testimonial-card img {
    width: 60px;
    height: 60px;
  }

  .material-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .search-bar {
    flex-direction: column;
    padding: 10px;
  }

  .search-bar input,
  .search-bar select {
    margin: 5px 0;
    width: 100%;
  }

  .search-bar button {
    width: 100%;
    margin-top: 10px;
  }

  .search-filters .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .page-header-title {
    font-size: 2rem;
  }

  .page-header-count {
    font-size: 1.2rem;
  }

  .page-header-info {
    font-size: 1rem;
  }
}
