:root {
  --background: 0 0% 98%;
  --foreground: 0 0% 10%;
  --muted-foreground: 0 0% 40%;
  --border: 0 0% 80%;
  --heading-align:center;
  --heading-text-transform: '';
}
html,
body {
  margin: 0;
  padding: 0;
  font-family:
    Outfit,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  background:
    linear-gradient(180deg, #f5f3ff 0%, #ffffff 100%);
  color: hsl(var(--foreground));
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.border-default {
  border-width: 1px;
  border-color: hsl(var(--border));
}
.shadow-default {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.font-heading {
  font-weight: 700;
}
.animate-in {
  animation: fadeIn 0.3s ease-in-out forwards;
}
.fade-in {
  opacity: 0;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Button styles */
.btn-menu-cta {
    min-width: 120px;
}
.btn-primary {
  background-color: #4f46e5;
  color: #fff;
  border: 1px solid #ddd;
  transition: background-color 0.3s;
}
.btn-primary:hover {
  background-color: #4338ca;
}
.btn-secondary {
  background-color: #ede9fe;
  color: #4c1d95;
  border: 1px solid #ddd;
  transition: background-color 0.3s;
}
.btn-secondary:hover {
  background-color: #ddd6fe;
}
.btn-language {
  opacity: 0.7;
  background-color: white;
  color: #4c1d95;
  border: 1px solid #ddd;
  transition: background-color 0.3s;
}
.btn-language:hover {
  background-color: #ede9fe;
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background-color 0.3s ease-in-out;
}
header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
}
#scrollToTopBtn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #4338ca;
  color: #fff;
  border-radius: 9999px;
  padding: 0.75rem;
  display: none;
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 50;
}
#scrollToTopBtn:hover {
  transform: scale(0.9);
}

/* -----------------------------
       Animation Section (Inbound/Outbound)
       ----------------------------- */
#animationContainer {
  position: relative;
  width: 100%;
  height: 250px;
  margin-bottom: 1rem;
  overflow: hidden;
}
/* Move server icon upward (e.g. 20% from top) so there's room below */
#animationServerIcon {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
}
/* "Try it out" button placed just below the server icon */
.animationCTA {
  position: absolute;
  top: calc(20% + 64px + 10px);
  left: 50%;
  transform: translateX(-50%);
}
/* Inbound event div (80x40) */
.eventDiv {
  position: absolute;
  width: 80px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-size: 0.875rem;
  opacity: 0;
  transform: scale(1);
}
/* Outbound notification div (80x40) */
.actionDiv {
  position: absolute;
  width: 80px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-size: 0.875rem;
  opacity: 0;
  transform: scale(1);
}

/* -----------------------------
       Pricing Section
       ----------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.pricing-tile {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s,
    background-color 0.2s;
}
.pricing-tile:hover {
  transform: translateY(-8px);
  background-color: #f9fafb;
}

/* -----------------------------
       Testimonial Section
       ----------------------------- */
.testimonial-container {
  position: relative;
  width: 100%;
  height: 150px;
  margin: 2rem 0;
  overflow: hidden;
}
.testimonial-tile {
  width: 120px;
  height: 120px;
  background-color: #e0f2fe;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #0369a1;
  position: absolute;
  opacity: 0;
}

/* -----------------------------
       Accordion Styles (Motion Accordion)
       ----------------------------- */
.accordion {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  background: #ede9fe;
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 300px;
  max-width: 700px;
}
.accordion section {
  padding: 20px;
  position: relative;
}
.accordion h3 {
  margin: 0;
  display: flex;
}
.accordion hr {
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  z-index: 0;
}
.accordion section:last-child hr {
  display: none;
}
.accordion h3 button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  position: relative;
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  color: inherit;
  cursor: pointer;
  transition:
    background-color 0.3s,
    transform 0.2s;
}
.accordion h3 button:hover {
  background-color: #ddd6fe;
  transform: translateY(-2px);
}
.accordion h3 span,
.accordion h3 svg {
  text-align: left;
  z-index: 1;
  position: relative;
}
.accordion .focus-ring {
  position: absolute;
  inset: -10px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  z-index: 0;
  display: none;
}
.accordion-content {
  overflow: hidden;
  height: 0;
}
.accordion-content > div {
  padding: 20px 0 0;
  opacity: 0;
}
.accordion-content p {
  line-height: 1.5;
  margin: 0;
}
.accordion-content p + p {
  margin-top: 1em;
}
.custom-separator {
    width: 60px;
    height: 5px;
    background-color: #4f46e5;
    margin: 20px auto 48px auto;
}
#videoPlayBtn {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transform-origin: center;
}
#videoPlayBtn:hover {
  transform: scale(1.05) translate(-50%, -50%);
  box-shadow: 0 8px 16px rgba(0, 123, 255, 0.5); /* Adjust glow effect */
  opacity: 0.9;
}
#videoPlayBtn svg {
  transition: fill 0.3s ease-in-out;
}
#videoPlayBtn:hover svg {
  fill: #1e90ff; /* Change color on hover */
}

header {
  background-color: white;
}