* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #ffffff;
  overflow-x: hidden;
}
.gradient-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: -1; }
.gradient-blob-1, .gradient-blob-2, .gradient-blob-3 { position: absolute; opacity: 0.5; animation: float 10s ease-in-out infinite; }
.gradient-blob-1 { top: -20%; left: -10%; width: 600px; height: 600px; background: linear-gradient(135deg, #00d4aa 0%, #ff6b9d 100%); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; animation: float-reverse 6s ease-in-out infinite; }
.gradient-blob-2 { top: 10%; right: -5%; width: 500px; height: 500px; background: linear-gradient(135deg, #ffa500 0%, #ff69b4 100%); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; animation: float-reverse 12s ease-in-out infinite; }
.gradient-blob-3 { bottom: -10%; left: 20%; width: 550px; height: 550px; background: linear-gradient(135deg, #00d4aa 0%, #a8ff4a 100%); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; animation: float-reverse 4s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-30px) translateX(20px); } }
@keyframes float-reverse { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(30px) translateX(-20px); } }

@media (max-width: 768px) {
  .gradient-blob-1 { width: 400px; height: 400px; }
  .gradient-blob-2 { width: 350px; height: 350px; }
  .gradient-blob-3 { width: 380px; height: 380px; }
}

.transition-all { transition: all 0.5s ease; }

@keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-12px);
    }
}

.float-animation {
    animation: float 5s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 1.2s ease-out forwards;
}

@keyframes fadeInUpVideo {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.animate-fadeInUpVideo {
  animation: fadeInUpVideo 1s ease-out both;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Bricolage Grotesque", sans-serif;
}
body, p, span, a, li {
  font-family: "Montserrat", sans-serif;
}
/*for toast*/
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(40px);
    }
}

.animate-slide-in {
    animation: slideIn 0.25s ease-out forwards;
}

.animate-slide-out {
    animation: slideOut 0.2s ease-in forwards;
}
/* Smooth fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fadeIn {
  animation: fadeIn 0.4s ease-out forwards;
}

/* OTP Input Styling */
.otp-input {
  width: 48px;
  height: 56px;
  text-align: center;
  font-size: 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  outline: none;
  transition: all 0.2s ease;
}
.otp-input:focus {
  border-color: #fbbf24;
  box-shadow: 0 0 0 2px #fde68a;
}

/* Disable number field arrows */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}