.faq-question {
    transition: all 0.3s ease;
}

.faq-answer {
    animation: fadeIn 0.3s ease;
}
 body {
      font-family: 'Lato', sans-serif;
      margin: 0;
      padding: 0;
      font-size: 14px;
      font-weight: 400;
      color: #b4b4b4;
      outline: 0;
      line-height: 1.5em;
      overflow-x: hidden
    }
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-float {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.sticky-apply-btn {
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sticky-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.15);
}

.course-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-slide {
    transition: all 0.3s ease;
}

#testimonial-slides {
    display: flex;
    will-change: transform;
}

.mobile-dot {
    transition: all 0.3s ease;
}
    .sideNavi {
      position: fixed;
      top: 50%;
      right: 0;
      z-index: 99;
    }
    .loader_outer{
      height: 100vh;
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      background-color: #0000007b;
      z-index: 999999;
      display: none;
      justify-content: center;
      align-items: center;
  }
  .loader {
      border: 16px solid #f3f3f3;
      border-radius: 50%;
      border-top: 16px solid #3498db;
      width: 80px;
      height: 80px;
      -webkit-animation: spin 2s linear infinite; /* Safari */
      animation: spin 2s linear infinite;
    }
    
    /* Safari */
 