body,
html {
  font-family: "Cairo", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

p,
li {
  font-weight: 400;
}
.whatsapp-icon {
  position: fixed;
  bottom: 20px; /* Adjust the distance from the bottom */
  right: 20px; /* Adjust the distance from the right */
  background-color: #25d366; /* WhatsApp green */
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  text-decoration: none;
  z-index: 10000;
}

.whatsapp-icon i {
  color: white;
  font-size: 24px;
}

.whatsapp-icon:hover {
  background-color: #128c7e; /* Darker green on hover */
}

header,
footer {
  background-color: #0086c5;
}
header img {
  width: 80px;
}
.navbar {
  background-color: #005b7f !important;
}
.navbar .nav-link {
  color: #fff !important;
  transition: color 0.3s ease;
}
.navbar .nav-link:hover {
  color: #ffc107 !important;
}

.feature {
  transition: box-shadow 0.3s ease; /* Smooth transition for the box shadow */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 8px 16px rgba(0, 0, 0, 0.15); /* Box shadow on hover */
}

.feature:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), 0 12px 24px rgba(0, 0, 0, 0.3); /* Harder box shadow on hover */
}
video {
  max-width: 700px;
}

/* General card styling */
.mission-card {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Icon styling */
.mission-card .icon {
  font-size: 3rem;
  color: #ff9800;
}

/* Text and padding inside card */
.mission-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.mission-card p {
  font-size: 1.2rem;
  color: #555;
  text-align: center;
}

/* Hover effect */
.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Add some spacing around the card */
.mission-card .icon,
.mission-card h3,
.mission-card p {
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mission-card {
    padding: 3rem 2rem;
  }
}
