/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  background: linear-gradient(45deg, #0073e6, #005bb5);
  color: #fff;
  padding: 20px;
  text-align: center;
}

header .logo img {
  height: 60px;
}

header nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #fff;
}

header nav a:hover {
  text-decoration: underline;
}

main {
  padding: 20px;
}

.animated-section {
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

.fade-in {
  animation-name: fadeIn;
}

.slide-up {
  animation-name: slideUp;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-item img {
  width: 100%;
  border-radius: 10px;
}

.service-item {
  background: #f4f4f4;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

/* Quotation Section */
form, .quote-output {
  logo: src="https://i.ibb.co/5nxcgbW/DALL-E-2025-01-20-11-24-34-A-dramatic-scene-depicting-Adam-and-Hawwa-descending-from-the-heavenly-re.webp"
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
}

button {
  background: #0073e6;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #005bb5;
}