@import url('https://fonts.googleapis.com/css2?family=Limelight&family=Nosifer&Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Limelight&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

:root {
    --black: #000;
    --white: #ffffff;
    --lightgrey: #f1f1f1;
    --darkblue: #0d102c;
    --primarycolor: #3d51f2;
    --secondarycolor: #5670ef;
    --lightDark: #080A25;
    --darkText: #8388B4;
    --black: #000;
    --white: #ffffff;
    --lightgrey: #f1f1f1;
    --darkblue: #0d102c;
    --lightDark: #080A25;
    --darkText: #8388B4;
    --navbar-bg: var(--darkblue);
    --navbar-border: #212e50;
    --logo-color: var(--primarycolor);
    --menu-hover: var(--primarycolor);
    --dropdown-bg: var(--darkblue);
    --dropdown-border: #1e2a53;
    --dropdown-hover-bg: #14264e;
    --dropdown-hover-color: var(--primarycolor);
    --btn-border: var(--primarycolor);
    --btn-bg: transparent;
    --btn-color: var(--primarycolor);
    --btn-hover-bg: var(--primarycolor);
    --btn-hover-color: var(--darkblue);
    --btn-primary-bg: var(--primarycolor);
    --btn-primary-color: var(--darkblue);
    --btn-primary-hover-bg: var(--secondarycolor);
    --body-bg: var(--lightDark);
    --body-color: var(--white);
    --header-font-1: "Limelight", sans-serif;
    --header-font-2: "Creepster", system-ui;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--darkblue);
    color: var(--white);
}

.sociallinkContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2em;
}

.sociallink {
    margin-right: 1em;
    cursor: pointer;
}

a {
    text-decoration: none;
}

@media screen and (min-width:800px) {
    .nav {
        position: relative;
        width: auto;
        background-color: transparent;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-right: 5%;
    }

    .nav-link {
        margin-right: 2em;
    }

    .navLogo,
    #barContainer,
    .sociallinkContainer {
        display: none;
    }
}

.text-pan {
    color: #3d51f2;
}

/* Hero page */
.headline {
    color: var(--white);
    font-size: 3rem;
    width: 100%;
    padding-top: 30px;
}

.sub-headline {
    line-height: 1.6;
    padding-top: 10px;
    font-weight: 500;
}


.cryptoText {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.btnContainer {
    margin-top: 2em;
}

.fa-play {
    margin-left: .5em;
}

.sectionPic {
    order: 0;
}

.sectionDesc {
    order: 1;
    margin: 12px;
}

@media screen and (min-width:800px) {
    .sectionPic {
        order: 1;
    }

    .sectionDesc {
        order: 0;
    }
}

@media screen and (min-width:1000px) {
    .headline {
        font-size: 3.4em;
    }
}



/* carousel */
.carouselContainer {
    display: grid;
    gap: 25px;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow: hidden;
    border-radius: 20px;
    scroll-behavior: smooth;
    grid-auto-columns: calc(100%/1);
    padding: 20px;
}


.eachCarousel {
    background: rgba(61, 81, 242, 0.15);
    /* primary color, transparent */
    box-shadow: 0 8px 32px 0 rgba(13, 16, 44, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1.5px solid rgba(86, 112, 239, 0.18);
    /* secondary color, transparent */
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.5em;
    margin: auto;
    width: 100%;
    height: 300px;
    transition:
        box-shadow 0.4s cubic-bezier(.4, 2, .6, 1),
        border 0.4s cubic-bezier(.4, 2, .6, 1),
        transform 0.4s cubic-bezier(.4, 2, .6, 1),
        background 0.4s cubic-bezier(.4, 2, .6, 1);
    padding: 20px;
}

.eachCarousel:hover,
.eachCarousel:focus-within {
    background: rgba(61, 81, 242, 0.22);
    border: 2.5px solid var(--primarycolor);
    box-shadow: 0 12px 40px 0 rgba(61, 81, 242, 0.28), 0 1.5px 12px 0 var(--secondarycolor);
    transform: translateY(-8px) scale(1.03);
}

.carouselDesc {
    margin-left: 1em;
}

.carouselTitle {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1em;
    font-family: var(--header-font-1);
}

.carouselPara {
    color: var(--lightDark);
    font-weight: 500;
    margin-bottom: 1em;
    color: #ffffff;
    margin-left: 0;
}

.carouselPrice {
    color: var(--darkblue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    margin-bottom: 1em;
}

.carouselDiscount {
    color: var(--primarycolor);
}

.rect {
    width: 10px;
    height: 10px;
    background-color: var(--lightDark);
}

.carouselBtn {
    background-color: var(--secondarycolor);
    margin-top: 20px;
    text-transform: uppercase;
}

.carouselIndicator {
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--lightgrey);
    cursor: pointer;
    margin-right: 10px;
    opacity: .5;
}

.activeIndicator {
    opacity: 1;
}

@media screen and (min-width:465px) {
    .carouselContainer {
        grid-auto-columns: calc(80%/1);
    }

    .eachCarouselBorder {
        border: 5px solid var(--primarycolor);
    }

}

@media screen and (min-width:1100px) {
    .carouselContainer {
        grid-auto-columns: calc(100%/3);
    }

}


/* Processes */
.processessDesc {
    order: 0;
}

.processesPic {
    order: 1;
}

.eachProcesses {
    display: flex;
    margin-bottom: 2em;
}

.eachProcesses img {
    margin-right: 2em;
}

.processTitle {
    color: var(--white);
    margin-bottom: 1em;
}

/* Markets */

.marketDesc {
    order: 0;
}

.eachMarket {
    display: flex;
    margin-bottom: 2em;
}

.eachMarket img {
    margin-right: 2em;
}

.marketTitle {
    color: var(--white);
    margin-bottom: 1em;
}

.marketspicSection {
    background-color: var(--lightgrey);
    border-radius: 20px;
    padding: 1em;
}

.marketspicHeader {
    color: var(--darkblue);
    text-align: center;
    padding: 1em;
    text-transform: uppercase;
}

.marketsPicContainer {
    width: 100%;
    max-width: 400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 1em;
    margin: auto;
}

.marketPic {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 150px;
    border-radius: 20px;
}

.marketPic1 {
    background-color: #FC9531;
}

.marketPic2 {
    background-color: #4990FF;
}

.marketPic3 {
    background-color: #3EC2F1;
}

.marketPic4 {
    background-color: #50D79F;
}

.marketPic img {
    width: 50px;
}

.marketTitle {
    color: var(--white);
    font-weight: bold;
    margin-top: .5em;
    text-transform: uppercase;
}

/* Dashboard */
.dashboardDesc {
    order: 0;
}

.dashboardPic {
    order: 1;
    margin-top: 2em;
}

@media screen and (min-width:800px) {
    .dashboardDesc {
        order: 1;
    }

    .dashboardPic {
        order: 0;
    }
}


/* Funds */
.fundSection {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    margin-top: 5em;
    margin-bottom: 5em;


}


.fundsContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.investment-plan .fundsContainer {
    display: grid;
    text-align: center;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Glassmorphism effect for fund cards */
.investment-plan .fundsContainer .fund {
    background: rgba(61, 81, 242, 0.15);
    /* primary color, transparent */
    box-shadow: 0 8px 32px 0 rgba(13, 16, 44, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1.5px solid rgba(86, 112, 239, 0.25);
    /* secondary color, transparent */
    transition:
        box-shadow 0.4s cubic-bezier(.4, 2, .6, 1),
        border 0.4s cubic-bezier(.4, 2, .6, 1),
        transform 0.4s cubic-bezier(.4, 2, .6, 1),
        background 0.4s cubic-bezier(.4, 2, .6, 1);
    position: relative;
    overflow: hidden;
    padding: 10px;
}

/* Animated hover effect */
.investment-plan .fundsContainer .fund:hover,
.investment-plan .fundsContainer .fund:focus-within {
    background: rgba(61, 81, 242, 0.25);
    border: 2.5px solid var(--primarycolor);
    box-shadow: 0 12px 40px 0 rgba(61, 81, 242, 0.35), 0 1.5px 12px 0 var(--secondarycolor);
    transform: translateY(-8px) scale(1.03);
}

.investment-plan .fundsContainer .fund::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: linear-gradient(120deg, rgba(61, 81, 242, 0.18) 0%, rgba(86, 112, 239, 0.12) 100%);
    opacity: 0.7;
    transition: opacity 0.4s;
    pointer-events: none;
}

.investment-plan .fundsContainer .fund:hover::before,
.investment-plan .fundsContainer .fund:focus-within::before {
    opacity: 1;
    animation: glassMove 1.2s cubic-bezier(.4, 2, .6, 1) forwards;
}

@keyframes glassMove {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(30px) rotate(8deg);
    }
}

/* Ensure fund content is above glass effect */
.investment-plan .fundsContainer .fund>* {
    position: relative;
    z-index: 1;
}

.investment-plan .fundsContainer .fund {
    margin-top: 3em;
}

.fundType {
    color: var(--white);
    margin-bottom: 1em;
    font-size: 1.5rem;
}

@media screen and (max-width:1000px) {
    .investment-plan .fundsContainer {
        display: grid;
        text-align: center;
        grid-template-columns: 1fr 1fr;
        gap: 20px;

    }
}

@media screen and (max-width:525px) {
    .investment-plan .fundsContainer {
        grid-template-columns: 1fr;
        gap: 20px;

    }
}

@media screen and (min-width:800px) {
    .fundSection {
        width: 85%;
    }
}

@media screen and (min-width:1000px) {
    .fundsContainer {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .fund {
        margin-top: 1em;
    }

    .investment-plan .fundsContainer {
        grid-template-columns: 1fr 1fr 1fr;
        text-align: center;
    }

    .fund {
        margin-top: 1em;
    }
}

/* Newsletter */

.newsletter {
    border: 1px solid #fff;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    padding: 0;
    overflow: hidden;
}

.newsletter input {
    font-size: 1.1rem;
    padding: .7em 1.5em;
    width: 100%;
    border: none;
    outline: none;
    background-color: transparent;
}

.newsletter input::placeholder {
    color: var(--lightgrey);
}

.newsletter button {
    background-color: var(--primarycolor);
    font-weight: 700;
}

.newsletterDesc {
    order: 0;
}

.newsletterPic {
    order: 1;
}

@media screen and (min-width:800px) {
    .newsletterDesc {
        order: 1;
    }

    .newsletterPic {
        order: 0;
    }
}

/* Join Now */
footer {
    background-color: var(--lightDark);
    margin-top: 5em;
}

.joinSection,
.footerlinksContainer {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 1em;
}

.joinSection {
    display: flex;
    align-items: center;
    padding: 3em 0em;
}

.joinSection .joinDesc {
    width: 80%;
}

.joinSection button {
    height: auto;
}



.footerlinksContainer {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 1em;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    justify-content: space-between;
    padding-top: 5em;
    border-top: 1px solid var(--lightgrey);
}

.footersociallinkContainer {
    margin-top: 1em;
}

.footerAboutus .sociallinkContainer {
    justify-content: flex-start;
}

.footerlink {
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.linkTitle {
    font-size: 1.5rem;
    margin-bottom: .5em;
}

.footerlink a {
    color: var(--white);
    margin-bottom: 1em;
    transition: all .5s ease-in-out;
}

.footerlink a:hover {
    transform: translateX(10px);
}

.footerCopyright {
    background-color: var(--darkblue);
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2em;
}

.footerCopyright p {
    text-align: center;
}

.developedBy {
    font-weight: bold;
    color: var(--white);
}

@media screen and (min-width:700px) {
    .footerlinksContainer {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}


/* Contact page */
.contactSection {
    margin-top: 2em;
}

.contactformContainer {
    display: flex;
    flex-direction: column;
    order: 1;
}

.contactPic {
    order: 0;
    width: 150px;
    background-color: rgba(241, 241, 241, .05);
    border-top-left-radius: 20%;

}

.contactPic img {
    width: 100%;
}

.contactForm div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contactInput {
    width: 100%;
    font-size: 1.1rem;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 20px;
    border: none;
    outline: none;
    border: 2px solid var(--white);
    background-color: transparent;
    resize: none;
    color: var(--white);
}

.contactInput::placeholder {
    color: var(--lightgrey);
    text-transform: capitalize;
}

.contactBtn {
    width: 200px;
}

.addressHeader {
    text-align: center;
    color: var(--white);
    margin-bottom: 2em;
}

.address {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-content: space-between;
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.eachAddress h1 {
    color: var(--white);
    margin-bottom: .5em;
    font-size: 1.5rem;
}

.eachAddress p {
    margin-bottom: 1em;
}

@media screen and (min-width:800px) {
    .contactformContainer {
        order: 0;
    }

    .contactPic {
        order: 1;
    }

    .address {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* About Us */
.aboutusDesc {
    order: 0;
}

.statusContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.status h1 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: lighter;
}

.status h1 b {
    font-weight: bold;
    font-size: 2rem;
}

/* offer */
.services {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    margin-top: 4em;
}

.aboutusimgContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.aboutusimgContainer img {
    width: 100%;
    border-radius: 10px;
}


.offers {
    margin-top: 5em;
    display: grid;
    gap: 50px;
}

.eachOffer {
    display: flex;
    align-items: flex-start;
}

.eachOffer img {
    margin-right: 1em;
}

.offerDesc h1 {
    margin-bottom: .5em;
    font-size: 1.5rem;
}

/* video */

.videoSection {
    display: grid;
}

.videoSectionHeader {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: .5em;
    font-weight: bold;
}

.video {
    position: relative;
    margin-bottom: 1em;
    border-radius: 20px;
    overflow: hidden;
}

.thumbnail {
    width: 100%;
}

.playIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

/* Team */

.teamSection {
    margin-top: 5em;
}

.eachTeam {
    background-color: transparent;
    padding: 0;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.teamPic {
    position: relative;
    width: 80%;
    margin: auto;
}

.eachTeam img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.teamSocialLink {
    position: absolute;
    left: 50%;
    bottom: -25%;
    transform: translate(-50%);
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s ease-in-out;
}

.teamSocialLink img {
    width: 20px;
    margin-left: 1em;
}

.teamName {
    white-space: collapse;
}

.eachTeam:hover .teamSocialLink {
    bottom: 10%;
}


@media screen and (min-width:800px) {
    .aboutusDesc {
        order: 1;
    }

    .statusContainer {
        gap: 50px;
        grid-template-columns: 1fr 1fr;
    }

    .offers {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .videoSection {
        grid-template-columns: 1fr 3fr;
    }

    .videoSectionHeader {
        z-index: 1;
        transform: translateX(50%);
    }

}

@media screen and (min-width:1000px) {
    .offers {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .videoSectionHeader {
        font-size: 3.5rem;
    }
}



/* Navbar Container */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--navbar-bg);
    padding: 0 20px;
    height: 70px;
    border-bottom: 1px solid var(--navbar-border);
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
}

/* Logo */
.navbar .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--logo-color);
    cursor: pointer;
    user-select: none;
}

/* Menu */
.menu {
    display: flex;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
    cursor: pointer;
    padding: 10px 5px;
    font-weight: 500;
    font-size: 0.9rem;
    user-select: none;
}

.menu-item:hover,
.menu-item:focus {
    color: var(--menu-hover);
}

.menu-item a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    padding: 4px 7px;
    border-radius: 6px;
    transition: color 0.3s, background 0.3s;
    display: inline-block;
}

.menu-item a:hover,
.menu-item a:focus {
    color: var(--primarycolor);
    background: rgba(61, 81, 242, 0.08);
    text-decoration: none;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dropdown-bg);
    border: 1px solid var(--dropdown-border);
    border-radius: 4px;
    min-width: 180px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 18px;
    color: var(--body-color);
    font-size: 0.9rem;
    white-space: nowrap;
}

.dropdown-item:hover {
    background-color: var(--dropdown-hover-bg);
    color: var(--dropdown-hover-color);
}

/* Right side user actions */
.user-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.user-actions .btn {
    font-size: 0.9rem;
    padding: 8px 18px;
    border-radius: 10px;
    border: 1.5px solid var(--btn-border);
    background-color: var(--btn-bg);
    color: var(--btn-color);
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.user-actions .btn:hover {
    background-color: var(--btn-hover-bg);
    color: var(--btn-hover-color);
}

.user-actions .btn.primary {
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-color);
}

.user-actions .btn.primary:hover {
    background-color: var(--btn-primary-hover-bg);
}



/* Responsive Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 24px;
    height: 20px;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    background-color: var(--primarycolor);
    border-radius: 2px;
}

/* Mobile menu */
@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--navbar-bg);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid var(--navbar-border);
    }

    .menu.open {
        max-height: 600px;
    }

    .menu-item {
        padding: 15px 20px;
        border-bottom: 1px solid var(--dropdown-border);
    }

    .dropdown {
        position: relative;
        border: none;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .user-actions {
        flex-direction: column;
        padding: 15px;
    }

    .user-actions .btn {
        width: 100%;
    }

    .dropdown.open {
        max-height: 500px;
    }

    .dropdown-item {
        padding-left: 40px;
    }

    .hamburger {
        display: flex;
    }
}

.howItWorksSection {
    padding: 60px 0 40px 0;
}

.howItWorksDesc {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.howItWorksSteps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 36px;
}

.howItWorksStep {
    /* background: linear-gradient(135deg, rgba(61,81,242,0.13) 0%, rgba(13,16,44,0.18) 100%); */
    border-radius: 18px;
    box-shadow:
        4px 4px 18px 0 rgba(13, 16, 44, 0.13),
        -4px -4px 18px 0 rgba(255, 255, 255, 0.08),
        0 2px 8px 0 rgba(61, 81, 242, 0.10);
    padding: 32px 24px 24px 24px;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.25s, background 0.25s;
    border: 1.5px solid rgba(61, 81, 242, 0.10);
    backdrop-filter: blur(2px);
}

.howItWorksStep:hover {
    box-shadow: 0 8px 32px rgba(61, 81, 242, 0.13);
}

.stepIcon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3d51f2 60%, #131154 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(61, 81, 242, 0.10);
}

.stepArrow {
    margin: 0;
    display: flex;
    align-items: center;
}

.stepNumber {
    font-size: 1.3em;
    font-weight: bold;
    color: #3d51f2;
    margin-bottom: 6px;
    display: block;
}

.stepTitle {
    font-size: 1.18em;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 10px 0 6px 0;
    color: #ffffff;
    font-family: var(--header-font-1);
    text-shadow: 0 2px 8px rgba(61, 81, 242, 0.08);
    padding: 15px;
    letter-spacing: 2px;
}

.stepDesc {
    font-size: 1.02em;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.01em;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    text-shadow: 0 1px 6px rgba(61, 81, 242, 0.06);
    margin: 0;
}

@media (max-width: 786px) {
    .howItWorksSteps {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .howItWorksStep {
        width: 90%;
        max-width: 340px;
    }
}

@media (max-width: 768px) {
    .howItWorksSteps {
        flex-direction: column !important;
    }

    .stepArrow .arrow-horizontal {
        display: none !important;
    }

    .stepArrow .arrow-vertical {
        display: inline-block !important;
    }
}

@media (min-width: 769px) {
    .stepArrow .arrow-horizontal {
        display: inline-block !important;
    }

    .stepArrow .arrow-vertical {
        display: none !important;
    }
}


.carouselContainer.swiper {
    padding-bottom: 60px;
}

/* Optional: style arrows for better appearance */
.swiper-button-prev,
.swiper-button-next {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(61, 81, 242, 0.08);
    width: 56px;
    height: 56px;
    color: #3d51f2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    border: 1px solid #e0e0e0;
    transition: background 0.2s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #3d51f2;
    color: #fff;
}

/* Hide default absolute positioning */
.swiper-button-prev,
.swiper-button-next {
    top: auto !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
}