/* Global styles for all pages */
html, body, main {
  margin: 0;
  padding: 0;
}

/* Modern theme with dynamic background */
.blue-theme-bg {
  background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #303f9f 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Simple floating bubbles animation */
.blue-theme-bg::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 20%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 20%),
    radial-gradient(circle at 40% 70%, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 20%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 20%);
  background-size: 100% 100%;
  animation: bubbleFloat 15s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes bubbleFloat {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
  25% {
    background-position: 3% 3%, -3% -2%, 2% -3%, -2% 2%;
  }
  50% {
    background-position: 0% 5%, 5% 0%, -5% 0%, 0% -5%;
  }
  75% {
    background-position: -3% 2%, 2% -3%, -2% -2%, 3% 3%;
  }
  100% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}


/* Add animated stars effect */


@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
    background-size: 400% 400%;
  }
  25% {
    background-position: 50% 100%;
    background-size: 300% 300%;
  }
  50% {
    background-position: 100% 50%;
    background-size: 400% 400%;
  }
  75% {
    background-position: 50% 0%;
    background-size: 300% 300%;
  }
  100% {
    background-position: 0% 50%;
    background-size: 400% 400%;
  }
}

@keyframes twinkleAnimation {
  0% {
    opacity: 0.3;
    background-position: 0 0, 40px 60px, 130px 270px;
    filter: blur(0.5px);
  }
  25% {
    opacity: 0.7;
    background-position: 25px 25px, 65px 85px, 155px 295px;
    filter: blur(0px);
  }
  50% {
    opacity: 1;
    background-position: 50px 50px, 90px 110px, 180px 320px;
    filter: blur(0px);
  }
  75% {
    opacity: 0.7;
    background-position: 75px 75px, 115px 135px, 205px 345px;
    filter: blur(0px);
  }
  100% {
    opacity: 0.3;
    background-position: 100px 100px, 140px 160px, 230px 370px;
    filter: blur(0.5px);
  }
}


body {
  /* Modern gradient background with animation */
  background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #303f9f 100%);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
  min-height: 100vh;
  height: 100vh;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
}
.logo-container {
  max-width: 280px;
  margin: 15px auto;
}
.spinner {
  width: 25px;
  height: 25px;
  border: 4px solid #f3f3f3; /* Light grey background */
  border-top: 4px solid #3498db; /* Blue spinner color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: auto; /* Center if used in flex or block context */
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.logo-container img {
  width: 100%;
}
.main h2 {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 15px;
  color: yellow;
}
.service-text {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
form {
  padding: 0;
  margin: 0;
}
.success-msg {
  color: #008000;
}
.star-icon {
  position: absolute !important;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: pulse 1.5s infinite ease-in-out;
}
.star-icon-large {
  position: absolute !important;
  top: -25px;
  left: 0;
  right: 0;
  margin: auto;
  animation: pulse 1s infinite ease-in-out;
}
.trouphy-icon {
  position: absolute !important;
  left: -50px;
  animation: pulse 1s infinite ease-in-out;
}
.circle-icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 4px solid #f5f5f5;
  position: absolute;
  border-radius: 50px;
  top: 15%;
  right: 0;
  animation: up-down 3s infinite ease-in-out;
}
.circle-icon-left {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: orangered;
  position: absolute;
  border-radius: 50px;
  top: 25%;
  left: 0;
  animation: up-down 3s infinite ease-in-out;
}
.pulse {
  animation: pulse 0.8s infinite ease-in-out;
}
.joystick {
  animation: updown 6s infinite ease-in-out;
}
@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px) rotate(5deg) scale(0.9);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes up-down {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* #2e68f1, #2759d5  */
/* joystic */
.img-wrapper {
  background-image: url("../assets/images/hafltoon-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .img-wrapper {
    min-height: 400px;
  }
}
.img-container {
  max-width: 380px;
  height: 350px;
  width: 100%;
  margin: 50px auto;
  display: flex;
  align-items: center;
}

.rotate-eff {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  animation: rotateRadar 10s linear infinite; /* 10 seconds for one full rotation */
  transform-origin: center center;
}
.exit-btn {
  background: #2960de;
  display: inline-block;
  margin: auto;
  color: #ffffff;
  padding: 5px 20px 5px 20px;
  line-height: 24px;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  margin: 10px auto;
}
.rotate-eff span {
  width: 200px;
  height: 200px;
  background: rgba(
    255,
    255,
    255,
    0.1
  ); /* Transparent background with slight color */
  box-shadow: 0 0 15px rgba(0, 0, 255, 0.1); /* Glowing effect */
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0) 40,
    rgba(255, 255, 255, 0.2) 60%
  );
  position: relative;
  transition: transform 0.5s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  border-radius: 100px;
  z-index: -1;
}
/* Define the smooth and slow rotation */
@keyframes rotateRadar {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.img-wrapper img {
  position: relative;
  z-index: 1;
}

/* Glass Card Container */
.glass-card {
  position: relative;
  width: 300px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 1); /* White background */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); /* Enhanced shadow for depth */
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #000000; /* Black text */
  overflow: hidden;
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
}



/* Optional: Add a border to enhance the glass effect */
.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.15); /* Light frosted glass border */
  border-radius: 15px;
  pointer-events: none; /* Make sure this doesn't interfere with content */
}

/* Header Style */
.glass-card h2 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #000000; /* Black text */
}

/* Body Style */
.glass-card p {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #000000; /* Black text */
}
.modern-card {
  position: relative;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 1); /* White background */
  border-radius: 12px; /* Slightly less rounded corners for professional look */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* More subtle shadow for professional look */
  overflow: hidden; /* To avoid any content spilling out */
  width: 100%;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1;
  color: #000000; /* Black text */
}

/* All text inside modern-card should be black */
.modern-card * {
  color: #000000;
}


.modern-card:hover {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* input field  */
.form-control {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px; /* Less rounded borders for more professional look */
  padding: 10px 20px;
  font-size: 18px;
  line-height: 20px;
  transition: all 0.3s ease; /* Smooth transition for focus and hover */
  background: rgba(255, 255, 255, 1);
  color: #000000; /* Changed to black */
  -webkit-text-fill-color: #000000; /* For WebKit browsers */
}

.form-control:focus {
  border-color: #303f9f; /* Indigo border when focused */
  box-shadow: 0 0 10px rgba(48, 63, 159, 0.3); /* Subtle focus shadow */
  transform: scale(1.02); /* Zoom-in effect on focus */
  background: rgba(255, 255, 255, 1); /* Keep white background on focus */
  color: #000000;
  -webkit-text-fill-color: #000000;
}

.form-control::placeholder {
  color: rgba(0, 0, 0, 0.6); /* Darker placeholder text */
}

.input-group {
  max-width: 100%;
  border-radius: 8px;
  /* overflow: hidden; */
}
.input-group span {
  background: linear-gradient(135deg, #1a237e 0%, #303f9f 100%);
  display: inline-block;
  height: 100%;
  min-width: 80px;
  line-height: 56px;
  height: 56px;
  font-weight: 600;
  color: #ffffff; /* Keep white text on blue background */
  font-size: 18px;
  text-align: center;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
/* Error border styling */
.form-control.error {
  border-color: #dc3545;
  box-shadow: 0 0 8px rgba(220, 53, 69, 0.5);
}
.phone-input {
  height: 56px;
}
.form-control:disabled {
  background-color: #f5f5f5;
  border-color: #ddd;
  color: #666666;
  -webkit-text-fill-color: #666666;
}
.error {
  color: #dc3545;
  font-size: 14px;
}
.success {
  color: #018f37;
  font-size: 14px;
}

/* Response message styling */
#responseMessage, #pinResponseMessage {
  color: #333333;
}
.input-group .form-control {
  border-radius: 0 8px 8px 0; /* Squared corners on the right side */
  overflow: hidden;
  color: #000000;
  -webkit-text-fill-color: #000000;
}

.card {
  background: rgba(255, 255, 255, 1);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn {
  border-radius: 8px;
  font-weight: bold;
}
.text-lg {
  font-size: 18px;
  color: #000000; /* Black text for form titles */
}
.img-banner {
  /* max-width: 600px; */
  margin: 10px auto;
}
.img-banner img {
  width: 100%;
}
/* Error message styling */
#error-message {
  display: none;
  color: #dc3545;
  font-size: 14px;
  margin-top: 10px;
}

.btn-secondary{
  padding: 10px 15px;
}

.theme-btn {
  background: linear-gradient(to right, #1a237e, #283593, #303f9f);
  background-size: 200% auto;
  color: #ffffff;
  transition: all 0.5s ease;
  text-transform: uppercase;
  font-size: 18px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: gradientButton 3s ease infinite;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.theme-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  z-index: -1;
  animation: buttonShine 3s linear infinite;
}

@keyframes buttonShine {
  0% {
    transform: rotate(30deg) translateY(-100%) scale(1);
    opacity: 0;
  }
  25% {
    transform: rotate(30deg) translateY(-50%) scale(1.1);
    opacity: 0.5;
  }
  50% {
    transform: rotate(30deg) translateY(0%) scale(1.2);
    opacity: 1;
  }
  75% {
    transform: rotate(30deg) translateY(50%) scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: rotate(30deg) translateY(100%) scale(1);
    opacity: 0;
  }
}

.theme-btn:hover {
  background-position: right center;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

.theme-btn:disabled {
  color: #ffffff;
  background: linear-gradient(to right, #666, #888, #999);
  cursor: not-allowed;
  opacity: 0.6;
  animation: none;
  transform: none;
  box-shadow: none;
}

@keyframes gradientButton {
  0% {
    background-position: 0% 50%;
    box-shadow: 0 4px 15px rgba(10, 36, 99, 0.3);
  }
  25% {
    background-position: 50% 75%;
    box-shadow: 0 6px 18px rgba(62, 146, 204, 0.4);
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 0 8px 20px rgba(33, 118, 174, 0.5);
  }
  75% {
    background-position: 50% 25%;
    box-shadow: 0 6px 18px rgba(62, 146, 204, 0.4);
  }
  100% {
    background-position: 0% 50%;
    box-shadow: 0 4px 15px rgba(10, 36, 99, 0.3);
  }
}
/* price-point */
.price-point {
  font-size: 11px;
  color: #666666;
  font-weight: 600;
}
.down-arrow {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000; /* Arrow color */
  position: absolute;
  top: 14px;
  right: 8px;
}
/* Basic dropdown wrapper */
.dropdown.lang-swticher {
  position: absolute;
  display: inline-block;
  right: 10px;
  top: 10px;
  z-index: 100;
}

/* Button styling */
.lang-swticher .dropdown-button {
  background: rgb(255, 255, 255);
  color: #000000;
  padding: 8px 25px 8px 8px;
  font-size: 12px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  min-width: 80px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.lang-swticher .dropdown-button:hover {
  background: rgb(255, 255, 255);
  transform: translateY(-2px);
}
.w-100 {
  width: 100%;
}

/* Dropdown content */
.lang-swticher .dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* below the button */
  left: 0;
  min-width: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 10;
  text-align: center;
  overflow: hidden;
}

/* Individual language links */
.lang-swticher .dropdown-content a {
  color: #000000;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 13px;
  display: block;
  white-space: nowrap;
  transition: all 0.2s ease;
}

/* Hover effect - simplified and more direct */
.lang-swticher .dropdown-content a {
  color: #000000;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 13px;
  display: block;
  white-space: nowrap;
  transition: all 0.2s ease;
  background-color: #ffffff;
}

.lang-swticher .dropdown-content a:hover {
  background-color: #1a237e !important;
  color: #ffffff;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 13px;
  display: block;
  white-space: nowrap;
  transition: all 0.2s ease;
}
/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.legal-text p {
  font-size: 12px;
  margin-bottom: 0px;
  font-family: "Roboto", sans-serif;
  line-height: 15px;
  color: #ffffff;
}

.legal-text ul {
  font-size: 12px;
  margin-bottom: 0px;
  font-family: "Roboto", sans-serif;
  line-height: 15px;
  color: #ffffff;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.device-icon {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.device-icon svg {
  width: 60px;
  color: #ffffff;
  transition: transform 0.3s ease, filter 0.3s ease, color 0.3s ease;
}
.device-icon:hover svg {
  color: #8C9EFF; /* Light indigo color that matches the theme */
  transform: rotate(-12deg) scale(1.1);
  /* filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5)); */
}

/* progress bar  */
.user-progressbar {
  display: none;
}
/* Progress bar container */
.progressbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 400px;
  margin: 0px auto 15px auto;
  position: relative;
}

/* Individual step */
.step {
  /* text-align: center; */
  flex: 1;
  position: relative;
}

/* Step number circle */
.number {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
  border-radius: 50%;
  line-height: 30px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 12;
  margin: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Active step */
.step.active .number {
  background: linear-gradient(135deg, #283593 0%, #303f9f 100%);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(26, 35, 126, 0.5);
}

/* Step label */
.label {
  margin-top: 5px;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
}

/* Progress line */
.progressbar .step::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 25px;
  right: 15px;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #000000, #000000);
  z-index: 0;
}
#splash {
  display: none;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.splash-container {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.splash-container img {
  width: 100%;
  margin: auto;
  animation: sizzle 0.6s infinite ease-in-out;
  transform-origin: center;
}
@keyframes sizzle {
  0% {
    transform: scale(1) rotate(0deg);
    filter: blur(0);
    opacity: 1;
  }
  15% {
    transform: scale(1.01) rotate(0.5deg);
    filter: blur(0.2px);
    opacity: 0.95;
  }
  30% {
    transform: scale(0.99) rotate(-0.5deg);
    filter: blur(0.4px);
    opacity: 0.9;
  }
  45% {
    transform: scale(1.015) rotate(0.3deg);
    filter: blur(0.3px);
    opacity: 0.95;
  }
  60% {
    transform: scale(0.985) rotate(-0.3deg);
    filter: blur(0.5px);
    opacity: 0.9;
  }
  75% {
    transform: scale(1.02) rotate(0.2deg);
    filter: blur(0.2px);
    opacity: 0.95;
  }
  90% {
    transform: scale(0.99) rotate(-0.1deg);
    filter: blur(0.1px);
    opacity: 0.98;
  }
  100% {
    transform: scale(1) rotate(0deg);
    filter: blur(0);
    opacity: 1;
  }
}

.ripple-wrapper {
  position: absolute;
  width: 200px;
  height: 200px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.ripple {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleEffect 3s ease-out infinite;
}

/* Different start times to create the weave/staggered effect */
.circle1 {
  animation-delay: 0s;
}

.circle2 {
  animation-delay: 1s;
}

.circle3 {
  animation-delay: 2s;
}

/* Enhanced ripple keyframes for weaving effect */
@keyframes rippleEffect {
  0% {
    transform: scale(0.2) rotate(0deg);
    opacity: 0.6;
    border-radius: 50%;
  }

  20% {
    transform: scale(0.5) rotate(5deg);
    opacity: 0.8;
    border-radius: 48%;
  }

  40% {
    transform: scale(1.0) rotate(10deg);
    opacity: 0.6;
    border-radius: 46%;
  }

  60% {
    transform: scale(1.5) rotate(5deg);
    opacity: 0.4;
    border-radius: 48%;
  }

  80% {
    transform: scale(1.8) rotate(0deg);
    opacity: 0.2;
    border-radius: 49%;
  }

  100% {
    transform: scale(2) rotate(0deg);
    opacity: 0;
    border-radius: 50%;
  }
}
/* Progress filled */
.progressbar .step::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 25px;

  height: 4px;
  background: linear-gradient(90deg, #283593, #303f9f);
  z-index: 1;
}
.progressbar .step:last-child::before,
.progressbar .step:last-child::after {
  content: none;
}

.progressbar .step.active::before,
.progressbar .step.active::after {
  width: 100%;
}

@media (max-width: 767px) {
  body {
    /* Modern gradient background with animation for mobile */
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #303f9f 100%);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    height: 100vh;
  }

  /* Background animation - already defined globally */
  .user-progressbar {
    display: block;
  }
  .modern-card {
    padding: 20px;
  }
  .main h2 {
    font-size: 18px;
    margin-bottom: 0;
  }
  .device-icon svg {
    width: 48px;
    color: #ffffff;
  }
  .service-text {
    font-size: 16px;
  }
  .logo-container {
    max-width: 280px;
    margin: 5px auto;
  }

  .bg-style-mobile {
    /* background-image: url("../assets/images/hafltoon-bg.png"); */
    background-size: 120%;
    background-repeat: no-repeat;
    background-position: center top;
    position: relative;
    text-align: center;
    min-height: 600px;
  }

  .progressbar {
    max-width: 220px;
  }
  
  /* Force black text in all input fields */
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="number"],
  input[type="password"] {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
  }
  
  /* Animations */
  
  /* Float animation for the arrow icon */
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  /* Arrow icon container styling */
  .arrow-container {
    width: 96px;
    height: 96px;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
  }
  
  .arrow-circle {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    border: 2px solid #303f9f;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  
  .arrow-circle svg {
    width: 48px;
    height: 48px;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.02);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .pulse {
    animation: pulse 0.8s infinite;
  }
  
  /* Device icons hover effects */
  .device-icon {
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .device-icon:hover {
    transform: translateY(-5px) !important;
    filter: brightness(1.2);
    color: #8C9EFF; /* Light indigo color that matches the theme */
  }
}
