/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *



 */


body {
    font-family: 'Roboto Slab', serif;
    background-color: #fafafa;
}
header {
  background-color: #f4f4f4;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.nav-logo {
   height: 50px;
}
.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 5px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #efefef;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #333;
}

.card-text {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.25rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-card {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.btn-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.modal-body img {
  max-height: 300px;
  width: 100%;
  object-fit: cover;
}

.search-form {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-form .form-control,
.search-form .form-select,
.search-form .btn {
    border-radius: 0;
}

.search-form .form-control {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.search-form .btn {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* Add this to your existing CSS */

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;  /* Reduced from 4rem */
    height: 3.5rem; /* Reduced from 4rem */
    font-size: 1.25rem; /* Reduced from 1.5rem */
    border-radius: 50%;
    padding: 0.75rem; /* Added padding */
}

.feature-icon i {
    font-size: 1.25rem; /* Reduced from 1.5rem */
    line-height: 1;
    width: 1.25rem; /* Reduced from 1.5rem */
    height: 1.25rem; /* Reduced from 1.5rem */
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px) {
  .nav-logo {
    height: 30px;
  }
}

/* Add this to the end of your existing CSS */

.learn-more-banner {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: white;
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.learn-more-banner h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.bg-light-custom {
  background-color: #f8f9fa; /* You can adjust this color as needed */
}
