@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --gradient: linear-gradient(90deg, #8176AF, #C0B7E8);
  --gradient-radial: radial-gradient(circle at center, #3A3456, #211E2E);
  --purple: #C0B7E8;
  --dark-bg: #302C42;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--dark-bg);
  padding-top: 120px;
}

.bg-gradient-custom {
  background: var(--dark-bg);
}

.bg-glass {
  background: rgba(42, 37, 59, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.bg-card-gradient {
  background: var(--gradient-radial);
}

.bg-feature-card {
  background: linear-gradient(145deg, rgba(30, 28, 50, 0.95), rgba(45, 42, 70, 0.95));
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-purple {
  color: var(--purple) !important;
}

.border-purple {
  border-color: var(--purple) !important;
}

.border-bottom {
  border-bottom: 1px solid white;
}

.border-white {
  border: 1px solid white;
}

.btn-gradient {
  background: linear-gradient(90deg, #8176AF, #C0B7E8);
  color: #fff;
  border: none;
  padding: 16px 39px;
  font-weight: 600;
  border-radius: 40px;
  transition: 0.5s;
  font-size: 16pt;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #C0B7E8, #8176AF);
  transform: scale(1.05);
}

.step-circle {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at top right, #C0B7E8, #8176AF);
  color: #343045;
}

.wave-line {
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath d='M0,60 C240,0 480,120 720,60 C960,0 1200,120 1440,60' stroke='%238578b3' stroke-width='4' fill='transparent'/%3E%3C/svg%3E") center/cover;
}

.hero-image {
  max-width: 100%;
}

.h-50px {
  height: 50px;
}

.h-30px {
  height: 30px;
}

@media (max-width: 768px) {
  .hero-image {
    margin-top: -50px;
  }
}
.navbar-nav .nav-link {
  color: #fff;
  font-weight: 600;
  margin-right: 22px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #c4b5fd !important;
}

.navbar-nav .nav-link.dropdown-toggle.show {
  color: #5D43D3 !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #5D43D3 !important;
  color: #ffffff !important;
}

.custom-tabs .nav-link {
  background: rgba(120, 100, 180, 0.3);
  color: #fff;
  margin: 10px 8px;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.custom-tabs .nav-link:hover {
  background: rgba(160, 130, 220, 0.5);
}

.custom-tabs .nav-link.active {
  background: linear-gradient(90deg, #8e78d1, #a084e8);
  color: #fff;
  box-shadow: 0 4px 12px rgba(160, 130, 220, 0.4);
}

.step-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at top right, #C0B7E8, #8176AF);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  font-weight: bold;
  color: #343045;
  margin: 0 auto;
  box-shadow: 0 0 0 25px rgba(13, 13, 13, 0.2156862745);
  position: relative;
  z-index: 2;
}

.step-title {
  margin-top: 70px;
  font-weight: 600;
  font-size: 2rem;
  position: relative;
  z-index: 3;
}

.wave-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 1;
}

.wave-line svg {
  width: 100%;
  height: 150px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: rgba(37, 34, 49, 0.8745098039);
  color: #C0B7E8;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-item {
  overflow: visible;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer .divider {
  width: 6px;
  background: linear-gradient(to bottom, #343045, #C0B7E8 35%, #8176AF 69%, #343045 99%);
  height: 200px;
}

.feature-card {
  margin-top: 70px;
  max-width: 450px;
  background: linear-gradient(145deg, rgba(30, 28, 50, 0.95), rgba(45, 42, 70, 0.95));
  border-radius: 25px;
  padding: 30px;
  border: none;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.image-circle img {
  width: 160px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 6px solid rgba(180, 160, 250, 0.3);
  box-shadow: 0 0 20px rgba(160, 130, 220, 0.5);
}

.feature-title {
  font-weight: 700;
  font-size: 22px;
  margin-top: 15px;
}

.feature-text {
  color: #ddd;
  font-size: 15px;
  margin-bottom: 20px;
}

.divider {
  width: 60px;
  margin: 12px auto;
  border-top: 2px solid rgba(200, 180, 255, 0.5);
}

.accordion {
  background-color: transparent;
}

.accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.accordion-button {
  background-color: transparent !important;
  color: #fff;
  font-weight: 600;
  font-size: 26pt;
  box-shadow: none;
  padding: 1.5rem 0;
}

.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: #fff;
}

.accordion-body {
  color: #b5b5b5;
  font-size: 20pt;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
  padding-left: 0;
  padding-right: 0;
}

.accordion-button::after {
  content: "+";
  font-size: 2rem;
  color: #B6ADDF;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  content: "×";
  font-size: 2rem;
  color: #B6ADDF;
  transform: rotate(0deg);
}

.footer {
  background-color: #1F1B2E;
}

.hover-purple:hover {
  color: #8176AF !important;
}

.social-icon {
  width: 30px;
  height: 30px;
  background-color: #3a3550;
  color: #c1b3f3;
}

.social-icon:hover {
  background-color: #5a4dbf;
  color: #fff;
}

.footer-divider {
  width: 6px;
  height: 200px;
  background: linear-gradient(to bottom, #343045, #C0B7E8 35%, #8176AF 69%, #343045);
  border-radius: 3px;
  margin: 0 30px;
}

@media (max-width: 768px) {
  .footer-divider {
    height: 150px;
  }
}
@media (max-width: 576px) {
  .footer-divider {
    display: none;
  }
}
.contact-card {
  background: radial-gradient(circle at center, #3A3456, #211E2E);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.alert {
  margin-top: 150px;
  z-index: 10;
  margin-right: 30px;
  background: linear-gradient(to left, #211E2E, #4E4570);
}/*# sourceMappingURL=style.css.map */