* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Tajawal", sans-serif;
}
:root {
  --primary: #4a90e2;
  --light-blue: #f0f8ff;
  --dark: #1a1a1a;
}
.bg-light-blue {
  background-color: var(--light-blue) !important;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.text-primary {
  color: var(--primary) !important;
}
.btn-hover {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgb(255, 255, 255);
}
.badge-hover:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
.image-hover {
  transition: all 0.5s ease;
}
.image-container:hover .image-hover {
  transform: scale(1.05);
}
.floating-tag {
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}
.service-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.service-icon {
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.1);
}
.footer-link {
  transition: color 0.3s ease;
  text-decoration: none;
}
.footer-link:hover {
  color: var(--primary) !important;
}
.social-icon {
  transition: all 0.3s ease;
  display: inline-block;
}
.social-icon:hover {
  color: var(--primary) !important;
  transform: translateY(-3px);
}
.title-animate {
  background: linear-gradient(45deg, var(--primary), #357abd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.counter {
  font-size: 2.5rem;
}
.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-circle:hover {
  transform: translateY(-3px);
  color: white !important;
  transition: 0.2s;
}
.social-circle.facebook:hover {
  background: #1877f2;
}
.social-circle.twitter:hover {
  background: #1da1f2;
}
.social-circle.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.social-circle.whatsapp:hover {
  background: #25d366;
}
.social-links a {
  transition: all 0.3s ease;
}
.footer-link {
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: #4a90e2 !important;
}
.btn-whatsapp {
  background-color: #25d366;
  color: white;
  border: none;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover {
  background-color: #128c4f;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn-whatsapp:active {
  transform: translateY(0);
}
@media (max-width: 767.98px) {
  header {
    text-align: center;
    padding: 3rem 0 !important;
  }
  .display-4 {
    font-size: 1.8rem !important;
    margin-bottom: 1rem !important;
  }
  .fa-10x {
    font-size: 5rem !important;
    margin-top: 2rem;
  }
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .social-links {
    justify-content: center !important;
    margin-bottom: 1.5rem;
  }
  footer { text-align: center; }
  
  footer .d-flex {
    justify-content: center !important;
  }
}
@media (max-width: 575.98px) {
  .service-card {
    border-radius: 30px !important;
    margin-bottom: 15px;
  }
  .badge {
    font-size: 0.8rem !important;
    padding: 0.6rem !important;
  }
}