@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(s/poppins/v20/pxiEyp8kv8JHgFVrFJA.ttf) format('truetype');
}

body {
    scroll-behavior: smooth;
    background: rgb(17,17,17);
    background: -moz-linear-gradient(90deg, rgba(17,17,17,1) 41%, rgba(31,31,31,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(17,17,17,1) 41%, rgba(31,31,31,1) 100%);
    background: linear-gradient(90deg, rgba(17,17,17,1) 41%, rgba(31,31,31,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#111111",endColorstr="#1f1f1f",GradientType=1);
    color: rgb(245, 245, 245);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    user-select: none;
}

* {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}

body .image-holder {
    perspective: 2000px;
    margin: 20px;
  }
  
::-webkit-scrollbar-track {
    background: #272727; 
}
   
::-webkit-scrollbar-thumb {
    background: rgb(116, 116, 116); 
    box-shadow: 0 0 15px rgb(116, 116, 116);
    border-radius: 5px;
}
  
::-webkit-scrollbar-thumb:hover {
    background: #969696; 
}

header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: static;
    align-items: center;
    width: 80%;
    padding: 10px 10%;
    background-color: #0c0c0c;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.712));
    opacity: 100%;
    z-index: 100;
    border-radius: 10px;

}

.purp {

    background: #bdc3c7;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #2c3e50, #bdc3c7);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2c3e50, #bdc3c7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
    filter: drop-shadow(0 0 5px rgba(59, 59, 59, 0.575));
    
 


    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -mo-text-fill-color: transparent;

}

.version {
    color: gray;
    font-size: 75%;
}

.logo {
    margin-right: auto;
    font-size: 1.2rem;
}

li, a {
    text-decoration: none;
    color: #fff;
}

.navbar-links {
    list-style: none;
}

.navbar-links li{
    display: inline-block;
    padding: 0px 20px;
}

.navbar-links li a{
    transition: all 0.3s ease 0s;
}

.navbar-links li a:hover{
    color: #363638;
}

.btn-container {
    padding: 0px 25px;
}

.navbar-btn {
    padding: 9px 25px;
    font: 500 14px 'Poppins';

    transition: all 0.3s ease 0s;

    color: #fff;
    background: #bdc3c7;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #2c3e50, #bdc3c7);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2c3e50, #bdc3c7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
    filter: drop-shadow(0 0 5px rgba(161, 165, 202, 0.575));

    border: none;
    border-radius: 5px;
}

.navbar-btn:hover {
    animation: jitter 1s infinite;
}

/* navbar end */

.title {
    margin-top: 200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 65vh;
    z-index: 1;
    width: 100%;
    max-width: 1500px;
    padding: 0 50px;
    

}

.title h1 {
    filter: drop-shadow(0 0 10px rgba(86, 85, 88, 0.575));
    font-size: 3.4rem;
    color: #fff;
    
}

.image {
    margin-top: 40px;
    transition: all 0.3s ease 0s;
    filter: drop-shadow(0 0 10px #0000008c );
}

.image:hover {
    filter: drop-shadow(0 0 10px rgba(86, 85, 88, 0.575));
    transform: translateY(-14px);

}



.title p {
    font-size: 1.30rem;
    transform: translateY(-10px);
}

.title span {
    background: #bdc3c7;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #2c3e50, #bdc3c7);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2c3e50, #bdc3c7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
    filter: drop-shadow(0 0 5px rgba(59, 59, 59, 0.575));
    
 


    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -mo-text-fill-color: transparent;
}

.title span:hover {
    transform: scale(+);
}


.main-btn {
    text-decoration: none;
	color: #fff;
    border: none;
	font: 700 14px 'Poppins';

    transition: all 0.3s ease 0s;

    background: #bdc3c7;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #2c3e50, #bdc3c7);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2c3e50, #bdc3c7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
    filter: drop-shadow(0 0 5px rgba(59, 59, 59, 0.575));

    width: 210px;
	height: 43px;
	border-radius: 15px;
}

.main-sct {
    text-decoration: none;
	color: #fff;
    border: none;
	font: 700 12px 'Poppins';
    padding-top: 0px;
    transform: translateX(5px);

    transition: all 0.3s ease 0s;

    background: #121212;  /* fallback for old browsers */

    
    filter: drop-shadow(0 0 5px  #4b4b4b);

    max-width: 1000px;
    width: 140px;
	height: 43px;
	border-radius: 15px;
}


.main-sct:hover {    
    transform: translate(5px, -3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.main-btn:hover {    
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}



.short-info {
    display: flex;
    position: relative;
    justify-content: space-evenly;
    transform: translateY(-60px);
}

@media (max-width: 768px) {


    .short-info {
        display: flex;
        position: relative;
        flex-direction: column;
        justify-content: space-evenly;
        transform: translateY(-60px);
        margin: 20px;
        gap: 20px;
        align-items: center;
    }


}

.box-1 {
    height: 200px;
    width: 500px;
    background-color: rgb(15, 15, 15);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.753));
    border-radius: 15px;


    align-items: center;
    justify-content: center;
    padding: 0 30px;
    transition: all 0.3s ease 0s;
}

.box-1:hover {
    filter: drop-shadow(0 0 15px #0a0a0a);
    transform: translateY(-5px);
}

.box-2 {
    height: 200px;
    width: 500px;
    background-color: rgb(15, 15, 15);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.753));
    border-radius: 15px;

    align-items: center;
    justify-content: center;
    padding: 0 30px;
    transition: all 0.3s ease 0s;
}

.box-2:hover {
    filter: drop-shadow(0 0 15px #0a0a0a);
    transform: translateY(-5px);
}

.box-3 {
    height: 200px;
    width: 500px;
    background-color: rgb(15, 15, 15);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.753));
    border-radius: 15px;

    align-items: center;
    justify-content: center;
    padding: 0 30px;
    transition: all 0.3s ease 0s;

}

.box-3:hover {
    filter: drop-shadow(0 0 15px #0a0a0a);
    transform: translateY(-5px);
}


.box-1 span {
    background: #bdc3c7;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #2c3e50, #bdc3c7);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2c3e50, #bdc3c7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
    filter: drop-shadow(0 0 5px rgba(59, 59, 59, 0.575));


    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -mo-text-fill-color: transparent;
}

.box-2 span {
    background: #bdc3c7;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #2c3e50, #bdc3c7);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2c3e50, #bdc3c7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
    filter: drop-shadow(0 0 5px rgba(59, 59, 59, 0.575));


    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -mo-text-fill-color: transparent;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.box-3 span {
    background: #bdc3c7;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #2c3e50, #bdc3c7);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2c3e50, #bdc3c7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    
    filter: drop-shadow(0 0 5px rgba(59, 59, 59, 0.575));


    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -mo-text-fill-color: transparent;
}

/* short info end */

.about {
    filter: drop-shadow(0 0 80px #000000);

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 400px 0;
    background-color: #0a0a0a;
}

.about-main h1 {
    font-size: 40px;
    font-weight: 700;
}

.about-main p {
    font-size: 20px;
    font-weight: 300;
}


/* purchase */

.purchase {
    filter: blur(3px);
    display: flex;

    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 230px 0px;
    margin: 0px ;
}

.image.ghostimg {
    max-height: 50px;    
    max-width: 50px;
    margin: 0;
    padding: 0;
    transform: translate(1100px, 50px);
}

.purchase-box {
    height: 350px;
    width: 450px;
    /* background-color: rgb(15, 15, 15); */
    background: linear-gradient(to top, #0f0f0f, #131313);
    filter: drop-shadow(0 0 15px #0000004f);
    border-radius: 25px;
    

    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 30px;
    transition: all 0.3s ease 0s;
}

svg {
    position: relative;
    z-index: -1;
    margin-top: -300px;
    margin-bottom: -50px;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: sticky;
    align-items: center;
    padding: 10px 10%;
    background-color: #0c0c0c;
    height: 130px;
}

.footer-logo {
    margin-right: auto;
    font-size: 1.2rem;
}

.footer-author {
    margin: 570px;
}

.footer-links {
    list-style: none;
}

.footer-links li{
    display: block;
    text-align: center;
}

.footer-links li a{
    transition: all 0.3s ease 0s;
}

.footer-links li a:hover{
    color: #59595a;
}

.footer span {
    color: gray;
}

.reviews {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
}

.boxess {
    display: flex;
    position: relative;
    justify-content: space-evenly;
    transform: translateY(-60px);
}

@media (max-width: 768px) {
    .boxess  {
        display: flex;
        position: relative;
        flex-direction: column;
        justify-content: space-evenly;
        transform: translateY(-60px);
        margin: 20px;
        gap: 100px;
        align-items: center;
    }

    .title {
        align-items: center;
        text-align: center;
        padding: 0 30%;
        margin-bottom: -100px;
        margin-top: -100px;
    }

    .card {
        visibility: hidden
        ;
    }
}


.review-1,.review-2,.review-3 {
    height: 200px;
    width: 500px;
    background-color: rgb(15, 15, 15);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.753));
    border-radius: 15px;
    justify-content: center;
    text-align: center;
    padding: 0 30px;
    transition: all 0.3s ease 0s;
}

.review-1:hover,.review-2:hover,.review-3:hover {
    filter: drop-shadow(0 0 15px #0a0a0a);
    transform: translateY(-5px);
    
}



.review-1 img,.review-2 img,.review-3 img {
    border-radius: 50px;
    height: 100px;
    margin-top: -50px;
}

.review-1 h1,.review-2 h1,.review-3 h1 {
    margin-top: -5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.308);
}

.review-1 h2,.review-2 h2,.review-3 h2 {
    margin-top: -15px;
    color: rgb(194, 194, 194);
    font-size:medium
}

.review-1 img {
    box-shadow: 0 0 10px rgb(25, 25, 25);
}

.review-2 img {
    box-shadow: 0 0 10px rgb(224, 223, 209);
}

.review-3 img {
    box-shadow: 0 0 10px rgb(4, 94, 146);
    top: 40px; /* Adjust the offset from the top */
}

.wrapper {
    max-width: 75%;
    margin: auto;
  }
  
  .wrapper > p,
  .wrapper > h1 {
    margin: 1.5rem 0;
    text-align: center;
  }
  
  .wrapper > h1 {
    letter-spacing: 3px;
  }
  
  .accordion {
    background-color: rgb(24, 24, 26);
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 1.2rem;
    width: 100%;
    padding: 2rem 2.5rem;
    border: none;
    outline: none;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    box-shadow: 0 0 15px rgb(24, 24, 26) ;
  }
  
  .accordion i {
    font-size: 1.6rem;
  }
  
  .active,
  .accordion:hover {
    background-color: #3d3d41;
    border-radius: 10px;
  }
  .pannel {
    padding: 0 2rem 2.5rem 2rem;
    background-color: rgb(0, 0, 0);
    overflow: hidden;
    background-color: #3d3d41;
    display: none;
    border-radius: 0px 0px 15px 15px;


  }
  .pannel p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    line-height: 1.4;
  }
  
  .faq {
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin: 10px 0;
  }
  .faq.active {
    border: none;
  }
  

.text {
    margin-top: 50px;
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center; 
}


@keyframes jitter {
    10%, 90% {
      transform: translate3d(-1px, 0, 0);
    }
    
    20%, 80% {
      transform: translate3d(1px, 0, 0);
    }
  
    30%, 50%, 70% {
      transform: translate3d(-3px, 0, 0);
    }
  
    40%, 60% {
      transform: translate3d(3px, 0, 0);
    }
}