body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5; /* Light background for content */
}

/* Fullscreen loader */
.loader-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, #ba0003, #eda006); */
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.7s ease-in-out;
}

/* Dual-ring loader effect */
.loader {
  width: 70px;
  height: 70px;
  position: relative;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 6px solid transparent;
}

.loader:before {
  width: 100%;
  height: 100%;
  border-top-color: #eda006;
  border-left-color: #ba0003;
  animation: spin 1.2s linear infinite;
}

.loader:after {
  width: 80%;
  height: 80%;
  left: 10%;
  top: 10%;
  border-bottom-color: #eda006;
  border-right-color: #ba0003;
  animation: spin-reverse 1.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* Smooth hiding effect */
.hidden {
  opacity: 0;
  pointer-events: none;
}

.why_choose_us {
  padding: 80px 0;
  /* background: linear-gradient(to right, #ff7e5f, #feb47b); */
  text-align: center;
}

.why_choose_us .section_title h3 {
  font-size: 32px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}

.why_choose_us .section_title p {
  font-size: 16px;
  color: #e99904;
  margin-bottom: 50px;
}

.single_feature {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  text-align: center;
}

.single_feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.single_feature:hover {
  transform: translateY(-10px);
}

.feature_icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  color: #fff;
  background: linear-gradient(135deg, #ba0305, #ec9c06);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.feature_icon.blue {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
}

.feature_icon.green {
  background: linear-gradient(135deg, #00c9ff, #92fe9d);
}

.feature_icon.yellow {
  background: linear-gradient(135deg, #ffb347, #ffcc33);
}

.single_feature h3 {
  font-size: 20px;
  font-weight: bold;
  color: #e99904;
  margin-bottom: 10px;
}

.single_feature p {
  font-size: 14px;
  color: #666;
}

/* Section Background */
.how_it_works {
  /* background: linear-gradient(to right, #ffe6e6, #fff5e6); */
}

/* Glassmorphic Cards */
.step-card {
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}
.step-card h4 {
  color: #ba0305;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

/* Icon Styling */
.icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ba0003, #eda006);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.icon-box i {
  font-size: 36px;
}

.icon-box:hover {
  transform: scale(1.1);
  box-shadow: 0px 4px 10px rgba(186, 0, 3, 0.5);
}

/* Responsive Styling */
@media (max-width: 767px) {
  .step-card {
    padding: 20px;
  }
  .icon-box {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
}

.faq_area .card-header button {
  color: #ba0305 !important;
  font-weight: bold;
}

.faq_area .accordion_heading h3 {
  color: #eda006 !important;
  font-weight: bold;
}

.about_section {
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 10px;
}

.about_title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.about_subtitle {
  font-size: 20px;
  margin-bottom: 30px;
}

.about_content {
  font-size: 18px;
  text-align: left;
  padding: 20px;
}

.about_image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.highlights {
  margin-top: 40px;
}

.highlight_box {
  padding: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.highlight_box i {
  color: #ffdd57;
  margin-bottom: 10px;
}

.community_search {
  color: #fff;
  text-align: center;
  padding: 50px 20px;
  border-radius: 10px;
}

.single_border {
  padding: 20px;
  border: 2px solid #fff;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
}

.community_box {
  padding: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  text-align: center;
  margin-top: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.community_box i {
  font-size: 30px;
  color: #ffdd57;
  margin-bottom: 10px;
}

.community_box h4 {
  font-size: 20px;
  font-weight: bold;
}


/* ==================== register ================*/
.register-right form {
    text-align: center;
}
.register-right .form-group {
    text-align: center;
}

