.search-input-custom {
  border-radius: 25px;
  border: 2px solid #f9f8f6;
  padding: 5px 20px;
  outline: none;
  box-shadow: inset 0 1px 3px rgba(232, 230, 230, 0.1);
  transition: all 0.3s ease;
}

.search-input-custom::placeholder {
  color: #c0c0c0;
  opacity: 1;
}

.search-btn-custom {
  background-color: #e9e9e1;
  color: rgb(161, 160, 160);
  border: 2px solid #e9e9e8;
  border-radius: 25px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}



.search-btn-custom:hover {
  background-color: white;
  color: #0a0a09;
  box-shadow: 0 0 10px rgba(109, 108, 105, 0.5);
}

.sidebar-container {
  margin-top: 10%;
  position:fixed;
  top: 70px;
  left: 0;
  width: 50px;
  background-color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  transition: width 0.3s ease, background-color 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1040;
  padding-top: 20px;
  border-radius: 10px;
}
.sidebar-container:hover {
  width: 250px;
  background-color: rgba(255, 255, 255, 0.85);
}
.sidebar {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sidebar a {
  padding: 10px 15px;
  text-decoration: none;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
.sidebar a .icon {
  font-size: 20px;
  margin-right: 10px;
  flex-shrink: 0;
}
.sidebar a .text {
  display: none;
}
.sidebar-container:hover .sidebar a .text {
  display: inline;
}
.sidebar a:hover {
  background-color: #e2e6ea;
  color: #000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.card {
  width: 250px; /* Fixed width */
  height: 400px; /* Fixed height */
  overflow: hidden; /* Hide overflowing content */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Animation for pop-up */
  margin: 0 auto; /* Center cards within their column */
}

.card:hover {
  transform: translateY(-10px); /* Pop-up effect */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Shadow on hover */
}

.card-img-top {
  height: 150px; /* Fixed height for image */
  width: 100%; /* Full width for the image */
  object-fit: cover; /* Cover the image without stretching */
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Allow content to fill the card */
}

.card-title,
.card-subtitle,
.card-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; /* Keep text on a single line */
}

.subscribe-button {
  width: 100%; /* Full width button */
  background-color: #efeff1 !important;
  color: black;
}

/* Ensure the grid items are aligned consistently */
.row.g-3 .col-md-3 {
  display: flex;
  align-items: stretch;
  justify-content: center;
}


.join-btn {
  border-radius: 25px;
  padding: 5px 20px;
  border-color: #ffffff00;
  color: white;
  background-color: #9E0015;
  transition: background-color 0.2s, box-shadow 0.2s;
  margin-left: 5px;
  margin-top: 2px;
}
.join-btn:hover {
background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}
.cool-dropdown {
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  overflow: hidden;
}
.cool-dropdown .dropdown-item {
  padding: 10px 20px;
  transition: background-color 0.2s ease-in-out;
  display: flex;
  align-items: center;
}
.cool-dropdown .dropdown-item i {
  margin-right: 10px;
}
.cool-dropdown .dropdown-item:hover {
  background-color: rgba(108, 99, 255, 0.1);
}
/* Swiper Container */
.swiper-container {
  padding: 20px 0;
  position: relative; /* For positioning the arrows */
}

/* Swiper Slide */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Swiper Card */
.swiper-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  overflow: hidden;
  margin: 10px;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  width: 90%;
  max-width: 300px;
}

/* Swiper Card Hover Effect */
.swiper-card:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Swiper Card Image */
.swiper-card-img {
  object-fit: cover;
  width: 100%;
  height: 200px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

/* Swiper Card Body */
.swiper-card-body {
  text-align: center;
  padding: 10px;
}

/* Swiper Card Title */
.swiper-card-title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

/* Swiper Card Subtitle */
.swiper-card-subtitle {
  color: #666;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 30px; /* Smaller size */
  height: 30px;
  background: rgba(0, 0, 0, 0.3); /* Darker and more transparent */
  border-radius: 50%; /* Rounded buttons */
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* Positioning Arrows */
.swiper-button-next {
  right: 10px;
}
.swiper-button-prev {
  left: 10px;
}

/* Arrow Icons */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  color: #333;
}

/* Swiper Pagination */
.swiper-pagination {
  bottom: 10px; /* Position at the bottom */
}



.footer {
  background-color: #9E0015; /* Dark background color */
  color: #fff; /* White text color */
  padding: 40px 0 14px 0;
  font-family: Arial, sans-serif;
}

.footer-top {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(202, 189, 189, 0.1);
}

.footer-newsletter h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer-newsletter form {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-newsletter form input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 4px;
  width: 100%;
  max-width: 250px;
}

.footer-newsletter form input[type="submit"] {
  padding: 10px 20px;
  border: none;
  background-color: var(--nav-hover-color);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}


.footer-newsletter form input[type="submit"]:hover {
  background-color: var(--nav-dropdown-hover-color)
}


.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #fff;
  color: #000000;
  border-radius: 50%;
  text-align: center;
  transition: background 0.3s, color 0.3s;

}

.social-links a:hover {
  background: var(--nav-dropdown-hover-color);
  color: #fff;
}

.quick-links h4,
.contact-info h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}

.quick-links ul {
  list-style: none;
  padding: 0;
}

.quick-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.quick-links ul li a:hover {
  color: #e74c3c;
}

.contact-info p {
  margin: 0;
  line-height: 1.6;
}

.contact-info strong {
  display: block;
  margin-top: 5px;
}

.copyright {
  padding-top: 10px;
  font-size: 14px;
}

.credits {
  margin: -13px;
  font-size: 14px;
}

.credits a {
  color: #ffbd96;
  text-decoration: none;
  transition: color 0.3s;
}

.credits a:hover {
  color: #fff;
}
