@tailwind base;
@tailwind components;
@tailwind utilities;

/* Global Styles with clear grey-to-black gradient */
html,
body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(
      180deg,
      #0a0a0c 0%,
      #121217 30%,
      #14141c 55%,
      #0a0a0b 100%
    ),
    radial-gradient(at 30% 20%, rgba(0, 255, 255, 0.08) 0%, transparent 60%),
    radial-gradient(at 70% 80%, rgba(255, 0, 255, 0.08) 0%, transparent 60%);
  background-blend-mode: overlay, overlay, normal;
  color: #f9fafb;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  background-attachment: fixed;
  position: relative; /* 🧠 Needed so the ::before sits on top correctly */
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("/assets/bg-noise.png");
  background-repeat: repeat;
  opacity: 0.03;
  pointer-events: none;
  z-index: -1;
}

/* ---------------------- */
/* Navbar Styling         */
/* ---------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 4px 8px rgba(0, 255, 255, 0.1);
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 10px; /* adjust overall horizontal padding */
}

.navbar-logo {
  height: 50px;
  /* Reduced left padding: the logo will sit closer to the left edge */
  margin-left: -4px;
  margin-top: 4px;
}

.navbar-toggle {
  background: none;
  border: none;
  color: #00ffff;
  font-size: 2rem;
  cursor: pointer;
  /* Add right padding so the button is fully visible */
  padding-right: 20px;
}

/* Hamburger Menu Modal (slides in from the right) */
.menu-modal {
  position: fixed;
  top: 0;
  right: -20px;
  height: 100%;
  width: 160px;
  background: rgba(0, 0, 0, 0.9);
  border-left: 1px solid rgba(0, 255, 255, 0.5);
  border-radius: 0 0 0 8px;
  padding: 20px;
  box-shadow: -4px 0 8px rgba(0, 255, 255, 0.2);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.menu-modal.show {
  display: block;
  transform: translateX(0);
}

.menu-modal-close {
  position: absolute;
  top: 10px;
  left: 10px;
  background: none;
  border: none;
  color: #00ffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.menu-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Navigation links remain unchanged */
.nav-link {
  color: #f9fafb;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-left: 25px;
}

.nav-link:hover {
  color: #00ffff;
  background-color: rgba(0, 255, 255, 0.1);
}

/* ---------------------- */
/* Hero Section Styling   */
/* ---------------------- */
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  /* Reduced top margin to move content up */
  margin-top: 20px;
  padding: 20px 20px 5px;
}

.hero-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.hero-logo {
  width: 600px;
  max-width: 100%;
  margin-bottom: 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: 0;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #cbd5e0;
  max-width: 800px;
  margin-bottom: 20px;
}

/* === GLOWING HERO BUTTONS WITH COLOR FLIP === */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
}

.hero-btn.glow {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  width: 220px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  background: transparent;
  border: 2px solid transparent;
  z-index: 0;
  color: #ff00ff;
  transition: all 0.3s ease-in-out;
}

.hero-btn.glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, #00ffff, #ff00ff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.hero-btn.glow:hover::before {
  background: linear-gradient(135deg, #ff00ff, #00ffff);
}

.hero-btn.glow:hover {
  color: #00ffff;
  transform: scale(1.05);
}

/* ---------------------- */
/* Chat Modal Styling     */
/* ---------------------- */
.chat-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(0, 255, 255, 0.5);
  border-radius: 10px;
  padding: 20px;
  z-index: 2000;
  width: 90%;
  max-width: 600px;
}

.chat-modal.show {
  display: block;
}

.chat-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #00ffff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Chat Interface */
.chat-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chat-header {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ffff;
  margin-bottom: 10px;
}

.chat-box {
  height: 300px;
  overflow-y: auto;
  background: #222;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.user-message,
.ai-message {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 8px;
}

.user-message {
  background: #00ffff;
  align-self: flex-end;
  color: #111;
}

.ai-message {
  background: #444;
  color: #f9fafb;
  align-self: flex-start;
}

.error-message {
  color: red;
  font-weight: bold;
}

/* Key changes here: keep them on one row without overflowing */
.chat-input-container {
  display: flex;
  align-items: center; /* Vertically center the input & button */
  justify-content: space-between; /* Spread input & button if needed */
  gap: 10px;
  box-sizing: border-box;
  width: 100%; /* Fill the modal’s width */
}

/* Let the input shrink to avoid overflow, but fill the remaining space */
.chat-input {
  flex: 1 1 auto; /* Grows and shrinks as needed */
  min-width: 0; /* Prevents flex from forcing a minimum size */
  padding: 12px;
  background: #222;
  color: white;
  border: none;
  border-radius: 4px;
  box-sizing: border-box;
}

/* If you want a smaller button, you can reduce padding or set a max-width */
.send-button {
  padding: 12px 18px;
  background: #00ffff;
  color: black;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.send-button:hover {
  background: #00cccc;
}

/* ---------------------- */
/* Global Scrollbar Styling */
/* ---------------------- */

/* For WebKit browsers */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 255, 0.5);
  border-radius: 8px;
  border: 2px solid rgba(0, 255, 255, 0.7);
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 255, 255, 0.5) rgba(255, 255, 255, 0.1);
}

@-webkit-keyframes spin-horizontal {
  from {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@keyframes spin-horizontal {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.navbar-logo {
  display: inline-block;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transform-origin: center;
  backface-visibility: visible;
}

.navbar-logo.spin {
  -webkit-animation: spin-horizontal 2.4s linear infinite;
  animation: spin-horizontal 2.4s linear infinite;
}

/* ---------------------- */
/* Schedule Modal Styling */
/* ---------------------- */
/* Ensure schedule form and inputs use border-box sizing */
#schedule-form,
.schedule-input {
  box-sizing: border-box;
}

/* Updated Schedule Modal Styling */
.schedule-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(0, 255, 255, 0.5);
  border-radius: 10px;
  padding: 20px;
  z-index: 2100;
  width: 90%;
  max-width: 700px;
  max-height: 90vh; /* Limit modal height to 90% of the viewport */
  overflow-y: auto; /* Enable vertical scrolling if content exceeds max-height */
}

.schedule-modal.show {
  display: block;
}

.schedule-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #00ffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.schedule-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 90vh !important; /* Container can flex but won't exceed 80% of viewport height */
  overflow: hidden; /* Hide overflow so inner elements control scrolling */
}

.schedule-header {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #f2f4f8;
  margin-bottom: 10px;
}

/* FullCalendar container remains full size */
.calendar-container {
  width: 100%;
  min-height: 300px;
  background: #222;
  border: 1px solid #00ffff;
  border-radius: 6px;
  margin-bottom: 0;
  padding: 10px;
  box-sizing: border-box;
  flex: 1 1 auto; /* Allow the calendar to expand and take available space */
}

/* ====================== */
/* FullCalendar Customization */
/* ====================== */

/* -- Toolbar & Header -- */
.fc .fc-toolbar {
  background-color: #222;
  border-bottom: none;
}
.fc .fc-toolbar-title {
  color: #f2f4f8;
  font-weight: bold;
}
.fc .fc-col-header-cell {
  background-color: #111111 !important; /* Header background */
  border-bottom: 1px solid #00ffff; /* Optional border */
}
.fc .fc-col-header-cell-cushion {
  color: #f9fafb !important; /* Header text color */
  font-weight: bold;
}
.fc .fc-scrollgrid-sync-table th {
  color: #00ffff;
  font-weight: bold;
}

/* -- Navigation Buttons -- */
.fc .fc-button {
  background: #222;
  border: 1px solid #00ffff;
  color: #00ffff;
  font-weight: bold;
  padding: 0.4rem 0.8rem;
}
.fc .fc-button:hover {
  background: #00ffff;
  color: #0a0a0b;
}
.fc .fc-button-active {
  background: #00ffff;
  color: #0a0a0b;
}

/* -- Day Grid Cells -- */
.fc .fc-daygrid-day {
  border: 1px solid #000000;
  background-color: #f2f4f8;
  transition: background-color 0.2s ease;
}
.fc .fc-daygrid-day:hover {
  background-color: #00ffff;
}
.fc .fc-daygrid-day-number {
  color: #000000;
  font-weight: bold;
  padding: 0.2rem;
}

/* -- Weekend Styling -- */
.fc .fc-day-sat,
.fc .fc-day-sun {
  background-color: #a7a7a7;
}

/* -- Event Styling (DayGrid & TimeGrid) -- */
.fc .fc-event {
  background-color: #00ffff;
  border: none;
  color: #0a0a0b;
  font-weight: bold;
  padding: 2px 4px;
  font-size: 0.9rem;
}
.fc .fc-event:hover {
  background-color: #00cccc;
}

/* -- TimeGrid Specific -- */
.fc .fc-timegrid-slot {
  border-top: 1px solid #333;
}
.fc .fc-timegrid-col {
  background-color: #111;
}
.fc .fc-timegrid-slot-label {
  color: #00ffff;
  font-size: 0.9rem;
  font-weight: bold;
}

/* -- Grid Borders -- */
.fc .fc-scrollgrid {
  border: 1px solid #00ffff;
}

/* -- Agenda/List View (Optional) -- */
.fc .fc-list {
  background-color: #111;
  color: #00ffff;
}
.fc .fc-list-heading td {
  background-color: #222;
  color: #00ffff;
  font-weight: bold;
}

/* -- Root Variable Overrides -- */
:root {
  /* Override today's background color */
  --fc-today-bg-color: #3b3b3b;
  --fc-today-text-color: #f9fafb; /* Your desired text color */
  --fc-today-hover-text-color: #000000; /* Text color on hover */

  /* Override header background and text colors */
  --fc-col-header-bg-color: #f2f4f8;
  --fc-col-header-text-color: #000000;
}

/* Apply the background override */
.fc .fc-day-today {
  background-color: var(--fc-today-bg-color);
}

/* Override the text color for today's day number */
.fc .fc-day-today .fc-daygrid-day-number {
  color: var(--fc-today-text-color);
}

/* Change text color on hover */
.fc .fc-day-today:hover .fc-daygrid-day-number {
  color: var(--fc-today-hover-text-color);
}

/* Apply header variable customizations */
.fc .fc-col-header-cell {
  background-color: var(--fc-col-header-bg-color);
  color: var(--fc-col-header-text-color);
}

/* ====================== */
/* Time Picker Styles */
/* ====================== */

.time-picker-container {
  width: 100%;
  padding: 12px; /* matching schedule-input padding */
  border: 1px solid #00ffff;
  border-radius: 6px;
  background: #222;
  color: #f9fafb;
  font-size: 1rem;
  box-sizing: border-box;
  min-height: 36px; /* Adjust to match your schedule-input height */
  max-height: 200px; /* Scrollable when content overflows */
  overflow-y: auto;
  text-align: center;
}

.time-slot {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.5rem;
  border: 1px solid #00ffff;
  border-radius: 4px;
  background-color: #222;
  color: #f9fafb;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.time-slot:hover {
  background-color: #00ffff;
  color: #0a0a0b;
}
.time-slot.selected {
  background-color: #00ffff;
  color: #0a0a0b;
}

/* Placeholder for inactive state */
.time-picker-container:empty::before {
  content: "Select a date to view available time slots";
  color: #878a8c;
  display: block;
  text-align: center;
  font-style: italic;
  line-height: 25px;
}

/* ====================== */
/* Schedule Form Styling */
/* ====================== */

#schedule-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-sizing: border-box;
}

.schedule-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #00ffff;
  border-radius: 6px;
  background: #222;
  color: #f9fafb;
  font-size: 1rem;
  box-sizing: border-box;
}

.schedule-submit {
  padding: 12px 18px;
  background: #00ffff;
  color: #0a0a0b;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  box-sizing: border-box;
}
.schedule-submit:hover {
  background: #00cccc;
}

.schedule-confirmation {
  text-align: center;
  margin-top: 10px;
  color: #00ffff;
}

.hidden {
  display: none;
}

/* === SECTION HEADING === */
.section-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin: 2rem auto 1rem;
  max-width: 900px;
}
.section-subheading {
  font-size: 1.2rem;
  font-weight: 400;
  color: #cbd5e0;
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6rem;
}

/* === FEATURE TILE CONTAINER WRAPPER === */
.feature-container {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
  max-width: 1305px;
  width: 100%;
  margin: 0 auto;
}

/* === FEATURE TILE SCROLLER (SCROLL LEFT) === */
.hero-feature-tiles {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
}

.hero-feature-tiles .tile-track {
  display: flex;
  gap: 2rem;
  padding: 0 1rem;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}

/* === TILE SHARED STYLES === */
.feature-tile {
  flex: 0 0 auto;
  width: 300px;
  height: 340px;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  transition: all 0.3s ease-in-out;
  position: relative;
  backdrop-filter: blur(6px);
  padding: 3rem 1rem;
  box-sizing: border-box;
}

.feature-tile i {
  font-size: 2.5rem;
  line-height: 2.5rem;
  margin-bottom: 0.3rem;
}

/* === FEATURE TILE STYLING === */
.hero-feature-tiles .feature-tile {
  background: rgba(0, 0, 0, 0.9);
  color: #00ffff;
  box-shadow: 0 0 12px #00ffff80;
}

.hero-feature-tiles .feature-tile i {
  color: #00ffff;
}

.hero-feature-tiles .feature-tile h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
  color: #00ffff;
  min-height: 1.5em;
}

.hero-feature-tiles .feature-tile p {
  font-size: 1rem;
  color: #cbd5e0;
  margin: 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  line-clamp: 6;
  overflow: hidden;
  text-align: center;
  align-items: center;
  line-height: 1.4rem;
}

.hero-feature-tiles .feature-tile:hover {
  transform: scale(1.07);
  box-shadow: 0 0 24px #ff00ff88;
}

/* === TESTIMONIAL CONTAINER WRAPPER === */
.testimonial-container {
  width: 100%;
  max-width: 1305px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  margin: 0 auto;
  background: transparent;
}

/* === TESTIMONIAL TILE SCROLLER (SCROLL RIGHT) === */
.hero-feature-tiles.testimonial-mode {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
}

.hero-feature-tiles.testimonial-mode .tile-track {
  background: transparent !important;
  display: flex;
  gap: 2rem;
  padding: 0 1rem;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}

.hero-feature-tiles.testimonial-mode .feature-tile {
  background: rgba(0, 0, 0, 0.9);
  color: white;
  box-shadow: 0 0 12px #ff00ff88;
}

.hero-feature-tiles.testimonial-mode .feature-tile i {
  color: #ff00ff;
}

.hero-feature-tiles.testimonial-mode .feature-tile h3 {
  font-size: 1.4rem;
  margin: 0;
  font-weight: bold;
  color: #ff00ff;
  min-height: 1.5em;
}

.hero-feature-tiles.testimonial-mode .feature-tile p {
  font-size: 1rem;
  color: #f0f0f0;
  margin: 0;
  font-style: italic;
  line-height: 1.4rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  line-clamp: 6;
  overflow: hidden;
  text-align: center;
  align-items: center;
}

.hero-feature-tiles.testimonial-mode .feature-tile:hover {
  transform: scale(1.07);
  box-shadow: 0 0 24px #00ffff;
}

/* === EINOVAI CARDS + STEPS (Unified Layout with Style Enhancements) === */
.einovai-cards,
.einovai-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1305px;
  margin: 2rem auto;
  padding: 2rem 1rem;
  justify-items: center;
  position: relative;
}

/* Shared Card/Step Styling */
.einovai-card,
.einovai-step {
  position: relative;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid #00ffff80;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.08);
  transition: all 0.3s ease-in-out;
  max-width: 450px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* 🔹 Top Accent Bar */
.einovai-card::before,
.einovai-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #00ffff, #ff00ff);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  opacity: 0.8;
}

/* 🔹 Icon Styling */
.einovai-card i,
.einovai-step i {
  font-size: 2.2rem;
  color: #00ffff;
  background: rgba(0, 255, 255, 0.08);
  border-radius: 50%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  display: inline-block;
}

/* 🔹 Title */
.einovai-card h3,
.einovai-step h3 {
  color: #00ffff;
  margin-bottom: 0.4rem;
  font-size: 1.35rem;
  font-weight: 700;
}

/* 🔹 Optional Subtitle */
.card-subtitle {
  font-size: 0.85rem;
  color: #ff00ff;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

/* 🔹 Paragraph */
.einovai-card p,
.einovai-step p {
  color: #cbd5e0;
  font-size: 1rem;
  line-height: 1.55rem;
}

/* 🔹 Hover effect */
.einovai-card:hover,
.einovai-step:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 0 28px #00ffff88;
}

/* 🔹 Responsive fallback */
@media (max-width: 1024px) {
  .einovai-cards,
  .einovai-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .einovai-cards,
  .einovai-steps {
    grid-template-columns: 1fr;
  }
}

.final-cta {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(180deg, #0a0a0b, #111);
  border-top: 1px solid rgba(0, 255, 255, 0.1);
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  margin-top: 2rem;
}

.final-cta-heading {
  font-size: 2.2rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.final-cta-subheading {
  font-size: 1.2rem;
  color: #cbd5e0;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6rem;
}

.final-cta-button {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border-radius: 12px;
  width: 200px; /* wider like before */
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  background: transparent;
  border: 2px solid transparent;
  z-index: 0;
  color: #ff00ff;
  transition: all 0.3s ease-in-out;
}

.final-cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, #00ffff, #ff00ff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.final-cta-button:hover::before {
  background: linear-gradient(135deg, #ff00ff, #00ffff);
}

.final-cta-button:hover {
  color: #00ffff;
  transform: scale(1.05);
}
