html {
  scroll-behavior: smooth;
}

.hero-section {
  background-color: var(--blue-dark);
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  /* Mobile styles */
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.hero-section .container {
  position: relative;
  z-index: 1; /* Ensure text is above the overlay */
}
/*search*/
.search-container {
  position: relative;
  width: 100px; /* Ensures the container takes full width */
  max-width: 500px; /* Adjust as needed */
}
.search-container .search-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #6c757d;
}
.search-container input {
  width: 100%; /* Makes the input take full container width */
  padding-left: 50px;
  border-left: 1px solid #eee;
  padding-right: 15px; /* Ensures spacing inside the input */
}

/* trending places */
.trending-places {
  margin-top: 10px;
}
.trending-places span {
  display: inline-block;
  margin-right: 10px;
  color: var(--golden);
  cursor: pointer;
}

/* Brown Navigation Pills */
.nav-pills .nav-link {
  color: var(--blue);
}

.nav-pills .nav-link:hover {
  color: var(--blue-dark);
}

.nav-pills .nav-link.active {
  background-color: var(--blue); /* Even darker brown for active state */
  color: white;
}

/* nav pills scrollable */
/* Default (Large Screens) */
.scroll-nav-container {
  overflow: hidden; /* No scrolling on large screens */
}

/* Apply scrolling only on small screens */
@media (max-width: 768px) {
  .scroll-nav-container {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .scroll-nav-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
  }

  .custom-nav {
    flex-wrap: nowrap;
  }

  .custom-nav-item {
    display: inline-block;
  }
}

/* hero section as per the device size */
#heroSection {
  height: 400px; /* Default for small screens */
}
#searchForm {
  /* Centering the form */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* Smaller screens */
  width: 90vw;
  min-width: 90%;
  margin: 0 auto;
}

@media (min-width: 992px) {
  /* Large screens (lg and above) */
  #heroSection {
    height: 40px;
  }

  #searchForm {
    /* Centering for larger screens */
    width: 400px;
    margin: 0 auto;
  }
}

/* search */
/* Custom Search Card */
.custom-search-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 32px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  border: 1px solid #eee;
  overflow: hidden;
}

/* Input Wrapper */
.custom-input-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Input Field */
.custom-input {
  flex: 1;
  padding: 20px 140px 8px 50px; /* Space for label */
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid transparent;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #0f172a;
  outline: none;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Adjust Placeholder */
.custom-input::placeholder {
  font-size: 15px;
  color: #94a3b8;
}

/* Input Label - Better Spacing */
.custom-input-label {
  position: absolute;
  left: 50px;
  top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.02em;
  pointer-events: none;
}

/* Input Icon */
.custom-input-icon {
  position: absolute;
  left: 16px;
  font-size: 18px;
  color: #3b82f6;
}

/* Buttons Wrapper */
.custom-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  right: 10px;
}

/* Search Button */
.custom-btn-search {
  background: transparent;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease-in-out;
  margin: 15px 0;
}

.custom-btn-search:hover {
  background: transparent;
  transform: translateY(-1px);
  color: #4a4a4a;
}

.custom-btn-search i {
  font-size: 18px;
}

/* Voice Search Button (Pure Circle) */
.custom-btn-voice {
  background: var(--blue);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.custom-btn-voice:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.custom-btn-voice i {
  font-size: 20px;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 500px) {
  .custom-search-card {
    max-width: 100%;
    padding: 10px;
    flex-wrap: nowrap;
  }

  .custom-input {
    padding: 18px 90px 6px 45px; /* Adjust spacing on smaller screens */
    font-size: 14px;
  }

  .custom-input-label {
    font-size: 12px;
    top: 4px;
  }

  .custom-btn-search {
    padding: 8px 14px;
    font-size: 14px;
  }

  .custom-btn-voice {
    width: 38px;
    height: 38px;
  }
}
/* visa card */
.visa-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
  margin-bottom: 50px;
  position: relative;
}

.section-title:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--golden-dark), var(--golden-light));
  margin: 15px auto 0;
  border-radius: 2px;
}

.subtitle {
  color: #6c757d;
  font-weight: 400;
}

/* step cards */
.step-card {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(58, 110, 143, 0.15);
  transition: all 0.5s ease;
  border: none;
  position: relative;
  transform-style: preserve-3d;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.step-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(102, 153, 179, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.75s ease;
  z-index: 2;
}

.step-card:hover:before {
  left: 125%;
}

.step-card:hover {
  transform: rotateY(5deg) translateY(-15px);
  box-shadow: -20px 20px 30px rgba(58, 110, 143, 0.2);
}

.step-card .card-body {
  padding: 30px 20px;
  z-index: 1;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: white;
  border-radius: 50%;
  line-height: 50px;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(58, 110, 143, 0.3);
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--blue);
}

.step-description {
  color: var(--blue);
  font-size: 16px;
}

.step-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--blue) 0%, #000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  color: white !important;
}

.step-card:hover .step-icon {
  transform: scale(1.05) translateZ(20px);
  background: linear-gradient(135deg, #000 0%, var(--blue) 100%);
}

.step-icon i {
  font-size: 50px;
  background: linear-gradient(135deg, #eee 0%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

.feature-list {
  text-align: left;
  margin-top: 15px;
  padding-left: 0;
  list-style-type: none;
}

.feature-list li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.feature-list li:before {
  content: "\F633";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: #6699b3;
}

.cta-container {
  margin-top: 50px;
}

.cta-button {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(
    135deg,
    var(--golden) 0%,
    var(--golden-light) 100%
  );
  border: none;
  box-shadow: 0 5px 15px rgba(58, 110, 143, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cta-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    var(--golden-dark) 0%,
    var(--golden-light) 50%,
    var(--golden) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.75s ease;
}

.cta-button:hover:before {
  left: 125%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 153, 179, 0.4);
}

/* steps */
.card-glass-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 15px;
  pointer-events: none;
}

.card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(
    circle at center,
    rgba(102, 153, 179, 0.8) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  transform: scale(0.5);
  pointer-events: none;
}

.step-card:hover .card-shine {
  opacity: 0.2;
  transform: scale(1);
}

.golden-text {
  color: var(--golden);
}

@media (max-width: 767px) {
  .step-card {
    margin-bottom: 30px;
  }
}

/* booking feature */

.booking-feature {
  transition: transform 0.2s;
  border: none;
  height: 100%;
  background: white;
  border-radius: 15px;
}

.booking-feature:hover {
  transform: translateY(-5px);
}

.booking-feature-body {
  padding: 2rem 1.5rem;
}

.icon-wrapper {
  background-color: #f8f9fa;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* stats */
/* General Section Styling */
.stats-section {
  background: #f8f9fa;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  position: relative;
  padding: 60px 0;
}

/* Overlay for Slant Effect */
.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.03);
}

/* footer */
.footer-text {
  text-align: center;
  font-size: 200px; /* Slightly increased to ensure some visibility */
  font-weight: bold;
  color: #999;
  opacity: 0.8;
  text-transform: lowercase;
}

/* Rating Container */
.rating-container {
  padding: 20px;
}

/* Google Rating */
.rating-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: green;
}

.stars {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

.star-icon {
  width: 24px;
  height: 24px;
  fill: #ff9800;
  margin: 0 2px;
}

.half-star {
  fill-opacity: 0.5;
}

/* Progress Circle */
.svg-container {
  display: flex;
  justify-content: center;
}

.progress-circle {
  width: 80px;
  height: 80px;
}

/* Flip Counter (Odometer Style) */
.flip-counter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.digit {
  width: 45px;
  height: 70px;
  background: linear-gradient(to bottom, #333, #111);
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Courier New", Courier, monospace;
  text-align: center;
  line-height: 70px;
  margin: 0 2px;
  border-radius: 5px;
  position: relative;
  box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.2);
}

/* Middle Split Line Effect */
.digit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

/* Plus Sign Styling */
.plus {
  background: #900;
  color: #fff;
}

/* carousel */
.carousel-item {
  position: relative;
}
.carousel-caption {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  width: auto;
}
.carousel-caption h2 {
  font-size: 2.5rem;
  font-weight: bold;
}
.carousel-caption p {
  font-size: 1.2rem;
}

/* callback */
.icon-container {
  position: fixed;
  bottom: 30px; /* Reduced from 20px */
  left: 20px; /* Reduced from 20px */
  cursor: pointer;
}

.icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; /* Reduced from 80px */
  height: 60px; /* Reduced from 80px */
  font-size: 30px; /* Reduced from 40px */
  background-color: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 0em var(--blue), 0em 0.05em 0.1em rgba(0, 0, 0, 0.2);
}

.icon span {
  display: inline-block;
  animation: phoneVibrate 0.5s linear infinite;
}

@keyframes phoneVibrate {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -1px) rotate(-1deg); /* Reduced translation */
  }
  20% {
    transform: translate(1px, 1px) rotate(1deg); /* Reduced translation */
  }
  30% {
    transform: translate(-1px, 1px) rotate(-1deg); /* Reduced translation */
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg); /* Reduced translation */
  }
  50% {
    transform: translate(-0.5px, 0.5px) rotate(-0.5deg); /* Reduced translation */
  }
  60% {
    transform: translate(0.5px, -0.5px) rotate(0.5deg); /* Reduced translation */
  }
  70% {
    transform: translate(-0.5px, -0.5px) rotate(-0.5deg); /* Reduced translation */
  }
  80% {
    transform: translate(0.5px, 0.5px) rotate(0.5deg); /* Reduced translation */
  }
  90% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.ripple {
  position: absolute;
  width: 60px; /* Reduced from 80px */
  height: 60px; /* Reduced from 80px */
  border-radius: 50%;
  background: rgba(52, 152, 219, 0.4);
  animation: rippleEffect 2s linear infinite;
}

.ripple:nth-child(2) {
  animation-delay: 0.8s;
}
.ripple:nth-child(3) {
  animation-delay: 1.6s;
}

@keyframes rippleEffect {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5); /* Reduced from 1.8 */
    opacity: 0;
  }
}
/* services */
.visaa-card {
  border-radius: 25px;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.visaa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.visaa-icon {
  color: var(--golden);
  margin-right: 10px;
}
.cardd-body {
  display: flex;
  align-items: center;
  padding: 1.5rem;
}
.visaa-title {
  margin: 0;
  font-size: 14px;
  text-align: left !important;
  font-weight: 500;
}

/*faq*/

.faq-title {
  color: #d6a300;
  font-weight: 600;
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background-color: #fff;
  color: #333;
  font-weight: 500;
  padding: 1rem 1.5rem;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question .fa-plus {
  color: #d6a300;
}

.faq-question .fa-minus {
  color: #6c1c45;
}

.faq-answer {
  background-color: #fff;
  padding: 1rem 1.5rem;
  border-top: 1px solid #eee;
}

/* stats for hero section */
.stats-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 90%;
  width: 100%;
  min-width: 50px;
}
.stat {
  flex: 1;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
}
.stat i {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.divider {
  width: 2px;
  height: 40px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.1)
  );
  position: relative;
}
.divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.1)
  );
  opacity: 0.8;
}
@media (max-width: 576px) {
  .stats-container {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px;
  }
  .stat {
    flex: 1 1 100%;
    font-size: 0.8rem;
    padding: 8px;
  }
  .divider {
    display: none;
  }
}

/* home testimonials */
:root {
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
}

.testimonial-section {
  padding: 7rem 0;
  /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
}

.section-title {
  position: relative;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-weight: 800;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-title p {
  color: var(--bs-secondary);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.testimonial-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card-body {
  padding: 2.5rem;
  position: relative;
}

.quote-icon {
  position: absolute;
  right: 2rem;
  top: 2rem;
  color: rgba(13, 110, 253, 0.1);
  font-size: 3rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.2rem;
  border: 3px solid var(--blue);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h5 {
  margin: 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info a {
  color: #212529;
  text-decoration: none;
  transition: color 0.2s ease;
}

.author-info a:hover {
  color: var(--bs-primary);
}

.card-top-accent {
  height: 6px;
  /* background: linear-gradient(90deg, #0d6efd, #0dcaf0); */
  background: linear-gradient(90deg, var(--blue), var(--golden));
}

.stars {
  color: #ffc107;
  margin-bottom: 0.8rem;
}

/* Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.float-animation:nth-child(1) {
  animation: float 7s ease-in-out infinite;
}

.float-animation:nth-child(2) {
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s;
}

.float-animation:nth-child(3) {
  animation: float 6s ease-in-out infinite;
  animation-delay: 2s;
}

/* google reviews */
.google-widget {
  border-top: 5px solid var(--golden);
  max-width: 320px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  overflow: hidden;
  margin: 0 auto;
}

.google-widget:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.widget-inner {
  padding: 1.5rem;
}

.brand-icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}

.widget-header {
  font-weight: 500;
  color: #202124;
  letter-spacing: 0.2px;
}

.score-number {
  color: #f57c00;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.star-icons {
  color: #ffc107;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.review-count {
  color: #5f6368;
  font-size: 0.9rem;
  margin-top: 8px;
}

.score-container {
  background-color: #f1f3f4;
  border-radius: 16px;
  padding: 8px 14px;
}

.section-separator {
  height: 1px;
  background-color: #f1f1f1;
  margin: 12px 0;
}

.action-button {
  color: #4285f4;
  border-color: #4285f4;
  font-size: 0.85rem;
  padding: 0.375rem 1rem;
  border-radius: 50px;
}

.action-button:hover {
  background-color: #4285f4;
  color: white;
}

.widget-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-container {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

/* leaderboard */
.leaderboard-banner {
  width: 90%;
  max-width: 1200px;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  color: #0f172a;
  box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px;
  animation: fadeIn 1.5s ease-in-out;
  text-align: center;
}

.content-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 768px) {
  .content-container {
    flex-direction: row;
    text-align: left;
  }
}

.content-left {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

@media (min-width: 768px) {
  .content-left {
    width: 50%;
  }
}

.prize-badge {
  background: linear-gradient(90deg, #543019 0%, #7a4a2b 100%);
  color: white;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 18px;
  width: fit-content;
  box-shadow: 0 8px 20px rgba(84, 48, 25, 0.3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: bounce 2s infinite;
}

.countdown-badge {
  background: linear-gradient(90deg, #af8700 0%, #d4a700 100%);
  color: white;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-share {
  background: linear-gradient(90deg, #14385c 0%, #1e4b7b 100%);
  border: none;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 100px;
  color: white;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(20, 56, 92, 0.4);
  position: relative;
  margin: auto;
  animation: pulse 2s infinite;
  width: fit-content;
}

@media (min-width: 768px) {
  .btn-share {
    margin: 0;
  }
}

.content-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
}

@media (min-width: 768px) {
  .content-right {
    width: 50%;
  }
}

.content-right img {
  max-width: 100%;
  height: auto;
}

/*
.steps-container {
  width: 100%;
  margin-top: 20px;
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  text-align: center;
  padding: 20px;
}

.steps::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 4px;
  background: #af8700;
  top: 40px;
  left: 10%;
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  color: #475569;
  font-weight: 600;
  position: relative;
  padding: 10px 20px;
  background: white;
  border-radius: 12px;
  width: 30%;
  z-index: 1;
}

.step-number {
  background: white;
  color: #14385c;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid #e2e8f0;
  margin-bottom: 10px;
}
  */

.points-system {
  background: #f8fafc;
  border-radius: 12px;
  padding: 15px;
  margin: 20px 0;
  border: 1px solid #e2e8f0;
}

.points-system h4 {
  color: #1e293b;
  font-size: 18px;
  margin-bottom: 10px;
}

.points-system ul {
  text-align: left;
  padding-left: 20px;
  margin: 0;
}

.points-system li {
  margin-bottom: 8px;
  color: #475569;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* search bar bottom home */
.hover-scale {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.rounded-4 {
  border-radius: 1rem !important;
}

/* visa card (renew) */
/* Visa Card Container */
.travel-card-3x7 {
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  border: none;
  transition: all 0.3s ease;
  position: relative;
}

.travel-card-3x7:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Ribbon Styling */
.promo-tag-rbn {
  position: absolute;
  top: 15px;
  right: -30px;
  z-index: 10;
  width: 120px;
  transform: rotate(45deg);
}

.promo-tag-inner-f4n {
  background: var(--blue);
  width: 120px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.promo-tag-label-z2j {
  color: white;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Image Container */
.media-wrapper-q9p {
  position: relative;
}

.media-gradient-p5v {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.destination-img-o7e {
  object-fit: cover;
  width: 100%;
  height: 200px;
  transform: scale(1.03);
  transition: transform 0.5s ease;
}

.travel-card-3x7:hover .destination-img-o7e {
  transform: scale(1.07);
}

/* Country Name */
.location-title-box-l3h {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  z-index: 2;
}

.location-title-text-h8s {
  margin-bottom: 0;
  font-weight: bold;
  color: white;
  font-size: 1.25rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Recent Issues Badge */
.status-marker-j6r {
  position: absolute;
  top: 0;
  left: 0;
  margin: 12px;
  z-index: 2;
}

.status-pill-k2d {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  padding: 5px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.status-dot-v8n {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: green;
  margin-right: 6px;
}

.status-label-m3c {
  font-size: 0.7rem;
  font-weight: 600;
  color: #333;
}

/* Card Content */
.content-section-g5t {
  padding: 1.5rem;
}

.divider-accent-i9w {
  width: 40px;
  height: 3px;
  background: var(--blue);
  margin-bottom: 1rem;
}

/* Price Section */
.fee-block-a7f {
  line-height: 1;
}

.fee-caption-y4e {
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  color: #6c757d;
  font-weight: 500;
}

.fee-amount-w2j {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue);
}

.fee-description-c6h {
  display: inline-block;
  color: #6c757d;
  font-size: 0.7rem;
  white-space: nowrap;
}

/* Processing Time */
.timeline-container-b5s {
  line-height: 1;
  border-radius: 8px;
  padding: 8px 10px;
  text-align: center;
}

.timeline-caption-x7z {
  display: block;
  margin-bottom: 6px;
  font-size: 0.7rem;
  color: var(--blue);
  font-weight: 500;
}

.timeline-value-n1p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
}

/* Button Container */
.action-wrapper-u3q {
  background: linear-gradient(
    to right,
    rgba(var(--blue-light-rgb, 200, 230, 255), 0.1),
    rgba(var(--blue), 0.05)
  );
  border-radius: 14px;
  padding: 2px;
  margin-top: 1rem;
}

.action-button-f9r {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, #0056b3 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 0;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  text-decoration: none;
}

.action-button-f9r:hover {
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
  transform: scale(1.05); /* Added scale effect on hover */
  animation: pulse 0.5s infinite alternate; /* Keep animation on hover */
}

.button-icon-t5b {
  margin-left: 8px;
}

/* Keyframes for pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.hero-simple-section {
  background: linear-gradient(to bottom, var(--blue-dark), var(--blue));
  height: 35vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0;
  margin: 0;
}

.hero-center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem 0;
  transform: translateY(-5%);
}

.hero-stat {
  color: var(--golden);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.hero-title {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-search-bar {
  width: 420px;
  max-width: 90vw;
  background: #fff;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  padding: 0.2rem 1rem 0.2rem 0.7rem;
  box-shadow: 0 2px 16px 0 rgba(20, 56, 92, 0.1);
  position: relative;
  margin-bottom: 0px;
}

.search-icon {
  color: var(--blue-dark);
  font-size: 1.7rem;
  margin-right: 0.6rem;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-search-input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1.05rem;
  padding: 0.7rem 0.5rem;
  background: transparent;
}

.voice-btn {
  background: none;
  border: none;
  color: var(--blue-dark);
  font-size: 1.2rem;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 50%;
  margin-left: 0.5rem;
  width: 40px;
  height: 40px;
}

.voice-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
}

.voice-btn.listening {
  color: #dc3545;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 1rem;
  margin-top: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
}

.search-dropdown.active {
  display: block;
}

.search-dropdown-item {
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.search-dropdown-item:hover {
  background-color: #f5f5f5;
}

.search-dropdown-item img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

.search-dropdown-item .country-name {
  font-size: 0.95rem;
  color: #333;
}

.search-dropdown-item .visa-type {
  font-size: 0.8rem;
  color: #666;
}

/* Make navbar search icon black */
.navbar .bi-search {
  color: #111 !important;
}

/* Mobile Responsive Styles */
@media (max-width: 600px) {
  .hero-simple-section {
    height: 45vh;
    padding: 1rem;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
    line-height: 1.3;
  }

  .hero-stat {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    margin-top: -1rem;
  }

  .hero-search-bar {
    width: 98vw;
    padding: 0.3rem 0.7rem 0.3rem 0.5rem;
  }

  .search-icon {
    font-size: 1.5rem;
    margin-right: 0.4rem;
  }

  .hero-search-input {
    font-size: 1.1rem;
    padding: 0.7rem 0.4rem;
  }

  .voice-btn {
    font-size: 1.3rem;
    padding: 0.5rem;
    width: 45px;
    height: 45px;
  }

  .hero-center-content {
    padding: 0.5rem 0;
    transform: translateY(-2%);
    width: 100%;
  }

  .search-dropdown {
    margin-top: 0.3rem;
    max-height: 250px;
  }

  .search-dropdown-item {
    padding: 0.6rem 0.8rem;
  }

  .search-dropdown-item img {
    width: 20px;
    height: 14px;
  }

  .search-dropdown-item .country-name {
    font-size: 0.9rem;
  }

  .search-dropdown-item .visa-type {
    font-size: 0.75rem;
  }
}

@media (max-width: 400px) {
  .hero-simple-section {
    height: 45vh;
  }

  .hero-title {
    font-size: 1.3rem;
  }

  .hero-stat {
    font-size: 0.85rem;
  }

  .hero-search-bar {
    width: 95vw;
  }
}

/* Stats Section Styles */
.stats-section {
  background: none;
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  box-shadow: 0 8px 32px 0 rgba(60, 80, 120, 0.07);
  margin-bottom: 3rem;
}

.stats-row-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem 0;
}

.stats-card-equal {
  width: 260px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.stats-card.neumorph {
  background: #fff;
  border-radius: 2rem;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: none;
  box-shadow: 0 4px 24px 0 rgba(60, 80, 120, 0.1), 0 1.5px 4px 0 #fff inset;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 220px;
}

.stats-card.neumorph:hover {
  box-shadow: 0 12px 36px 0 rgba(60, 80, 120, 0.16), 0 1.5px 4px 0 #fff inset;
  transform: translateY(-4px) scale(1.04);
}

.stats-icon-wrapper.glassy {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.7rem;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: #fff;
  font-size: 2.2rem;
  box-shadow: 0 2px 12px 0 rgba(60, 80, 120, 0.1), 0 1.5px 4px 0 #fff inset;
  backdrop-filter: blur(4px);
  border: 1.5px solid var(--blue-dark);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stats-card:hover .stats-icon-wrapper.glassy {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 4px 24px 0 rgba(60, 80, 120, 0.18), 0 1.5px 4px 0 #fff inset;
}

.stats-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.stats-value-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2em;
  margin-bottom: 0.2rem;
}

.stats-value {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.stats-unit {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-left: 0.1em;
  letter-spacing: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.stats-label.big-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-top: 0.7rem;
  letter-spacing: 0.01em;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 0.2rem;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stats-card {
  animation: countUp 0.6s ease-out forwards;
  opacity: 0;
}

.stats-card:nth-child(1) {
  animation-delay: 0.1s;
}

.stats-card:nth-child(2) {
  animation-delay: 0.2s;
}

.stats-card:nth-child(3) {
  animation-delay: 0.3s;
}

@media (max-width: 991px) {
  .stats-card-equal {
    width: 90vw;
    max-width: 340px;
    min-height: 260px;
  }

  .stats-row-flex {
    gap: 1.2rem 0;
  }
}

@media (max-width: 600px) {
  .stats-card-equal {
    width: 98vw;
    max-width: 99vw;
    min-height: 200px;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
}
