body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
  }
  
  .hero {
    background: none;
  }
  
  .section-divider {
    width: 100px;
    height: 4px;
    background-color: #C0FF72;
    margin: 20px auto;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .package-card {
    transition: all 0.3s ease;
  }
  
  .package-card:hover {
    transform: scale(1.03);
  }
  
  .highlight {
    position: relative;
    z-index: 1;
  }
  
  .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #FF9D76;
    z-index: -1;
    opacity: 0.7;
  }
  
  .nav-link {
    position: relative;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #C0FF72;
    transition: width 0.3s;
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  .book-card {
    transition: all 0.3s ease-in-out;
  }
  
  .book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(192, 255, 114, 0.7); /* Green glow effect */
  }
  
  .books-swiper .swiper-wrapper {
    transition-timing-function: linear;
  }
  