   .team-submenu a{
            padding: 12px 15px;
    }

 .logo-img1
  {
    margin-left:80px;
  }
 


.section-reviews {



  .page-title h3 {
    color: #fff;
  }

  .review-card {
    border: 1px solid #292749;
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;

    &:hover {
      transform: translateY(-5px);
    }

    .review-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .review-body {
      font-size: 0.95rem;
      opacity: 0.85;
      border-bottom: 1px solid #3a3856;
      padding-bottom: 10px;
      margin-bottom: 15px;
    }

    .review-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.875rem;
      margin-bottom: 15px;

      .rating .badge {
        background-color: #18c29c;
        padding: 2px 10px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.85rem;
      }

      .date {
        opacity: 0.7;
      }

    
    }
  }
}

.faq-section {
  background: linear-gradient(120deg, #0d0c1e, #1a1830);
  color: #fff;

  .faq-title {
    font-size: 2rem;
    font-weight: bold;
    color: #f6bc4a;
    border-bottom: 2px solid #f6bc4a;
    padding-bottom: 0.5rem;
  }

  .accordion {
    .accordion-item {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      margin-bottom: 12px;
      overflow: hidden;
      transition: all 0.3s ease;

      .accordion-button {
        width: 100%;
        background: none;
        border: none;
        color: #fff;
        text-align: left;
        padding: 1rem 1.2rem;
        font-size: 1rem;
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: background 0.3s;

        .icon {
          font-size: 1.2rem;
          transition: transform 0.3s;
        }

        &:hover {
          background: rgba(255, 255, 255, 0.08);
        }
      }

      &.active {
        .accordion-button {
          background: linear-gradient(90deg, #a727c2 0%, #f6bc4a 50%, #5304d7 100%);
          color: #fff;

          .icon {
            transform: rotate(45deg);
          }
        }

        .accordion-content {
          max-height: 500px;
          padding: 0 1.2rem 1rem;
        }
      }

      .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        font-size: 0.95rem;
        opacity: 0.9;
      }
    }
  }
}

/*.package-wrapper {
  padding: 20px;
  position: relative;
}


.package-wrapper:after {
  background: linear-gradient(to bottom, rgb(240 176 61 / 35%), transparent);
  border-radius: 20px 20px 0 0;
  top: 50px;
  content: "";
  height: 80%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}




.package-item {
  background: linear-gradient(-135deg, #5e0656, #fe1d1d);
  border-radius: 100px;
  height: 160px;
  width: 160px;
  margin: 8px auto;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.package-item.selected::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../img/check-icon.png) rgb(10 6 215 / 67%);
  background-repeat: no-repeat;
  background-position: center;
}

.package-icon {
  padding-top: 18px;
}

.package-icon img {
  width: 40px;
}


.package-price {
  background: linear-gradient(49deg, #FFEB3B, #FF9800);
  color: #000;
  margin: 10px 0;
  font-size: 18px;
  font-weight: 700;
}

.package-name {
  line-height: 1;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}

.package-item:hover {
  box-shadow: 0 0 20px #05a5ff;
}

.package-item.purchased {
  cursor: not-allowed !important;
  position: relative;
}

.package-item.purchased:after {
  background: url(../img/check-icon.png) no-repeat center;
  content: '';
  width: 20px;
  height: 20px;
  background-size: cover;
  bottom: 5px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.package-item.purchased .package-price {
  background: linear-gradient(49deg, #b9ff3b, #3fb621);
}*/


.package-item.purchased1 {
  cursor: not-allowed !important;
  position: relative;
}

.package-item.purchased1::before {
  background: rgb(0 0 0 / 66%);
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;

}

.package-item.purchased1::after {
  background: url(../img/check-icon.png) no-repeat center;
  content: '';
  width: 20px;
  height: 20px;
  background-size: cover;
  bottom: 5px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
}

@media (max-width: 600px) {
  /*.package-wrapper {
    padding: 10px;
  }

  .package-item {
    height: 90px;
    width: 90px;
    margin: 8px auto;
  }

  .package-icon {
    padding-top: 5px;
  }

  .package-icon img {
    width: 22px;
  }

  .package-price {
    margin: 4px 0;
    font-size: 12px;
    font-weight: 600;
  }

  .package-name {
    font-size: 11px;
    font-weight: 500;
  }*/

  /*.package-item.purchased:after,
  .package-item.purchased1::after {
    width: 15px;
    height: 15px;
  }

}

.modal-backdrop.show {
    opacity: 0.8;
  }
  
  .modal-header {
    background: linear-gradient(270deg, #da8912 10.35%, #f54913 92.29%);
    border: 0;
    color: #fff;
  }
  
  .modal-content {
    background: #242424;
  }*/

  
  