@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Poppins", sans-serif;
}

.sticky-ribbon {
  position: sticky;
  top: 0;
  z-index: 50;
  animation: slideDown 0.5s ease-out;
}

#iframe-ovFYixjDIUl1fXx6J4q8,
#inline-ovFYixjDIUl1fXx6J4q8 {
  min-height: 0 !important;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button {
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(143, 0, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(143, 0, 255, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

/* Navbar shadow on scroll */
.navbar-shadow {
  transition: box-shadow 0.3s ease;
}

.navbar-scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.animate-modal-in {
  animation: modalIn 0.3s ease-out;
}

.modal {
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex !important;
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Mobile responsive adjustments */
@media (max-width: 640px) {
  .modal-content {
    max-height: 90vh;
    margin: 1rem;
  }
}

@layer utilities {
  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

.modal {
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex !important;
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Modal animation */
@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.animate-modal-in {
  animation: modalIn 0.3s ease-out;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .modal-content {
    margin: 1rem;
    max-height: 95vh;
  }

  .modal-content iframe {
    min-height: 380px;
  }
}

/* Ensure iframe is responsive */
iframe[data-form-id] {
  display: block;
  width: 100%;
}
