@theme {
  --color-primary: #f19231;
  --color-primary-100: #219231;
}

*, ::before, ::after {
  box-sizing: border-box;
}

body::-webkit-scrollbar { 
    display: none;
}


button {
  cursor: pointer;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box_LMS {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

  margin: 10px;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.box_arrow {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

#img_profile {
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}


/* .intro-section {
  opacity: 0;
  transform: translateY(20px);

  animation: reveal-section 1s ease-out forwards;
  animation-delay: 0.3s;
} */

@keyframes reveal-section {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in{
  animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.font{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;

}

.dot {
    width: 9px;
    height: 9px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: white;
    transform: scale(1.2);
}

.dot.active {
    background-color: white;
    transform: scale(1.3);
}

.notification-bar {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 2000;

    background-color: #28a745; 
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-weight: 600;

    opacity: 0;
    transform: translateX(-120%);
    visibility: hidden;

    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.notification-bar.show {
    opacity: 1;
    transform: translateX(0); 
    visibility: visible;
}


@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}