@import url('https://fonts.cdnfonts.com/css/poppins');
@import url('https://fonts.cdnfonts.com/css/ibm-plex-mono-3');

@font-face {
    font-family: Tungsten;
    src: url(../assets/Tungsten-Bold.ttf)
}

*{ 
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
   
    
}

body {
    min-height: 100vh;
    background: rgb(28,16,55);
    background: linear-gradient(90deg, rgba(28,16,55,1) 42%, rgba(15,9,26,1) 100%);
    width: 100%;
    
}

.home-bg, .engagament-bg {
    position: absolute;
    width: 100%;
    height: 100%;    
    z-index: -1;
    opacity: 0.9;
    object-fit: cover;
    overflow: hidden;
}

.landing-page {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ece8e1;
}

.lp-left {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 5em;
    gap: 2em;   
}

.lp-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
    max-width: 100%;
}

.lp-titles {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column; 
}

.lp-left h1 {
    font-family: Tungsten;
    text-transform: uppercase;
    font-size: 8em;
    background: #31ADD4;
    background: linear-gradient(to right, #31ADD4 12%, #8F38E7 74%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 0.9;

}

.lp-left h3 {
    /* text-transform: uppercase; */
    font-size: 1em;
    font-weight: 400;
}

.lp-right img {
    max-width: 100%;
}

/* Landing Page */

.btn {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: none;
    padding: 0;
    color: #ece8e1;
    cursor: pointer;
    position: relative;
    padding: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9em;
    transition: all .15s ease;
}
  
.btn::before,
.btn::after {
    content: '';
    display: block;
    position: absolute;
    right: 0; left: 0;
    height: calc(50% - 5px);
    border: 1px solid #7D8082;
    transition: all .15s ease;
}
  
.btn::before {
    top: 0;
    border-bottom-width: 0;
}
  
.btn::after {
    bottom: 0;
    border-top-width: 0;
}
  
.btn:active,
.btn:focus {
    outline: none;
}
  
.btn:active::before,
.btn:active::after {
    right: 3px;
    left: 3px;
    }
  
.btn:active::before {
    top: 3px;
}   
  
.btn:active::after {
    bottom: 3px;
}
  
.btn__inner {
    position: relative;
    display: block;
    padding: 1.2em 3em;
    background-color: #622be1;
    overflow: hidden;
    box-shadow: inset 0px 0px 0px 1px transparent;
}

.btn__inner-1 {
    position: relative;
    display: block;
    padding: 1.2em 10.5em;
    background-color: #622be1;
    overflow: hidden;
    box-shadow: inset 0px 0px 0px 1px transparent;
}

.btn__slide {
    display: block;
    position: absolute;
    top: 0; bottom: -1px; left: -8px;
    width: 0;
    background-color: #f003ae;
    transform: skew(-15deg);
    transition: all .2s ease;
}
  
.btn__content {
    position: relative;
}

.btn:hover {
    color: #ece8e1;
}
  
.btn:hover .btn__slide {
    width: calc(100% + 15px);
}

.second-page {
    position: relative;
    color: #ece8e1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1em;
}

.title-sp {
    font-family: Tungsten;
    text-transform: uppercase;
    font-size: 5em;
    text-align: center;
    line-height: 1;
}


.side-bar {
    background: rgb(0,0,0);
    width: 290px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -100%;
    transition: 0.5s ease;
    transition-property: left;
    z-index: 99;
}

.side-bar.active {
    left: 0;
}

.side-bar .menu {
    width: 100%;
    margin-top: 80px;
}

.side-bar .menu .nav-item {
    position: relative;
    cursor: pointer;
}

.side-bar .menu .nav-item a {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
    line-height: 60px;
}

.side-bar .menu .nav-item a.active {
    background: #8621F8;
    transition: 0.3 ease;
}

.side-bar .menu .nav-item a:hover {
    background: #f003ae;
    transition: 0.3 ease;
}

.side-bar .menu .nav-item i {
    margin-right: 15px;
}

.close-btn {
    position: absolute;
    color: #fff;
    font-size: 1.2rem;
    right: 0;
    margin: 25px;
    cursor: pointer;
}

.menu-btn {
    position: fixed;
    color: #fff;
    font-size: 1.2rem;
    margin: 25px;
    cursor: pointer;
    z-index: 99;
}

.menu-btn > .fa-bars {
    font-size: 2rem;
}

.close-btn > .fa-times {
    font-size: 2rem;
}

.nav-corner {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 2rem;
    height: 2rem;    
}

.third-page {
    position: relative;
    color: #ece8e1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.categories {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    flex-wrap: wrap;
    padding-inline: 1em;
}

.category-hover {
    width: 100%; 
    height: 100%; 
    overflow: hidden;
    position: absolute;
}
  
.gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    
}

.category-hover:hover .gif {
    opacity: 1;
}

.category {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(188, 169, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(188, 169, 255, 0.3);
    padding: 1em;
    gap: 1em;
    overflow: hidden;
}

.category h1 {
    font-size: 1.3em;
    font-weight: 600;
    
}

.category .category-img {
    width: 11em;
    height: 7em;
    object-fit: contain;
}

.tp-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
}

.tp-info {
    display: flex;
    justify-content: center;
    align-items: flex-start ;
    gap: 2em;
    flex-direction: column;
    padding: 4em;
}

.tp-info-title {
    font-family: Tungsten;
    font-size: 5em;
    background: #0DD5E0;
    background: linear-gradient(to right,  #EC11CD 12%,  #0DD5E0 78%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    word-wrap: break-word;
}

.tp-info p {
    font-size: 0.9em;
    font-weight: 400;
}

.tp-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3em;
    justify-content: center;
}

.feature-desc {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-desc img {
    object-fit: contain;
    width: 3.5em;
}

.feature-desc h1 {
    font-size: 0.9em;
    font-weight: 600;
}

.third-page .About-pic {
    object-fit: contain;
    width: 40em;
}


.fourth-page {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    color: #ece8e1;
    flex-direction: column;
    padding: 5em;
    max-width: 100%;
}

.fourth-page .engagement-img {
    width: 40em;
    object-fit: contain;
}

.fourth-p-title {
    font-family: Tungsten;
    text-transform: uppercase;
    font-size: 5em;
    background: #FE85D9;
    background: linear-gradient(to right, #FE85D9 31%, #1FEAEC 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    word-wrap: break-word;
    
}


.engagement {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
}

.left-engagement {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2em;
}

.le-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2em;
    width: auto;
    max-width: 25em;
    background: rgba(188, 169, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(188, 169, 255, 0.3);
    padding: 1.3em;
}

.le-gradient {
    background: #CF17CF;
    background: linear-gradient(to right, #CF17CF 12%, #8415CF 93%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.fifth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1em;
    padding: 2em;
}

.fp-title {
    font-size: 5em;
    font-family: Tungsten;
    text-transform: uppercase;
    color: #ece8e1;
}


.fp-plans {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1em;
}

.fp-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #ece8e1;
}

.fp-container img {
    width: 18em;
}

.fp-plan-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgb(23,33,52);
    background: radial-gradient(circle, rgba(23,33,52,1) 35%, rgba(18,19,37,1) 93%);
    width: 18em;
    padding: 1em 2em 3em 2em;
}

.fp-plan-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgb(23,33,52);
    background: radial-gradient(circle, rgba(23,33,52,1) 35%, rgba(18,19,37,1) 93%);
    width: 18em;
    padding: 1em 2em 2em 2em;
}

.fp-plan-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgb(23,33,52);
    background: radial-gradient(circle, rgba(23,33,52,1) 35%, rgba(18,19,37,1) 93%);
    width: 18em;
    padding: 1em 2em 5em 2em;
}

.fp-plan-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgb(23,33,52);
    background: radial-gradient(circle, rgba(23,33,52,1) 35%, rgba(18,19,37,1) 93%);
    width: 18em;
    padding: 1em 2em 3em 2em;
}

.plan-set {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 1em;
}

.fp-container h1 {
    font-size: 1.7em;
    margin-bottom: 0.5em;
}

.fp-container p {
    font-size: 0.8em;
}

.second-page .carousel-wrapper {
    position: relative;
    /* width: 95%; */
}

.second-page .carousel {
    position: relative;
    font-size: 0px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    scroll-behavior: smooth;
}

.carousel.dragging {
    cursor: grab;
    scroll-behavior: auto;
}

.carousel.dragging img {
    pointer-events: none;
}

.carousel img {
    object-fit: cover;
    width: calc(100% / 3);
}

/* .carousel img:first-child{
    margin-left: 0px;
} */

.second-page i {
    top: 50%;
    height: 46px;
    width: 46px;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    text-align: center;
    line-height: 46px;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 99;
}

.second-page i:first-child {
    left: -23px;
}

.second-page i:last-child {
    right: -23px;
}

.dynamic-review {
    width: auto;
    max-width: 25em;
}

/* Start of glitch effect */
.glitch {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
      0.025em 0.04em 0 #fffc00;
    animation: glitch 725ms infinite;
  }
  
  .glitch span {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .glitch span:first-child {
    animation: glitch 500ms infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translate(-0.04em, -0.03em);
    opacity: 0.75;
  }
  
  .glitch span:last-child {
    animation: glitch 375ms infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    transform: translate(0.04em, 0.03em);
    opacity: 0.75;
  }
  
  @keyframes glitch {
    0% {
      text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
        0.025em 0.04em 0 #fffc00;
    }
    15% {
      text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff,
        0.025em 0.04em 0 #fffc00;
    }
    16% {
      text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff,
        -0.05em -0.05em 0 #fffc00;
    }
    49% {
      text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff,
        -0.05em -0.05em 0 #fffc00;
    }
    50% {
      text-shadow: 0.05em 0.035em 0 #00fffc, 0.03em 0 0 #fc00ff,
        0 -0.04em 0 #fffc00;
    }
    99% {
      text-shadow: 0.05em 0.035em 0 #00fffc, 0.03em 0 0 #fc00ff,
        0 -0.04em 0 #fffc00;
    }
    100% {
      text-shadow: -0.05em 0 0 #00fffc, -0.025em -0.04em 0 #fc00ff,
        -0.04em -0.025em 0 #fffc00;
    }
  }
/* End of glitch effect */

@media screen and (max-width: 1200px) {
    .engagement {
        flex-direction: column;
        max-width: 100%;
    }

    .engagement-img {
        order: 1
    }
    
    .left-engagement {
        order: 2
    }

    
}

@media screen and (max-width: 1150px) {
    .third-page .About-pic {
        width: 30em;
        max-width: 600px;
    }
}

@media screen and (max-width: 1090px) {
    .third-page {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .tp-info {
        align-items: center;
        text-align: center;
    }

    .landing-page {
        flex-direction: column-reverse;
        overflow: hidden;
    }

    .lp-right img {
        max-width: 600px;
    }
}

@media screen and (max-width: 900px) {
    .carousel img {
        width: calc(100%/2);
        height: auto;
    }

    .carousel-wrapper {
        padding: 0px 20px;
    }

    .third-page .About-pic {
        width: auto;
        max-width: 100%;
    }

    .lp-left, .tp-info {
        padding: 0 2em 2em 2em;
    }

}

@media screen and (max-width: 660px) {
    .fourth-page .engagement-img {
        width: 100%;
        max-width: 100%;
    }

    .lp-right img {
        max-width: 100%;
    }

    .lp-titles h1 {
        font-size: 6em;
    }

    .fourth-page {
        padding: 10px;
    }
}

@media screen and (max-width: 550px) {
    .carousel img {
        width: 100%;
    }

    .fifth-page {
        padding: 10px;
    }


    .btn__inner-1 {
        padding: 1.2em 2.5em;
    }

    .tp-features {
        gap: 10px;
    }

    .tp-info-title {
        font-size: 4em;
        line-height: 1;
    }

    .fourth-p-title {
        text-align: center;
        line-height: 1;
    }

    .fp-title {
        line-height: 1;
        text-align: center;
    }

    .lp-left {
        align-items: center;
        text-align: center;
    }
    
   
}

@media screen and (max-width: 370px) {
    .tp-features {
        grid-template-columns: repeat(1, 1fr);
    }
}