
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0f0f0f;
  color: #e6e6e6;
}

.navbar {
  background-color: transparent;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.block-navbar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  align-items: center;
}

.image-logo {
  height: 2rem;
}

.nav-menu {
  display: flex;
  gap: 1rem;
  background: rgba(70, 70, 70, 0.3);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.875rem;
  color: #e6e6e6;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: #0006;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}

.section-hero {
  padding-top: 7rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.grid-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.heading-hero {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.paragraph-hero {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #cfcfcf;
}

.button {
  background-color: #24c3ee;
  color: #111;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #1ca8d0;
}

.program-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.image-hover {
  border-radius: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.image-hover:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Modal CTA styling */
.modal-cta {
  display: inline-block;
  background-color: #24c3ee;
  color: #111;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  margin-top: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.modal-cta:hover {
  background-color: #1ca8d0;
}
.bg-accent {
  background-color: #27c1e6; /* Logo Blue */
}
.bg-accent-hover {
  background-color: #1aa1c2; /* Slightly darker for hover */
}
.text-accent {
  color: #24c3ee;
}
.counter-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#counter {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text; /* ✅ Standard fallback */
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.counter-subtext {
  font-size: 1.125rem;
  color: #ccc;
}
.card-container {
  background: linear-gradient(to bottom, #111827, #1f2937, #111827);
}
.faq-item {
  background-color: #1f2937; /* dark background */
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #d1d5db;
}

.faq-item.active .faq-answer {
  padding: 12px 20px 20px;
}

.faq-item.active .faq-question {
  background-color: #374151; /* slightly lighter background when active */
}
.faq-item[open] .faq-answer {
  animation: fadeIn 0.4s ease;
}



@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
details {
  overflow: hidden;
  background-color: #1f2937; /* Tailwind's bg-gray-800 equivalent */
  border-radius: 0.5rem; /* rounded-lg */
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 
              0 4px 6px -2px rgba(0,0,0,0.05); /* Tailwind shadow-lg */
  transition: background-color 0.3s ease;
}

details[open] summary {
  background-color: #27badf; /* Indigo-600 */
  color: white;
}

summary {
  padding: 1rem; /* Tailwind p-4 */
  cursor: pointer;
  color: #ffffff; /* White text */
  font-size: 1.25rem; /* Tailwind text-xl */
  font-weight: 600; /* Semibold */
  transition: background-color 0.3s ease, color 0.3s ease;
}

details div {
  padding: 1rem; /* Tailwind p-4 */
  border-top: 1px solid #374151; /* Tailwind border-gray-700 */
  color: #ffffff; /* White text for FAQ answers */
  font-size: 1rem; /* Base text */
  line-height: 1.5;
}
.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: #3B82F6; /* Adjust this hex if you have a specific brand blue */
}

.footer p {
  font-size: 0.875rem;
}
#v1-1-confirm {
  transition: opacity 0.5s ease;
  opacity: 1; /* Ensure visible when shown */
  color: #a5b4fc; /* Tailwind indigo-400 hex */
  font-weight: 600;
  text-align: center;
  margin-top: 0.75rem; /* 3 */
}

/* Modern cookie banner */
.cookie-banner {
  position: fixed;
  bottom: -200px; /* initially hidden */
  left: 0;
  right: 0;
  background: #111;
  color: #fff;
  padding: 1em;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
  z-index: 10000;
  transition: bottom 0.4s ease;
}

.cookie-banner.show {
  bottom: 0; /* slide up */
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-content a {
  color: #0dcaf0;
  text-decoration: underline;
}

.cookie-buttons {
  margin-top: 1em;
}

.cookie-buttons button {
  margin: 0 0.5em;
  padding: 0.5em 1.5em;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  border-radius: 5px;
}

.btn-accept {
  background-color: #0dcaf0;
  color: white;
}

.btn-reject {
  background-color: #666;
  color: white;
}

#cookie-consent {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 1em;
  text-align: center;
  display: none; /* Hidden by default */
  opacity: 0;
  transform: translateY(100%); /* Start hidden below */
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 10000;
}

#cookie-consent.show {
  display: block;
  opacity: 1;
  transform: translateY(0); /* Slide up into view */
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tactical Theme: Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap');

body {
  font-family: 'Roboto Mono', monospace;
  background-color: #111827; /* Tactical dark navy-gray */
  color: #d1d5db; /* Steel gray text */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Mono', monospace;
}

/* Hero Background */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, #0f172a, #1f2937);
}

/* Buttons */
a.bg-white {
  background-color: #d1d5db;
  color: #111827;
}

a.bg-white:hover {
  background-color: #cbd5e1; /* Lighter steel on hover */
}

a.bg-gray-700 {
  background-color: #374151;
}

a.bg-gray-700:hover {
  background-color: #4b5563;
}

/* Teaser Box */
.teaser-box {
  background: linear-gradient(to right, #1f2937, #111827);
  border: 1px solid #374151;
  border-radius: 1rem;
  padding: 2rem;
}

/* Image Preview Enhancements */
.preview-grid img {
  border: 1px solid #374151;
  border-radius: 1rem;
  background: #0f172a;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);
  padding: 8px;
}

/* Tactical Grid Line Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#1f2937 1px, transparent 1px), linear-gradient(90deg, #1f2937 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.03;
  z-index: -1;
}
/* Blueprint Background Styling */
.blueprint-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -999;
  pointer-events: none;
}

.blueprint-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08; /* Make the blueprint just a hair more visible */
}
section {
  backdrop-filter: blur(2px); /* Subtle blur */
}
/* Desktop: Visible Blueprint */
.blueprint-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  transition: opacity 0.5s ease;
}

/* Mobile: Fainter Blueprint */
@media (max-width: 768px) {
  .blueprint-background img {
    opacity: 0.02;
  }
}


/* Optional: Faint grid layer */
.blueprint-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: -1;
}
.mascot-wrapper {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 180px; /* adjust size as needed */
  opacity: 0.9;
  pointer-events: none; /* so it doesn’t block clicks */
}

.mascot-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.7));
}
@media (max-width: 768px) {
  .mascot-wrapper {
    width: 120px;
    bottom: 10px;
    right: 10px;
    opacity: 0.7;
  }
}
.mascot-with-bubble {
  position: relative;
  display: inline-block;
}

.mascot-image {
  width: 180px;
  height: auto;
}

.speech-bubble {
  position: absolute;
  top: 30%; /* Lower, so it aligns near head level */
  right: 100%; /* Closer to the mascot */
  transform: translateX(-10px); /* Slight offset inward */
  background: rgba(17, 24, 39, 0.95); /* Dark tactical */
  color: #d1d5db; /* Light text */
  padding: 12px 16px;
  border-radius: 12px;
  max-width: 200px;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.9rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.speech-bubble::after {
  content: "";
  position: absolute;
  top: 50%; /* Vertically centered */
  right: -10px; /* Right edge of bubble */
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left-color: rgba(17, 24, 39, 0.95); /* Arrow points toward mascot */
}
.speech-bubble {
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 1s ease forwards;
  animation-delay: 1.2s; /* Delay after page load */
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Hide speech bubble on mobile */
@media (max-width: 768px) {
  .speech-bubble {
    display: none;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* New Animation for Fade-In */
@keyframes fadeInPage {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  animation: fadeInPage 1.5s ease forwards;
}
.blueprint-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
  animation: moveBlueprint 60s linear infinite;
}

/* Keyframes for slow horizontal drift */
@keyframes moveBlueprint {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-5%);
  }
}
@keyframes fadeInPage {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  animation: fadeInPage 1.5s ease forwards;
}
@keyframes moveBlueprint {
  0% { transform: translateX(0); }
  100% { transform: translateX(-5%); }
}

.blueprint-background img {
  animation: moveBlueprint 60s linear infinite;
}
.text-brand-blue {
  color: #00B6E3; /* Exact branding blue */
}
.text-brand-blue:hover {
  color: #00D5FF; /* Lighter hover variant */
}
.card {
  background: #111827; /* Tactical blueprint */
  background-image: 
    linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 4px 10px rgba(0, 0, 0, 0.8);
  padding: 1rem;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 0 2px #00B6E3, 0 8px 20px rgba(0, 182, 227, 0.3);
  border-color: #00B6E3;
}

.card img {
  max-height: 180px;
  margin-bottom: 1rem;
  object-fit: contain;
}

footer a {
  text-decoration: none;
  color: #d1d5db; /* Initial link color */
  transition: color 0.3s ease;
}

footer a:hover {
  color: #00B6E3; /* Brand Blue hover color */
}
/* Navigation Links */
nav a {
  text-decoration: none;
  color: #ffffff; /* Initial nav link color */
  transition: color 0.3s ease;
}

nav a:hover {
  color: #00B6E3; /* Brand Blue hover color */
}
.blueprint-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  opacity: 0.5;
}

.blueprint-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Fix Godaddy Form Error Styling */
input.invalid {
  background-color: #374151 !important; /* Tailwind's bg-gray-700 */
  color: #ffffff !important; /* Text stays white */
  border: 2px solid #ef4444; /* Red border for invalid */
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3); /* subtle red glow */
}

input.invalid::placeholder {
  color: #f87171 !important; /* Tailwind's red-400 for placeholder */
}

input.required.invalid {
  background-color: #374151 !important;
  color: #ffffff !important;
}
/* Consistent Input Style */
#ema_signup_form input[type="text"] {
  background-color: #374151; /* Tailwind's bg-gray-700 */
  color: #ffffff;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  width: 100%;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: none;
  font-size: 1rem;
}

/* When focused */
#ema_signup_form input[type="text"]:focus {
  border-color: #6366f1; /* Tailwind's indigo-500 */
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.5); /* Focus ring */
  outline: none;
}

/* When invalid */
#ema_signup_form input.invalid {
  border-color: #ef4444; /* Tailwind's red-500 */
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.4); /* Red glow */
}

/* Invalid placeholder */
#ema_signup_form input.invalid::placeholder {
  color: #f87171; /* Red placeholder */
}

/* When disabled (after successful submission) */
#ema_signup_form input:disabled {
  background-color: #374151;
  color: #9ca3af; /* Tailwind's gray-400 */
  border-color: transparent;
  opacity: 0.6;
}

/* Submit button (already good) */
#ema_signup_form input[type="submit"] {
  background-color: #6366f1; /* Indigo-500 */
  color: white;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: 600;
  width: 100%;
  transition: background-color 0.3s;
}

/* Submit hover */
#ema_signup_form input[type="submit"]:hover {
  background-color: #4f46e5; /* Indigo-600 */
}
.potions-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.potions-container img {
  width: 120px;
  max-width: 100%;
  animation: pulse 2s infinite;
}


.brain-img {
  width: 180px;
  height: auto;
  animation: orbit 20s linear infinite;
  transform-origin: center center;
  transform-style: preserve-3d;
}



.mascot-image {
  width: 100px; /* Mobile Size */
  height: auto;
}

@media (min-width: 640px) {
  .mascot-image {
    width: 160px; /* Desktop Size */
  }
}

.text-content {
  text-align: center;
}

@media (min-width: 640px) {
  .text-content {
    text-align: left;
  }
}
.hero-logo-img {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 0 16px #24c3ee);
  animation: pulseLogo 5s ease-in-out infinite;
}

.hero-logo {
  margin-bottom: 1rem; /* Was mb-8 now mb-4 in HTML for smaller gap */
}


@keyframes pulseLogo {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px #24c3ee);
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px #24c3ee);
  }
}
.brain-alive {
  width: 220px;
  height: auto;
  animation: floatBrain 6s ease-in-out infinite, pulseBrain 3s ease-in-out infinite;
  filter: drop-shadow(0 0 15px #24c3ee);
}

/* Float up and down slowly */
@keyframes floatBrain {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Pulse glow effect */
@keyframes pulseBrain {
  0%, 100% {
    filter: drop-shadow(0 0 15px #24c3ee);
  }
  50% {
    filter: drop-shadow(0 0 30px #24c3ee);
  }
}

/* Optional: occasional glitch flicker */
@keyframes glitchFlicker {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  45% {
    opacity: 1;
    transform: translate(0, 0);
  }
  46% {
    opacity: 0.8;
    transform: translate(2px, -2px);
  }
  47% {
    opacity: 1;
    transform: translate(0, 0);
  }
  48% {
    opacity: 0.9;
    transform: translate(-1px, 1px);
  }
  49% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
  }
}

/* If you want glitch too, add this */
.brain-alive.glitch {
  animation: floatBrain 6s ease-in-out infinite, pulseBrain 3s ease-in-out infinite, glitchFlicker 8s infinite;
}
.feature-card {
  background: linear-gradient(to bottom right, #111827, #1f2937);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 182, 227, 0.4);
  border-color: #00B6E3;
}

.icon-wrapper i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card:hover .icon-wrapper i {
  transform: scale(1.2);
  color: #00B6E3;
}
html {
  scroll-behavior: smooth;
}
nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
nav img {
  transition: width 0.3s ease;
}

nav {
  transition: padding 0.3s ease, background-color 0.3s ease;
}
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ccc;
  font-size: 0.9rem;
}

.badge i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #00B6E3;
}
.counter-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

.counter-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00B6E3; /* your brand blue */
  transition: all 0.5s ease-in-out;
}
@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 5px #00B6E3, 0 0 10px #00B6E3;
  }
  50% {
    text-shadow: 0 0 15px #00B6E3, 0 0 30px #00B6E3;
  }
  100% {
    text-shadow: 0 0 5px #00B6E3, 0 0 10px #00B6E3;
  }
}

/* Pulse animation class */
.counter-glow {
  animation: pulseGlow 2s infinite;
}

.badge {
  background: #111827;
  border: 1px solid #00B6E3;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px; /* fully rounded */
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #00B6E3;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(0, 182, 227, 0.4);
  transition: all 0.3s ease;
}

.badge:hover {
  background: #1f2937;
  box-shadow: 0 0 20px rgba(0, 182, 227, 0.6);
}

.badge-text {
  display: inline-block;
}
.product-card {
  background: linear-gradient(to bottom right, #111827, #1f2937);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 182, 227, 0.4);
  border-color: #00B6E3;
}
.product-card-premium {
  background: linear-gradient(to bottom right, #111827, #1f2937);
  border: 2px solid #00B6E3;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 182, 227, 0.5);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(0, 182, 227, 0.7);
}

.product-card {
  background: linear-gradient(to bottom right, #111827, #1f2937);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 182, 227, 0.4);
  border-color: #00B6E3;
}
/* Custom brand color for submit */
#ema_signup_form input[type="submit"] {
  background-color: #00B6E3; /* Your branding blue */
  color: white;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-weight: 600;
  width: 100%;
  font-size: 1rem;
  transition: background-color 0.3s;
  box-shadow: 0 4px 6px rgba(0, 182, 227, 0.4);
}

/* On hover */
#ema_signup_form input[type="submit"]:hover {
  background-color: #00D5FF; /* Slightly lighter blue */
}
