/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

/* Header */
.navbar {
    background: linear-gradient(90deg, #ff007f, #0000d1);
    
    
}

.navbar-brand,
.navbar-nav .nav-link {
    color: #fff !important;
    
}

.navbar-nav .nav-link:hover {
    color: #ddd !important;
}
#small{
    font-size: 12px;
}
/* Hero Section */
#hero {
    background: linear-gradient(90deg, #ff007f, #0000d1);
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

#hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

#hero p {
    font-size: 1.2rem;
}

#hero button {
    background-color: #fff;
    color: #333;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#hero button:hover {
    background-color: #ddd;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.service-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Membership Section */
.membership-card {
    border: 2px solid #333;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.5s ease;
    background-color: #FFFFFF;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 30px 10px 20px rgba(0, 0, 0, 0.2);
}

.membership-card .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff0000;
}

.membership-card .card-text {
    font-size: 1.2rem;
    color: #0000ff;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Contact Section */
#map {
    height: 300px;
    width: 100%;
    border: 2px solid #000;
    border-radius: 10px;
    margin-top: 20px;
}

/* Dropdown Menu */
.dropdown-menu {
    transition: transform 0.7s ease;
    background-color: #ff007f;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 5%;

}

.dropdown-menu a {
    color: #333 !important;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color: #f0f8ff;
}
.service-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: #f0f8ff;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff007f;
    margin-bottom: 10px;
}

.service-item p {
    color: #0000d1;
    font-size: 1rem;
}
.logo-container {
    max-width: 100%;
    height: auto;
}

.logo {
    max-width: 20%; /* Adjust size as needed */
    width: 100%; /* Ensures responsiveness */
    height: auto; /* Maintains aspect ratio */
}

/* Navbar customization */
.navbar-brand .logo {
    max-width: 2%;
    height: auto;
}

.navbar-toggler {
    border: none;
}

.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='rgba%281%2C 1%2C 1%2C 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#tagline {
  font-weight: bold; /* Makes the text stand out */
  text-align: center; /* Centers the text */
background: linear-gradient(90deg, #ff9a9e, #fad0c4, #fbc2eb, #a18cd1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Makes the text transparent to show the gradient */
}

/* Center the container */
.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  margin: 50px auto;
  max-width: 800px;
}

/* Style the location input */
.location-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 200px;
  font-size: 14px;
}

/* Style the search bar */
.search-bar {
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  width: 400px;
  font-size: 14px;
}

.search-button {
  padding: 10px 20px;
  background-color: #ff5252;
  color: white;
  border: none;
  border-radius: 0 5px 5px 0;
  font-size: 14px;
  cursor: pointer;
}

.search-button:hover {
  background-color: #e63946;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
  .search-container {
    flex-direction: column;
    gap: 15px;
  }

  .location-input, .search-input {
    width: 100%;
  }
}
/* Main container */
.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
  gap: 10px;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
}

/* Location input */
.location-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 200px;
  font-size: 14px;
  flex: 1; /* Make it responsive */
  min-width: 150px;
}

/* Main container */
.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* Allow wrapping for small screens */
  gap: 10px;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  box-sizing: border-box;
}

/* Location input */
.location-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 200px;
  font-size: 16px;
  box-sizing: border-box;
}

/* Search input */
.search-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 400px;
  font-size: 16px;
  box-sizing: border-box;
}
/* Search results container with horizontal layout */
.search-results-horizontal {
  display: flex;
  gap: 20px; /* Space between result items */
  max-width: 100%;
  overflow-x: auto; /* Enable horizontal scrolling */
  padding: 20px;
  margin: 20px auto;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

/* Individual search result box */
.search-result-item {
  flex: 0 0 auto; /* Prevent shrinking */
  width: 200px; /* Fixed width for each item */
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 14px;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-result-item:hover {
  background-color: #f7f7f7;
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

/* Title inside the box */
.result-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  color: #222;
}

/* Description inside the box */
.result-description {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

/* Action button (optional) */
.result-action {
  padding: 8px 12px;
  background-color: #ff5252;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 13px;
  text-decoration: none;
}

.result-action:hover {
  background-color: #e63946;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
  .search-results-horizontal {
    gap: 10px; /* Smaller gap */
  }

  .search-result-item {
    width: 150px; /* Adjust item width for smaller screens */
  }
}



@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }
}
