
:root {
    --primary-purple: #d912db;
    --secondary-purple: #752eab;
    --dark-bg: #000;
    --darker-bg: #06061a;
    --card-bg: #1a1a3e;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --c: 145;
    --purple-primary: #8b5cf6;
    --purple-secondary: #a855f7;
    --pink-primary: #ec4899;
    --pink-secondary: #f472b6;
    --blue-primary: #3b82f6;
    --dark-card: #1a1a1a;
    --dark-gray: #2a2a2a;

}

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

body {
    background: var(--dark-bg);
    color: var(--text-light);
    font-family: "Poppins", Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}
.img-logo{
    height: 100px;
    margin-top: -40px; /* Example: Shifts the image up by 20px */
    margin-bottom: -40px;
    margin-left: -30px;
}
.hiw{
    background: #10142f !important;
    background: linear-gradient(65deg, #10142f 70%, #412440) !important; 
}
.navbar {
    background: #000 !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}
.navbar div.container{
    background: #1a1f33 !important;
    border-radius: 30px;
    padding: 0;
    padding-left: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
}
.navbar .navbar-collapse{

}
.menu{
    position: absolute;
    top: 25px;
    left: 27%;
    display: none;
}
.menu:hover{
    cursor: pointer;
}
.bar{
    display: none;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--secondary-purple);
}
.mobile-nav{
    /*    display: none;*/
    position: fixed;
    height: 100%;
    background: #000;
    z-index: 9999;
    opacity: 0.97;
    padding: 10px ;
    width: 280px;
    display: block;
    left:-100%;
    transition: 0.3s;
}
.mobile-nav.active{
    left: 0;
}
.mobile-nav ul {
    list-style: none;
}
.mobile-nav ul li{
    padding-top: 10px;
    padding-bottom: 10px;
}
.mobile-nav ul li a{
    color: var(--primary-purple) !important;
    font-size: 1.3em;
    font-weight: bold;
}
.mobile-nav-header{
    padding: 10px;

}
.collapse-mobile-nav i{
    font-size: 1.5em;
    text-align: right;
    padding: 10px;
}
.collapse-mobile-nav i:hover{
    cursor: pointer;
}
@media only screen and (max-width: 785px) {
    .menu,.bar{
        display: block;
    }
    .menu.active .bar:nth-child(2){
        opacity: 0;
    }
    .menu.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-element.active{
        right: 0;
        background-color: #fff;
        width: 80%;
        padding: 10px;
        z-index: 9999;
        height: 100%;
        display: block;
    }
}
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: white !important;
}
ul.navbar-nav{
    background-color: #000;
    border-radius: 35px;
    padding: 2px;
}
ul.navbar-nav a.active{
    background-color: #fff;
    color: #1a1f33 !important;
    font-weight: bold;
    border-radius: 25px;              
}
.navbar-nav .nav-link {
    color: var(--text-light) !important;
    margin: 0 0.5rem;
    transition: color 0.3s;
    padding: 2px 15px !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-purple) !important;
}

.btn-primary-custom {
    background: linear-gradient(var(--primary-purple), var(--secondary-purple)) !important;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}
.btn-cta {
    background: linear-gradient(135deg, #a017cb 20%, #365ffc 80%) !important;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
}
.hero-section {
    /*                background: linear-gradient(135deg, var(--dark-bg) 0%, var(-- darker-bg) 50%, #1a1a3e 100%);*/
    /*                background-image: url("../imgs/blink.jpg");*/
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: red;
    /*                mask: radial-gradient(calc(var(--c)*1%) 100% at 50% calc(-100%*cos(asin(50/var(--c)))),#0000 calc(100% - 1px),#000);
                    clip-path: ellipse(calc(var(--c)*1%) 100% at top); */
}
.carousel{
    padding-top: 70px;
    width: 100%;
    mask: radial-gradient(calc(var(--c)*1%) 100% at 50% calc(-100%*cos(asin(50/var(--c)))),#0000 calc(100% - 1px),#000);
    clip-path: ellipse(calc(var(--c)*1%) 100% at top); 
}
.carousel-inner,.carousel-item{
    height: 100%;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #000 0%, #000 25%, rgba(236, 72, 153, 0.05) 50%, #000 75%, transparent 100%);
}

.floating-cards {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(-50%) rotate(-5deg);
    }
    50% {
        transform: translateY(-60%) rotate(5deg);
    }
}

.card-mockup {
    width: 300px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-purple), var (--secondary-purple));
    border-radius: 15px;
    margin: 1rem 0;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.card-mockup::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.stats-section {
    padding: 2rem 0;
    text-align: center;
    background: #000;

}

.stats-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-purple);
}

.how-it-works {               
    background: var(--dark-bg);
}

.feature-card {
    background: transparent;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    /*                border: 1px solid rgba(139, 92, 246, 0.1);*/
    transition: transform 0.3s, box-shadow 0.3s;
}

/*            .feature-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
            }*/

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple), var (--secondary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.feature-card ul{
    min-height: 150px;
    display: flex;
    flex-direction: column;
}
.feature-card li{
    font-size: 0.8em;
    display: flex; /* Makes each li a flex container */
    align-items: flex-start;
    padding-left: 5px;
}


.feature-card li::before {
    content: '';

}
.why-choose {
    padding: 2rem 0;
}

.numbered-card {
    background: #262642;
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(139, 92, 246, 0.1);
    height: 100%;
    text-align: center;
}

.number-badge {
    position: absolute;
    top: -15px;
    left: 45%;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;

}
.number-badge::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary));
    opacity: 0.2;
    filter: blur(20px);
    z-index: 1;
}
.number-badge-1 {
    background: #f59e0b;
}
.number-badge-1::before {
    background: linear-gradient(135deg, #f59e0b, #f59e0b);
}
.number-badge-2 {
    background: var(--primary-purple);
}
.number-badge-2::before {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple));
}
.number-badge-3 {
    background: #ef4444;
}
.number-badge-3::before {
    background: linear-gradient(135deg, #ef4444, #ef4444);
}
.numbered-card a,a{
    text-decoration: none;
}
.cta-section {
    padding: 2rem 0;
    text-align: center;
    background: var(--dark-bg);
}
.cta-section .container{
    background: #000004;
    padding: 20px;
    max-width: 70%;
}

.cta-circle {
    width: 300px;
    height: 300px;
    /*                border: 3px solid var(--primary-purple);*/
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    position: relative;
    background: #000 !important;
    z-index: 1;
}
.cta-c{
    z-index: 1000;
    width: 250px;
    height: 250px;
    /*                border: 3px solid var(--primary-purple);*/
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    position: relative;
    background: #000 !important;
    z-index: 1;
}
.cta-circle::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(180deg, #950aa6, #0e00a5);
    opacity: 0.95;
    filter: blur(4px);
    z-index: -1;
}
.cta-circle2 {
    width: 100px;
    height: 100px;
    /*                border: 3px solid var(--primary-purple);                */
    /*                border-image: linear-gradient(135deg, var(--purple-primary), var(--pink-primary)) 1;*/
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
    position: absolute;
    left: 60%;
    top: 70%;
    background: #000;
}
.cta-circle2::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary));
    opacity: 0.2;
    /*  filter: blur(20px);*/
    z-index: -1;
}
.faq-section {
    padding: 1rem 0;
    background: #000;
}
.faq-section .contents {
    max-width: 70%;
    margin: auto;
    padding: 40px;
    background: linear-gradient(135deg, #2e0b36 50px, #000 350px);
    border-left: 0.5px #121012 solid;
    border-right: 0.5px #121012 solid;
    border-top: 0.5px #121012 solid;
    border-bottom: 0.5px #080708 solid;
    border-radius: 10px;
}

.faq-item {
    background: linear-gradient(#3a383b, #000) !important;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: none !important;
}

.faq-header {
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-header:hover {
    background: rgba(139, 92, 246, 0.05);
}
.accordion-button{
    background: transparent  !important;
    color: var(--text-light);
    padding: 5px;
    border: none;
}

.faq-item .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--text-light);
    box-shadow: none;
}

.faq-item .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.footer {
    background: var(--dark-bg);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a, a.contact-us {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover, a.contact-us:hover {
    color: var(--primary-purple);
}

.newsletter-input {
    background: var(--card-bg);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--text-light);
    padding: 0.75rem;
    border-radius: 5px;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}
.btn-outline-dark{
    border: 1px #fff solid;
    color: #fff;
}
.img-footers{
    height: 40px;
}
.cbn{
    margin-left: -5px;
    margin-top: -5px;
}
.ndpc{
    margin-left: -5px;
    margin-top: -5px;
    height: 27px;
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .floating-cards {
        display: none;
    }

    .hero-section {
        padding: 2rem 0;
    }
}

a.contact-us{
    font-size: 0.9em;
}
@media (max-width: 1000px) {
    .carousel{
        padding-top: 75px;
    }
    .carousel img {
        min-height: 30vh;
    }
    .hero-section {
        min-height: 60vh;
    }
    .navbar div.container{              
        width: 90%;
    }
    .cta-section .container{
        max-width: 100%;
    }
    .faq-section .contents {
        max-width: 100%;
        padding: 40px 10px;
    }
}
