  .hover-lift {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
          }
          .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.1) !important;
          }
          .opacity-05 {
            opacity: 0.05;
          }
          .opacity-1 {
            opacity: 0.1;
          }
          
          
          /* Custom padding classes */
.py-6 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.py-lg-7 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

/* Custom margin classes */
.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-6 {
  margin-top: 4rem !important;
}

/* Responsive adjustments */
@media (min-width: 992px) {
  .py-lg-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  
  .mt-lg-7 {
    margin-top: 6rem !important;
  }
}

/* Hover effect for cards */
.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.1) !important;
}

/* Opacity utilities */
.opacity-05 {
  opacity: 0.05;
}

.star-size {
    font-size: 120% !important;
    font-weight: 900;
}

.custom-underline {
  display: inline-block;
  position: relative;
  color: #2563eb; /* Tailwind blue-600 */
  font-weight: 500;
  padding-bottom: 1px; /* space between text and underline */
  text-decoration: none;
}

.custom-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px; /* thickness of underline */
  width: 100%;
  background-color: #2563eb; /* underline color */
}
.custom-underline:hover {
  color: #1d4ed8; /* Tailwind blue-700 */
}
.custom-underline:hover::after {
  background-color: #1d4ed8;
}