/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 80px; /* Height of the navbar */
  font-family: "Mulish", sans-serif;
}

.index-body {
  background-color: #22174c;
  color: #ffffff;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(34, 23, 76, 1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease-in-out;
}

.navbar.navbar-hidden {
  transform: translateY(-100%);
}

.logo-img {
  height: 40px;
}

.navbar-nav {
  gap: 20px;
}

.nav-link {
  color: #ffffff !important;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0 !important;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(to right, #7158e2, #cd84f1);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.divider-container {
  display: flex;
  align-items: center;
}

.divider {
  width: 3px;
  height: 24px;
}

/* Custom Button Styles */
.btn {
  font-family: "Mulish", sans-serif;
  font-size: 20px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 24px;
}

.login-btn,
.form-select{
  background: transparent;
  border: 3px solid #cd84f1;
  color: #cd84f1;
  background: linear-gradient(to bottom right, #7158e2, #cd84f1);
  -webkit-background-clip: text;
  background-clip: text;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(113, 88, 226, 0.3);
  color: #ffffff;
  border: 3px solid #9f6ee9;
  background: linear-gradient(to bottom right, #7158e2, #cd84f1);
  
}

.signup-btn {
  background: linear-gradient(to bottom right, #7158e2, #cd84f1);
  border: none;
  color: #ffffff !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(113, 88, 226, 0.3);
}

/* Hero Section Styles */
.hero-section {
  padding: 160px 0;
  background-image: url("../images/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
/*  background: rgba(34, 23, 76, 0.285);  Koyu mor overlay */
  z-index: 1;
}

.hero-section > .container {
  position: relative;
  z-index: 2;
}

.text-container {
  margin-bottom: 40px;
  text-align: left;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  text-align: left;
}

.hero-text {
  font-size: 1.25rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: left;
}

.button-container {
  position: fixed;
  bottom: 10px;
  right: 20px;
}

.contact-btn {
  display: inline-block;
  transition: transform 0.3s ease;
}

.contact-btn:hover {
  transform: scale(1.05);
}

.contact-btn img {
  max-height: 60px;
  width: auto;
}

/* Responsive Navbar Toggler */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .navbar-nav {
    gap: 10px;
    margin: 20px 0;
  }

  .divider {
    display: none;
  }

  .nav-link {
    text-align: center;
  }

  .d-flex {
    justify-content: center;
    margin-top: 20px;
  }

  .hero-title {
    font-size: 3rem;
    text-align: left;
  }

  .hero-text {
    font-size: 1.125rem;
    text-align: left;
  }

}

/* Video Section Styles */
.video-section {
  padding: 10px 0;
  background-color: #22174c;
}

.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  transform: translateZ(0);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(205, 132, 241, 0.3);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover .video-thumbnail {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.9;
}

.video-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}

.video-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(34, 23, 76, 0) 0%,
    rgba(34, 23, 76, 0.8) 100%
  );
  border-radius: 20px;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.video-card:hover::before {
  opacity: 1;
}

@media (max-width: 991.98px) {
  .video-section {
    padding: 60px 0;
  }

  .video-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .video-section {
    padding: 40px 0;
  }

  .video-card {
    margin-bottom: 20px;
  }

  .play-button svg {
    width: 60px;
    height: 60px;
  }
}

/* Features Section Styles */
.features-section {
  padding: 100px 0;
}

.features-content {
  padding-right: 50px;
}

.features-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.2;
  text-align: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.feature-icon img {
  width: 32px;
  height: 32px;
}

.feature-item p {
  font-size: 1.125rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.6;
}

.features-image {
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.features-image img {
  width: 180px;
  display: block;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(153, 107, 233, 0.3);
  margin: 10px;
}

@media (max-width: 991.98px) {
  .features-section {
      padding: 0px;
  }

  .features-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .features-title {
    font-size: 1.75rem;
  }

  .feature-item {
    padding: 0px 20px !important;
  }

  .feature-item p {
    font-size: 1rem;
  }
}

.features-list.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.features-list.benefit-grid .feature-item {
  margin-bottom: 0;
}

.features-list.benefit-grid .feature-item p {
  margin: 0;
  font-size: 18px;
}

@media (max-width: 991.98px) {
  .features-list.benefit-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Who Section Styles */
.who-section {
  padding: 100px 0;
}

.who-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  border-radius: 30px;
  overflow: hidden;
}

.who-image img {
  max-width: 180px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(153, 107, 233, 0.3);
  margin: 10px;
}

.who-content {
  padding-left: 60px;
}

.who-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 30px;
}

.who-subtitle {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 30px;
  opacity: 0.9;
}

.benefit-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  justify-items: start;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.check-icon {
  flex-shrink: 0;
}

.benefit-item span {
  color: #ffffff;
  font-size: 1.125rem;
  opacity: 0.9;
}

@media (max-width: 991.98px) {
  .who-section {
    padding: 20px 0;
  }

  .who-content {
    padding-left: 0;
    text-align: center;
  }

  .who-title {
    font-size: 2rem;
  }

  .who-subtitle {
    font-size: 1.125rem;
  }

  .benefit-item {
    justify-content: center;
  }

  .benefit-item span {
    font-size: 1rem;
  }
}

/* Pricing Section */
.pricing-section {
  position: relative;
  background-color: #fff;
}

.pricing-header {
  text-align: center;
  position: relative;
  background: #22174c;
  height: 31px;
  display: flex;
  justify-content: center;
}

.treatment-plans-badge {
  padding: 8px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0px 0px 16px 1px #3f2770;
  /* top: 0px; */
  /* position: absolute; */
  height: 62px;
  z-index: 1054 !important;
  position: absolute;
  /* display: flex; */
  /* justify-content: center; */
}

.treatment-plans-badge h2 {
  font-size: 30px;
  font-weight: 1000;
  font-family: "Mulish", sans-serif;
  color: #3f2770;
  margin: 0;
  padding: 5px 20px;
  line-height: 1.2;
}

.pricing-card {
  background: #fff;
  padding: 56px 8px;
  text-align: center;
  border-radius: 30px;
  position: relative;
  box-shadow: -25px 4px 30px 0px rgba(0, 0, 0, 0.45);
  height: 94%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.package {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 280px;
  height: inherit;
}

.plan-head {
  width: 100%;
  padding: 8px;
  border-bottom: 2px solid #22174c;
  text-align: center;
}

.plan-head h3 {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
  color: #22174c;
  margin: 0;
  line-height: 1.3;
}

.plan-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.old-price,
.new-price {
  display: flex;
  align-items: center;
  gap: 4px;
}

.price-icon {
  color: #22174c;
}

.old-price {
  opacity: 0.5;
  position: relative;
  justify-content : center ;
  
}

.price-line {
  position: absolute;
  left: -11px;
  top: 50%;
  width: calc(100% + 22px);
  height: 5px;
  background: rgba(250, 12, 12, 0.71);
  transform: rotate(-10deg);
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
  color: #22174c;
  line-height: 1.2;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.feature-text {
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Mulish", sans-serif;
  color: #22174c;
  text-align: left;
  line-height: 1.6;
}

.buy-now-btn {
  background: #cd84f1;
  border: none;
  border-radius: 22px;
  padding: 8px;
  width: 252px;
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(205, 132, 241, 0.4);
}

.plan-number {
  position: absolute;
  right: 5px;
  color: #553497;
  font-size: 150px;
  font-family: "Dongle", sans-serif;
  font-weight: 700;
  opacity: 0.9;
  /* bottom: 0; */
  line-height: 1;
}

/* Popular Badge */
.pricing-card.popular {
  position: relative;
  overflow: hidden;
}

.popular-badge {
  position: absolute;
  bottom: 20px; /* Butonun üzerine gelmemesi için yükseklik ayarı */
  left: -80px;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  color: white;
  padding: 8px 24px;
  transform: rotate(45deg);
  font-size: 1.2rem;
  font-weight: 500;
  width: 250px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.popular-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shine 2s infinite;
}

@keyframes shine {
  to {
    left: 100%;
  }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .pricing-section {
    padding: 60px 0;
  }

  .pricing-card {
    margin-bottom: 40px;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .package {
    width: 100%;
  }

  .plan-head h3 {
    font-size: 1.75rem;
  }

  .price {
    font-size: 2rem;
  }

  .feature-text {
    font-size: 1rem;
  }

  .buy-now-btn {
    width: 220px;
    font-size: 20px;
  }

  .popular-badge {
    bottom: 30px; /* Mobilde butonun üzerine gelmemesi için yükseklik ayarı */
    left: -80px;
  }

  .popular-badge span {
    font-size: 28px;
  }
}

@media (max-width: 575.98px) {
  .pricing-section {
    padding: 40px 0;
  }
  
  .treatment-plans-badge h2 {
    font-size: 2rem;
  }

  .plan-head h3 {
    font-size: 1.5rem;
  }

  .price {
    font-size: 1.75rem;
  }

  .feature-text {
    font-size: 1rem;
  }

  .buy-now-btn {
    width: 200px;
    font-size: 18px;
  }

  .popular-badge {
    bottom: 25px; /* Daha küçük ekranlarda butonun üzerine gelmemesi için yükseklik ayarı */
    left: -81px;
  }

  .popular-badge span {
    font-size: 24px;
  }
}

/* Why Choose Section Styles */
.why-choose-section {
  background-color: #fff;
}

.why-title {
  font-size: 2.75rem;
  font-weight: 800;
  font-family: "Mulish", sans-serif;
  line-height: 1.2;
  color: #6656e7;
  margin-bottom: 30px;
  text-align: center;
  padding: 40px 0 40px 0;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.benefit-icon {
  flex-shrink: 0;
}

.benefit-row p {
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
  color: #22174c;
  margin: 0;
  line-height: 1.6;
}

.info-cards {
  display: flex;
  justify-content: center;
  gap: 83px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.info-card {
  max-width: 396px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.info-card-image {
  width: 240px;
  height: auto;
  border-radius: 20px;
}

.info-card-text {
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
  color: #22174c;
  text-align: justify;
  margin: 0;
  line-height: 1.6;
}

.get-started {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.rocket-image {
  width: 118px;
  height: 118px;
}

.get-started-content {
  max-width: 500px;
}

.get-started-title {
  font-size: 2rem;
  font-weight: 800;
  font-family: "Mulish", sans-serif;
  line-height: 1.3;
  color: #6656e7;
  margin-bottom: 8px;
}

.get-started-text {
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
  color: #22174c;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .why-choose-section {
    padding: 60px 0;
  }

  .why-title {
    font-size: 1.75rem;
  }

  .benefit-row p {
    font-size: 1rem;
  }

  .info-cards {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .info-card {
    max-width: 100%;
    padding: 0 20px;
  }

  .info-card-text {
    font-size: 1rem;
  }

  .get-started {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .rocket-image {
    width: 118px;
    max-width: 118px;
  }

  .get-started-title {
    font-size: 1.75rem;
    text-align: center;
  }

  .get-started-text {
    font-size: 1rem;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .why-choose-section {
    padding: 40px 0;
  }

  .why-title {
    font-size: 1.5rem;
  }

  .benefit-row p {
    font-size: 0.875rem;
  }

  .info-card-text {
    font-size: 0.875rem;
  }

  .get-started-title {
    font-size: 1.5rem;
  }

  .get-started-text {
    font-size: 0.875rem;
  }
}

/* History Section Styles */
.history-section {
  padding: 100px 0;
  background-color: #fff;
}

.history-title {
  font-size: 2.75rem;
  font-weight: 800;
  font-family: "Mulish", sans-serif;
  line-height: 1.2;
  color: #6656e7;
  text-align: center;
}

.history-content {
  display: flex;
  flex-direction: column;
}

.history-text {
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
  color: #22174c;
  margin: 0;
  line-height: 1.6;
}

.history-row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.history-image-container {
  flex-shrink: 0;
  border: 4px solid #6656e7;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(102, 86, 231, 0.4);
}

.history-image {
  display: block;
  width: auto;
  height: 200px;
  border-radius: 30px;
}

@media (max-width: 991.98px) {
  .history-section {
    padding: 60px 0;
  }

  .history-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
    text-align: center;
  }

  .history-content {
    gap: 40px;
  }

  .history-text {
    font-size: 1rem;
  }

  .history-row {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .history-image-container {
    width: 285px;
    max-width: 285px;
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .history-section {
    padding: 40px 0;
  }

  .history-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .history-content {
    gap: 30px;
  }

  .history-text {
    font-size: 0.875rem;
  }

  .history-row {
    gap: 20px;
  }
}

/* FAQ Section Styles */
.faq-section {
  padding: 100px 0;
}

.faq-title {
  font-size: 2.75rem;
  font-weight: 800;
  font-family: "Mulish", sans-serif;
  line-height: 1.2;
  color: #6656e7;
  text-align:center;
}

.accordion {
  max-width: 1168px;
  margin: 0 auto;
}

.accordion-item {
  border: none;
  margin-bottom: 10px;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-button {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
  color: #22174c;
  background-color: transparent;
  padding: 24px 0;
  border-bottom: 2px solid #8f8f8f;
  line-height: 1.5;
}

.accordion-button:not(.collapsed) {
  color: #22174c;
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #8f8f8f;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.91 19.92L15.43 13.4C16.2 12.63 16.2 11.37 15.43 10.6L8.91 4.08' stroke='%2322174C' stroke-width='2.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: rotate(-90deg);
  transition: transform 0.2s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.91 19.92L15.43 13.4C16.2 12.63 16.2 11.37 15.43 10.6L8.91 4.08' stroke='%2322174C' stroke-width='2.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.accordion-body {
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
  color: #22174c;
  padding: 24px 0;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .accordion-button {
    font-size: 1.25rem;
    padding: 20px 0;
  }

  .accordion-body {
    font-size: 1rem;
    padding: 20px 0;
  }
}

@media (max-width: 575.98px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .accordion-button {
    font-size: 1rem;
    padding: 16px 0;
  }

  .accordion-body {
    font-size: 0.875rem;
    padding: 16px 0;
  }
}

/* Gallery Section Styles */
.gallery-section {
  overflow: hidden;
}

.gallery-title {
  font-size: 2.75rem;
  font-weight: 800;
  font-family: "Mulish", sans-serif;
  line-height: 1.2;
  color: #6656e7;
  text-align: center;
}

.gallery-slider {
  margin: 0 80px;
}

.gallery-item {
  padding: 15px;
  transition: all 0.3s ease;
  min-width: 367px;
}

.gallery-item img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 25px;
  transition: all 0.3s ease;
}

/* Slick Slider Custom Styles */
.slick-slide {
  transform: scale(0.85);
  transition: all 0.3s ease;
}

.gallery-item{
  opacity: .5;
}

.slick-center {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 10px 30px rgba(102, 86, 231, 0.5);
  border-radius: 40px;
  background-color: #fff !important;
}

.slick-center .gallery-item img {
  box-shadow: 0px 4px 35px rgba(102, 86, 231, 1);
}

.slick-list {
  overflow: visible;
  padding: 0 20px;
}

.slick-track {
  padding: 40px 0;
  display: flex !important;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
}

/* Navigation Buttons */
.slick-prev,
.slick-next {
  width: 50px;
  height: 50px;
  z-index: 2;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
  background: #fff;
  box-shadow: 0px 4px 15px rgba(102, 86, 231, 0.3);
}

.slick-prev {
  left: -60px;
}

.slick-next {
  right: -60px;
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

/* Gallery Dots Style */
.gallery-section .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.gallery-section .slick-dots li {
  margin: 0;
}

.gallery-section .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
}

.gallery-section .slick-dots li button:before {
  content: "";
  width: 12px;
  height: 12px;
  background: #edebec;
  border-radius: 50%;
  opacity: 1;
}

.gallery-section .slick-dots li.slick-active button:before {
  background: #6656e7;
}

@media (max-width: 1200px) {
  .gallery-slider {
    margin: 0 70px;
  }

  .gallery-item {
    padding: 15px;
  }

  .slick-center {
    transform: scale(1.05);
  }
}

@media (max-width: 991.98px) {
  .gallery-section {
    padding: 60px 0;
  }

  .gallery-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .gallery-slider {
    margin: 0 60px;
    padding: 40px 0;
  }

  .gallery-item {
    padding: 10px;
    min-width: 300px;
  }

  .gallery-item img {
    height: 400px;
    border-radius: 30px;
  }

  .slick-slide {
    transform: scale(0.95);
  }

  .slick-center {
    transform: scale(1);
  }

  .slick-track {
    padding: 30px 0;
  }

  .slick-prev {
    left: -50px;
  }

  .slick-next {
    right: -50px;
  }

  .slick-list {
    padding: 0 15px;
  }
  .pricing-header{
        background: transparent;
        height:15px;
    }
}

@media (max-width: 575.98px) {
    .pricing-header{
        background: transparent;
        height:15px;
    }
    
  .gallery-section {
    padding: 40px 0;
  }

  .gallery-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .gallery-slider {
    margin: 0 50px;
    padding: 30px 0;
  }

  .gallery-item {
    padding: 8px;
    min-width: 250px;
  }

  .gallery-item img {
    height: 300px;
    border-radius: 25px;
  }

  .slick-track {
    padding: 20px 0;
  }

  .slick-prev {
    left: -40px;
  }

  .slick-next {
    right: -40px;
  }

  .slick-list {
    padding: 0 10px;
  }
}

/* Testimonials Section Styles */
.testimonials-section {
  padding: 40px 0;
  overflow: hidden;
}

.testimonials-title {
  font-size: 2.75rem;
  font-weight: 800;
  font-family: "Mulish", sans-serif;
  line-height: 1.2;
  color: #6656e7;
  text-align: center;
}

.testimonial-slider {
  margin: 0 -15px;
}

.testimonial-item {
  padding: 0px;
  height: 100%;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 40px;
  height: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  /*box-shadow: 0px 4px 10px rgba(102, 86, 231, 0.4);*/
  box-shadow: inset 0px 4px 10px rgba(102, 86, 231, 0.4);
  transition: all 0.3s ease;
}

.testimonial-text {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
  color: #22174c;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
  color: #767676;
  text-align: right;
  margin-bottom: 20px;
  line-height: 1.5;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-top: auto;
}

.rating-star {
  width: 24px;
  height: 24px;
  color: #6656e7;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.25));
}

/* Custom Slick Slider Styles for Testimonials */
.testimonials-section .slick-slide {
  opacity: 1;
  transform: scale(0.95);
  transition: all 0.3s ease;
}

.testimonials-section .slick-center {
  transform: scale(1);
}

.testimonials-section .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.testimonials-section .slick-dots li {
  margin: 0;
}

.testimonials-section .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
}

.testimonials-section .slick-dots li button:before {
  content: "";
  width: 12px;
  height: 12px;
  background: #edebec;
  border-radius: 50%;
  opacity: 1;
}

.testimonials-section .slick-dots li.slick-active button:before {
  background: #6656e7;
}

@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .testimonial-card {
    min-height: 300px;
    padding: 30px;
  }

  .testimonial-text,
  .testimonial-author {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .testimonial-card {
    min-height: 250px;
    padding: 20px;
  }

  .testimonial-text,
  .testimonial-author {
    font-size: 0.875rem;
  }
}

/* Therapy Program Section */
.therapy-program-section {
  padding: 100px 0;
  background-color: #22174c;
  overflow: hidden;
}

.therapy-program-title {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
}

.program-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.program-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  width: 367px;
  box-shadow: 0px 10px 30px rgba(113, 88, 226, 0.15);
}

.program-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.program-icon {
  width: 48px;
  height: 48px;
}

.program-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.program-title {
  font-size: 24px;
  font-weight: 700;
  color: #22174c;
  margin: 0;
}

.program-text {
  font-size: 20px;
  color: #666;
  margin-bottom: 32px;
}

.program-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.feature-text {
  font-size: 20px;
  color: #22174c;
  margin: 0;
}

@media (max-width: 1200px) {
  .program-cards {
    gap: 20px;
  }

  .program-card {
    width: calc(50% - 10px);
  }
}

@media (max-width: 991.98px) {
  .therapy-program-section {
    padding: 60px 0;
  }

  .therapy-program-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .program-card {
    width: 100%;
    max-width: 500px;
  }

  .program-text {
    font-size: 18px;
  }

  .feature-text {
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  .therapy-program-section {
    padding: 40px 0;
  }

  .therapy-program-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .program-card {
    padding: 30px;
  }

  .program-title {
    font-size: 22px;
  }

  .program-text {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .feature-text {
    font-size: 16px;
  }
}

/* Therapy Programs Section */
.therapy-programs-section {
  padding: 0px 0;
  overflow: hidden;
}

.programs-header {
  max-width: 1168px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
}

.programs-title {
  font-size: 2.75rem;
  font-weight: 800;
  font-family: "Mulish", sans-serif;
  line-height: 1.2;
  color: #6656e7;
  margin-bottom: 31px;
}

.programs-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
  color: #ffffff;
  margin: 0;
  line-height: 1.6;
}

.programs-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.program-row {
  display: flex;
  align-items: center;
  gap: 147px;
  padding: 0 20px;
}

.program-row.reverse {
  flex-direction: row-reverse;
  gap: 20px;
}

.program-text {
  flex: 1;
}

.program-text h3 {
  font-size: 2rem;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.program-text p {
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
  color: #ffffff;
  margin: 0;
  line-height: 1.6;
}

.program-text .target {
  margin-bottom: 8px;
}

.program-chart {
  flex-shrink: 0;
}

.program-chart img {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 20px;
}

@media (max-width: 1200px) {
  .program-row,
  .program-row.reverse {
    gap: 60px;
  }

  .program-chart img {
    max-width: 400px;
  }
}

@media (max-width: 991.98px) {
  .therapy-programs-section {
    padding: 60px 0;
  }

  .programs-header {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .programs-title {
    font-size: 1.75rem;
    margin-bottom: 24px;
  }

  .programs-subtitle {
    font-size: 1rem;
  }

  .programs-content {
    gap: 40px;
  }

  .program-row,
  .program-row.reverse {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .program-text h3 {
    font-size: 1.75rem;
  }

  .program-text p {
    font-size: 1rem;
  }

  .program-chart img {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .therapy-programs-section {
    padding: 40px 0;
  }

  .programs-header {
    margin-bottom: 30px;
  }

  .programs-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .programs-subtitle {
    font-size: 0.875rem;
  }

  .program-text h3 {
    font-size: 1.5rem;
  }

  .program-text p {
    font-size: 0.875rem;
  }
}

/* Equipment Section */
.equipment-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.equipment-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  transform: translateZ(0);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0px 10px 30px rgba(113, 88, 226, 0.3);
}

.equipment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(205, 132, 241, 0.3);
}

.equipment-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.equipment-card:hover .equipment-thumbnail {
  transform: scale(1.05);
}

.equipment-card .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.9;
}

.equipment-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}

.equipment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(34, 23, 76, 0) 0%,
    rgba(34, 23, 76, 0.8) 100%
  );
  border-radius: 30px;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.equipment-card:hover::before {
  opacity: 1;
}

.equipment-content {
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.equipment-text {
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
  color: #ffffff;
  margin: 0;
  line-height: 1.6;
}

.equipment-logo {
  max-width: 200px;
}

.equipment-logo img {
  width: 100%;
  height: auto;
}

@media (max-width: 991.98px) {
  .equipment-section {
    padding: 60px 0;
  }

  .equipment-content {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
    align-items: center;
  }

  .equipment-text {
    font-size: 1rem;
  }

  .equipment-logo {
    max-width: 150px;
  }
}

@media (max-width: 575.98px) {
  .equipment-section {
    padding: 40px 0;
  }

  .equipment-text {
    font-size: 0.875rem;
  }

  .equipment-logo {
    max-width: 120px;
  }
}

/* Footer Section */
.footer-section {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, #22174c 0%, #1a1238 100%);
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(205, 132, 241, 0.5),
    transparent
  );
}

.footer-content {
  margin-bottom: 40px;
}

.footer-brand {
  margin-bottom: 0;
  color: #ffffff;
}

.footer-links {
  margin-bottom: 0;
}

.footer-links h4 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  line-height: 1.6;
}

.footer-links ul li a:hover {
  color: #cd84f1;
  transform: translateX(5px);
  display: inline-block;
}

@media (max-width: 991.98px) {
  .footer-brand,
  .footer-links {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-links h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
    gap: 20px;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}

.copyright {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  font-size: 1.125rem;
  line-height: 1.6;
}

.social-link:hover {
  color: #cd84f1;
  transform: translateY(-3px);
}

@media (max-width: 575.98px) {
  .footer-section {
    padding: 40px 0 20px;
  }

  .footer-content {
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
  }

  .contact-text {
    font-size: 1rem;
  }
}

/* Video Modal Styles */
#videoModal .modal-content {
  background-color: #000;
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

#videoModal .modal-header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  padding: 1rem;
}

#videoModal .btn-close {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  padding: 0.5rem;
  opacity: 1;
  transition: background-color 0.3s ease;
}

#videoModal .btn-close:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

#videoModal .modal-body {
  background-color: #000;
}

#videoModal .ratio {
  background-color: #000;
}

#videoModal iframe {
  border: none;
  width: 100%;
  height: 100%;
}

/* Typography Scale */
h1,
.h1 {
  font-size: 3.5rem;
  line-height: 1.2;
} /* 56px */
h2,
.h2 {
  font-size: 2.75rem;
  line-height: 1.2;
} /* 44px */
h3,
.h3 {
  font-size: 2rem;
  line-height: 1.3;
} /* 32px */
h4,
.h4 {
  font-size: 1.5rem;
  line-height: 1.4;
} /* 24px */
p,
.body-text {
  font-size: 1.125rem;
  line-height: 1.6;
} /* 18px */
.small-text {
  font-size: 0.875rem;
  line-height: 1.5;
} /* 14px */

/* Responsive Typography */
@media (max-width: 991.98px) {
  h1,
  .h1 {
    font-size: 3rem;
  } /* 48px */
  h2,
  .h2 {
    font-size: 2.5rem;
  } /* 40px */
  h3,
  .h3 {
    font-size: 1.75rem;
  } /* 28px */
  h4,
  .h4 {
    font-size: 1.25rem;
    color: #000000;
  } /* 20px */

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

  .features-title,
  .who-title,
  .treatment-plans-badge h2,
  .why-title,
  .history-title,
  .faq-title,
  .gallery-title,
  .testimonials-title,
  .programs-title {
    font-size: 2.5rem;
  }

  .plan-head h3,
  .get-started-title,
  .program-text h3 {
    font-size: 1.75rem;
  }

  .price {
    font-size: 1.5rem;
  }

  .logo-img {
    height: 25px !important;
  }
  .history-image {
    height: auto;
  }
}

@media (max-width: 575.98px) {
  h1,
  .h1 {
    font-size: 2.5rem;
  } /* 40px */
  h2,
  .h2 {
    font-size: 2rem;
  } /* 32px */
  h3,
  .h3 {
    font-size: 1.5rem;
  } /* 24px */
  h4,
  .h4 {
    font-size: 1.125rem;
  } /* 18px */
  p,
  .body-text {
    font-size: 1rem;
  }

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

  .features-title,
  .who-title,
  .treatment-plans-badge h2,
  .why-title,
  .history-title,
  .faq-title,
  .gallery-title,
  .testimonials-title,
  .programs-title {
    font-size: 2rem;
  }

  .plan-head h3,
  .get-started-title,
  .program-text h3 {
    font-size: 1.5rem;
  }

  .hero-text,
  .who-subtitle,
  .accordion-button,
  .testimonial-text,
  .programs-subtitle {
    font-size: 1.125rem;
  }

  .feature-item p,
  .benefit-item span,
  .feature-text,
  .benefit-row p,
  .info-card-text,
  .get-started-text,
  .history-text,
  .accordion-body,
  .testimonial-author,
  .program-text p,
  .equipment-text,
  .footer-links ul li a {
    font-size: 1rem;
  }

  .price {
    font-size: 1.5rem;
  }

  .copyright {
    font-size: 0.875rem;
  }
}

/* Support Modals */
.modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(102, 86, 231, 0.1);
}

.modal-header {
  border-bottom: 1px solid rgba(102, 86, 231, 0.1);
  padding: 20px 30px;
}

.modal-header .modal-title {
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  color: #6656e7;
  font-size: 24px;
}

.modal-body {
  padding: 30px;
}

.modal-body h6 {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  color: #22174c;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
}

.modal-body p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 16px;
}

.modal-body ul {
  padding-left: 0px;
  margin-bottom: 15px;
}

.modal-body ul li {
  color: #666;
  line-height: 1.6;
  font-size: 16px;
}

.modal-footer {
  border-top: 1px solid rgba(102, 86, 231, 0.1);
  padding: 10px 20px;
}

.modal-footer .btn-secondary {
  background: #6656e7;
  border: none;
  padding: 10px 30px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.modal-footer .btn-secondary:hover {
  background: #5546d4;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 86, 231, 0.2);
}

.accordion-item {
  background-color: transparent;
}

/* Payment Modal Styles */
.payment-modal {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 30px;
  padding: 25px;
  border: none;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  padding: 0 20px;
}

.progress-steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #ebebeb;
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 0 10px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ebebeb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #6d6d6d;
  margin-bottom: 8px;
}

.step-text {
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  color: #6d6d6d;
  white-space: nowrap;
}

.step.completed .step-number,
.step.active .step-number {
  background: #53dd6c;
  border-color: #53dd6c;
  color: #fff;
}

.payment-form {
  padding: 0px 0;
}

.payment-form h3 {
  font-family: "Mulish", sans-serif;
  font-size: 20px;
  color: #3a3a3a;
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  color: #6d6d6d;
  margin-bottom: 0px;
  display: block;
  padding : 0 0 0 10px;
}

.form-control {
  border: 1px solid #ebebeb;
  border-radius: 20px;
  padding: 12px 20px;
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  width: 100%;
}

.form-check {
  margin: 10px 0;
}

.form-check-label {
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  color: #6d6d6d;
  margin-left: 8px;
}

.payment-summary {
  background: #ebebeb;
  border-radius: 25px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-amount {
  font-family: "Mulish", sans-serif;
}

.total-amount span:first-child {
  font-size: 18px;
  color: #3a3a3a;
  margin-right: 10px;
}

.total-amount .amount {
  font-size: 20px;
  font-weight: 800;
  color: #53dd6c;
}

.proceed-btn {
  background: #53dd6c;
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.proceed-btn:hover {
  background: #45c75d;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .payment-modal {
    padding: 20px;
  }

  .progress-steps {
    margin-bottom: 30px;
  }

  .step-text {
    font-size: 13px;
  }

  .payment-summary {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Step Wizard Styles */
.step-wizard {
  padding: 0px 0px 0px;
}

.step-wizard-list {
  list-style-type: none;
  border-radius: 10px;
  display: flex;
  padding: 20px 10px;
  position: relative;
  z-index: 10;
  justify-content: space-between;
  margin: 0;
}

.step-wizard-item {
  padding: 0 20px;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  align-items: center;
}

.step-wizard-item + .step-wizard-item:after {
  content: "";
  position: absolute;
  left: -50%;
  top: 20px;
  background: #ebebeb;
  width: 100%;
  height: 2px;
  transform: translateX(50%);
  z-index: -10;
  transition: background-color 0.3s ease;
}

.progress-count {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  color: #6d6d6d;
  background: #fff;
  border: 2px solid #ebebeb;
  transition: all 0.3s ease;
}

.step-number {
  font-style: normal;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  transition: opacity 0.3s ease;
}

.check-icon,
.success-icon,
.error-icon {
  display: none;
  font-style: normal;
  position: absolute;
  font-size: 18px;
  transition: all 0.3s ease;
}

.progress-label {
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  font-family: "Mulish", sans-serif;
  color: #6d6d6d;
  transition: color 0.3s ease;
  white-space: nowrap;
}

/* Current item styles */
.current-item .progress-count {
  border-color: #53dd6c;
  color: #53dd6c;
}

.current-item .progress-label {
  color: #53dd6c;
}

.completed .step-number {
  display: none;
}

.completed .check-icon {
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.completed + .step-wizard-item:after {
  background: #53dd6c;
}

/* Success state styles */
.success .progress-count {
  background: #53dd6c;
  border-color: #53dd6c;
}

.success .step-number {
  display: none;
}

.success .success-icon {
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Error state styles */
.error .progress-count {
  background: #ff4b4b;
  border-color: #ff4b4b;
}

.error .step-number {
  display: none;
}

.error .error-icon {
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Retry button styles */
.retry-button {
  display: none;
  margin-top: 12px;
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
  background: #ff4b4b;
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.retry-button:hover {
  background: #ff3333;
  transform: translateY(-1px);
}

.error .retry-button {
  display: block;
}

@media screen and (max-width: 768px) {
  .step-wizard {
    padding: 20px 10px;
  }

  .step-wizard-list {
    padding: 10px 0;
  }

  .step-wizard-item {
    padding: 0 10px;
  }

  .progress-count {
    height: 35px;
    width: 35px;
  }

  .step-number {
    font-size: 14px;
  }

  .progress-label {
    font-size: 12px;
    margin-top: 8px;
  }

  .step-wizard-item + .step-wizard-item:after {
    top: 17px;
  }

  .retry-button {
    font-size: 12px;
    padding: 6px 16px;
  }
}

@media screen and (max-width: 480px) {
  .progress-label {
    font-size: 11px;
  }

  .progress-count {
    height: 30px;
    width: 30px;
  }

  .step-number {
    font-size: 12px;
  }

  .check-icon,
  .success-icon,
  .error-icon {
    font-size: 14px;
  }
}

/* Selected Plan Details Styles */
.selected-plan-details {
  padding: 10px;
  margin: 0px;
  background: rgba(83, 221, 108, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(83, 221, 108, 0.2);
}

.selected-plan-title {
  font-family: "Mulish", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #3a3a3a;
  margin-bottom: 15px;
  text-align: center;
}

.selected-plan-features {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.selected-plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  color: #6d6d6d;
}

.selected-plan-feature img {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .selected-plan-details {
    margin: 15px;
    padding: 15px;
  }

  .selected-plan-title {
    font-size: 18px;
  }

  .selected-plan-feature {
    font-size: 13px;
  }
}

/* Wizard Styles */
.wizard {
  margin: 20px auto;
  background: #fff;
}

.wizard .nav-tabs {
  position: relative;
  margin: 40px auto;
  margin-bottom: 0;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  padding: 0;
}

.wizard .nav-tabs > li {
  width: 33.33%;
  position: relative;
  text-align: center;
  list-style: none;
}

.wizard .nav-tabs > li > a {
  display: block;
  text-decoration: none;
}

.wizard .nav-tabs > li > a:hover {
  text-decoration: none;
}

.wizard .nav-tabs > li .round-tab {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e0e0e0;
  color: #888;
  font-size: 16px;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all 0.2s ease;
}

.wizard .nav-tabs > li.active .round-tab {
  background: #28a745;
  color: #fff;
  border-color: #28a745;
}

.wizard .nav-tabs > li.active .step-title {
  color: #28a745;
}

.wizard .nav-tabs > li.disabled .round-tab {
  background: #f5f5f5;
}

.wizard .nav-tabs > li.disabled .round-tab:hover {
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  cursor: default;
}

.wizard .nav-tabs > li:not(.active) .step-title {
  color: #888;
}

.wizard .nav-tabs > li .step-title {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
}

.wizard .connecting-line {
  height: 2px;
  background: #e0e0e0;
  position: absolute;
  width: 75%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 20px;
  z-index: 1;
}

.wizard-inner {
  position: relative;
  margin-bottom: 50px;
}

/* Payment Modal Styles */
#paymentModal .modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

#paymentModal .modal-header {
  padding: 1.5rem;
}

#paymentModal .modal-body {
  padding: 0 1.5rem 1.5rem;
}

/* Step Wizard */
.step-wizard {
  margin: 20px 0;
}

.step-wizard-list {
  list-style: none;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 0;
}

.step-wizard-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-wizard-item::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: #e0e0e0;
  transform: translateX(0);
  z-index: 0;
}

.step-wizard-item:last-child::before {
  display: none;
}

.progress-count {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: #6656e7;
  background: #fff;
  border: 2px solid #6656e7;
}

.progress-label {
  font-size: 14px;
  margin-top: 8px;
  font-weight: 600;
  color: #6656e7;
  display: block;
}

.current-item .progress-count,
.current-item ~ .step-wizard-item .progress-count {
  background-color: #fff;
  border-color: #6656e7;
}

.current-item .progress-count {
  background-color: #6656e7;
  color: #fff;
}

.current-item ~ .step-wizard-item .progress-count {
  color: #6656e7;
}

.current-item ~ .step-wizard-item .progress-label {
  color: #6656e7;
}

.current-item .progress-label {
  color: #6656e7;
}

/* Form Styles */
.payment-form .form-control {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #e0e0e0;
}

.payment-form .form-control:focus {
  border-color: #6656e7;
  box-shadow: 0 0 0 0.2rem rgba(102, 86, 231, 0.25);
}

.payment-form .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

/* Package Details */
.package-details .card {
  border-radius: 15px;
  border: 1px solid #e0e0e0;
}

.package-details .card-body {
  padding: 1.5rem;
}

.package-title {
  color: #333;
  font-weight: 600;
}

.plan-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #6656e7;
}

.plan-features ul {
  margin-bottom: 0;
}

.plan-features li {
  padding: 0 0;
  color: #666;
}

.price-details hr {
  margin: 1rem 0;
  border-color: #e0e0e0;
}

/* Purchase Button */
.purchase-btn {
  background-color: #6656e7;
  border: none;
  padding: 12px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.purchase-btn:hover {
  background-color: #5346c9;
  transform: translateY(-1px);
}

/* Security Code Step Styles */
.security-code-step {
  max-width: 100%;
  margin: 0 auto;
}

.code-header {
  margin-bottom: 1.5rem;
}

.code-text {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

.countdown-timer {
  font-size: 1rem;
  font-weight: 600;
  color: #6656e7;
  background: rgba(102, 86, 231, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.code-input {
  text-align: center;
  letter-spacing: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

.code-input::placeholder {
  letter-spacing: normal;
  font-size: 1rem;
  font-weight: normal;
}

.verify-btn {
  background-color: #6656e7;
  border: none;
  padding: 12px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.verify-btn:hover {
  background-color: #5346c9;
  transform: translateY(-1px);
}

.resend-btn {
  border: 2px solid #6656e7;
  color: #6656e7;
  padding: 12px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.resend-btn:hover {
  background-color: rgba(102, 86, 231, 0.1);
}

.resend-btn:disabled {
  border-color: #ccc;
  color: #999;
  cursor: not-allowed;
}

/* Payment Status Step Styles */
.payment-status-step {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.status-content {
  padding: 2rem;
}

.status-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.status-icon svg {
  width: 80px;
  height: 80px;
}

.status-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.status-message {
  color: #666;
  margin-bottom: 2rem;
}

.start-test-btn,
.later-btn,
.retry-btn {
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
}

.start-test-btn {
  background: linear-gradient(90deg, #7158e2 0%, #cd84f1 100%);
  border: none;
}

.start-test-btn:hover {
  background: linear-gradient(90deg, #6048d2 0%, #bd74e1 100%);
}

.later-btn {
  color: #7158e2;
  border-color: #7158e2;
}

.later-btn:hover {
  background-color: rgba(113, 88, 226, 0.1);
  color: #7158e2;
  border-color: #7158e2;
}

.retry-btn {
  background: #ff3b30;
  border: none;
}

.retry-btn:hover {
  background: #e63529;
}

/* Login/Register Page Styles */
.auth-container {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-card {
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0px 4px 10px rgba(102, 86, 231, 0.4);
  width: 100%;
  max-width: 600px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: #6656e7;
  background: linear-gradient(135deg, #8d83e3 0%, #6656e7 100%);
  border-radius: 40px 40px 0 0;
  z-index: 0;
}

.auth-logo {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 2rem;
}

.auth-logo h1 {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 40px;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.48);
  margin: 0;
}

.auth-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.auth-header h2 {
  color: #6656e7;
  font-family: "Mulish", sans-serif;
  font-weight: 900;
  font-size: 40px;
  margin: 0 0 1rem;
}

.auth-header h3 {
  color: #ffffff;
  font-family: "Mulish", sans-serif;
  font-weight: 900;
  font-size: 48px;
  margin: 0;
}

.auth-form {
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 1.5rem;
}

.auth-input {
  background: #edebec;
  border: none;
  border-radius: 18px;
  padding: 1rem 1.5rem;
  width: 100%;
  font-family: "Mulish", sans-serif;
  font-size: 24px;
  color: #333;
  box-shadow: inset 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.auth-input::placeholder {
  color: #8f8f8f;
}

.phone-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background: #edebec;
  border-radius: 18px;
  box-shadow: inset 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.phone-prefix {
  padding: 1rem 1.5rem;
  color: #8f8f8f;
  font-family: "Mulish", sans-serif;
  font-size: 24px;
  border-right: 2px solid #8f8f8f;
}

.phone-input {
  background: transparent;
  border: none;
  box-shadow: none;
  padding-left: 50px !important;
}

/* IntlTelInput Styles */
.iti {
  width: 100%;
  display: block;
}

.iti__flag {
  background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags@2x.png");
  }
}

.iti__selected-flag {
  border-radius: 8px 0 0 8px;
  background-color: #f8f9fa;
  height: 50px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  border-right: 1px solid #e0e0e0;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: #f8f9fa;
}

.iti--separate-dial-code .form-control {
  padding-left: 88px;
}

.iti__country-list {
  border-radius: 8px;
  margin-top: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border: 1px solid #e0e0e0;
  max-height: 200px;
  overflow-y: auto;
}

.iti__country {
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

.iti__country:hover {
  background-color: #f8f9fa;
}

.iti__country.iti__active {
  background-color: rgba(var(--primary-rgb), 0.1);
}

.iti__dial-code {
  color: #6c757d;
  margin-left: 6px;
}

.iti__country-name {
  color: #212529;
  margin-left: 6px;
  font-size: 14px;
}

.select-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.91 19.92L15.43 13.4C16.2 12.63 16.2 11.37 15.43 10.6L8.91 4.08' stroke='%238F8F8F' stroke-width='2' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  padding-right: 3.5rem;
}

.auth-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.auth-checkbox input[type="checkbox"] {
  width: 24px;
  height: 24px;
  border: 2px solid #8f8f8f;
  border-radius: 4px;
}

.auth-checkbox label {
  color: #8f8f8f;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
}

.auth-submit {
  background: #6656e7;
  border: none;
  border-radius: 32px;
  color: #ffffff;
  font-family: "Mulish", sans-serif;
  font-weight: 900;
  font-size: 24px;
  padding: 1rem;
  width: 100%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

.auth-link {
  text-align: center;
  margin-top: 1.5rem;
}

.auth-link a {
  color: #8f8f8f;
  font-family: "Mulish", sans-serif;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.2s;
}

.auth-link a:hover {
  color: #6656e7;
}

/* Login Page Styles */
.login-container {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #f8f9fa;
}

.login-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  box-shadow: 0px 8px 20px 5px rgb(109 94 230 / 30%);
}

.login-illustration {
  background: linear-gradient(135deg, #8d83e3 0%, #6656e7 100%);
  height: 100%;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.illustration-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.brand-logo h1 {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 2rem;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.welcome-text h2 {
  color: #ffffff;
  font-family: "Mulish", sans-serif;
  font-weight: 900;
  font-size: 48px;
  margin-bottom: 2rem;
}

.gradient-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.gradient-circles svg {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.gradient-circles svg:nth-child(1) {
  top: -500px;
  left: -80px;
}

.gradient-circles svg:nth-child(2) {
  bottom: 250px;
  right: -40px;
  animation-delay: -3s;
}

.gradient-circles-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.gradient-circles-2 svg {
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.gradient-circles-2 svg:nth-child(1) {
  top: -100px;
  left: -70px;
}

.gradient-circles-2 svg:nth-child(2) {
  bottom: -140px;
  right: -30px;
  animation-delay: -3s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.login-form-container {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.login-header h3 {
  color: #6656e7;
  font-family: "Mulish", sans-serif;
  font-weight: 900;
  font-size: 40px;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.login-input {
  background: #f8f9fa;
  border: none;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  color: #333;
  box-shadow: inset 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.login-input:focus {
  box-shadow: inset 0px 2px 6px rgba(102, 86, 231, 0.2);
  outline: none;
}

.form-check-label {
  color: #666;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
}

.forgot-password {
  color: #6656e7;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.forgot-password:hover {
  color: #8d83e3;
}

.login-submit {
  background: #6656e7;
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 1rem;
  width: 100%;
  margin-top: 1rem;
  transition: transform 0.2s, background-color 0.2s;
}

.login-submit:hover {
  background: #5445d6;
  transform: translateY(-2px);
  color: #ffffff;
}

.register-link {
  text-align: center;
  margin-top: 2rem;
}

.register-link span {
  color: #666;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
}

.register-link a {
  color: #6656e7;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-left: 0.5rem;
  transition: color 0.2s;
}

.register-link a:hover {
  color: #8d83e3;
}

@media (max-width: 768px) {
  .login-illustration {
    min-height: 300px;
  }

  .login-form-container {
    padding: 2rem;
  }

  .login-header h3 {
    font-size: 32px;
  }

  .brand-logo h1 {
    font-size: 32px;
  }

  .welcome-text h2 {
    font-size: 36px;
  }
}

/* Register Form Styles */
.register-form {
  max-width: 100%;
  width: 100%;
}

.register-form .form-group {
  margin-bottom: 1.5rem;
}

.register-form .form-control {
  height: 50px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.register-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
}

/* Custom Select Styles */
.register-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23343a40' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
}

/* Phone Input Styles */
.iti {
  width: 100%;
  display: block;
}

.iti__flag {
  background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags@2x.png");
  }
}

.iti__selected-flag {
  border-radius: 8px 0 0 8px;
  background-color: #f8f9fa;
  height: 50px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  border-right: 1px solid #e0e0e0;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: #f8f9fa;
}

.iti--separate-dial-code .form-control {
  padding-left: 88px;
}

.iti__country-list {
  border-radius: 8px;
  margin-top: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border: 1px solid #e0e0e0;
  max-height: 200px;
  overflow-y: auto;
}

.iti__country {
  padding: 8px 12px;
  display: flex;
  align-items: center;
}

.iti__country:hover {
  background-color: #f8f9fa;
}

.iti__country.iti__active {
  background-color: rgba(var(--primary-rgb), 0.1);
}

.iti__dial-code {
  color: #6c757d;
  margin-left: 6px;
}

.iti__country-name {
  color: #212529;
  margin-left: 6px;
  font-size: 14px;
}

/* Terms Checkbox Styles */
.form-check {
  display: flex;
}

.form-check-input {
  margin-left: -1.75rem;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  border-radius: 0.25rem;
  border: 1px solid #ced4da;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  cursor: pointer;
}

.form-check-label a {
  color: var(--primary-color);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

/* Submit Button Styles */
.register-form .btn-primary {
  width: 100%;
  height: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1.5rem;
}

/* Illustration Side */
.register-illustration {
  background-color: #f8f9fa;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  min-height: 100vh;
}

.register-illustration img {
  max-width: 80%;
  height: auto;
  margin-bottom: 2rem;
}

.register-illustration h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.register-illustration p {
  color: #6c757d;
  max-width: 80%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .register-illustration {
    min-height: auto;
    padding: 3rem 1rem;
  }

  .register-illustration img {
    max-width: 60%;
  }
}

/* Test Questions Section */
.test-questions-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.gradient-top-right {
  position: absolute;
  top: -150px;
  right: -170px;
  width: 400px;
  height: 400px;
  background: radial-gradient(50% 50% at 50% 50%, #8c50ff 100%, #fff 0%);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

.gradient-bottom-left {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(50% 50% at 50% 50%, #8c50ff 100%, #fff 0%);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

.question-container {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.question-header {
  text-align: center;
  margin-bottom: 40px;
}

.question-title {
  font-size: 32px;
  font-weight: 700;
  color: #1d1b20;
  margin-bottom: 16px;
  line-height: 1.3;
}

.question-counter {
  font-size: 16px;
  color: #49454f;
}

.options-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.option-group {
  position: relative;
}

.radio-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-label {
  display: block;
  padding: 16px 24px;
  border: 2px solid #cac4d0;
  border-radius: 100px;
  font-size: 16px;
  color: #49454f;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  margin: 0;
  background: #ffffff;
}

.radio-input:checked + .radio-label {
  border-color: #6750a4;
  background-color: #f6edff;
  color: #6750a4;
}

.radio-label:hover {
  border-color: #6750a4;
  background-color: #f6edff;
}

.navigation-buttons {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.back-btn,
.next-btn {
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  min-width: 120px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-btn {
  background: transparent;
  border: 2px solid #79747e;
  color: #79747e;
}

.next-btn {
  background: #6750a4;
  border: none;
  color: #ffffff;
}

.back-btn:hover {
  background: #f6edff;
  border-color: #6750a4;
  color: #6750a4;
}

.next-btn:hover {
  background: #7b65b6;
}

@media (max-width: 768px) {
  .question-container {
    padding: 24px;
  }

  .question-title {
    font-size: 24px;
  }

  .radio-label {
    padding: 12px 20px;
    font-size: 14px;
  }

  .navigation-buttons {
    flex-direction: column;
  }

  .back-btn,
  .next-btn {
    width: 100%;
  }
}

/* Account Button Styles */
.btn-account {
  background-color: #f97316;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 24px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-account:hover {
  background-color: #ea580c;
  color: white;
}

/* Dashboard Tabs Styles */
.dashboard-tabs-container {
  width: 100%;
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: static;
  margin-bottom: 30px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dashboard-tabs-container::-webkit-scrollbar {
  display: none;
}

.dashboard-tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 15px;
  gap: 10px;
  white-space: nowrap;
  min-width: max-content;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-tabs li {
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #666;
  background: transparent;
}

.dashboard-tabs li:hover {
  background: rgba(102, 86, 231, 0.1);
  color: #6656e7;
}

.dashboard-tabs li.active {
  background: #6656e7;
  color: white;
  font-weight: 600;
}

.dashboard-tabs li.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #6656e7;
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

.dashboard-content {
  max-width: 1200px;
  margin: 0px auto;
  padding: 0 20px;
}

/* Tab Section Visibility */
.tab-section {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-section.active {
  display: block;
  opacity: 1;
}

@media (max-width: 768px) {
  .dashboard-tabs-container {
    padding: 10px 0;
  }

  .dashboard-tabs {
    padding: 0 10px;
    gap: 8px;
  }

  .dashboard-tabs li {
    padding: 10px 16px;
    font-size: 14px;
  }

  .dashboard-content {
    margin: 20px auto;
    padding: 0 15px;
  }
}

/* Video Card Info Styles */
.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  z-index: 2;
}

.video-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.time-icon {
  font-size: 1.2rem;
}

.watch-counter {
  font-size: 0.9rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
}

.video-card.watched-limit {
  opacity: 0.6;
  pointer-events: none;
}

.video-card.watched-limit::after {
  content: "Daily limit reached";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  z-index: 3;
}

.mark-watched {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  display: none;
}

/* Dashboard Tab Menu Styles */
#dashboardTabs {
  padding: 25px;
  border-radius: 15px;
  margin: 10px auto;
  max-width: 1200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #cfcfcf;
  position: sticky;  
  top: 10px;      
  z-index: 1030;    
  background: #fff;
}

/*
#dashboardTabs .nav-item {
  margin: 0 15px;
}
*/

#dashboardTabs .nav-link {
  color: #b7b7b7 !important;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 140px;
  text-align: center;
}

#dashboardTabs .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(102, 86, 231, 0.1);
  border-radius: 30px;
  transform: scale(0);
  transition: transform 0.3s ease;
}

#dashboardTabs .nav-link:hover::before {
  transform: scale(1);
}

#dashboardTabs .nav-link.active {
  background: #6656e7;
  color: white !important;
  box-shadow: 0 4px 15px rgba(102, 86, 231, 0.3);
  font-size: 18px;
  padding: 15px 30px;
}

#dashboardTabs .nav-link.active::before {
  display: none;
}

/* Tab Content Styles */
.dashboard-content {
  padding: 0px 0;
}

.tab-section {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  #dashboardTabs {
    padding: 20px;
  }

  #dashboardTabs .nav-link {
    padding: 12px 25px;
    font-size: 16px;
    min-width: 140px;
  }
}

@media (max-width: 767.98px) {
  #dashboardTabs {
    padding: 15px;
  }

  #dashboardTabs .nav-item {
    margin: 5px;
  }

  #dashboardTabs .nav-link {
    padding: 20px 20px;
    font-size: 14px;
    min-width: 120px;
  }
}

/* Suggestions Section Styles */
.suggestions-container {
  position: relative;
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto 60px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  overflow: hidden;
}

.suggestions-content {
  position: relative;
  z-index: 1;
}

.suggestions-content h2 {
  color: #6656e7;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.suggestions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.suggestions-list p {
  font-size: 16px;
  line-height: 1.6;
  color: #22174c;
  margin: 0;
  padding-left: 24px;
  position: relative;
}

.suggestions-list p::before {
  content: "•";
  color: #6656e7;
  position: absolute;
  left: 0;
  font-size: 24px;
  line-height: 1;
}

.suggestions-watermark {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 300px;
  height: auto;
  opacity: 1;
  pointer-events: none;
}

/* FAQ Section Styles */
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-container h2 {
  color: #6656e7;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 16px;
}

.accordion-button {
  background: rgba(102, 86, 231, 0.1);
  border-radius: 10px !important;
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #22174c;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: #6656e7;
  color: white;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236656e7' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.accordion-body {
  padding: 20px;
  background: white;
  border-radius: 0 0 10px 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #22174c;
}

@media (max-width: 768px) {
  .suggestions-container {
    padding: 30px 20px;
  }

  .suggestions-content h2,
  .faq-container h2 {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .suggestions-list {
    gap: 16px;
  }

  .suggestions-list p {
    font-size: 15px;
  }

  .suggestions-watermark {
    width: 200px;
    right: -30px;
  }

  .accordion-button {
    padding: 16px;
    font-size: 15px;
  }

  .accordion-body {
    padding: 16px;
    font-size: 15px;
  }
}

/* Online Meeting Section Styles */
.meeting-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.meeting-container h2 {
  color: #6656e7;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.meeting-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.meeting-button {
  display: flex;
  align-items: center;
  padding: 8px;
  background: linear-gradient(203deg, #6656e7 -10%, rgba(205, 132, 241, 1) 80%);
  border-radius: 72px;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 86, 231, 0.2);
}

.meeting-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 86, 231, 0.3);
  color: white;
}

.meeting-icon {
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 10px;
}

.meeting-icon img {
  width: 80%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.meeting-text {
  font-size: 40px;
  line-height: 1.4;
}

.meeting-text strong {
  font-size: 40px;
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .meeting-container {
    padding: 30px 15px;
  }

  .meeting-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .meeting-button {
    padding: 20px;
  }

  .meeting-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }

  .meeting-text {
    font-size: 16px;
  }

  .meeting-text strong {
    font-size: 18px;
  }
}

/* Progress Section Styles */
.progress-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.progress-container h2 {
  color: #6656e7;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.completion-message {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  padding: 15px 30px;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  animation: fadeInDown 0.5s ease;
}

.session-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.session-toggle-btn {
  background: rgba(102, 86, 231, 0.1);
  color: #6656e7;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.session-toggle-btn:hover {
  background: #6656e7;
  color: white;
  transform: translateY(-2px);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .progress-container {
    padding: 30px 15px;
  }

  .progress-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .completion-message {
    font-size: 16px;
    padding: 12px 20px;
  }

  .session-toggle-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Genel stil */
#my-progress {
  padding: 0px 0px;
  text-align: center;
}

.progress-container {
  margin: 0 auto;
}

.progress-title {
  font-size: 28px;
  font-weight: 700;
  color: #6c4ed2;
  margin-bottom: 40px;
}

.progress-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

/* SVG genişliği ayarlanabilir */
.progress-wrapper svg {
  width: 100%;
  max-width: 900px;
  height: auto;
}

/* Açıklamalar */
.progress-legend {
  display: block;
  justify-content: center;
  gap: 40px;
  font-size: 16px;
  color: #333;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.legend-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
}

.legend-circle.filled {
  background-color: #6c4ed2;
}

.legend-circle.empty {
  border: 2px solid #6c4ed2;
  background-color: transparent;
}

/* Mobil cihazlar için */
@media (max-width: 575.98px) {
    .hero-section {
        padding: 80px 0 20px 0; /* veya ihtiyaca göre 30px, 20px */
    }
}
