.our-services-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: auto;
}
.services-heading {
  font-family: "Poppins", Sans-serif;
  margin: 30px;
  font-size: 40px;
  font-weight: 550;
}
/* payment toggle button */
.toggle-container {
  display: inline-flex;
  align-items: center;
}

/* Toggle Labels */
.toggle-label {
  font-weight: 600;
  padding: 0 10px;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background-color: #ccc;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 0 10px;
}

/* Slider Circle */
.toggle-switch::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s;
}

/* Checkbox Styling ============== */
#togglePricingForex {
  display: none;
}

/* Toggle Active (Yearly) ========= */
#togglePricingForex:checked + .toggle-switch {
  background-color: #3fa205;
}

#togglePricingForex:checked + .toggle-switch::after {
  transform: translateX(30px);
}
/* Checkbox Styling ============== */
#togglePricingComex {
  display: none;
}

/* Toggle Active (Yearly) ========= */
#togglePricingComex:checked + .toggle-switch {
  background-color: #3fa205;
}

#togglePricingComex:checked + .toggle-switch::after {
  transform: translateX(30px);
}
/* Checkbox Styling ============== */
#togglePricingCrypto {
  display: none;
}

/* Toggle Active (Yearly) ========= */
#togglePricingCrypto:checked + .toggle-switch {
  background-color: #3fa205;
}

#togglePricingCrypto:checked + .toggle-switch::after {
  transform: translateX(30px);
}
/* Checkbox Styling ============== */
#togglePricingIndices {
  display: none;
}

/* Toggle Active (Yearly) ========= */
#togglePricingIndices:checked + .toggle-switch {
  background-color: #3fa205;
}

#togglePricingIndices:checked + .toggle-switch::after {
  transform: translateX(30px);
}
/* line */
.line {
  border-bottom: 1px solid white;
  margin: auto;
  width: 200px;
}

/* crypto */

/* Outer Container */

/* Slider Container */
.text-slider-container {
  height: 100%;
  overflow: hidden; /* Prevent unnecessary scrollbars */
}

/* Ensure Proper Alignment */
.carousel-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.carousel-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Image Section */
.img {
  height: 400px;
  object-fit: cover;
}

/* Buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
