@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primaryColor: #FADC9D;
    --primaryFont: "Roboto", sans-serif;
    /* --black: #1E2B34; */
    --black:#080e37;
    --white : #fff;
}


html,
body {
    font-family: var(--primaryFont);
    color: var(--white);
    overflow-x: hidden;
    font-size: 18px;
    background: var(--black);
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}

a {
    text-decoration: none;
    color: var(--primaryColor);
}

a:hover {
    text-decoration: none;
}



/* ====== header css start ====== */
header {
    position: relative;
    width: 100%;
    z-index: 99999;
    padding: 10px 20px 10px 20px;
    background: var(--black);
    border-bottom: 1px solid #e4e2e8;
}

.cta-btn-holder img {
    max-width: 200px;
}

header .logo img {
    width: 160px;
}

nav {
    display: flex;
    z-index: 10;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    list-style: none;
    justify-content: space-between;
    align-items: center;
    gap: 46px;
    margin-bottom: 0;
}

.nav-links li a {
    text-decoration: none;
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    padding-bottom: 6px;
}

nav .cta-btn {
    margin-left: 7vw;
}

nav .cta-btn a {
    color: #fff;
}

.nav-links .active {
    color: var(--primaryColor);
}

.nav-links li a:hover {
    color: var(--primaryColor);
}

nav .cta-btn a:hover {
    color: #fff;
}

.nav-links li {
    position: relative;
}

.nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
    bottom: 0;
}

.nav-links li a:hover::before {
    width: 80%;
}

.toggle,
[id^=drop] {
    display: none;
}

nav a:hover {
    color: rgb(240 84 84)
}

nav ul ul {
    display: none;
    position: absolute;
    top: 60px;
    background: #fff;
    width: 300px;
    list-style: none;
    border-radius: 2px;
    padding-bottom: 15px;
}

nav ul li:hover>ul {
    display: inherit;
}

nav ul ul li {
    width: 100%;
    float: none;
    display: list-item;
    position: relative;
    padding: 7px 0px !important;
}

li>a:only-child:after {
    content: '';
}

.hamburger div {
    width: 30px;
    height: 3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ======== banner css start ======== */
.btn-group {
    gap: 30px;
}

h1 {
    font-size: 60px;
}

.banner {
    padding: 10rem 20px;
    background: url('../images/banner-two-bg.png') no-repeat top;
    background-size: cover;
    z-index: 2;
    position: relative;
}



.neon-sky {
    color: #31FFE7;
    text-shadow: 0 0 20px #31FFE7,
        0 0 72px #31FFE7,
        0 0 100px #31FFE7,
        0 0 49px #31FFE7;
}

.neon-pink {
    color: #FF2FC0;
    text-shadow: 0 0 20px #FF2FC0,
        0 0 72px #FF2FC0,
        0 0 100px #FF2FC0,
        0 0 49px #FF2FC0;
}

.neon-yellow {
    color: #FFBF58;
    text-shadow: 0 0 20px #FFBF58,
        0 0 72px #FFBF58,
        0 0 100px #FFBF58,
        0 0 49px #FFBF58;
}

.banner .rocket {
    position: absolute;
    bottom: -140px;
    left: -100px;
    z-index: -3;
}

.banner .rocket img {
    max-width: 20vw;
    min-width: 120px;
    animation: moveTopBottom 5s infinite ease-in-out;
}

@keyframes moveTopBottom {
    0% {
        transform: translateY(0);
        opacity: 0.8;
    }

    25% {
        opacity: 1;
    }

    50% {
        transform: translateY(30px);
        opacity: 0.8;
    }

    75% {
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.8;
    } }

/* Banner animated elements base styles */
.animated {
    position: absolute;
    z-index: 1;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* Individual element positioning (adjust as needed) */
.animated-1 {
    top: 20%;
    left: 5%;
    width: 40px;
}

.animated-2 {
    top: 60%;
    left: 10%;
    width: 30px;
}

.animated-3 {
    bottom: 20%;
    right: 15%;
    width: 35px;
}

.animated-4 {
    top: 30%;
    right: 8%;
    width: 25px;
}

.animated-5 {
    bottom: 30%;
    left: 12%;
    width: 50px;
}

/* Wavy animation keyframes */
@keyframes wavy-float {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) translateX(5px) rotate(2deg);
    }

    50% {
        transform: translateY(5px) translateX(-5px) rotate(-1deg);
    }

    75% {
        transform: translateY(-5px) translateX(3px) rotate(1deg);
    }
}

/* Different animation durations for variety */
.animated {
    z-index: -1;
}
.animated-1 {
    top: 20%;
    left: 5%;
    width: 40px;
    animation: float-left-right 8s ease-in-out infinite;
    animation-delay: 0.5s;
}

.animated-2 {
    top: 60%;
    left: 10%;
    width: 30px;
    animation: float-right-left 10s ease-in-out infinite;
    animation-delay: 1s;
}

.animated-3 {
    bottom: 20%;
    right: 15%;
    width: 35px;
    animation: float-left-right 9s ease-in-out infinite;
    animation-delay: 1.5s;
}

.animated-4 {
    top: 30%;
    right: 8%;
    width: 25px;
    animation: float-right-left 7s ease-in-out infinite;
    animation-delay: 0.8s;
}

.animated-5 {
    bottom: 30%;
    left: 12%;
    width: 50px;
    animation: float-left-right 11s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes float-left-right {

    0%,
    100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }

    25% {
        transform: translateX(-10px) translateY(-5px) rotate(-2deg);
    }

    50% {
        transform: translateX(10px) translateY(5px) rotate(2deg);
    }

    75% {
        transform: translateX(-5px) translateY(-3px) rotate(-1deg);
    }
}

@keyframes float-right-left {

    0%,
    100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }

    25% {
        transform: translateX(10px) translateY(-5px) rotate(2deg);
    }

    50% {
        transform: translateX(-10px) translateY(5px) rotate(-2deg);
    }

    75% {
        transform: translateX(5px) translateY(-3px) rotate(1deg);
    }
}
    
/* ======== banner css end ======== */

 /* ======== about css start ======== */
 .about {
     padding: 5rem 20px;
     background: #050c3e;
 }

h2{
    font-size: 48px;
    font-weight: 700;
}

.about img{
    border-radius: 12px;
}

/* ======== about css end ======== */

/* ======== feature css start ======== */
.features {
    padding: 5rem 20px;
    background: #11184f;
    position: relative;
}

 .shapes img {
    left: -100px;
    bottom: 50px;
    z-index: 0;
    opacity: .3;
    position: absolute;
    max-width: 500px;
}

 .shapes img.shape-2 {
    left: auto;
    bottom: auto;
    top: 0;
    right: 50px;
}
.feature-left img {
    max-width: 400px;
}
/* ======== feature css end ======== */

/* ======== how its start css start ======== */
.how-its-start{
    padding: 5rem 20px;
}

.icon {
    border-radius: 50%;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 10px;
    margin: auto;
    margin-bottom: 1rem;
    border-radius: 50% !important;
}

.neon-sky-icon{
    color: #31FFE7;
    border: 2px solid #31FFE7;
    text-shadow: 0 0 1px #31FFE7, 0 0 1px #31FFE7;
    box-shadow: 0 0 8px rgba(49, 255, 231, 0.6),
      0 0 16px rgba(49, 255, 231, 0.4),
      inset 0 0 8px rgba(49, 255, 231, 0.4),
      inset 0 0 16px rgba(49, 255, 231, 0.3);
}
.neon-sky-box{
    border: 2px solid #31FFE7;
    border-radius: 1rem;
    box-shadow: inset 0 0 10px #31FFE7,
        /* inner glow */
        inset 0 0 41px #31FFE7,
        /* deeper inner glow */
        0 0 10px #31FFE7,
        /* outer glow */
        0 0 0px #31FFE7;
}
.neon-sky-btn {
    color: #31FFE7;
    border: 2px solid #31FFE7;
    text-shadow: 0 0 1px #31FFE7, 0 0 1px #31FFE7;
    box-shadow: 0 0 8px rgba(49, 255, 231, 0.6),
        0 0 16px rgba(49, 255, 231, 0.4),
        inset 0 0 8px rgba(49, 255, 231, 0.4),
        inset 0 0 16px rgba(49, 255, 231, 0.3);
     }

.neon-yellow-box{
    border: 2px solid #FFBF58;
    border-radius: 1rem;
    box-shadow: inset 0 0 10px #FFBF58,
        /* inner glow */
        inset 0 0 41px #FFBF58,
        /* deeper inner glow */
        0 0 10px #FFBF58,
        /* outer glow */
        0 0 0px #FFBF58;
}

.work-holder{
    padding: 2rem;
    margin: 2rem 1rem 0 1rem;
    /* height: 100%; */
}
.work-holder p{
    margin-bottom: 0;
}
/* ======== how its start css end ======== */

/* ======== testimonial css start ======== */
.testimonial{
    padding: 5rem 20px;
    background: #11184f;
    background-image: url('../images/banner-two-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 100%;
    /* background: url(../images/testimonial-bg.jpg) no-repeat center ;
    background-size: cover; */

}
.testimonial .container{
    background: var(--black);
    border-radius: 20px;
    padding: 20px;
}

.testimonial-left img{
    width: 400px;
    margin: auto;
}

.review-holder{
    margin-top: 2rem;
}

.review-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.review-image img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    background: #ffbf58;
    padding: 0px;
}

.review-footer p{
    font-size: 13px;
    margin-top: 5px;
}

.review-rating i {
    color: #ffc107;
}

.testimonial blockquote{
    margin: 1.5rem 0;
}
.arrow {
    position: relative;
    padding: 25px;
    color: #fff;
    border-radius: 50%;
}
.arrow::after {
    display: none;
}
.nav {
    display: flex;
    gap: 36px;
    float: right;
    margin-top: -30px;
}

/* ======== testimonial css end ======== */

/* ======== download app css start ======== */
.download-app{
    padding: 5rem 20px;
}
/* ======== download app css end ======== */

/* ======== faq css start ======== */
.faq {
    padding: 5rem 20px;
    background: #11184f;
    /* background: url(../images/testimonial-bg.jpg) no-repeat center ;
    background-size: cover; */
}

.accordion-button:not(.collapsed), .accordion-button:focus {
    box-shadow: none !important; 
    background: transparent;
}

.accordion-item {
    background: var(--black);
    color: #fff;
    border: 1px solid #404991;
}

.accordion-button{
    color: #fff !important;
    background: transparent;
}

button.accordion-button::after , .accordion-button:not(.collapsed)::after{
    filter: invert(1) !important;
}

h2.accordion-header button {
    font-size: 22px;
}
/* ======== faq css end ======== */


/* ======== footer css start ======== */
footer{
    padding: 4rem 20px 0 20px;
    background-image: url('../images/banner-two-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 100%;
}

footer li{
    margin-top: 1rem;
}
footer a{
    color: #fff;
}

footer .copywright{
    border-top: 1px solid #fff;
    padding: 1rem 20px;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-widget{
    margin-bottom: 7rem;
    text-align: center;
    max-width: 700px;
}
.cta-btn{
    padding: 10px 20px;
    background: transparent;
    border-radius: 8px;
}
input{
    background: transparent !important;
    color: #fff !important;
}

input::placeholder{
    color: #fff !important;
}
/* ======== footer css end ======== */