h2.display-5 {
  font-size: 2.5rem;
}

.shadow-sm {
  transition: transform 0.2s ease;
}

.shadow-sm:hover {
  transform: translateY(-4px);
}

.object-fit-cover {
  object-fit: cover;
  object-position: center;
}

.text-primary {
    color: #0038cc !important;
}

.border-secondary {
  border-color: #0038cc !important;
}

.bg-1 {
    background-color: #bbe1f2;
}

.bg-2 {
    background-color: #0A143C;
}

.bg-neon {
  background-color: #bcffbc;
}

.bg-cta {
  background: linear-gradient(to right, #32cd32, #0cbf61); 
  color: #fff;
  
}

.bg-9 {
background: linear-gradient(to right, #ffffff 0%, #d6eff3 100%);
}

.bg-why {
  background-image: url('/assets/nx.png'); 
  background-size: cover; 
  background-position: center;
  min-height: 300px;
}

@media (max-width: 767.98px) {
  .bg-why {
    min-height: 300px;
  }
}

.display-5 {
    font-size: 5rem !important;
}

/* Blue background for accordion body */
.custom-accordion-body {
  background-color: #e9f4ff;
  padding: 1.25rem;
  border-left: none;
  border-right: none;
  border-bottom: none;
}

/* Style for Learn more */
.learn-more {
  padding-top: 0.5rem;
  font-weight: 500;
}

.learn-more a {
  color: #0038cc;
  text-decoration: none;
}

.learn-more a:hover {
  text-decoration: underline;
}

/* Hero Section Container */
.hero-section {
  height: 70vh;
  overflow: hidden;
  position: relative;
}

/* Fullscreen Background Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Content Overlay */
.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4); /* Optional: dark overlay */
  padding: 2rem;
}


.shadow:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1) !important;
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

input.form-control:focus {
  border-color: #ffffff;
  outline: none;
  box-shadow: none;
}

.btn-center-fix {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;  /* Adjust padding as needed */
  height: 45px;             /* Set a fixed height for vertical alignment */
  line-height: 1;           /* Prevent tall text from misaligning */
  font-weight: 600;
  border-radius: 0.5rem;
}

.btn-success {
  background: linear-gradient(to right, #32cd32, #0cbf61) !important;
  border: none !important;
  color: white !important;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(50, 205, 50, 0.4); /* optional glow */
}

.btn-success:hover {
  background: linear-gradient(to right, #2bb52b, #0aa954) !important;
  box-shadow: 0 0 12px rgba(44, 187, 44, 0.6);
}

.stats-section {
      padding-top: 5rem !important;
  padding-bottom: 5rem !important;
  background: url('/assets/statistic.png') top center / cover no-repeat;
  background-color: #000; /* fallback */
  position: relative;
  z-index: 1;
  height: 500px; /* or auto */
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* overlay */
  z-index: 1;
}

.stat-box {
  position: relative;
  padding: 0 15px;
}

.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 100%;
  width: 1px;
  background-color: #32cd32;
}

.custom-prev, .custom-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 42px;
  height: 42px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  cursor: pointer;
  transform: translateY(-50%);
}


  .step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

.chat-log {
  font-family: 'Segoe UI', sans-serif;
  max-height: 100%;
}
.chat-bubble {
  display: flex;
  flex-direction: column;
}
.chat-bubble .bubble {
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  line-height: 1.5;
}

.luxury-pattern {
  pointer-events: none;
  z-index: 0;
}
.luxury-text {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 1rem;
  opacity: 0.05;
  white-space: nowrap;
  user-select: none;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 6px;
  transition: background-color 0.3s ease;
}

.carousel-indicators .active {
  background-color: #ffffff;
}

.border-secondary {
  border-color: #32cd32 !important; /* Adjusted to your brand green */
}

.btn-float {
  animation: floatButton 2s ease-in-out infinite;
}

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

.btn-glow {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0px rgba(50,205,50, 0.4); }
  50% { box-shadow: 0 0 12px rgba(50,205,50, 0.8); }
  100% { box-shadow: 0 0 0px rgba(50,205,50, 0.4); }
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
}

.service-box {
  background: #f9fafb;
  border-radius: 8px;
  text-align: left;
  transition: all 0.3s ease-in-out;
  min-height: 280px;
}

.service-box:hover {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transform: translateY(-5px);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #222;
}

.service-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.service-link {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0cbf61; /* Haio Green */
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

.service-link:hover {
  transform: translateX(5px);
}


/* =========================================
   Help Section Styles
========================================= */

.help-flex {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  justify-content: center; /* Center all cards horizontally */
  gap: 20px; /* Control spacing between cards */
}


.help-wrapper {
  background-color: #fff;
}

/* Inner Container */
.help-inner-box {
  background-color: #071427;
  border-radius: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.help-inner-box h2 {
  color: #fff;
  font-size: 1.5rem;      /* Headline size */
  font-weight: normal;    /* Remove bold */
  margin-bottom: 1rem;
}

.help-inner-box p.text-muted {
  color: #aaa !important;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

/* Card Layout */
.help-card {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left; /* Override center alignment */
  height: 200px;          /* Taller card */
  width: 180px;           /* Fixed width for consistent layout */
  padding: 30px;
  transition: all 0.3s ease;
  text-decoration: none;  /* If used as link */
}

.help-card p {
  color: #fff;
  font-size: 0.8rem;    /* Smaller text */
  margin-bottom: auto;    /* Push SELECT link to bottom */
}

/* Hover Effect */
.help-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #0aa954;  /* Accent border on hover */
  transform: scale(1.03); /* Slight zoom */
}

/* SELECT Link */
.select-link {
  color: #0aa954;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: normal;
  text-decoration: none;
  transition: color 0.3s ease;
}

.select-link:hover {
  color: #08c043; /* Slightly brighter green on hover */
  text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .help-card {
    width: 48%; /* Two per row on tablets */
  }
}

@media (max-width: 576px) {
  .help-card {
    width: 100%; /* Full width on mobile */
  }
}

/* =========================================
   Footer Section Styles
========================================= */
.footer-dark {
  background-color: #071427;
  font-size: 0.8rem;
}

.footer-dark h6 {
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.footer-link {
  color: #bbb;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #0aa954;
}

.footer-dark .social-icons a {
  color: #bbb;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-dark .social-icons a:hover {
  color: #0aa954;
}

.footer-dark hr {
  opacity: 0.2;
}

.footer-dark .list-inline a {
  color: #bbb;
}

.footer-dark .list-inline a:hover {
  color: #0aa954;
}

.footer-dark .col-with-border {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 20px;
}
