/* Font and Body Settings */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f8f8;
  margin: 0;
  padding: 0;
}
.service-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px auto;
  max-width: 90%;
}

.icon-card {
  width: 90px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.icon-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 5px;
}

.icon-card p {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.icon-card:hover {
  transform: scale(1.1);
}

/* Header Styling */
header {
  text-align: center;
  background: linear-gradient(to bottom, #e6e6d6, #5a5a5a);
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
  color: #007BFF;
  margin: 0;
}

/* Search Box Styling */
.search-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.input-container {
  position: relative;
}

.search-input {
  font-family: 'Font Awesome 6 Free', Arial, sans-serif;
  font-weight: 400;
  padding: 20px;
  font-size: 20px;
  border: 3px solid #ccc;
  border-radius: 5px;
  width: 200px;
}

.search-bar {
  margin-top: 20px;
}

.search-bar input {
  padding: 15px;
  width: 70%;
  max-width: 400px;
  border: 3px solid #ccc;
  border-radius: 20px;
}

.search-bar button {
  padding: 20px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  margin-left: 10px;
  border-radius: 10px;
  cursor: pointer;
}

/* Main Area Styling */
main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 25px;
}

/* Service Cards */
.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  padding: 20px;
  margin: 10px;
  width: 280px;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: scale(1.02);
}

.card h2 {
  color: #333;
}

/* WhatsApp Button */
.whatsapp {
  display: inline-block;
  margin-top: 10px;
  background-color: #25D366;
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 5px;
}

/* Complaint Form */
.form-container {
  text-align: center;
  margin-top: 30px;
}

.form-container input,
.form-container select,
.form-container button {
  padding: 10px;
  margin: 5px;
  width: 250px;
  max-width: 90%;
  font-size: 16px;
}

/* Footer CSS */
.footer {
  width: 100%;
  background-color: #f0f0f0;
  padding: 20px 10px;
  text-align: center;
  border-top: 1px solid #ddd;
  margin-top: 50px;
  position: relative;
  bottom: 0;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  margin: 0 15px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.footer-links a:hover {
  text-decoration: underline;
  color: green;
}

.footer-text {
  color: #777;
  font-size: 15px;
}

