html, body {
  /* background: #ac07f2; */
  background: linear-gradient(180deg, #0a4d68 0%, #088395 100%);
  min-height: 100vh;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100vw;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.mobile-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100vw;
  max-width: 100%;
}

*, *:before, *:after {
  box-sizing: border-box;
}

.container {
  width: 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.d-flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.row {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.col-lg-6 {
  width: 50%;
}

.col-md-10 {
  width: 83.333%;
}

.col-sm-12, .col-12 {
  width: 100%;
  max-width: 100%;
}

.font-weight-bold {
  font-weight: bold;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mb-0 {
  margin-bottom: 0;
}

.p-1 {
  padding: 0.25rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-lg-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-lg-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-pill {
  border-radius: 50rem;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.transition-all {
  transition: all 0.3s ease;
}

.hover-shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.text-gray-700 {
  color: #4a5568;
}

.d-none {
  display: none;
}
.logo-container {
  max-width: 250px;
  margin: 5px auto;
  padding: 0px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  /* animation: logoZoom 2s ease-in-out infinite; */
  position: relative;
}

.logo-container:hover {
  /* transform: scale(1.1); */
}

@keyframes logoZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
.footer-links {
  text-align: center;
}
.footer-links a {
  font-size: 12px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #a0cfff;
  text-decoration: underline;
}
.spinner {
  width: 25px;
  height: 25px;
  border: 4px solid #f3f3f3; /* Light grey background */
  border-top: 4px solid #05bfdb; /* New 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: 90%;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}
.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: #e600ff;
  position: absolute;
  border-radius: 50px;
  top: 25%;
  left: 0;
  animation: up-down 3s infinite ease-in-out;
}
.pulse {
  animation: pulse 1s 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;
  }
  
  .logo-container {
    max-width: 220px;
  }
  
  .modern-card {
    padding: 20px 30px;
  }
  
  .price-point {
    font-size: 15px;
  }
}

/* Tablet specific styles */
@media (min-width: 768px) and (max-width: 991px) {
  .device-icon svg {
    width: 50px;
  }
  
  .theme-btn {
    font-size: 20px;
  }
  
  .text-lg {
    font-size: 18px;
  }
  
  .legal-text p {
    font-size: 10px;
    line-height: 5px;
  }
}
.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: #e600ff;
  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, 0.1); /* Transparent white background */
  backdrop-filter: blur(10px); /* Apply blur effect */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Slight shadow for depth */
  /* Text color */
  overflow: hidden;
}

/* 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;
}

/* Body Style */
.glass-card p {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.modern-card {
  position: relative;
  padding: 20px 40px;
  background-color: rgba(255, 255, 255, 0.95); /* Slightly transparent white */
  border-radius: 15px; /* Rounded corners */
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); Stronger shadow for depth */
  transition: all 0.3s ease; /* Smooth transition on hover */
  overflow: hidden; /* To avoid any content spilling out */
  width: 100%;
  max-width: 100%;
  margin: auto;
  border-top: 4px solid #00ffca; /* New accent border */
}

.modern-card:hover {
  /* transform: translateY(-5px); */
  /* box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25); */
}

/* input field  */
.form-control {
  border: 1px solid #05bfdb;
  border-radius: 30px; /* Rounded borders for input */
  padding: 10px 20px;
  font-size: 18px;
  line-height: 20px;
  transition: all 0.3s ease; /* Smooth transition for focus and hover */
  background: rgba(5, 191, 219, 0.1);
}

.form-control:focus {
  border-color: #00ffca; /* New border when focused */
  box-shadow: 0 0 10px rgba(0, 255, 202, 0.5); /* Focus shadow */
  transform: scale(1.02); /* Zoom-in effect on focus */
}

.input-group {
  max-width: 100%;
  border-radius: 2rem;
  /* overflow: hidden; */
}
.input-group span {
  background-color: #05bfdb;
  /* background: linear-gradient(to bottom, #dddddd, #cccccc); */
  /* background: #cccccc; */
  display: inline-block;
  height: 100%;
  min-width: 80px;
  line-height: 56px;
  height: 56px;
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  border-radius: 50px 0 0 50px;
}
/* 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;
}
.error {
  color: #dc3545;
  font-size: 14px;
}
.success {
  color: #018f37;
  font-size: 14px;
}
.input-group .form-control {
  border-radius: 0 30px 30px 0; /* Rounded corners on the right side */
  overflow: hidden;
}

.card {
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn {
  border-radius: 30px;
  font-weight: bold;
}
.text-lg {
  font-size: 15px;
  font-weight: 700;
  color: #05bfdb;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.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;
}

.theme-btn {
  background: #05bfdb;
  color: #ffffff;
  transition: all 0.5s ease;
  text-transform: uppercase;
  font-size: 22px;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.theme-btn:disabled {
  background: #666666;
  cursor: not-allowed;
}
.theme-btn:hover {
  background: #0a4d68;
  color: #ffffff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* Add specific hover effect for the "CLICK HERE" button */
.AFsubmitbtn:hover {
  background: #0a4d68;
  color: #ffffff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.theme-btn:disabled {
  color: #ffffff;
  background: #999999; /* dimmed color */
  cursor: not-allowed;
  opacity: 0.6; /* make it look inactive */
  box-shadow: none;
}
/* price-point */
.price-point {
  font-size: 12px;
  color: #05bfdb;
  font-weight: 700;
  background-color: transparent;
  /* padding: 8px 15px; */
  border-radius: 0; /* Remove rounded corners */
  display: block; /* Make it full width */
  /* margin: 0 0 10px 0; */
  text-align: center;
  width: 100vw;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  left: 0;
  right: 0;
  /* text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); */
}
.terms-agreement {
  font-size: 10px;
  color: #05bfdb;
  padding: 5px 10px;
  line-height: 1.4;
  text-align: center;
}

.terms-agreement a {
  color: #000000;
  text-decoration: underline;
  font-weight: bold;
  transition: all 0.3s ease;
}

.terms-agreement a:hover {
  color: #0192a8;
}

/* Custom checkbox styling */
.terms-agreement input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 19px;
  height: 18px;
  border: 2px solid #05bfdb;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  position: relative;
  top: -1px;
  vertical-align: middle;
  margin-right: 5px;
  background-color: rgba(5, 191, 219, 0.1);
  transition: all 0.3s ease;
}

.terms-agreement input[type="checkbox"]:checked {
  background-color: #05bfdb;
  border-color: #05bfdb;
}

.terms-agreement input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  color: white;
  font-size: 14px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.terms-agreement input[type="checkbox"]:hover {
  border-color: #00ffca;
  box-shadow: 0 0 5px rgba(0, 255, 202, 0.5);
}

.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-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
  color: #05bfdb;
  padding: 8px 25px 8px 8px;
  font-size: 12px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  min-width: 80px;
  border: 2px solid #05bfdb;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.lang-swticher .dropdown-button:hover {
  background-color: #05bfdb;
  color: white;
}
.w-100 {
  width: 100%;
}

/* Dropdown content */
.lang-swticher .dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* below the button */
  right: 0;
  min-width: 100%;
  background-color: white;
  border: 1px solid #e2e8f0; /* Tailwind 'gray-200' */
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  text-align: center;
  overflow: hidden;
}

/* Individual language links */
.lang-swticher .dropdown-content a {
  color: #333333;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 13px;
  display: block;
  white-space: nowrap;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Last item in dropdown */
.lang-swticher .dropdown-content a:last-child {
  border-bottom: none;
}

/* Hover effect */
.lang-swticher .dropdown-content a:hover {
  background-color: #05bfdb;
  color: #ffffff !important;
}
/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.legal-text {
  margin: 0px auto;
  padding: 5px;
  background: transparent;
  border-radius: 10px;
  color: #ffffff;
  max-width: 100%;
  width: 100%;
}

.legal-text p {
  font-size: 12px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  color: #ffffff;
  max-width: 100%;
}

.legal-text ul {
  padding-left: 20px;
  margin-bottom: 0;
  list-style-type: disc;
}

.legal-text li {
  font-size: 12px;
  margin-bottom: 0px;
  font-family: "Roboto", sans-serif;
  line-height: 1.4;
  color: #ffffff;
}

.legal-text a {
  color: #00ffca;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.legal-text a:hover {
  text-decoration: underline;
  color: #00e1c0;
}
.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:45px;
  color: #ffffff;
  transition: transform 0.3s ease, filter 0.3s ease, color 0.3s ease;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}
.device-icon:hover svg {
  color: #00ffca;
  transform: rotate(-12deg) scale(1.1);
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.4));
}

/* 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: #0a4d68;
  border-radius: 50%;
  line-height: 30px;
  /* margin: 0 auto; */
  color: #fff;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 12;
  margin: auto;
}

/* Active step */
.step.active .number {
  background: #00ffca;
  color: #0a4d68;
}

/* 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: #0a4d68;
  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);
  }
  25% {
    transform: scale(1.01) rotate(0.5deg);
    filter: blur(0.3px);
  }
  50% {
    transform: scale(0.99) rotate(-0.5deg);
    filter: blur(0.6px);
  }
  75% {
    transform: scale(1.02) rotate(0.3deg);
    filter: blur(0.3px);
  }
  100% {
    transform: scale(1) rotate(0deg);
    filter: blur(0);
  }
}

.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);
    opacity: 0.6;
  }

  30% {
    transform: scale(0.7);
    opacity: 0.8;
  }

  60% {
    transform: scale(1.8);
    opacity: 0.3;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* Progress filled */
.progressbar .step::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 25px;

  height: 4px;
  background: #00ffca;
  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 {
    background: linear-gradient(180deg, #0a4d68 0%, #088395 100%);
    height: 100vh;
    overflow: hidden; /* Prevent scrolling on body */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }

  .logo-container img
  {
    width: 70%;
  }
  
  .mobile-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto; /* Allow scrolling within the wrapper */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    padding-top: 5px; /* Reduced top spacing */
    padding-bottom: 5px; /* Reduced bottom spacing */
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    width: 100%;
  }
  
  .user-progressbar {
    display: none;
  }
  
  .modern-card {
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
  }
  
  .form-section {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .text-lg {
    font-size: 16px; /* Smaller font */
    margin-bottom: 5px; /* Reduced margin */
  }
  
  .device-icon svg {
    width: 30px; /* Smaller icons */
    margin: 0 2px;
  }
  
  .d-flex.justify-content-center.my-2 {
    flex-wrap: wrap;
    gap: 3px; /* Reduced gap */
    justify-content: space-around;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
  
  .service-text {
    font-size: 14px;
  }
  
  .logo-container {
    max-width: 160px;
    margin: 2px auto;
    padding: 0px;
  }
  
  .price-point {
    font-size: 12px;
    padding: 0px 0px;
    width: 100%;
    background-color: transparent;
    margin-bottom: 2px;
  }
  
  .theme-btn {
    font-size: 16px; /* Smaller font */
    padding: 6px 12px; /* Reduced padding */
    margin-bottom: 5px; /* Reduced margin */
  }
  
  .input-group span {
    min-width: 60px;
    line-height: 40px; /* Reduced height */
    height: 40px; /* Reduced height */
    font-size: 15px; /* Smaller font */
  }
  
  .phone-input {
    height: 40px; /* Reduced height */
    font-size: 15px; /* Smaller font */
  }
  
  .form-control {
    padding: 8px 15px;
    font-size: 16px;
  }
  
  .legal-text {
    margin: 0 auto;
    padding: 5px;
    font-size: 10px;
    background: transparent;
    color: #ffffff;
    max-width: 100%;
    width: 100%;
  }
  
  .legal-text p {
    font-size: 11px;
    line-height: 1.4;
    color: #ffffff;
    max-width: 100%;
  }
  
  .legal-text ul {
    padding-left: 15px;
    margin-bottom: 0;
    margin-top: 2px;
  }
  
  .legal-text li {
    font-size: 10px;
    margin-bottom: 1px;
    line-height: 1.1;
  }
  
  .legal-text a {
    font-size: 11px;
    color: #a0cfff;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 15px;
  }
  
  .footer-links a {
    font-size: 11px;
    margin: 0 3px;
    padding: 3px 5px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
  }
  
  .dropdown.lang-swticher {
    right: 5px;
    top: 5px;
  }
  
  .lang-swticher .dropdown-button {
    font-size: 11px;
    padding: 6px 20px 6px 6px;
    min-width: 70px;
  }
  
  .down-arrow {
    top: 12px;
    right: 6px;
  }
  
  /* Landscape mode on mobile */
  @media (max-width: 767px) and (orientation: landscape) {
    body {
      height: auto;
      min-height: 100vh;
    }
    
    .container {
      padding-top: 10px;
      padding-bottom: 10px;
      width: 100%;
      max-width: 100%;
    }
    
    .logo-container {
      max-width: 220px;
      margin: 5px auto;
      padding: 8px;
    }
    
    .price-point {
      font-size: 12px;
      padding: 5px 10px;
      margin-bottom: 5px;
      background-color: transparent;
    }
    
    .modern-card {
      padding: 10px;
      margin-bottom: 10px;
    }
    
    .text-lg {
      font-size: 16px;
      margin-bottom: 8px;
    }
    
    .theme-btn {
      font-size: 16px;
      padding: 6px 10px;
    }
    
    .legal-text {
      margin: 0 auto;
      padding: 8px;
      font-size: 10px;
      background: transparent;
      color: #ffffff;
      max-width: 100%;
      width: 100%;
    }
    
    .legal-text p {
      font-size: 10px;
      line-height: 1.3;
      color: #ffffff;
      max-width: 100%;
    }
    
    .legal-text ul {
      padding-left: 12px;
      margin-bottom: 0;
    }
    
    .legal-text li {
      font-size: 10px;
      margin-bottom: 2px;
      line-height: 1.2;
    }
    
    .legal-text a {
      font-size: 10px;
      color: #a0cfff;
    }
    
    .footer-links {
      margin-top: 5px;
    }
    
    .footer-links a {
      font-size: 10px;
    }
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .logo-container {
    max-width: 200px;
  }
  
  .price-point {
    font-size: 12px;
    padding: 5px 10px;
    width: 100%;
    background-color: transparent;
  }
  
  .theme-btn {
    font-size: 16px;
  }
  
  .device-icon svg {
    width: 30px;
  }
  
  .modern-card {
    padding: 12px;
  }
  
  /* Form section specific styling */
  .form-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  /* Set all main elements to 80% width */
  .form-wrapper,
  .price-point,
  .logo-container,
  .legal-text,
  .w-100,
  .btn,
  .input-group,
  .form-control,
  #responseMessage,
  .text-lg,
  .service-text {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  /* Ensure the form elements are properly aligned */
  .input-group,
  .form-control,
  .theme-btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix the device icons container */
  .d-flex.justify-content-center.my-2 {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .text-lg {
    font-size: 16px;
  }
}

/* Additional classes for transform effects */
.transform {
  transform-origin: center;
}

.transform.-rotate-12 {
  transform: rotate(-12deg);
}

.transform.rotate-12 {
  transform: rotate(12deg);
}

/* Additional utility classes */
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.justify-content-center {
  justify-content: center;
}

/* Alert styling */
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  padding: 0.75rem 1.25rem;
  border-radius: 0.25rem;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
  padding: 0.75rem 1.25rem;
  border-radius: 0.25rem;
}

/* Spinner border animation */
.spinner-border {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: text-bottom;
  border: 0.2em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border .75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-border {
  to { transform: rotate(360deg); }
}

/* Legal text subscription table styles */
.legal-subscription-container {
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  border: 1px solid #cfcfcf;
  margin: 0 auto;
}

.legal-subscription-header {
  background: #05bfdb; /* Using theme color instead of #f28c1b */
  color: #000;
  text-align: center;
  font-weight: 700;
  padding: 8px;
  font-size: 15px;
}

.legal-subscription-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-subscription-table tr:nth-child(odd) {
  background: #cfcfcf;
}

.legal-subscription-table tr:nth-child(even) {
  background: #ffffff;
}

.legal-subscription-table td {
  padding: 5px;
}

.legal-subscription-table td:first-child {
  width: 140px;
  font-weight: 700;
}

.legal-subscription-table a {
  color: #05bfdb; /* Using theme color instead of #1a73e8 */
  text-decoration: underline;
}

.legal-subscription-table a:hover {
  color: #0a4d68; /* Darker theme color for hover state */
}
