/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(228, 66%, 53%);
  --first-color-alt: hsl(228, 66%, 47%);
  --first-color-light: hsl(228, 62%, 59%);
  --first-color-lighten: hsl(228, 100%, 97%);
  --second-color: hsl(25, 83%, 53%);
  --title-color: hsl(228, 57%, 28%);
  --text-color: hsl(228, 15%, 50%);
  --text-color-light: hsl(228, 12%, 75%);
  --border-color: hsl(228, 99%, 98%);
  --body-color: #fff;
  --container-color: #fff;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Poppins', sans-serif;
  --biggest-font-size: 2.25rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 4rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: black;
  color: var(--text-color);
  transition: .3s; /* For animation dark mode */
}

h1, h2, h3 {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

input,
button {
  font-family:var(--body-font);
  outline: none;
  border: none;
}

/*=============== PAYMENT FORM ===============*/
  .book-now{
    display:inline-block;
    background:linear-gradient(101deg,
    hsl(228, 66%, 53%),
    hsl(228,66%,47%));
    color:#fff;
    padding:10px 20px;
    margin-left: 50px;
    border-radius: .5rem;
    font-size:var(--normal-font-size);
    font-weight:var(--font-medium);
    box-shadow:0 4px 8px hsla(228,66%,45%, .25);
    transition:.3s;
    cursor:pointer;
}

.payment-form {
  display: none;
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: 400px;
  background-color: white;
  box-shadow: -2px 0 5px rgba(0,0,0,0.5);
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

.form-header {
  text-align: center;
  margin-bottom: 20px;
}

.form-header img {
  height: 50px;
  margin: 0 10px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.form-footer {
  text-align: center;
  margin-top: 20px;
}

.form-footer button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.tabs {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.tab {
  flex: 1;
  text-align: center;
  padding: 10px;
  background-color: #f2f2f2;
  cursor: pointer;
}

.tab.active {
  background-color: #4CAF50;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.logos {
  text-align: center;
  margin-bottom: 20px;
}

.logos img {
  height: 30px;
  margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .payment-form {
    width: 100%;
  }

  .book-now {
      display:inline-block;
      background:linear-gradient(101deg,
      hsl(228, 66%, 53%),
      hsl(228,66%,47%));
      color:#fff;
      padding:10px 20px;
      margin-left: 50px;
      border-radius: .5rem;
      font-size:var(--normal-font-size);
      font-weight:var(--font-medium);
      box-shadow:0 4px 8px hsla(228,66%,45%, .25);
      transition:.3s;
      cursor:pointer;
  }
}

@media (max-width: 480px) {
  .form-header img {
    height: 40px;
    margin: 0 5px;
  }

  .form-group input {
    padding: 8px;
  }

  .form-footer button {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/*========== Variables Dark theme ==========*/


/*========== 
    Color changes in some parts of 
    the website, in dark theme 
==========*/


/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1024px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
}

.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
}

.section__title span {
  color: var(--second-color);
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  color: var(--second-color);
}

.main {
  overflow: hidden; /* For the animations ScrollReveal*/
}

/*=============== HEADER & NAV ===============*/
.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: var(--z-fixed);
  transition: 4s;
}
.nav{
  height:var(--header-height);
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo{
  color:white;
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight:var(--font-medium);
  transition:.3s ;
}

.nav__logo i{
  font-size: 1rem;
}
.nav__logo:hover{
  color:white;
}

@media screen and (max-width:1023px){
  .nav__menu{
    position:fixed;
    bottom:2rem;
    background-color: var(--container-color);
    box-shadow: 0 8px 24px hsla(228, 66%, 45%, .15);
    width:90%;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 1.30rem 3rem;
    border-radius:1.25rem;
    transition: .4s;
    display: none;

  }
  .nav__list{
    display:flex;
    justify-content:space-between;
    align-items:center;
  }
  .nav__link{
    color:var(--text-color);
    display:flex;
    padding:.5rem;
    border-radius:50%;
  }
  .nav__link i{
    font-size: 1.25rem;
  }
  .nav__link span{
    display:none;
  }

}

/* Change background header */
.scroll-header{
  background-color: var(--body-color);
  box-shadow:0 1px 4px hsla(228,4%,14%, .1);
}
.scroll-header .nav__logo{
  color:var(--first-color);
}

/* Active link */
.active-link{
  background:linear-gradient(101deg,
              hsl(228,66%, 53%),
               hsl(228,66%, 47%));
  color:#fff;
  box-shadow:0 4px 8px hsla(228, 66%, 45%, .25);
}

/*=============== HOME ===============*/
.home{
  background: linear-gradient(170deg,
               hsl(259, 95%, 29%)0%,
               hsl(252, 96%, 10%)30%);
  padding-bottom: 0;
  margin-bottom: 0.2rem;
}
.home__container{
  padding-top: 5rem;
  
}
.home__title,
.home__value-number{
  color:#fff;
}

.home__title{
  font-size:6.2rem;
  line-height: 110%;
  text-shadow: 1px 1px 1px #919191,
               1px 2px 1px #919191,
               1px 3px 1px #919191,
               1px 4px 1px #919191,
               1px 5px 1px #919191,
               1px 6px 1px #919191,
               1px 7px 1px #919191,
               1px 8px 1px #919191,
               1px 9px 1px #919191,
               1px 10px 1px #919191,
               1px 18px 6px rgba(16,16,16,0.4),
               1px 22px 10px rgba(16,16,16,0.2),
               1px 25px 35px rgba(16,16,16,0.4),
               1px 30px 60px rgba(16,16,16,0.2);
  color:#f5f5f5;
  top:50%;
  right:50%;
  text-transform: uppercase;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  


}
.home p {
  position:relative;
  font-size: 2.2rem;
  color:white;
  padding-top: 0.3rem;
  margin-top: 0.3rem;
  
}


.home__search{
  height:3.5rem;
  background-color: var(--body-color);
  padding:.35rem .35rem .35rem .75rem;
  display:flex;
  align-items: center;
  border-radius:.75rem;
  border:3px solid var(--text-color-light);
  margin-bottom:2rem;

}

.home__search i {
  font-size: 1.25rem;
  color: var(--first-color);
}

.home__search-input{
  width: 90%;
  background-color: var(--body-color);
  color:black;
  margin:0 .5rem;
}

.home__search-input::placeholder{
  color:black;
}




/*=============== BUTTON ===============*/
.button{
  display:inline-block;
  background:linear-gradient(101deg,
             hsl(146, 73%, 53%),
             hsl(139, 70%, 21%));
  color:#fff;
  height:3.2rem;
  padding:14px 28px;
  margin-left: 15px;
  border-radius: .5rem;
  font-size:0.75rem;
  font-weight:var(--font-medium);
  box-shadow:0 4px 8px hsla(228,66%,45%, .25);
  transition:.3s;
  cursor:pointer;
  
}

.button:hover{
  box-shadow:0 4px 12px hsla(228, 66%,45%, .25);
}

.nav__button{
  display:none;
}


/*=============== VALUE ===============*/
.value {
  row-gap: 0rem;
  margin-bottom: 0rem;
  padding-bottom: 0rem;
  padding-top: 0rem;
  min-height: 80vh;
  background-color: #b1cbf1;
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(121,9,102,0.9917170492450843) 35%, rgba(0,212,255,1) 100%);
}
.value .newYear{
  display: flex;
  justify-content: center;

}


.newYear {
  padding-top: 3rem;
  font-size: 8rem;
  font-weight: 700;
  color: white;
  text-align: center;
  line-height: 0.9em;
  display: flex;
  justify-content: center;
}

.newYear span {
  font-size: 0.5em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .newYear{
    padding-top:3rem;
    font-size:3rem;
    font-weight:600;
    padding-left:10px;
  }
}


/*=============== REWARDS ===============*/
.rewards {
  background-color: #010000;
  margin-bottom: 0;
}

.rewards img {
  size: 5px;
  padding-top: 0%;
  margin-top: 2%;
}

h1 {
  text-align: center;
  margin-block-end: 2.5rem;
}

.stock-ticker {
  font-size: 15px;
  padding-block: 8px;
  border-block: 1px solid;
  overflow: hidden;
  user-select: none;
  margin-bottom: 0;

  --gap: 20px;
  display: flex;
  gap: var(--gap);
}

.stock-ticker ul {
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);

  animation: scroll 20s linear infinite;
}

.stock-ticker:hover ul {
  animation-play-state: paused;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.stock-ticker ul:first-child {
  /* background-color: yellow; */
}

.stock-ticker ul:last-child {
  /* background-color: pink; */
}

.stock-ticker .company,
.stock-ticker .price {
  font-weight: bold;
}

.stock-ticker .price {
  margin-inline: 4px;
}

.stock-ticker .plus::before {
  content: "↑";
}

.stock-ticker .minus::before {
  content: "↓";
}

.stock-ticker .plus .change,
.stock-ticker .plus::before {
  color: #089981;
}

.stock-ticker .minus .change,
.stock-ticker .minus::before {
  color: #f2368e;
}

.company {
  color: white;
}

/*=============== News ===============*/

/* Container for the side-by-side layout */
.News {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 100px;
  background-color: #010000;
  height: 45rem;
  margin-top: 0;
}

/* Left section styles */
.left {
  width: 40%; /* Adjust width as needed */
}

.left h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: aqua;
}

.left p {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Right section styles */
.right {
  width: 55%; /* Adjust width as needed */
}

.news-item {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #1c1c1c;
  border-radius: 5px;
}

.news-item h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: rgb(249, 246, 240);
}

.news-item a {
  color: #a78cf8;
  text-decoration: none;
  font-weight: bold;
}

.news-item a:hover {
  text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
  .News {
    flex-direction: column;
    height: 100%;
  }

  .left, .right {
    width: 100%;
  }
}


/*=============== FOOTER ===============*/
.footer__container{
  row-gap: 4rem;
}

.footer__logo{
  color:var(--second-color);
  font-size: var(--h3-font-size);
  font-weight:var(--font-semi-bold);
  display:inline-flex;
  align-items: center;
  column-gap: .25rem;
  margin-bottom: .75rem;
}

.footer__logo i{
  font-size: 1.25rem;
}

.footer__description,
.footer__link{
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.footer__content,
.footer__links{
  display:grid;
}

.footer__content{
  grid-template-columns: repeat(2,max-content);
  gap:2.5rem 4rem;
}

.footer__title{
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}

.footer__links{
  row-gap:.5rem;
}

.footer__link{
  color:var(--text-color);
  transition: .3s;
}

.footer__link:hover{
  color:var(--title-color);
}

.footer__social{
  display:flex;
  column-gap: 1rem;
}

.footer__social-link{
  font-size: 1.25rem;
  color:var(--text-color);
  transition: .3s;
}

.footer__social-link:hover{
  color:var(--title-color);
}

.footer__info,
.footer__privacy{
  display: flex;
}

.footer__info{
  padding-bottom: 6rem;
  margin-top: 5.5rem;
  flex-direction: column;
  text-align: center;
  row-gap: 1.5rem;
}

.footer__copy,
.footer__privacy a{
  font-size: var(--smaller-font-size);
  font-weight:var(--font-medium);
  color: Var(--text-color);
}

.footer_privacy{
  justify-content: center;
  column-gap: 1.25rem;
}


/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: .6rem;
  border-radius: .5rem;
  background-color: hsl(228, 8%, 76%);
}
::-webkit-scrollbar-thumb{
  background-color: hsl(228, 8%, 64%);
  border-radius: .5rem;
}
::-webkit-scrollbar-thumb:hover{
  background-color: hsl(228, 8%, 54%);
}


/*=============== SCROLL UP ===============*/
.scrollup{
  position:fixed;
  right:1rem;
  bottom:-30%;
  background-color: var(--container-color);
  box-shadow:0 8px 12px hsla(228, 66%, 45%, .1);
  display: inline-flex;
  padding: .35rem;
  border-radius: .25rem;
  color:var(--title-color);
  font-size: 1.25rem;
  z-index: var(--z-tooltip);
  transition: .3s;
}

.scrollup:hover{
  transform: translateY(-.25rem);
  color:var(--first-color);
}

/* Show Scroll Up*/

.show-scroll{
  bottom:8rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width:350px){
  .container{
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .section{
    padding:3.5rem 0 1rem;
  }

  .home{
    padding-bottom: 0;
  }
  .contact__card{
    grid-template-columns: repeat(1, 180px);
  }

}

  @media screen and (max-width:320px){
    .nav__menu{
      padding:1.3rem 1.5rem;
    }

    .home__value{
      column-gap: 1rem;
    }

    .home__img{
      width:220px;
      height:280px;
    }

    .home__orbe{
      width:240px;
      height:264px;
    }

    .logos__container{
      gap:2rem 1rem;
    }

    .popular__card{
      width:230px;
      padding:.5rem .5rem .75rem;
    }

    .value__img,
    .contact__img{
      width:220px;
      height:260px;
    }

    .value__orbe,
    .contact__orbe{
      width:236px;
      height:280px;
    }
    .testimonials{
      margin-left: 1rem;
      margin-right: 1rem;

    }

    .subscribe__container{
      padding:2rem 1rem;
    }

    .footer__content{
      gap:2.5rem;
    }
}

/* For medium devices */

@media screen and (min-width:400px){
  .nav__menu{
    width:342px;
  }

  .home__search{
    width:412px;
  }
  .home__img{
    width:360px;
    height:430px;
  }
  .home__orbe{
    width:380px;
    height:414px;
  }


  .contact__card{
    grid-template-columns: repeat(2, 192px);
    justify-content: center;
  }
  .testimonials{
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .footer__content{
    grid-template-columns: repeat(3, max-content);
  }
}

@media screen and (min-width:767px){
  .home__container{
    grid-template-columns: repeat(2, 1fr);
    padding-top: 2rem;
  }

  .home__orbe{
    align-self:flex-end;
  }

  .home__data{
    padding-bottom: 2rem;
  }


  .logos__container{
    grid-template-columns: repeat(4, max-content);
    justify-content: center;
  }

  .value__container,
  .contact__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .contact__images{
    order:1;
  }

  .contact__card{
    justify-content:initial;
  }

  .subscribe__container{
    padding:3rem 13rem;
  }

  .footer__container{
    grid-template-columns: repeat(2, max-content);
    justify-content:space-between ;
  }
}
/* For large devices */
@media screen and (min-width:1023px){
  .section{
    padding:7.5rem 0 1rem;
  }

  .section__title{
    font-size: 2.25rem;
  }

  .section__subtitle{
    font-size:var(--normal-font-size);
  }

  .nav{
    height:calc(var(--header-height) + 1.5rem);
  }

  .nav__menu{
    width:initial;
    margin-left: auto;
    
  }

  .nav__list{
    display: flex;
    column-gap: 3rem;
  }
  .nav__link{
    color:var(--text-color-light);
  }

  .nav__link i{
    display:none;
  }

  .nav__button{
    display: inline-block;
  }

  .active-link{
    background: none;
    box-shadow: none;
    color:var(--first-color);
    font-weight: var(--font-medium);
  }

  .change-theme{
    margin:0 3rem;
    color:var(--text-color-light);
  }

  .scroll-header .nav__link,
  .scroll-header .change-theme{
    color:var(--text-color);
  }

  .scroll-header .active-link{
    color:var(--first-color);
  }

  .home{
    padding-bottom: 0;
  }

  .home__container{
    padding-top: 5rem;
    column-gap: 2rem;
  }

  .home__data{
    padding-bottom:4rem;
  }

  .home__title{
    margin-bottom: 2rem;
  }

  .home__description,
  .home__search{
    margin-bottom: 3rem;
  }

  .home__value{
    column-gap: 3.5rem;
  }

  .home__orbe{
    width:504px;
    height:611px;
    border-radius: 256px 256px 0 0;
  }

  .home__img{
    width:472px;
    height:634px;
    border-radius: 236px 236px 12px 12px;
    bottom:-2.5rem;
  }

  .logos__img img{
    height:100px;
  }

  .popular__container{
    padding-top: 3rem;
  }

  .popular__card{
    width:320px;
    padding:.75rem .75rem 2rem;
  }

  .popular__data{
    padding:0 .25rem 0 .75rem;
  }
  .testimonials{
    padding-top: 3rem;
  }

  .testimonials .card {
    width: 320px;
    padding: .75rem .75rem 2rem;
  }
  .testimonials .content{
    padding:0 .25rem 0 .75rem;
  }

  .value__container,
  .contact__container{
    align-items: flex-start;
    column-gap: 5rem;
  }
  .value__orbe,
  .contact__orbe{
    width:501px;
    height:641px;
    border-radius: 258px 258px 16px 16px;
  }

  .value__img,
  .contact__img{
    width:461px;
    height: 601px;
    border-radius: 238px 238px 12px 12px;
  }

  .value__img img,
  .contact_-img img{
    max-width: initial;
    width: 490px;
  }

  .value__description,
  .contact__description{
    font-size: var(--normal-font-size);
    margin-bottom: 2.5rem;
  }

  .value__accordion-title{
    font-size: var(--normal-font-size);
  }

   .value__accordion-item{
     padding:1.25rem 1.25rem 1.25rem 1rem;
   }
   .value__accordion-descrioption{
     padding-bottom: 1rem;
     font-size: var(--small-font-size);
   }

   .contact__card{
     grid-template-columns: repeat(2 , 200px);
   }

   .contact__card-box{
     padding:28px 1.5rem 1.5rem;
   }

   .subscribe__container{
     padding:4rem 1rem 4.5rem;
     border-radius: 2rem;
     border: 12px solid var(--first-color-light);
   }

   .subscribe__title{
     font-size:2.5rem;
     margin-bottom: 1.5rem;

   }

   .subscribe__description{
     font-size: var(--normal-font-size);
     padding:0 8rem;
   }

   .subscribe__button{
     font-size: var(--normal-font-size);
   }

   .footer__content{
     grid-template-columns: repeat(4, max-content);
   }

   .footer__title{
     margin-bottom: 1.5rem;
   }

   .footer__links{
     row-gap: 1rem;
   }

   .footer__info{
     flex-direction: row;
     justify-content: space-between;
     padding-bottom: 2rem;
   }
   .show-scroll{
     bottom:3rem;
     right:3rem;
   }
}

@media screen and (min-width: 1040px){
  .container{
    margin-left: auto;
    margin-right: auto;
  }

  .home__container{
    column-gap:4rem ;
  }
  .testimonials{
    margin-left: 14rem;
    margin-right: 14rem;
  }
}

/* For 2K & 4K resolutions */
@media screen and (min-width: 2048px){
  body{
    zoom:1.5
  }
}

@media screen and (min-width:3840px){
  body{
    zoom:2;
  }
}









.payment-form {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  width: 100%;
  height: 80%;
  margin-top: 45px;
}
.payment-form h2 {
  margin-bottom: 20px;
  color: #333;
}
.payment-form label {
  display: block;
  margin-bottom: 4px;
  font-weight: bold;
  color: #555;
}
.payment-form input[type="text"],
.payment-form input[type="email"] {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 6px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}
.payment-form button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color:var(--first-color);
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.payment-form button:hover {
  background-color:var(--first-color);
}
