





/* === Base Font Setup === */
body, p {
  font-family: 'Roboto', 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* === Headings === */
h1.title, h2.title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: capitalize;
}

h1.title.text-size8 {
  font-size: 36px; /* or up to 48px depending on context */
}

h2.title.text-size10 {
  font-size: 28px;
}

h2.title.text-size8 {
  font-size: 24px;
}

/* === Subtitles === */
h3.sub-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}


.fluid-button.button.default-style.outlined {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #284472;
  background-color: transparent;
  border: 2px solid #284472;
  padding: 12px 24px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 4px;
  cursor: pointer;
}

/* Label inside the button (if needed) */
.fluid-button.button.default-style.outlined label {
  cursor: pointer;
}

/* Hover Effect */
.fluid-button.button.default-style.outlined:hover {
  background-color: #66aedd;
  border-color: #66aedd;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
} 


h1, h2, h3, h4, h5, h6 {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
} 
.fluid-button.button.filled {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #f26430;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: strongPulse 2s ease-in-out infinite;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Label stays above effect */
.fluid-button.button.filled label {
  position: relative;
  z-index: 2;
}

/* 🚀 Stronger hover glow */
.fluid-button.button.filled:hover {
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.95), 0 0 48px rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
}

/* 🌟 More prominent pulse animation */
@keyframes strongPulse {
  0%, 100% {
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 32px rgba(255, 255, 255, 0.8);
  }
} 


@media (max-width: 768px) {
  .fluid-button.button.filled {
    animation: strongPulseMobile 2s ease-in-out infinite;
  }

  @keyframes strongPulseMobile {
    0%, 100% {
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    }
    50% {
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    }
  }
}

