@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --primary-color: #FFE082;
    --primary-dark: #A46880;
    --bg-dark: #010205;
    --text-light: #ffffff;
    --text-muted: #D7D6D6;
    --border-color: rgba(255, 255, 255, 0.2);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    cursor: pointer;
}



body {
    font-family: "DM Sans", sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-x: hidden;

    font-weight: 400;
    cursor: url('../images/cursor.png'), auto;

}


section {

    position: relative;
    z-index: 2;

}
/* fixed contact start */
.fixed-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.support-popup a{
  position: absolute;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  pointer-events: none;
}
.fixed-contact .support-icon {
    width: 70px;
    height: 70px;
}
.fixed-contact .support-popup img {
    width: 40px;
    height: 40px;
}
/* fixed contact end */
.text {
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0;
    color: #60606057;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-color)) no-repeat;
    -webkit-background-clip: text;
    transition: background-size .5s cubic-bezier(.1, .5, .5, 1);
    will-change: background-size;
}


/* Different delay for each letter */
.load-text span:nth-child(1) {
    animation-delay: 0.1s;
}

.load-text span:nth-child(2) {
    animation-delay: 0.2s;
}

.load-text span:nth-child(3) {
    animation-delay: 0.3s;
}

.load-text span:nth-child(4) {
    animation-delay: 0.4s;
}

.load-text span:nth-child(5) {
    animation-delay: 0.5s;
}

.load-text span:nth-child(6) {
    animation-delay: 0.6s;
}

.load-text span:nth-child(7) {
    animation-delay: 0.7s;
}

@keyframes letterAnimation {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    50% {
        opacity: 1;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* loader end */

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 0;
    transition: .3s;
    background: linear-gradient(180deg, #031521b5, #03152182, transparent);

}

.scroll-start .navbar {
    padding: 20px 0;
    background: #0315218c;
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
    display: flex;
}

.logo img {
    width: 160px;
    transition: .5s;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.btn {

    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.5s;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    position: relative;
    padding-right: 50px;
    text-decoration: none;

}

.btn.center {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: fit-content;
}

.btn:hover {
    padding-right: 0px;
    padding-left: 50px;
}

.btn>span:nth-child(1) {
    background: linear-gradient(90deg, #A46880, #F9F462, #F9F462, #A46880);
    background-size: 200%;
    padding: 10px 30px;
    color: #000;
    border-radius: 30px;
    height: 50px;
    transition: .5s;
    min-width: 180px;
    text-align: center;
    z-index: 9;
    transition: .5s;

}

.btn>span:nth-child(2) {
    width: 15px;
    height: 25px;
    background-color: #F9F462;
    margin-left: -4px;
    position: absolute;
    right: 43px;
    transition: .5s;


}

.btn>span:nth-child(3) {

    background-color: #F9F462;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    transition: .5s;
    position: absolute;
    right: 0;

}

.btn:hover>span:nth-child(1) {
    background-position: 100%;
}

.btn:hover>span:nth-child(3) {
    right: calc(100% - 50px);

}

.btn:hover>span:nth-child(2) {
    right: calc(100% - 55px);
}

.btn:hover span:nth-child(3) {
    transform: rotate(20deg);
}



/* Hero Section */

.hero-section{
    padding-top: 140px;
    padding-bottom: 0px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-shape1{
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    max-width: 450px;
}
.hero-shape2{
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    max-width: 1000px;
}
.hero-row{
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;

}

.hero-center{
        z-index: 1;
    position: relative;
    margin: auto;
    text-align: center;
}
.hero-center .btn{
    margin-top: 25px;
}
.hero-center .section-header{
    max-width: 600px;
    text-align: center;
}
.hero-center .section-description{
    font-weight: 200;
    font-size: 14px;
    color: var(--text-muted);
}
.hero-bg{
    width: 100%;
   position: absolute;
   top: 0;
   left: 0;
   opacity: .8;
   min-height: 60vh;
}
.hero-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
   min-height: 60vh;

}
h5{
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 600;
}

h6 {
    font-size: 16px;
    font-weight: 300;
}
.hero-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.1;
    padding-bottom: 10px;

}

.gradient-text {
    color: #A46880;
    /* Fallback color - important for animation visibility */
    background: linear-gradient(90deg, #A46880, #fef60fdb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wealth{
    padding: 70px 0;
    position: relative;
    z-index: 9;
}



.jetas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;


}



.jeta-card {

    transition: all 0.3s;
    position: relative;
    padding: 2px;

    border-radius: 24px;
    background: linear-gradient(160deg, #ffffff5a, #00000000, #00000000);
    transition: .5s;
    overflow: hidden;
    cursor: pointer;

    

}

.jeta-card:hover {

    box-shadow: 0px 0px 50px 17px #f9f4620b;




}
.jeta-card::before {
    content: '';
    position: absolute;
    right: 0;
    top: 2px;
    width: 50%;
    background: url(/images/hero-shape1.png);
    background-size: contain;
    height: 150px;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: right;
    transition: .4s;
}

.main-card {
    position: relative;
    background: linear-gradient(120deg, var(--bg-dark), var(--bg-dark), #0e0e0e);
    padding: 30px;
    border-radius: 22px;
    height: 100%;
    width: 100%;
    text-align: left;


}

.jeta-icon {
    width: 100px;
    height: 100px;

}


.jeta-icon svg {
    z-index: 9;
    width: 100%;
    height: 100%;
}





.jeta-description {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.5;
    font-weight: 200;
    margin-top: 10px;
}

.jeta-description b {
    font-weight: 600;
}










.border
 {
    max-height: 100%;
    max-width: 100%;
    height: 100%;
    width: 100%;
    position: absolute;
    left: -1px;
    top: -1px;
    overflow: hidden;
    z-index: -1;
    /* Border Radius */
    border-radius: 8px;
    filter: blur(3px);
}






.jeta-card:hover .border {
    opacity: 1;
}

.border::before {
    content: "";
    z-index: -2;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(330deg);
    position: absolute;
    width: 600px;
    height: 600px;
    filter: brightness(1.3);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: conic-gradient(
            
          
            #36444d00 49%,
            #a48e42 58%,
            #36444d00 67%);

    transition: all 3s;
}







.jeta-card:hover>.border::before {
    transform: translate(-50%, -50%) rotate(-30deg);
}





@keyframes rotate {
    100% {
        transform: translate(-50%, -50%) rotate(450deg);
    }
}

@keyframes leftright {
    0% {
        transform: translate(0px, 0px);
        opacity: 1;
    }

    49% {
        transform: translate(250px, 0px);
        opacity: 0;
    }

    80% {
        transform: translate(-40px, 0px);
        opacity: 0;
    }

    100% {
        transform: translate(0px, 0px);
        opacity: 1;
    }
}







.section-header {
    max-width: 800px;
    text-align: left;
    width: fit-content;
}

.center.section-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}



.center .section-title {
    margin: 0 auto 10px auto;
    text-align: center;
}
.center h6 {
    margin: 0 auto 10px auto;
    text-align: center;
}
.center h5 {
    margin: 10px auto 10px auto;
    text-align: center;
}
.heading-section h6 {

    margin-bottom: 10px;
}
.heading-section.right{
    text-align: right;
}
.heading-section.right .section-title{
    margin-left: auto;
}
.section-label {
    display: inline-block;
    color: var(--text-light);
    font-weight: 200;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;

}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    width: fit-content;
    line-height: 42px;

}
.heading-section{
    margin-bottom: 50px;
}

/* who-this start */
.who-this{
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
}
.who-this::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -40%;
    transform: translateX(-50%);
    width: 900px;
    background: url(/images/whothis-shape.png);
    background-size: contain;
    height:900px;
    background-repeat: no-repeat;
    background-position: center;
    transition: .4s;

}
.whothis-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: auto;
}
.whothis-grid h4{
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 30px;
}
.whothis-grid-card{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.whothis-grid-card > div{
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #484848;
    background: #000;
    border-radius: 20px;
    padding: 20px;
    color: #D7D6D6;
    font-weight: 200;

}


/* social-proof start */
.social-proof{
    padding-top: 100px;
    padding-bottom: 70px;
    position: relative;

}
.social-proof .container{

    max-width: 1200px;
    margin: auto;
}
.social-proof::before {
    content: '';
    position: absolute;
    left: 0%;
    top: -50px;
    width: 50%;
    background: url(/images/social-proof-shape.png);
    background-size: contain;
    height:100%;
    background-repeat: no-repeat;
    background-position: left;
    transition: .4s;

}
.social-proof-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.social-proof-img{
    width: 100%;
    max-width: 500px;
}
.social-proof-grid h4{
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 30px;
}
.social-proof-grid-card{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.social-proof-grid-card > div{
    display: flex;
    align-items: center;
    gap: 20px;
    color: #D7D6D6;
    font-weight: 300;
    max-width: 420px;

}
.social-proof-grid-card  div span{
    font-size: 18px;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(black, #0c0b07, #3C341D);
    position: relative;
}
.social-proof-grid-card  div:not(:last-child) span::before {
    content: '';
    position: absolute;
    left: 0%;
    top: calc(50% - 4px);
    width: 100%;
    background: url(/images/number-shape.png);
    background-size: contain;
    height:100%;
    background-repeat: no-repeat;
    background-position: left;
    transition: .4s;

}


/* join start */
.join{
    padding-top: 100px;
    padding-bottom: 70px;
    position: relative;

}
.join::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -40%;
    transform: translateX(-50%);
    width: 900px;
    background: url(/images/whothis-shape.png);
    background-size: contain;
    height: 900px;
    background-repeat: no-repeat;
    background-position: center;
    transition: .4s;
}

.join-timeline{
    position: relative;
    min-height: 300px;
    margin-top:120px;

}

.wave {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 130px;
  transform: translateY(-50%);
  z-index: 1;
}


.step {
  position: absolute;
  text-align: center;
  z-index: 2;
}

.step-1 { left: 19.5%; top: -10%; }
.step-2 { left: 33%; top: 55%; }
.step-3 { left: 48%; top: -10%; }
.step-4 { left: 66%; top: 55%; }

.card {
  background: linear-gradient(140deg, #000, #0D0D0B);
  padding: 20px 30px;
  border-radius: 30px;
  border: 1px solid #484848;
  backdrop-filter: blur(10px);
  margin-bottom: 15px;
  min-width: 250px;
  font-weight: 300;
}

/* Dots */
.dot {
  width: 40px;
  height: 40px;
background: linear-gradient(90deg, #A46880, #F9F462);
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;

}

/* Alternate layout */
.step-2 .card,
.step-4 .card {
  margin-top: 15px;
  margin-bottom: 0;
}



.footer .section-description {
    font-size: 16px;
    color: var(--text-muted);


}




.btn2 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
}

.btn2 span {
    background-color: #0876BD;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}






/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 100px 40px 30px 40px;
    position: relative;
    z-index: 9;

}
.footer .btn{
    margin: 20px auto 0 auto;
}
.footer .heading-section {
    display: flex;
    flex-direction: column;
}
.footer .btn > *{
    background: #5BD900!important;
}
.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 440px;
    margin: 0 auto;
    gap: 20px;
    padding-bottom: 80px;
    margin: 0 auto;
    text-align: center;

}

.footer-content p {
    font-weight: 200;
}

.footer-content p a {
    display: flex;
    margin-top: 20px;
    color: #0876BD;
    text-decoration: underline;
}

.last-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 40px 20px;
    border-top: 1px solid var(--border-color);

    font-size: 14px;

}



/* Responsive Design */
@media (min-width: 1200px) {
    footer {
        position: sticky;
        bottom: 0;
    }

}

@media (max-width: 1300px) {


    .header-right {
        gap: 30px;
    }

.step-1 { left: 17.5%; top: -10%; }
.step-2 { left: 31%; top: 55%; }
.step-3 { left: 47%; top: -10%; }
.step-4 { left: 64.5%; top: 55%; }



}

@media (max-width: 1024px) {


    .main-card {
        padding: 20px;
    }


    .hero-text>* {
        margin: auto;
    }

    .hero-text {
        max-width: 100%;
        margin-top: -60px;
        z-index: 9;
    }

.who-this::before, .join::before {

    top: -40%;

    width: 100%;

    height: 100%;

}
.whothis-grid {

    gap: 40px;

}

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {

        /* padding-top: 150px; */
        background-position: 30% center;

    }

.jeta-description {

    font-size: 15px;

}
[data-aos=fade-left] {
    transform: translate3d(20px, 0, 0)!important;
}
[data-aos=fade-right] {
    transform: translate3d(20px, 0, 0)!important;
}
[data-aos^=fade][data-aos^=fade].aos-animate {
    transform: translateZ(0)!important;
}
.step-1 { left: 15.5%; top: -10%; }
.step-2 { left: 29%; top: 55%; }
.step-3 { left: 44%; top: -10%; }
.step-4 { left: 62%; top: 55%; }



}
@media (min-width: 990px) {
    .social-proof-grid-card > div{

    justify-content: flex-end;

    text-align: right;
    margin-left: auto;

}
}
@media (max-width: 990px) {
    .social-proof-grid-card > div {
    display: flex;
flex-direction:row-reverse;
width: fit-content;
}
.heading-section.right {
    text-align: left;
}
.heading-section.right .section-title {
    margin-left: 0;
}
.social-proof-grid {

    grid-template-columns: 1fr;
    gap: 40px;

}

    .jetas-grid {

        gap: 20px;


    }

    .logo img {
        width: 110px;
    }

    .btn>span:nth-child(1) {
        padding: 8px 20px;
        min-width: 125px;
        height: 40px;
        line-height: 1.3;
    }

    .btn {

        padding-right: 35px;
    }

    .btn>span:nth-child(2) {
        right: 30px;

    }

    .btn>span:nth-child(3) {
        width: 40px;
        height: 40px;
    }
.join-timeline{
    padding-left: 20px;
    padding-right: 20px;
    display: grid;
    grid-template-columns: 1fr  1fr;
    gap: 30px;
    margin-top: 0;
}
    .step {

        position: relative!important;
        left: auto!important;
        top: 0!important;
    
    }
.wave{
    display: none;
}
.step .card{
    margin: 0;
}
.dot{
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 1;
}


}
@media (min-width: 768px) {

    .whothis-grid  .whothis-grid-col:nth-child(2){
    text-align: right;
}
.whothis-grid  .whothis-grid-col:nth-child(2) .whothis-grid-card > div{
   flex-direction: row-reverse;
}

}
@media (max-width: 768px) {
    .whothis-grid {

    grid-template-columns: 1fr;


}


    .jetas-grid {

        grid-template-columns: 1fr 1fr;


    }

    .jetas-grid .jeta-card:last-child {



        grid-column: span 2;
    }

    .jetas-grid {
        margin: 20px 0 !important;
    }




    .hero-title {
        font-size: 36px;
    }



    .section-title {
        font-size: 30px;
        line-height: 1.2;
    }
h5 {
    font-size: 16px;
}

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 0;
    }

    .footer-top-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px 0 0px 0;
    }





    .navbar {

        padding: 30px 0;

    }

    .scroll-start .logo img {
        width: 100px;
    }

    .container {

        padding: 0 20px;

    }


    .hero {

        min-height: auto;

    }



    .btn2 {

        font-size: 16px;

    }



}



@media (max-width: 640px) {

.hero-row {

    grid-template-columns: 1fr;
    gap: 50px;

}
.hero-shape1{

    width: 50%;
    max-width: 450px;
}

.hero-shape2{

    width: 80%;
    max-width: 1000px;
}


    .join-timeline {

        grid-template-columns: 1fr;
        gap: 40px;
    }
.dot {

        top: -25px;
        left: 50%;
        transform: translateX(-50%);

    }
    .step .card{
        padding-top: 30px;
        font-size: 14px;
    }

.footer-content{
    padding: 20px 0 60px 0;
}
.hero-section{
    min-height: 90vh;
}
}

@media (max-width: 560px) {


    .jetas-grid {

        grid-template-columns: 1fr;


    }

    .jetas-grid .jeta-card:last-child {
        grid-column: span 1;
    }
    .whothis-grid-card > div {

    border-radius: 14px;
    padding: 12px;

}
.wealth {
    padding-bottom: 40px;

}
.who-this, .social-proof, .join {
    padding-top: 40px;
    padding-bottom: 40px;

}
.whothis-grid h4 {
    font-size: 18px;
    margin-bottom: 20px;
}
.social-proof-img {
    max-width: 280px;
    margin: 0 auto;
    display: flex;
}
}

@media (max-width: 480px) {

    .section-header {
        text-align: center;
        margin: auto;
    }



    .footer {
        padding: 50px 0 20px;
    }

.last-footer {

    padding:  25px;

}
.social-proof::before {

    top: 0px;
    width: 100%;

}


}