* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* overflow: visible !important; */
    scroll-behavior: smooth;
}


body {
    background: #020415;
}

h1 {
    font-size: 50px;
    font-weight: 800;
    color: #fff;
}

h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
}

h3 {
    position: relative;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #8E2DE2;
    letter-spacing: 2px;
    display: inline-block;
}


h3::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #8E2DE2;
    border-radius: 50%;
    box-shadow: 0 0 10px #8E2DE2, 0 0 20px #8E2DE2, 0 0 40px #8E2DE2;
    animation: pulse 1.5s infinite alternate;
}

/* Glowing Animation */
@keyframes pulse {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(-50%) scale(1.5);
        opacity: 0.6;
    }
}


h4 {
    color: #ccc;
    font-size: 1.2rem;
}


p {
    color: gray;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
}


.rule {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.checkbox {
    height: 1rem;
    width: 1rem;
    background-color: #374151;
    border: 1px solid #4B5563;
    border-radius: 0.25rem;
    transition: all 0.15s ease-in-out;
    accent-color: #8b5cf6;
}

.checkbox:focus {
    outline: none;
    border-color: #8b5cf6;
}


@media (max-width: 769px) {
    h5 {
        font-size: 1rem;
    }

    h4 {
        font-size: 1rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 12px;
    }

    a {
        font-size: 12px;
    }

}

@media (max-width: 660px) {

    h3 {
        font-size: 12px;
    }

    p {
        font-size: 11px;
    }

    h3::before {
        width: 5px;
        height: 5px;
    }
}

/* // ToolTip */
/* @keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0.9);
    }

    10% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-50%) scale(0.95);
    }
} */



.withdrawal-card {
    width: 100%;
}

@media (min-width: 768px) {
    .withdrawal-card {
        width: 256px;
    }
}


.withdrawal-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    /* py-3 px-4 */
    background: linear-gradient(90deg, #4A00E0, #8E2DE2);
    border-radius: 0.5rem;
    /* rounded-lg */
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    color: white;
    text-align: center;
    cursor: pointer;
    border: none;
}

.withdrawal-btn:hover {
    background: linear-gradient(90deg, #8E2DE2, #4A00E0);
    /* Futuristic gradient */
}

.withdrawal-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(142, 45, 226, 0.5);
}

.payment-btn {
    background-color: rgba(31, 41, 55, 0.1);
    backdrop-filter: blur(2px);
    border-radius: 0.75rem;
    border: 2px dashed #4b5563;
    overflow: hidden;
    transition: all 0.3s ease;
}

.support-container {
    backdrop-filter: blur(16px);
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    padding: 2rem;
    /* border: 1px solid #374151;  */
}

.support-hero {
    background: linear-gradient(90deg, #8E2DE2, #4A00E0);
    padding: 1.5rem;
    /* p-6 (24px) */
}

.search-input input:focus {
    outline: none;
}


.loader-modal {
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1100;
}

.custom-spin {
    width: 50px;
    height: 50px;
    border: 2px solid #4A00E0;
    animation: spin 1s linear infinite;
}

/* Global Styles */


.main-wrapper {
    height: 1000px;
    display: flex;
    justify-content: center;
    background: linear-gradient(rgba(0, 34, 68, 0.8), rgba(0, 34, 68, 0.4)),
        url('../img/bg-1.jpg');
    background-size: cover;
    background-position: center;
}

.main-container {
    height: 500px;
    display: flex;
    justify-content: center;
    background: linear-gradient(rgba(0, 34, 68, 0.8), rgba(0, 34, 68, 0.4)),
        url('../img/nav-item-bg.jpg');
    background-size: cover;
    background-position: center;
}


.nav {
    position: fixed;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out;
    z-index: 1000;
}

.nav-items {
    width: 90%;
}

.header-logo {
    width: 90px;
    height: 90px;
}

/* When scrolled */
.nav.scrolled {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    background-color: #020415;
    box-shadow: 0px 2px 4px rgb(5, 12, 24);

}

.header-menu {
    display: flex;
    justify-content: space-between;
}

#mobile-menu {
    width: 100%;
    background: #020415;
    border-radius: 0 0 30px 30px;
    padding: 10px 20px;
    margin-top: 10px;

}

a:hover {
    text-decoration: none;
    color: #8E2DE2;
    transition: all 0.3s ease-in-out;
}

a.active {
    color: #8E2DE2;
}

.btn {
    background: linear-gradient(90deg, #4A00E0, #8E2DE2);
    /* Futuristic gradient */
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(142, 45, 226, 0.5);
    /* Neon glow effect */
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Glow Animation */
.btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, rgba(142, 45, 226, 0.8), rgba(74, 0, 224, 0.8));
    z-index: -1;
    filter: blur(15px);
    opacity: 0.7;
}

/* Hover Effect */
.btn:hover {
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(241, 237, 245, 0.8);
}

/* Active Effect */
.btn:active {
    transform: scale(0.98);
    box-shadow: 0 0 10px rgba(142, 45, 226, 0.9);
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: neon-border 2s linear infinite;
}

.btn-border {
    border: 2px solid rgba(0, 34, 68, 1);
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

/* Neon Animation */
@keyframes neon-border {
    0% {
        border-color: rgba(142, 45, 226, 0.2);
    }

    50% {
        border-color: rgba(255, 255, 255, 0.7);
    }

    100% {
        border-color: rgba(142, 45, 226, 0.2);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-container {
    /* width: 100%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nav-hero-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-sub-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.nav-hero-sub-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.hero-text-container {
    max-width: 530px;
    padding: 20px;
    margin-top: 20%;
}

.nav-hero-text-container {
    width: 100%;
    padding: 20px;
    margin-top: 5%;
}

.nav-hero-text-container p {
    font-size: 18px;
    font-weight: bold;
}


.hero-img-container {
    top: 22%;
    left: 25px;
    align-items: center;
}


/* Adjustments for medium and larger screens */
@media (min-width: 768px) {
    .hero-sub-container {
        flex-direction: column;
        justify-content: space-between;
    }

    .hero-text-container {
        max-width: 530px;
        margin-left: 100px;
        margin-top: 20%;
    }

    /* .hero-img-container {
        margin-top: 0;
    } */
}


/* Adjustments for small screens */
@media (max-width: 768px) {
    .header-menu {
        display: none;
    }
    
    .btn-border {
        background: linear-gradient(90deg, #4A00E0, #8E2DE2);
        border: 1px solid white;
    }

    .hero-sub-container {
        align-items: end;
    }
    
    .hero-img-container {
        width: 100%;
        margin-top: 0;
        left: 0;
        top: 0;
        align-items: center;
    }

    .animate-spin-slow {
        left: -10px;
        padding: 20px;
    }

    .animate-spin-slow img {
        width: 80%;
    }

    .sub-hero-container .animate-bounce{
        width: 70%;
        left: 0;
        bottom: 0;
        align-items: start;
    }

    .sub-hero-container .animate-bounce img {
        margin-left: 10%;
        margin-top: 20%;
    }

    .single-about-box .animate-bounce {
        width: 100%;
        
    }
     
}




.animate-spin-slow {
    display: flex;
    left: -15%;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.sub-hero-container .animate-bounce {
    display: flex;
    top: 20px;
    left: -12%;
    align-items: start;
    padding: 10px;
    margin-top: 35px;
}


.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

.animate-bounce {
    animation: bounce 4s infinite;
}


@media (max-width: 430px) {
    .about-card .container {
        margin-top: 0;
    }
}





.brand-area {
    display: flex;
    width: 90%;
    /* max-width: 1000px; */
    height: 30vh;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 2px 2px rgba(0, 34, 68, 0.3);

    background: url('../img/sponsor-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    position: absolute;
    left: 50%;
    bottom: -10%;
    transform: translateX(-50%);
}

.brand-about-area {
    display: flex;
    width: 100%;
    height: 30vh;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 2px 2px rgba(0, 34, 68, 0.3);

    background: url('../img/sponsor-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.brand-container {
    width: 100%;
    max-width: 1200px;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-wrapper {
    width: 100%;
    max-width: 1200px;
    height: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    padding: 20px;
}




@media (max-width: 768px) {
    .brand-area {
        width: 95%;
        height: auto;
        padding: 20px;

    }

    .brand-img-container:nth-child(2),
    .brand-img-container:nth-child(3) {
        display: none;
    }
}


/* // Swiper Styles */
.swiper-container {
    width: 90%;
    height: auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.brand-area .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.swiper-slide {
    flex-shrink: 0;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-img {
    max-width: 100px;
    height: auto;
    object-fit: contain;
    margin-left: 20px;
}

.swiper-pagination {
    display: none !important;
    bottom: 5px !important;
}

.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}



/* about area */
.about-area {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #020415;
}

@media (max-width: 768px) {
    .about-area {
        height: 100%;
        padding-top: 20vh;
    }
}

.container {
    display: flex;
    padding: 10px;
    width: 90%;
    max-width: 1200px;
    justify-content: center;
}

/* Default to column layout */
.about-card {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
}

/* Ensure row layout on large screens */
@media (min-width: 1024px) {
    .about-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .about-card>div {
        flex: 1;
    }
}





.about-thumb img {
    width: 100%;
}

.about-tmb {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}


.about-titles h4 {
    font-size: 1.2rem;
    color: #fff;
}

.check-circle {
    background-color: #8E2DE2;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.trading-view {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #020415;
}


.tradingview-widget-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(20, 20, 50, 0.1), rgba(1, 1, 46, 0.9));
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    padding: 20px;
}

.tradingview-widget-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}




/*feature area */

.feature-area {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 34, 68, 0.7), rgba(0, 34, 68, 0.8)),
        url('../img/bg-4.jpg');
    background-size: cover;
    background-position: center;
}

.about-feature-area {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #020415;
}

.feature-container {
    max-width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.about-feature-container {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: #292C3B solid 1px;
}

.feature-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    margin-top: 20px;
}

.about-feature-grid {
    /* border: 1px solid white; */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    margin-top: 20px;
}

/* Media Queries for Responsive Behavior */
@media (max-width: 768px) {
    .feature-area {
        height: 100%;
    }

    .about-feature-area {
        height: 100%;
    }

    .feature-container {
        max-width: 100%;
        height: 100%;
    }

    .about-feature-container {
        max-width: 100%;
        height: 100%;
    }


    .feature-grid {
        max-width: 100%;
    }

    .about-feature-grid {
        max-width: 100%;
    }

    .crypto-widget-2 {
        width: 100%;
    }

}


.feature-card {
    max-width: 30%;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    flex: 1 1 30%;
}

.about-feature-card {
    max-width: 30%;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    flex: 1 1 30%;
}

/* Media Queries for Responsive Behavior */
@media (max-width: 1024px) {
    .feature-card {
        max-width: 45%;
        flex: 1 1 45%;
    }

    .about-feature-card {
        max-width: 45%;
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .feature-card {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .about-feature-card {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

/* Hover Effect */
.feature-card:hover {
    background: linear-gradient(rgba(0, 34, 68, 0.3), rgba(0, 34, 68, 0.4)),
        url('../img/service.png');
    background-size: cover;
    background-position: center;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    border-color: rgba(59, 130, 246, 0.5);
    cursor: pointer;
}

.feature-card:hover .icon-wrapper {
    background: #4A00E0;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(241, 237, 245, 0.8);
    transition: all 0.3s ease;
}


.feature-card:hover .icon-wrapper img {
    filter: brightness(0) invert(1);
}

.about-feature-card:hover {
    background: transparent;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    border-color: rgba(59, 130, 246, 0.5);
    cursor: pointer;
}

.about-feature-card:hover .about-icon-wrapper {
    background: #4A00E0;
    color: #4A00E0;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(241, 237, 245, 0.8);
    transition: all 0.3s ease;
}

.about-feature-card:hover .about-icon-wrapper img {
    filter: brightness(0) invert(1);
}




.about-feature-card:hover p {
    color: #4A00E0;
}



.icon-wrapper {
    width: 70px;
    height: 70px;
    background: #020415;
    border-radius: 50%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.about-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #020415;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.about-icon-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.crypto-widget-2 {
    width: 97%;
    margin-top: 40px;
}


/* Pricing Area  */
.pricing-area {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #020415;
}

.pricing-container {
    max-width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.pricing-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    margin-top: 20px;
}

.pricing-card {
    position: relative;
    width: 350px;
    min-width: 300px;
    max-width: 100%;
    height: 500px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    background-color: #141227;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding-top: 60px;
    z-index: 1;
}

/* Media query for larger screens */
@media (min-width: 1200px) {
    .pricing-card {
        flex: 1 1 calc(33.333% - 40px);
        max-width: calc(33.333% - 40px);
    }
}

/* Media query for medium screens */
@media (max-width: 1199px) and (min-width: 768px) {
    .pricing-card {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

/* Media query for small screens */
@media (max-width: 768px) {
    .pricing-area {
        height: 100%;
    }

    .pricing-container {
        max-width: 100%;
        height: 100%;
        margin-top: 20px;
    }

    .pricing-grid {
        width: 100%;
    }

    .pricing-card {
        flex: 1 1 100%;
        max-width: 100%;
        height: 100%;
    }

}

.pricing-thumb {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    text-align: center;
    border: none;
    border-radius: 0 0 5px 5px;
    padding: 10px;
    background: #4A00E0;
}

.pricing-thumb h4 {
    color: #ccc;
}

.pricing-title {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.pricing-title h5 {
    font-size: 25px;
    color: #fff;
}

.pricing-title p {
    color: #fff;
}

.pricing-title p span {
    color: #4A00E0;
}

.pricing-list {
    width: 100%;
    padding: 10px;
}

.pricing-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    margin-bottom: 10px;
    color: #fff;
}

.pricing-list .line-through {
    text-decoration: line-through;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    color: #ccc;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.pricing-card:hover .pricing-list .line-through {
    opacity: 1;
    max-height: 20px;
}

.pricing-card:hover .btn {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(241, 237, 245, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(241, 237, 245, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .pricing-thumb h4 {
        font-size: 14px;
    }

    .pricing-title h5 {
        font-size: 16px;
    }

    .pricing-title p {
        font-size: 24px;
    }

    .pricing-title p span {
        font-size: 14px;
    }

    .pricing-list li {
        font-size: 12px;
    }

    .pricing-card:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Pricing Area Ends  */


/* Market Cap Are */
.market-area {
    height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #020415;
}

.market-container {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom-psuedo .sub-text h3::before {
    content: "";
    position: absolute;
    right: -15px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #8E2DE2;
    border-radius: 50%;
    box-shadow: 0 0 10px #8E2DE2, 0 0 20px #8E2DE2, 0 0 40px #8E2DE2;
    animation: pulse 1.5s infinite alternate;
}


/* Parent Container */
.crpto-container-card {
    width: 100%;
    background-color: transparent;
    padding: 16px;
}

.market-grid,
.crypto-card {
    display: grid;
    grid-template-columns: 4fr 2fr 2fr 2fr 2fr;
    gap: 16px;
    align-items: center;
    padding: 12px 16px;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
}

/* Ensure both have the same font size */
.market-grid {
    font-size: 19px;
    font-weight: lighter;
    background: transparent;
    padding: 20px;
}

.crypto-card {
    font-size: 16px;
    background-color: #101227;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
}

/* Ensuring all items align properly */
.crypto-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.crypto-info img {
    width: 50px;
    height: 50px;
}

.crypto-name {
    font-size: 23px;
}

.crypto-info p span {
    color: #bbb6b6;
}

.crypto-change {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #88dba9;
}

.change-icon {
    width: 14px;
    height: 14px;
}






@media (max-width: 768px) {
    .market-area {
        width: 100%;
        height: 100%;
    }

    .market-container {
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .custom-psuedo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        margin-top: 20px;
    }

    .crypto-container-card {
        width: 100%;
    }

    .market-grid,
    .crypto-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
    }

    .crypto-card {
        width: 100% !important;
        max-width: none !important;
    }

    .market-grid {
        font-size: 16px;
    }

    .market-grid div:first-child {
        font-weight: bold;
        font-size: 18px;
    }

    .market-grid div {
        font-weight: normal;
        font-size: 12px;
    }

    .crypto-name {
        font-weight: bold;
        font-size: 18px;
    }

    .crypto-price {
        font-weight: normal;
        font-size: 16px;
    }

    .crypto-change,
    .crypto-marketcap,
    .crypto-supply,
    .crypto-value {
        font-size: 12px;
    }

}


/* Testimonial Area */
section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 34, 68, 0.7), rgba(0, 34, 68, 0.8)),
        url('../img/brand-bg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}

.testimonial-container {
    width: 90%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.testimonial-swiper {
    /* border: 1px solid red; */
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.testimonial-swiper .swiper-wrapper {
    /* border: 1px solid red; */
    display: flex;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.testimonial-card {
    width: 350px;
    min-width: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    background-color: rgba(20, 18, 39, 0.5);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.rating {
    color: #8E2DE2;
}

.rating span {
    color: #ccc;
}

.testimonial-card:hover {
    background: url('../img/tranding-2.png') center/cover no-repeat;
    background-blend-mode: overlay;
    background-color: rgba(20, 18, 39, 0.5);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}



.testimonial-info img {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
}

.testimonial-info h4 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 5px;
    color: #fff;
}

.testimonial-info p {
    font-size: 16px;
    font-weight: lighter;
    color: rgba(255, 255, 255, 0.384);
}

.testimonial-card {
    color: rgba(255, 255, 255, 0.384);
}

@media (max-width: 768px) {
    .testimonial-container {
        width: 100%;
        padding: 10px;
    }

    .testimonial-swiper {
        width: 100%;
        height: 100%;
    }

    .testimonial-card {
        width: 100%;
        max-width: 100%;
        flex: 1 1 100%;
    }
}

.action-container {
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 34, 68, 0.2), rgba(0, 34, 68, 0.2)),
        url('../img/About_1.png') no-repeat;
    background-size: cover;
    /* background-position: center; */
}

.action-container .container {
    padding: 20px;
}



.action-container-left-column {
    padding: 20px;
}

.action-container-right-column {
    padding: 20px;
}

.action-container-right-column .animate-spin-slow {
    display: flex;
    top: 28%;
    left: -40%;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.action-container-right-column .animate-bounce {
    display: flex;
    top: 30%;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .action-container {
        height: 500px;
    }

    .action-container-right-column {
        display: none;
    }

    .action-container-left-column {
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .action-container-left-column h2 {
        font-size: 1.5rem;
    }

    .action-container-left-column p {
        font-size: 1rem;
    }


}

.footer {
    min-height: 300px;
    height: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #020415;
}

.footer-container {
    width: 90%;
    padding: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .footer {
        min-height: 400px;
    }
}

@media (min-width: 1024px) {
    .footer {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        width: 100%;
    }

    .footer-grid {
        padding: 10px;
    }
}



.grid-card {
    padding: 10px;
}


.icon {
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 10px;
    border-radius: 50%;
    background-color: #292C3B;
    transition: background-color 0.3s ease-in-out;
}

.icon:hover {
    background-color: #4A00E0;
    color: #fff;
}

.newsletter-btn-container {
    width: 100%;
    height: 50px;
    border-radius: 50px;
    background-color: #292C3B;
    display: flex;
    align-items: center;
    padding: 0 5px;
    transition: border 0.3s ease-in-out;
}

.newsletter-btn-container:focus-within {
    border: 2px solid #fff;
}

.newsletter-btn-container input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 0 15px;
    outline: none;
}

.newsletter-btn-container input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn-container button {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #4A00E0;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.newsletter-btn-container button:hover {
    background-color: #8E2DE2;
}

/* about nav styles  */
.skills-area {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #020415;
}

.skills-container {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.skills-grid {
    gap: 20px;
    padding: 20px;
}

@media (max-width: 768px) {
    .skills-area {
        height: 100%;
    }

    .skills-container {
        width: 100%;
        height: 100%;
    }

    .skills-grid {
        width: 100%;
    }

}



.prgress-bar-container {
    height: 10px;
    background: #251E5A;
}

.progress-bar-1 {
    border: rgba(255, 255, 255, 0.1);
    height: 10px;
    background: #735CEA;
}

.progress-text-1 {
    right: 0;
    top: -30px;
}


/* // Counter Area styles */
.counter-area {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 34, 68, 0.1), rgba(0, 34, 68, 0.1)),
        url('../img/call-do.png') no-repeat;
    background-size: cover;
    background-position: center;
}


/* Adjust height for smaller screens */
@media (max-width: 1024px) {
    .counter-area {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .counter-area {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .counter-area {
        min-height: 400px;
        flex-direction: column;
        padding: 30px;
    }
}

.counter-container {
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.counter-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.counter-card {
    text-align: center;
    padding: 20px;
    flex: 1 1 200px;
    /* Ensures flexibility */
}

.counter-title h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Adjust as needed */
    gap: 5px;
    /* Adds spacing between spans */
}

.counter-title h2 span {
    font-size: 1.5rem;
    color: #735CEA;
}

/* //blog area styles */

.blog-area {
    /* min-height: 900px; */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #020415;
    padding: 20px;
}

.blog-card {
    min-width: 290px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(20, 18, 39, 0.6);
    /* Slightly deeper blur */
    box-shadow: 0px 4px 15px rgba(0, 255, 255, 0.1);
    /* Subtle neon glow */
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(15px);
    overflow: hidden;
    position: relative;
}

.blog-container {
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.blog-content {
    padding: 20px;
    text-align: center;
}

.blog-content span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.blog-content h2 a {
    color: #4A00E0;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.blog-content h2 a:hover {
    color: #00ccff;
    text-shadow: 0px 0px 8px rgba(0, 255, 255, 0.4);
}

.blog-content p {
    font-size: 14px;
    line-height: 1.5;
}

.blog-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.5);
    /* Enhanced glow */
    border-color: rgba(59, 130, 246, 0.5);
}


/* Service Area Styles */

.Service-feature-area {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #020415;
}

.service-container {
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: 20px;
}

.service-card {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    background: #141227;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    position: relative;
    /* Make it the reference point */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 60px;
}

.service-card-img {
    width: 90px;
    height: 90px;
    background: #919da4;
    border-radius: 50%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    /* Absolute position */
    bottom: -40px;
    /* Move it slightly below */
    left: 15%;
    transform: translateX(-50%);
    transition: background 0.3s ease-in-out;
    z-index: 10;
    /* Ensure it's above the content */
}

.service-card:hover .service-card-img {
    background: #8E2DE2;
    box-shadow: 0 0 20px rgba(241, 237, 245, 0.8);
    transition: all 0.3s ease;
}


.service-card:hover .service-card-img img {
    filter: brightness(0) invert(1);
}

.service-card h4 {
    position: relative;
    z-index: 5;
    margin-bottom: 40px;
}


@media (max-width: 768px) {
    .Service-feature-area {
        height: 100%;
    }

    .service-container {
        width: 100%;
        height: 100%;
    }

    .service-card {
        gap: 20px;
        margin-bottom: 20px;
    }

    .service-card-img {
        width: 65px;
        height: 65px;
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
    }

    .service-card h4 {
        margin-bottom: 0;
    }

}

@media (max-width: 360px) {
    .service-card-img {
        width: 50px;
        height: 50px
    }
}

@media (max-width: 768px) {
    /* .service-call-to-action {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    } */
}

/* Contact Area Styles */
.info-card {
    width: 100%;
    height: 150px;
    /* Ensuring consistent height */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #141227, #1d1836);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 10px rgba(142, 45, 226, 0.5);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    box-shadow: 0 0 15px rgba(142, 45, 226, 0.4);
}

.info-icon i {
    font-size: 24px;
    color: #fff;
    transition: transform 0.3s ease;
}

.info-card:hover .info-icon i {
    transform: scale(1.2);
}

.info-content {
    width: calc(100% - 80px);
    padding: 10px;
    text-align: left;
    color: #f1f1f1;
}

.info-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.info-content p {
    font-size: 14px;
    color: #b8b8b8;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-card {
        flex-direction: column;
        height: auto;
        align-items: center;
        text-align: center;
        padding: 15px;
    }

    .info-icon {
        margin-bottom: 10px;
    }

    .info-content {
        width: 100%;
        text-align: center;
    }

    .contact-area {
        padding: 0 !important;
    }

    .contact-form {
        width: 100% !important;   
    }

}

.contact-area {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #020415;
    padding: 20px;
}

.contact-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-form {
    width: 90%;
}

/* Form Container */
.crypto-form {
    /* position: relative; */
    background: #141227;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(142, 45, 226, 0.3);
    /* overflow: visible; */
}

/* Input Fields */
.crypto-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: 0.3s ease-in-out;
}

.crypto-input:focus {
    border: 2px solid #8E2DE2;
    box-shadow: 0px 0px 12px rgba(142, 45, 226, 0.6);
    outline: none;
}

/* Placeholder Text */
.crypto-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Submit Button */
.crypto-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #8E2DE2, #4A00E0);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.crypto-btn:hover {
    background: linear-gradient(90deg, #4A00E0, #8E2DE2);
    box-shadow: 0px 0px 15px rgba(142, 45, 226, 0.6);
    transform: scale(1.01);
}

.eye-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.eye-icon:hover {
    color: #fff;
}


.eye-icon:focus {
    outline: none;
}


/* Responsive Tweaks */
@media (max-width: 768px) {
    .crypto-input {
        font-size: 0.9rem;
    }

    .crypto-btn {
        font-size: 0.9rem;
    }

    .iti__country-list {
        z-index: 2 !important;
    }
}



.iti {
    width: 100%;
    z-index: 2 !important;
}

.iti__country-list {
    /* border: 1px solid red; */
    top: 0 !important;
    left: 0 !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    background-color: white !important;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2) !important;
    border-radius: 5px !important;
}

.iti__selected-flag {
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    /* width: 100% !important; */
}


.iti__selected-flag:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

.iti--allow-dropdown input {
    padding-left: 100px !important;
}


/* //Auth Footer styles */
.auth-footer {
    min-height: 200px;
    height: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #020415;
}

.auth-footer-container {
    width: 90%;
    padding: 20px;
}

.chat-container {
    position: fixed;
    bottom: 35px;
    left: 20px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.chat-container button {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    background-color: #4A00E0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;

    /* Glowing effect */
    box-shadow: 0 0 10px rgba(74, 0, 224, 0.6);
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(74, 0, 224, 0.6);
    }

    50% {
        box-shadow: 0 0 20px rgba(74, 0, 224, 1);
    }

    100% {
        box-shadow: 0 0 10px rgba(74, 0, 224, 0.6);
    } 
}

.chat-container button:hover {
    background-color: #8E2DE2;
    box-shadow: 0 4px 10px rgba(142, 45, 226, 0.3);
}

.chat-container button:focus {
    outline: none;
}

.chat-booklet {
    position: relative;
    width: 250px;
    height: 300px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    overflow-y: auto;
}


.chat-booklet a:hover {
    border: none;
    background: #4A00E0;
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.fade-out {
    animation: fadeOut 0.6s ease forwards;
}

/* Base Button Styles */
.back-to-top {
    position: fixed;
    bottom: 35px;
    right: 20px;
    padding: 12px;
    background-color: #4A00E0;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    opacity: 0;
    visibility: block;
    transition: all 0.3s ease;
}


.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 1000;
    animation: bounce 2s infinite;
}


.back-to-top:hover {
    background-color: #8E2DE2;
    box-shadow: 0 4px 10px rgba(142, 45, 226, 0.3);
}



.back-to-top:focus {
    outline: none;
    /* Add a focus ring */
}

/* Icon Styles */
.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}



/* User Dashboard custom styles  */
.profile-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
    /* z-index: 1; */
}

.group:hover .profile-img-overlay {
    opacity: 1;
}

.overlay-btn {
    padding: 8px;
    background: #f3f4f6;
    border-radius: 9999px;
    box-shadow: 0 0 0 2px #d1d5db;
}

.first-name,
.last-name {
    text-transform: capitalize;
}

.bank-transfer-modal::-webkit-scrollbar {
    width: 8px;
}

.bank-transfer-modal::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.bank-transfer-modal::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.bank-transfer-modal::-webkit-scrollbar-thumb:hover {
    background: #555;
}