*{
    margin: 0;
}

/* ============= global design ============= */
:root {
    --primary:#1e96c6;
    --secondary:white;
    --tertiary:black;
    --main: #33406a;
    --dim-main:#324fb0;
}
a{
    text-decoration: none;
}
.main-button {
    border: none;
    outline: none;
    padding: 15px 40px;
    background-color: var(--primary);
    color: var(--secondary);
    font-weight: bold;
    border-radius: 50px;
    font-size: 15px;
    display: flex;
    align-items: center;
    text-decoration: none;  
    gap: 20px;
}
.side-button {
    /* width: 100%; */
    border: none;
    outline: none;
    padding: 13px 40px;
    background-color: var(--primary);
    color: var(--secondary);
    font-weight: bold;
    border-radius: 10px;
    font-size: 15px;
    text-decoration: none;
    gap: 20px;
}
.main {
    border: none;
    outline: none;
    padding: 15px 40px;
    background-color: var(--secondary);
    color: var(--primary);
    font-weight: bold;
    border-radius: 50px;
    font-size: 15px;
    margin: 5px;
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 20px;
}
.plan {
    border: none;
    outline: none;
    padding: 15px 40px;
    background-color: var(--dim-main);
    color: var(--secondary);
    font-weight: bold;
    border-radius: 8px;
    font-size: 15px;
    margin: 5px;
    transition: 0.1s;
}
.login-btn {
    border: none;
    outline: none;
    padding: 13px 40px;
    background-color: var(--primary);
    color: var(--secondary);
    font-weight: bold;
    border-radius: 8px;
    font-size: 20px;
    margin: 5px;
    display: flex;
    justify-self: center;
}
.plan:hover {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}
.margin {
    margin: 0 4%;
}
/* ============= end of global design ============= */

body{
   background: var(--secondary);
   font-family: sans-serif;
}

/* ====================== sidebar section ======================== */
#sidebar {
    position: fixed;
    top: 0;
    left: -1000px;
    height: 50vh;
    background-color:var(--secondary);
    width: 25%;
    border-radius: 0 30px 30px 0;
    border: 1px solid #ddd;
    padding:10px 15px;
    color: var(--dim-main);
    transition: left 1s ease;
    display: none;
    z-index: 10000;
}
#sidebar.show{
    left: 0;
}
.no-scroll {
    overflow: hidden;
}
.cat{
    display: flex;
    color:var(--item);
    align-items: center;
    gap: 10px;
}
.cat i{
    color: var(--dash);
}
.middle span{
    display: block;
    margin-bottom: 10px;
}
.middle a{
    text-decoration: none;
    color:var(--item);
}

.side-logo{
    justify-self: center;
    margin-bottom: 20px;
}
.side-item{
    display: flex;
    align-items: center;
    gap: 10px;
}
.side-item a{
    color: var(--item);
}
.side-logo img{
    padding-top: 25px;
}
.side-item i{
    color:var(--dash);
}
/* ====================== end of sidebar section ======================== */


/* =============== navbar section =================== */
.all-navbar {
    background: var(--secondary) ;
    border-bottom: 1px solid #ccc;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-right a {
    text-decoration: none;
    color: var(--tertiary);
    font-weight: bold;
    font-size: 15px;
}
#bars {
    cursor: pointer;
    display: none;
}
#bars span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--primary);
    margin-bottom: 5px;
    transition: 1s ease;
}
#bars.show span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
#bars.show span:nth-child(2) {
    opacity: 0;
}
#bars.show span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
/* =============== end of navbar section =================== */

/* ================== hero section ======================== */
.hero-right-content {
    width: 100%;
}
.hero-content {
    display: flex;
    align-items:flex-start;
}
.hero-left{
    width: 50%;
}
.hero-left img{
    width: 100%;
}
.hero-right {
    width: 50%;
}
.hero-right h1 span{
    display: block;
    font-size: 70px;
    color: var(--main);
}
.hero-right p {
    font-size: 30px;
    color: var(--main);
}
.hero-right-cta{
    text-decoration: none;
}
/* ================== end of hero section ======================== */


/* =================== info section ============================== */
.intro-item {
    display: flex;
    align-items:baseline;
    gap: 30px;
}
.all-intro {
     box-shadow: 0 0 1px  var(--primary);
     padding: 25px 0 10px 0;
}
.intro-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
   
}
.intro-title h1{
    color: var(--dim-main);
}
.intro-title p{
    color: var(--main);
}
/* =================== end of info section ============================== */

/* =================== about section =========================== */
.about-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;

}
.about-left {
    width: 50%;
}
.about-left img {
    width: 100%;
}
.about-right {
    width: 50%;
}
.about-right h5 {
    font-weight: bold;
    color:var(--dim-main);
}
.about-right h1 {
    font-weight: bold;
    color:var(--main);
    font-size: 50px;
}
.about-right p {
    font-size: 20px;
    color: var(--main);
}
.about-item-1 {
    display: flex;
    align-items:flex-start;
    gap: 25px;
}
.about-title h4 {
    color: var(--main);
    font-weight: bolder;
}
.about-title p {
    color: var(--main);
    font-weight: lighter;
}
/* =================== end of about section =========================== */

/* ======================= features section =========================== */
.all-features {
    margin: 100px 0 0 0;
}
.features-content h4 {
    text-align: center;
    color: var(--dim-main);
    font-weight: bold;
}
.features-content h1 {
    color: var(--main);
    font-size: 50px;
    text-align: center;
    font-weight: bolder;
    margin-bottom: 15px;
}
.features-content p span{
    text-align: center;
    color: var(--main);
    display: block;
}
.features-title h4 {
    text-align: center;
    color: var(--main);
    font-weight: bolder;

}
.features-title p {
    text-align: center;
    color: var(--main);

}
.features-image {
    text-align: center;
}
.features-image img{
    padding: 20px 26px;
    border-radius: 100%;
    background-color: var(--secondary);
    box-shadow: 1px 1px 10px #cce9f5b4;
}
.mission-image {
    text-align: center;
}
.fetures {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

/* ======================= end of features section =========================== */

/* ======================= get to know section ============================= */
.know-left {
    padding: 50px;
    border: 30px solid #e6ebfd ;
    outline: 30px solid #eaefff;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle at center, #e8f0ff 0%, #d1e1ff 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 10;
    overflow: hidden;
    position: relative;
}
.step-number h1{
    color: var(--secondary);
    background-color:var(--primary);
    padding: 4px 5px;
    width: fit-content;
    font-size: 30px;
    font-weight: lighter;
    border-radius: 100%;
}
.step-title h4{
    text-align: unset;
    color: var(--main);
    margin-bottom: 15px;
}
.step-title p{
    color: var(--main);
}
.step-title a {
    text-decoration: none;
    color: blue;
}
.know-right-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
.get-to-know {
    display: flex;
    align-items: center;
    gap: 100px;
}
.slide {
  width: 250px;
  height: 250px;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* ======================= end of get to know section ============================= */

/* ======================= call back section ============================= */
.all-call-back {
    margin: 50px 0;
    padding: 50px 0;
    background: var(--primary);
    box-shadow: 1px 1px 10px #cce9f5b4;
}
.call-back-right img{
    padding: 13px;
    border-radius: 100%;
    background-color: var(--secondary);
    margin: 5px;
}
.call-icon {
    border: 1px dashed var(--secondary);
    border-radius: 100%;
}
.call-button {
    border: 1px dashed var(--secondary);
    border-radius: 50px;
}
.call-back-right{
    display: flex;
    align-items: center;
    gap: 30px;
}
.call-back-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.call-back-left p {
    color: var(--secondary);
    font-size: 20px;
}
.call-back-left h2 {
    color: var(--secondary);
    font-weight: bold;
}
.transaction-item.active {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    background: var(--primary);
    width: fit-content;
    padding: 5px 30px 2px 30px;
    border-radius: 30px;
}
.transaction-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--secondary);
    background: var(--main);
    width: fit-content;
    padding: 5px 30px 2px 30px;
    border-radius: 30px;
}
.transaction-item h6 {
    font-size: 12px;

}
.transaction-item-content {
    display: flex;
    align-items: center;
    justify-self: center;
    gap: 40px;
    flex-wrap: wrap;
    border-radius: 40px;
    padding: 10px 20px;
    border: 1px solid #ccc;
    width: fit-content;
}
.details-item {
    text-align: center;
    border: 1px solid #ccc;
    width: 100%;
    display: block;
    padding: 30px 10px 20px 10px;
    border-radius: 20px;
    justify-self: center;
    cursor: pointer;
}
.details-item:hover {
    margin-bottom: 10px;
}
.details-item h4{
    color: var(--main);
    font-weight: bold;
}
.details-item p{
    color: var(--main);
    font-size: 15px;
}
.details-item h5{
    color: var(--dim-main);
    font-weight: bold;
    font-size: 25px;
}
.details-item h5:hover{
    color: var(--main);
    font-weight: bold;
    font-size: 25px;
}
.details-content {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 30px;
}
.second-details {
    display: none;
    
}
.third-details {
    display: none;
    
}
/* ======================= end of call back section ============================= */


/* ============================= afiliate section ================================ */
.affiliate-left {
    width: 50%;
}
.affiliate-right {
    width: 50%;
}
.affiliate-right img {
    width: 100%;
}
.affiliate-left h4 {
    color: var(--dim-main);
    font-weight: bold;
    margin-bottom: 20px;
}
.affiliate-left h1 {
    color: var(--main);
    font-weight: bold;
    font-size: 50px;
}
.affiliate-left p span{
    display: block;
    color: var(--main);
    font-size: 17px;
}
.affiliate-content {
    display: flex;
    align-items: flex-start;
}
/* ============================= end of afiliate section ================================ */

/* =================================== plan section ==================================== */
.percent {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.percent h4 {
    font-size: 40px;
    color: var(--primary);
}
.plan-type {
    background: var(--main);
    color: var(--secondary);
    padding: 40px;
    border-radius: 10px;
    width: 100%;
}
.plan-type h3{
    font-weight: bold;
    font-size: 30px;
}
.plan-type p{
    color: #eee;
}
.line{
    border: 1px dashed #bbb;
    margin: 15px 0 25px 0;
}
.line-1{
    height: 1px;
    width: 100%;
    background-color: #ccc;
}
.plan-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.call-button a {
    text-decoration: none;
}
/* =================================== end of plan section ==================================== */


/* =============================== earn crypto section ==================================== */
.earn-title h5 {
    color: var(--secondary);
    font-weight: bold;
}
.straight-line{
    height: 80px;
    width: 1px;
    background: var(--secondary);
}
.start-earn {
    display: flex;
    align-items: center;
    gap: 30px;
}
/* =============================== end of earn crypto section ==================================== */


/* =========================== testimonial section ======================================= */
.testimonial-left {
    width: 50%;
}
.testimonial-right {
    width: 50%;
}
.testimonial-right img {
    width: 100%;
}
.testimonial-left h4 {
    color: var(--dim-main);
    font-weight: bolder;
    margin-bottom: 15px;
}
.testimonial-left h1{
    color: var(--main);
    font-weight: bold;
    font-size: 50px;
}
.testimonial-left h1 span{
    color: #e95d06;
}
.testimonial-content {
    display: flex;
    align-items: flex-start;
}
.testimonial-left p span{
    display: block;
    color: var(--main);
}
.testimonial-left p{
    margin-bottom: 30px;
}
.testimony-text {
    background-color: var(--secondary);
    text-align: center;
    box-shadow: 1px 1px 5px #ddd;
    padding: 20px;
    width: 100%;
    display: block;
    justify-self: center;
    margin-bottom: 20px;
}
.testimony-text p span{
    display: block;
    color: var(--main);
}
.review i {
    color: gold;
}
.team img{
    width: 70px;
    height: 70px;
    border-radius: 100%;
    display: flex;
    justify-self: center;
}
 .testimony {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding: 1rem;
  scroll-behavior: smooth;
}

.testimony::-webkit-scrollbar {
  display: none;
}

.testimony-content {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 280px;
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* =========================== end of testimonial section ======================================= */


/* ============================= footer section ============================================= */
.footer-right {
    display: flex;
    align-items: center;
    gap: 30px;
}
.footer-right a{
    text-decoration: none;
    color: var(--dim-main);
    font-weight: bold;
}
.footer-content {
    display: flex;
    align-items:center;
    justify-content: space-between;
}
.all-footer {
    padding: 50px 0;
    background:var(--secondary);
    border-top: 1px solid #eee;
}
/* ============================= end of footer section ============================================= */

/* ==================================== about =================================== */
.about-head {
    padding: 100px 0;
    background-color: #f8f8f8;
}
.about-title h1{
    font-size: 70px;
    font-weight: bold;
    color: var(--main);
}
.about-title h5{
    font-size: 15px;
    color: var(--dim-main);
    display: flex;
    align-items: center;
    gap: 15px;
}
.about-title a{
    text-decoration: none;
    color: var(--dim-main);
}
.mission {
    text-align: center;
}
.mission h4{
    color: var(--dim-main);
}
.mission h1{
    color: var(--main);
    font-weight: bold;
    font-size: 50px;
}
.mission p span {
    display: block;
}
.mission {
    margin-bottom: 40px;
}
.mission-title {
    font-weight: bold;
    font-size: 25px;
    text-align: center;
}
/* ==================================== end of about =================================== */

/* ================================= sign up section ================================= */
.all-signup {
    background: #f8f8f8;
    padding: 50px 0;
}
.signup-head {
    display: flex;
    align-items: center;
    gap: 350px  ;
}
.sign-content {
    padding: 40px;
    background-color: white;
    box-shadow: 0 0 5px var(--primary);
    border-radius: 20px;
}
.sign-input {
    width: 40%;
    margin: 40px auto;
}
.sign-space input{
    border: none;
    width: 100%;
    outline: none;
}
.sign-1 a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--dim-main);
}
.sign-1 a:hover {
    color: var(--primary);
}
.sign-space {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding: 17px;
    border-radius: 6px;
}
.login-select {
    display: flex;
    align-items:baseline;
    gap: 10px;
}
.quest p{
    text-align: center;
}
.forget-pass p{
    text-align: center;
}
.quest a {
    text-decoration: none;
    color: var(--dim-main);
    font-weight: bolder;
}
.quest-1 a {
    text-decoration: none;
    color: var(--dim-main);
    font-weight: bolder;
}
.quest-1 h3{
    color: var(--main);
}
.sign-2{
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
    color: var(--main);
}

/* ================================= end of sign up section ================================= */