body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.hero {
  background: linear-gradient(to right, #0303b5, #8787fb);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.btn-custom {
  background-color: #ffffff;
  color: #0303b5;
  border-radius: 50px;
  font-weight: 600;
  padding: 12px 24px;
  transition: all 0.3s ease-in-out;
}

.btn-custom:hover {
  background-color: #f1f1f1;
}

.services {
  padding: 60px 20px;
}

.footer {
  background-color: #f8f9fa;
  padding: 40px 20px;
  text-align: center;
}

.footer a {
  color: #0303b5;
  text-decoration: none;
  margin: 0 5px;
}

.footer a:hover {
  text-decoration: underline;
}

.service-item {
  transition: transform 0.3s ease-in-out;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  min-width: 280px;
}

.service-item:hover {
  transform: scale(1.05);
  color: #0303b5;
  background: #f8f9fa;
}

.btn-primary {
  background-color: white;
  color: #0303b5;
  border: none;
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
}

.btn-primary:hover {
  background-color: #f1f1f1;
}

.btn-outline-light:hover {
  background-color: white;
  color: #0303b5;
}

.text-gradient {
  font-size: 3rem;
  background: linear-gradient(to right, #0303b5, #8787fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.grad-box {
  padding: 7px;
  border-radius: 10px;
  background: linear-gradient(to right, #0303b5, #8787fb);
  color: white;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

.bg-gradient-primary-to-secondary {
  background: linear-gradient(to right, #0303b5, #8787fb);
  color: white;
}

.contact-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-btn {
  display: inline-block;
  margin: 15px 10px;
  padding: 10px 20px;
  font-size: 18px;
  text-decoration: none;
  color: white;
  border-radius: 5px;
}

.whatsapp-btn {
  background-color: #25d366;
}

.email-btn {
  background-color: #007bff;
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.hover-zoom img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-zoom:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


