@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  overflow-x: hidden;
  background: linear-gradient(#2b1055, #7597de);

  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    background: transparent;
  }
  header .logo {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: -20px;
    margin-bottom: 25px;
  }

  #search-form {
    display: flex;
    align-items: center;
    flex-grow: 1;
    max-width: 500px;
    margin-left: 400px;
    margin-top: 10px;
  }
  #search-bar {
    width: 100%;
    padding: 15px 25px;
    font-size: 1.2em;
    border-radius: 20px;
    border: 2px solid #fff;
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  #search-bar:focus {
    border-color: #7597de;
  }

  header ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 30px;
    margin-top: 0px;
  }
  header ul li {
    list-style: none;
    margin-left: 30px;
    padding-bottom: 10px;
  }
  header ul li a {
    text-decoration: none;
    padding: 10px 20px;
    color: #fff;
    border-radius: 20px;
    line-height: 1;
    font-size: 1.2em;
  }
  header ul li a:hover,
  header ul li a.active {
    background: #fff;
    color: #2b1055;
  }
  section {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  section::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #1c0522, transparent);
    z-index: 1000;
  }
  section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
  }
  section img#moon {
    mix-blend-mode: screen;
  }
  section img#cover_front2 {
    z-index: 10;
  }
  #text {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    color: #fff;
    white-space: nowrap;
    font-size: 6vw;
    z-index: 9;
  }
  #btn {
    text-decoration: none;
    display: inline-block;
    padding: 8px 30px;
    border-radius: 40px;
    background: #fff;
    color: #2b1055;
    font-size: 1.5em;
    z-index: 9;
    transform: translatey(100px);
  }
  .sec {
    position: relative;
    padding: 100px;
    background: #1c0522;
  }

  .sec h2 {
    font-size: 3.5em;
    margin-bottom: 10px;
    color: #fff;
  }
  .sec p {
    font-size: 1.2em;
    color: #fff;
  }
  .sec strong {
    color: #ff7ce8;
  }
  .background {
    background-image: url("Images/SitePics/teleport_br.png");
  }

  .index-section {
    position: relative;
    padding: 100px;
    background: #1c0522;
    overflow-x: hidden;
    background: linear-gradient(#1c0522, #4f278f);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 70px;
    color: #fff;
    margin-top: -10px;
  }
  .index-section h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    text-align: center;
    margin-top: -80px;
    margin-right: 500px;
  }
  .index-section p {
    font-size: 1.8em;
    line-height: 2;
    margin-bottom: 0px;
  }
  .index-section ul {
    list-style: none;
    padding-left: 50px;
    margin-top: 85px;
  }
  .index-section ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
  }
  .index-section ul li strong {
    color: #ff7ce8;
  }

  .about-section {
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(#4f278f, #000000);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 70px;
    color: #fff;
  }
  .about-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    margin-top: 150px;
  }
  .about-section p {
    font-size: 1.8em;
    line-height: 1.8;
    margin-bottom: 0px;
  }
  .about-section ul {
    list-style: none;
    padding-left: 50px;
  }
  .about-section ul li {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  .about-section ul li strong {
    color: #ff7ce8;
  }

  .social-media-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
  }
  .social-media-icons i {
    color: #ffffff;
    font-size: 55px;
    transition: color 0.3s;
  }
  .social-media-icons i:hover {
    color: #ff48c4;
  }


  .pricing-section {
    background: linear-gradient(#4f278f, #000000);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px;
    color: #1a1a1a;
  }
  .pricing-section h2 {
    font-size: 3em;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
  }
  .pricing-section h3 {
    font-size: 1.3em;
    color: #f7f7f7;
    margin-bottom: 50px;
  }
  .pricing-section h3 p{
    margin-bottom: -40px;
  }
  .pricing-section h3 strong {
    font-size: 1.5em;
    color: #ff7ce8;
  }
  .pricing-section p {
    font-size: 1.5em;
    color: #f7f7f7;
  }
  .pricing-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: -15px;
  }
  .pricing-card {
    background-color: #1a1a1a;
    border-radius: 30px;
    width: 350px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
  }
  .pricing-card h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #f7f7f7;
  }
  .pricing-card ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  .pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1em;
    color: #f7f7f7;
  }
  .pricing-card ul li:last-child {
    border: none;
    color: #f7f7f7;
  }
  .pricing-card .price {
    font-size: 2.5em;
    margin: 20px 0;
    color: #fff;
  }
  .pricing-card .signup-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(to right, #ff7ce8, #6258f0);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2em;
    margin-top: 20px;
  }
  .toggle-section {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
  .toggle-section button {
    background-color: #282828;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    border: none;
  }
  .toggle-section button.active {
    background: linear-gradient(to right, #ff7ce8, #6258f0);
  }

  .contact-section {
    background: linear-gradient(#4f278f, #000000);
    padding: 50px 20px;
    text-align: center;
  }
  .contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #f7f7f7;
  }
  .contact-section p {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #f7f7f7;
  }
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
  }
  .contact-form .form-group {
    margin-bottom: 20px;
    color: #f7f7f7;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: #2e2e54;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1em;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #aaa;
  }
  .contact-form button {
    background-color: #ff7ce8;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .contact-form button:hover {
    background-color: #ff48c4;
  }

  .contact-info {
    margin-top: 50px;
    font-size: 1.1em;
    color: #ff7ce8;
  }
  .contact-info p {
    margin-bottom: 10px;
    color: #f7f7f7;
  }
  .contact-info strong {
    color: #ff7ce8;
  }

  footer {
    background-color: #1c0522;
    padding: 20px;
    text-align: center;
    color: #fff;
    margin-top: 0px;
  }

  .thank-you-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 100px;
    color: white;
    background: linear-gradient(#4f278f, #000000);
  }
  .thank-you-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  .thank-you-section p {
    font-size: 1.5em;
    margin-bottom: 40px;
  }
  .back-home-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(to right, #ff7ce8, #6258f0);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2em;
  }

  html {
    scroll-behavior: smooth;
  }
}
