body {
  font-family: "Cairo", sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #222;
  line-height: 1.8;
}

.contact-header {
  text-align: center;
  background: linear-gradient(135deg, #1a73e8, #4dabf7);
  color: #fff;
  padding: 40px 20px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.contact-header h1 {
  margin: 0;
  font-size: 2.2rem;
}

.contact-header p {
  margin-top: 10px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.contact-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
img {
  height: 40px;
  width: 40px;
}

.contact-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.contact-card h2 {
  font-size: 1.3rem;
  color: #1a73e8;
  margin-bottom: 15px;
}

.contact-card a {
  text-decoration: none;
  font-weight: bold;
  color: #1a73e8;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: #0c4da2;
}
.home-container {
  text-align: center; /* يخلي المحتوى جوة الـ div يتوسّط أفقيًا */
  margin-top: 20px; /* مسافة من فوق (اختياري) */
}

.home-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff; /* أزرق */
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
  margin-top: 50px;
}

.home-btn:hover {
  background-color: #0056b3; /* أزرق غامق عند الـ hover */
}
.footer {
  text-align: center;
  padding: 20px;
  background: #1a73e8;
  color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  font-size: 0.9rem;
  margin-top: 160px;
}
@media (max-width: 425px) {
  .contact-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
