:root {
  --primary: #001aff;
  --bg-dark: #000814;

  --bg-light: rgb(255, 255, 255);
  --bg-card: #8f8f8f;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Alexandria", sans-serif;
  background: var(--bg-dark);
  color: white;
  line-height: 1.6;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

section {
  /* margin-bottom: 700px; */
}

.section-title {
  font-size: 6rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;

  background: linear-gradient(0deg, blue, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  filter: drop-shadow(0 0 30px blue);
}

#first {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 10rem;
}

header {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  transition: all 0.3s ease-in-out;
  z-index: 100;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ffffff61;
}

/* .header-fixed {
    /* position: fixed;  
    top: 0;
    left: 0;
    background: rgba(10, 10, 15, 0.95); 
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: slideDown 0.4s ease;
 }  */

#header-container {
  padding: 1rem;
}

#firstLogo img {
  height: 3rem;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav a {
  position: relative;

  padding: 2rem 0;

  color: gray;
  text-decoration: none;
  
  transition: 0.3s;
}

.nav a:hover {
  color: white;
}

/* HERO */

#hero {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0 70px;
  padding: 1rem 0rem;
  flex-direction: column;
  align-items: center;
}

#video-container {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  width: 700px;
  aspect-ratio: 16 / 9; 
  border: 3px blue solid;
  filter: drop-shadow(0px -70px 90px blue);
}

.video-title {
  text-align: center;
  z-index: 1;
}

#video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*  */

#first-CTA {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;

  border-radius: 70px;
  gap: 1rem;
}

@media (max-width: 768px) {
  #first {
    gap: 10rem;
  }

  #first-CTA {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    border-radius: 70px;
    gap: 1rem;
    min-width: 300px;
    text-align: center;
  }

  .btn {
    min-width: 180px;
    text-align: center;
  }

  #stats {
        display: flex;
    align-items: center;
    flex-direction: column;
  }

  
}

.btn {
  font-family: "alexandria";
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 1000px;
  font-weight: 600;
  background-color: #ffffff;
  text-decoration: none;
  color: var(--primary);

  background: var(--primary);
  background: -webkit-linear-gradient(to top, #001aff, #00004600);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #ffffff, #bbbbbb); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.btn:hover {
  background-color: var(--primary);
  color: white;
  filter: drop-shadow(0px 30px 40px blue);
  transition: all 0.4s;
  background: var(--primary);
}

.btn-v2 {
  color: var(--primary);
  background: none;
  border: solid 2px;
  
  background-color: transparent;
}

.btn-v2:hover {
  border: rgba(0, 0, 0, 0) 2px solid;

}

/*  */

.results {
  padding: 1rem 0;
  margin: 0 8rem;
}

#stats {
  display: flex;
  justify-content: space-between;
}

.stat {
  padding: 30px 40px;
  border-radius: 30px;
  text-align: center;
}

.stat span {
  font-size: 2.5rem;
}

.stat p {
  font-size: 1rem;
  color: var(--primary);
}

#testimonials {
  /* background-color: #f5c542; */
  margin: 30px;
  padding: 30px;
  text-align: center;
}

.client-message {
  margin-bottom: 30px;
  margin-top: 30px;
}

.client {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  flex-direction: row-reverse;
}

.client-reverse {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  flex-direction: row;
} 

.client-pic {
  background-color: #ffffff;
  height: 40px;
  width: 40px;
}

.message {
  display: flex;
  justify-content: flex-end;
}

.message-reverse {
  display: flex;
  justify-content: flex-start;
}

.message-bubble {
  background-color: #ffffff;
  color: black;
  padding: 30px;
  border-radius: 30px;
  max-width: 600px;
  box-shadow: 0px 20px 20px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  font-size: 16px;
  margin-top: 20px;
  margin-right: 70px;
  text-align: justify;
  font-weight: 300;
}

.message-bubble-reverse {
  background-color: #ffffff;
  color: black;
  padding: 30px;
  border-radius: 30px;
  max-width: 600px;
  box-shadow: 0px 20px 20px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  font-size: 16px;
  margin-top: 20px;
  margin-left: 70px;
  text-align: justify;
  font-weight: 300;
}

.message-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;     /* Position the triangle below the bubble */
    left: 20px;        /* Adjust the horizontal position of the arrow */
    border-width: 15px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;  /* White triangle */
}

/* .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s;
} */

.btn a {
  text-decoration: none;
  color: white;
}






#pricing {
  padding: 80px 5%;
  text-align: center;
}

#pricing h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.subtitle {
  direction: rtl;
  opacity: 0.7;
  margin-bottom: 60px;
}

#pricing-cards {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.card {
  background: #111;
  color: #fff;
  padding: 30px 60px;
  border-radius: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  /* transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3); */
}

.pop-card {
  background: var(--primary);
  color: #fff;
}

.card h3 {
  font-size: 1.5rem;
}

.price {
  font-size: 2rem;
  margin: 20px 0;
}

.card ul {
  padding: 0;
  margin: 20px 0;
  line-height: 2;
  text-align: start;
}

.card ul li {
  margin: 10px 0;
  opacity: 0.85;
  direction: rtl;
}

.card button {
  background: blue;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
}

.pop-card button {
  background: rgb(255, 255, 255);
  color: var(--primary);
}





#final-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
}


#final-cta #calls {
  margin: 100px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}



#final-cta #calls a {
  text-decoration: none;
  color: var(--primary);
  font-size: 3rem;
  padding: 30px;
  margin: 30px;
  background-color: white;
  font-weight: 900;
}

#final-cta #calls .call2 {
  background-color: #4b4b4b;
  color: #000000;
}








.hero-video {
  height: 100vh;
  width: 100%;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media (max-width: 768px) {

  header {
    padding: 15px 20px;
  }

  header nav {
    display: none; 
  }

  header .socials {
    gap: 12px;
  }

  #hero {
    display: flex;
    gap: 1rem;
    margin: 0 4rem;
    padding: 1rem 0rem;
    flex-direction: column;
    align-items: center;
  }

  #video-container {
    width: 100%;
  }

  .results {
    grid-template-columns: 1fr;
    gap: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #pricing-cards {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-direction: column;
  }


}


/*  */

.registration {
  background-color: #002bff4f;
  padding: 4rem 0;
  margin: 2rem;
  border-radius: 60px;
  filter: drop-shadow(0px 0px 30px blue);
}

section {
    text-align: center;
}

.section-title {
    font-size: 4rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

  

.subtitle {
    margin-bottom: 1.5rem;
    opacity: 1;
}

#userForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.forum {
    padding: 1rem;
    border-radius: 1rem;
    font-size: 1rem;
    font-family: 'Alexandria';
    text-align: center;
    border: none;
}

.registration button {
  border: none;
}




/*  */

.testimonials {
  padding: 80px 20px;
  text-align: center;
}

.slider {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.slider img, .slider video {
  height: 500px;
  aspect-ratio: 9/16;
  border-radius: 20px;
}

/* */

.audio-testimonials {
  padding: 80px 20px;
  direction: rtl;
  text-align: center;
}

.audio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: auto;
}

/* .audio-card {
} */

.play-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 100px;
  background: white;
  color: var(--primary);
  cursor: pointer;
  direction: ltr;
      font-size: 1rem;
    font-family: inherit;
}
