/* General Styling */
body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
}

/* Heading Styling */
.heading {
  font-size: 2.5em;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* Service Card Styles */
.service-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
}

.service-card img {
  max-width: 100px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card h2 {
  font-size: 18px;
  margin: 15px 0;
  color: #555;
}

.service-card .btn {
  background-color: #FF965A;
  border: none;
  border-radius: 5px;
  color: #fff;
  padding: 10px 20px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.service-card .btn:hover {
  background-color: #FF965A;
}

/* Popup Form Container */
.popup-form {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0; 
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0, 0, 0, 0.5); 
}

/* Popup Form Content */
.popup-content {
  background-color: #fff;
  margin: 50px auto; 
  padding: 40px;
  border: 1px solid #ccc;
  border-radius: 15px;
  width: 90%; 
  max-width: 500px; 
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* Close Button */
.close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  color: #aaa;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #000;
}

/* Form Styling */
.popup-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.popup-content label {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.popup-content input[type="text"],
.popup-content input[type="email"],
.popup-content textarea {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.popup-content textarea {
  resize: vertical;
}

.popup-content input[type="submit"] {
  background-color: #28a745;
  border: none;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.popup-content input[type="submit"]:hover {
  background-color: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-card {
      margin-bottom: 20px;
  }
  .popup-content {
      width: 95%;
      padding: 30px;
  }
}

@media (max-width: 576px) {
  .popup-content {
      padding: 20px;
  }
}
