.navbar {
  background: rgba(48, 48, 48, 0.4); /* semi-transparent purple */
  color: white !important;
  backdrop-filter: blur(10px); /* makes the background blurry */
  -webkit-backdrop-filter: blur(10px); /* for Safari support */
}

.navbar-collapse {
    text-align: center;
}

.navbar-toggler-icon {
  filter: invert(1); /* Inverts black to white */
}

.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

.nav-item {
    margin: 0 10px; 
}

.nav-link {
  position: relative; 
}

.nav-link::before {
  content: ''; 
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0; 
  height: 2px; 
  background-color: #ffffff; 
  transition: width 0.3s ease; 
}

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

body {
  background: linear-gradient(180deg, rgb(13, 24, 58) 0%, rgb(0, 0, 0));
  color: white !important;
}

.cardPlan{
    padding: 25px;
}

.glass{
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(17, 17, 17, 0.247));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37);
    border: 1px solid rgba(255, 255, 255, 0.158);
    transition: 0.2s;
}

.glass:hover{
    box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.37);
    scale: 1.03;
    transition: 0.2s;
}

.light-sweep {
    position: relative;
    overflow: hidden; 
  }
  
  .light-sweep::before {
    content: "";
    position: absolute;
    top: 0;
    left: -105%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
  }
  
  .light-sweep:hover::before {
    animation: sweep 0.35s ease-in-out forwards;
  }
  
  @keyframes sweep {
    0% {
      left: -85%;
    }
    100% {
      left: 145%;
    }
  }

  .enroll {
    border-radius: 100px;
    border: 1px solid #1d41ac !important;
    background: #0e2466;
    padding-right: 35px;
    padding-left: 35px;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-top: 5px;
    border: 0px;
    color: white;
    font-weight: bold;
    font-size: 15px;
    transition: 0.5s ease;
    text-decoration: none;
}

.enroll:hover {
    /* width: 300px; */
    background: #1d41ac;
    transition: 0.5s ease;
}

.planTopSeller{
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.342), rgba(255, 145, 0, 0.438));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37);
    border: 1px solid rgba(255, 255, 255, 0.158);
    transition: 0.2s;
}

.planTopSeller:hover{
    box-shadow: 0 8px 32px 0 rgba(255, 196, 0, 0.37);
    scale: 1.03;
    transition: 0.2s;
}


.planImage{
    border-radius: 15px !important;
    margin-bottom: 15px;
}

.card-title{
    font-size: 35px;
}

.buttonStyle {
    background: #1d41ac;
    border: none;
    padding: 10px 20px;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    width: 150px;
    text-transform: uppercase;
    cursor: pointer;
    transform: skew(-21deg);
    color: white !important;
  }
  
  .spanStyle {
    display: inline-block;
    transform: skew(21deg);
  }
  
  .buttonStyle::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    left: 0;
    background: rgb(255, 255, 255);
    opacity: 0;
    z-index: -1;
    transition: all 0.5s;
  }
  
  .buttonStyle:hover {
    color: #000 !important;
  }
  
  .buttonStyle:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
  }

  .cardDiv{
    margin-bottom: 35px;
  }

  .badge {
    background-color: #bc3f61;
  }

  .imgResults{
    border-radius: 10px;
  }

.video-container {
  position: relative;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

video {
  margin-top: 35px;
  width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {

  video {
      width: 70%;
      height: auto;
  }
}

a {
  color: inherit !important; 
  text-decoration: none;
  transition: all 0.5s;
}

a:visited {
  color: inherit !important; 
  transition: all 0.5s;
}

a:hover,
a:active {
  color: inherit !important; 
  text-decoration: none; 
  transition: all 0.5s;
}

.cardReviews{
  /* background: green; */
  font-size: 35px;
}
.cardParagraphStart {
  position: absolute;
  font-size: 65px;
}
.cardText {
  padding-left: 35px;
  padding-top: 35px;
  font-size: 25px;
}

.cardName {
  font-size: 16px;
  font-style: italic;
  font-weight: bold;
  padding-left: 55px;
}

  /* width */
  ::-webkit-scrollbar {
    width: 8px;
    background-color: black;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px black;
    background: linear-gradient(180deg, rgb(13, 24, 58) 0%, rgb(0, 0, 0));
    border-radius: 10px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #1d41ac;
    border-radius: 10px;
  }