.fullscreen-banner {
  min-height: 100vh;
  background: url('../../assets/img/bg.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 50px 20px;
  position: relative;
}

.my-nav {
  z-index: 1;
  background-color: rgba(13,110,253,0.63);
  padding: 0.7rem;
  width: 100%;
}

.product-card {
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  background: #fff;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.product-card .card-body {
  padding: 1.5rem;
  text-align: center;
}

.product-card ul {
  list-style-type: disc;
  padding-left: 1.2rem;
  text-align: left;
}

.application-form {
  max-width: 500px;
  width: 100%;
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.accordion-button {
  font-weight: 600;
  background: #f8f9fa;
}

.accordion-button:not(.collapsed) {
  background-color: #e9ecef;
}

.accordion-item {
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

html {
  scroll-behavior: smooth !important;
}

.jump-on-hover {
  transition: transform 0.4s ease;
}

.jump-on-hover:hover {
  transform: translateY(-2px);
}

