/* Custom Styles */
.gradient-bg {
    background: linear-gradient(90deg, #1a73e8, #ff6b6b);
    color: white;
    padding: 20px;
    text-align: center;
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
}
.back-to-top, .chatbot {
  position: fixed;
  bottom: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
}
.back-to-top { left: 20px; background-color: #007bff; }
.chatbot { right: 20px; background-color: #28a745; }

.search-section {
    background-color: #003580;
    color: white;
    padding: 30px 15px;
    text-align: center;
}
.search-bar {
    background: white;
    padding: 10px;
    border: 2px solid #febb02;
    border-radius: 10px;
    display: flex;
    gap: 10px;
}
.search-bar input,
.search-bar select,
.search-bar button {
    border: none;
    outline: none;
    border-radius: 5px;
    padding: 10px;
}
.search-bar button {
    background-color: #0071c2;
    color: white;
}