:root {
  --white: #ffffff;
  --black: #000000;
  --gray: #666666;
  --green: #008000;
  --orange: #ff4500;
  --blue: #2960de;
  --red: #ff0000;
  --pink: #ff3674;
  --dark-pink: #d9245d;
  --light-gray: #f5f5f5;
  --border-gray: #cccccc;
  --error-red: #dc3545;
  --success-green: #018f37;
  --bright-red: #ff0019;
  --form-blue: #007bff;
  --shadow-orange: #dc3506;
  --shadow-red: #dc3545;
  --dropdown-gray: #e2e8f0;
  --font-primary: "Roboto", sans-serif;
  --font-default: "Roboto", sans-serif;
  --dark-blue: #120a57;
  --dark-purple: #460062;
}
body {
  background: url("../assets/images/update_background.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 100vh;
  height: auto;
  font-family: "Cairo", sans-serif;
}

.logo-container {
  width: 188px;
  position: relative;
  margin-bottom: 30px;
}

.logo-container img {
  width: 100%;
}
.logo-container h1 {
  font-family: "Cairo", sans-serif;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
}
.service-description {
  font-family: "Cairo", sans-serif;
  font-size: 26px;
}
form {
  padding: 0;
  margin: 0;
}
.success-msg {
  color: #008000;
}

.pulse {
  animation: pulse 1s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .img-wrapper {
    min-height: 400px;
  }
}
.img-container {
  height: 350px;
  width: 100%;
  margin: 50px auto;
  display: flex;
  align-items: center;
}

.img-wrapper img {
  position: relative;
  z-index: 1;
}

.modern-card {
  position: relative;
  padding: 70px;
  background: rgba(51, 120, 125, 0.3);
  backdrop-filter: blur(5.9499998093px);
  border-radius: 15px; /* Rounded corners */
  transition: all 0.3s ease; /* Smooth transition on hover */
  overflow: hidden; /* To avoid any content spilling out */
  width: 100%;
  margin: auto;
}

.horscope-container {
  position: relative;
  padding: 30px 130px;
  background: rgba(51, 120, 125, 0.3);
  backdrop-filter: blur(5.9499998093px);
  border-radius: 15px; /* Rounded corners */
  transition: all 0.3s ease; /* Smooth transition on hover */
  overflow: hidden; /* To avoid any content spilling out */
  width: 100%;
  margin: auto;
}

.thankyou-container {
  position: relative;
  padding: 70px;
  background: rgba(51, 120, 125, 0.3);
  backdrop-filter: blur(5.9499998093px);
  border-radius: 15px; /* Rounded corners */
  transition: all 0.3s ease; /* Smooth transition on hover */
  overflow: hidden; /* To avoid any content spilling out */
  width: 100%;
  margin: auto;
}

.title-thankyou {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.description-thankyou {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 30px;
  color: #cccccc;
}

.title {
  font-size: 24px;
  font-weight: 800;
}

.description {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 30px;
  color: #cccccc;
}

/* input field  */
.form-control {
  border: 1px solid #007bff;
  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: white;
}

.form-control:focus {
  border-color: #000000; /* Blue border when focused */
  box-shadow: 0 0 10px rgb(220, 53, 6, 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: #33787d80;
  opacity: 50%;
  color: #fff;
  /* background-color: #000000; */
  /* 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: white; */
  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: 11px;
}
.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: 20px;
  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: 18px;
}
.mobile-icon {
  position: relative;
  width: 100%;
  display: none;
}

/* Error message styling */
#error-message {
  display: none;
  color: #ff0019;
  font-size: 14px;
  margin-top: 10px;
}

#form-title {
  font-size: 20px;
}

.theme-btn {
  background: #74fabf;
  color: #000000 !important;
  transition: all 0.5s ease;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 400;
  padding: 15px 25px;
  border: none;
  font-family: "Cairo", sans-serif;
}
.theme-btn:hover {
  background: #5de0a9;
  color: black;
}
/* price-point */
.price-point {
  font-size: 14px !important;
  color: white !important;
  font-weight: 400;
  margin-top: 30px !important;
}
.down-arrow {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--black); /* Arrow color */
  position: absolute;
  top: 16px;
  right: 10px;
}
/* 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: #ffffff; /* Tailwind 'blue-500' */
  color: #000000;
  padding: 8px 25px 8px 8px;
  font-size: 12px;
  text-align: center;
  /* border: none; */
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  min-width: 80px;
  border: 2px solid var(--primary);
}
.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-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: #000000; /* Tailwind 'gray-800' */
  padding: 2px 12px;
  text-decoration: none;
  font-size: 13px;
  display: block;
  white-space: nowrap;
}

/* Hover effect */
.lang-swticher .dropdown-content a:hover {
  background-color: #74fabf;
  color: #000000 !important;
}
/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
.legal-text {
  padding: 0 10px;
}
.legal-text ul {
  padding: 0;
  margin: 0;
}
.legal-text p {
  margin-bottom: 3px;
}
.legal-text p,
.legal-text ul li {
  font-size: 10px;
  color: var(--border-gray);
}
.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 {
  min-width: 50px;
  margin-top: 5px;
  margin-bottom: 5px;
  color: var(--dropdown-gray);
}
.device-icon:hover svg {
  color: var(--white);
}

.date-text {
  font-size: 13px;
  font-weight: 300;
}

.fullscreen-row {
  min-height: 100vh;
  height: auto;
}

@media (max-width: 767px) {
  body {
    /* min-height: 100vh;
    height: auto; */
    /* background: url("../assets/images/landing-video-bg.jpg"); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .modern-card {
    padding: 20px 40px;
  }

  .horscope-container {
    padding: 40px 20px;
  }
  .thankyou-container {
    padding: 40px 20px;
  }

  .logo-container {
    max-width: 250px;
  }
  .device-icons {
    display: none;
  }

  .date-text {
    font-size: small;
  }

  .title {
    font-size: 16px;
  }

  .description {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 20px;
  }

  .title-thankyou {
    font-size: 16px;
  }

  .description-thankyou {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 20px;
  }

  .price-point {
    font-size: 10px !important;
  }

  #form-title {
    font-size: 12px;
  }
}
