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

* {
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
    transition: all 0.3s ease-in-out;
}

body {
    background-color: #020617; /* Deep Navy/Slate Black */
    color: #fff;
    font-family: "Outfit", sans-serif;
    overflow-x: hidden;
    padding-top: 140px; /* Precise offset for the fixed header stack */
}

.container {
    width: 100%;
    background: radial-gradient(circle at top right, #0a0a2e 0%, #020617 60%, #000000 100%);
    position: relative;
    padding-bottom: 50px;
}

.glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Standardized header stack */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header {
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(2, 6, 23, 0.4);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-bottom: 1px solid rgba(251, 191, 36, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(2, 6, 23, 0.95);
    padding: 0.6rem 2rem;
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
}

.logo-link h2 {
    transition: transform 0.3s ease;
}

.logo-link:hover h2 {
    transform: scale(1.02);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar img {
    width: 150px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar li {
    list-style: none;
}

.navbar li a {
    padding: 8px 16px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    display: block;
}

.navbar li a:hover {
    color: #fbbf24;
}

.navbar li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fbbf24;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar li a:hover::after {
    width: 30%;
}

.nav-menu .contact {
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24 !important;
    border-radius: 8px;
    background: rgba(251, 191, 36, 0.05);
}

.nav-menu .contact:hover {
    background: rgba(251, 191, 36, 0.15);
    border-color: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
}

.nav-menu .app-login {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    color: #020617 !important;
    font-weight: 700 !important;
    border: none;
    border-radius: 8px;
    padding: 10px 24px !important;
    margin-left: 15px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.nav-menu .app-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
    filter: brightness(1.1);
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

/* ____________main */
.main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    width: 100%;
    margin: auto;
    padding-top: 0;
    /* Removed 80px padding since navbar is now sticky */
    position: relative;
    overflow: hidden;
}

#particles1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.left {
    width: 50%;
    text-align: left;
    z-index: 2;
}

.content {
    width: 80%;
    margin: auto;
}

.content h1 {
    color: #fff;
    font-size: 3.5em;
    font-weight: 800;
    line-height: 1.2;
}

.content span {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.content p {
    color: #94a3b8;
    padding: 4% 0;
    font-size: 18px;
    line-height: 1.6;
}

.btn {
    padding: 12px 24px;
    color: #000;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
    filter: brightness(1.1);
}

.btn2 {
    border: 2px solid #fbbf24;
    margin-left: 10px;
    background: transparent;
    color: #fbbf24;
    box-shadow: none;
}

.btn2:hover {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
}

.right {
    width: 50%;
    display: flex;
    justify-content: right;
    align-items: center;
    position: relative;
    z-index: 2;
}

.box {
    width: 60%;
    height: 500px;
    z-index: 0;
    position: absolute;
    right: 10%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(40px);
}

.img {
    z-index: 1;
    position: relative;
    right: 5%;
}

.img img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Recent Wins Marquee */
.recent-wins {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    z-index: 1999;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding: 0 40px;
    font-size: 0.9rem;
    color: #4ade80; /* Profit Green */
    font-weight: 600;
    letter-spacing: 0.5px;
}

.marquee-content span i {
    margin-right: 8px;
    color: #22c55e;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pulse animation for lead magnet */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(251, 191, 36, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
    }
}

.pulse {
    animation: pulse-gold 2s infinite;
}

/* _________rating */
.sub-container {
    display: flex;
    padding: 2rem 0;
    background: #0f172a;
}

.rating {
    flex-basis: 25%;
    font-size: 12px;
    text-align: center;
    margin: 1% 0;
    letter-spacing: 1px;
}

.rating h1 {
    font-size: 24px;
    font-weight: 700;
}

.sub-container .rating:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.rating div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2%;
}

.rating div h1 {
    padding-left: 5%;
    color: #fbbf24;
}

.rating h2 {
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 14px;
}

/* ___________facilities */
.container_2 {
    display: flex;
    padding: 6% 0;
    flex-direction: column;
    width: 85%;
    margin: auto;
    text-align: center;
}

.boxes {
    display: flex;
    margin-top: 5%;
    gap: 20px;
}

.heading {
    font-size: 2.5em;
    font-weight: 700;
}

.heading span {
    color: #fbbf24;
}

.para {
    width: 60%;
    margin: auto;
    padding: 2% 0;
    color: #94a3b8;
    font-size: 16px;
}

.sub_box {
    flex: 1;
    padding: 40px 20px;
    padding-top: 60px;
    position: relative;
    border-radius: 15px;
}

.sub_box:hover {
    transform: translateY(-10px);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.sub_box p {
    font-size: 14px;
    padding: 15px 0;
    color: #ccc;
    line-height: 1.5;
}

.sub_box h2 {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #fff;
}

.hexagon {
    width: 70px;
    height: 70px;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 2px solid #fbbf24;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hexagon i {
    font-size: 28px;
    color: #fbbf24;
    background: transparent;
}

/* Pricing Section */
.pricing-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    flex: 1;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.pricing-card h1 {
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 10px;
}

.pricing-card ul {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    padding-left: 10px;
}

.pricing-card li {
    padding: 10px 0;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card li i {
    color: #fbbf24;
    margin-right: 10px;
}

.pricing-card.recommended {
    border: 2px solid #fbbf24;
    transform: scale(1.05);
    background: rgba(251, 191, 36, 0.05);
}

.pricing-card.recommended::after {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

/* Profit Calculator */
.calculator-container {
    width: 60%;
    margin: 50px auto;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.input-group {
    margin: 20px 0;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #cbd5e1;
}

input[type=range] {
    width: 100%;
    height: 8px;
    background: #334155;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #fbbf24;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    transition: transform 0.2s;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.result-box {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.result-box h1 {
    font-size: 3rem;
    color: #fbbf24;
    margin: 10px 0;
}

/* ________made-for  */
.box1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    padding: 3rem;
    background: linear-gradient(to right, rgba(251, 191, 36, 0.05), transparent);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.left-content {
    width: 45%;
    text-align: left;
}

.left-content p {
    color: #94a3b8;
    padding: 4% 0;
    font-size: 16px;
}

.right-content {
    width: 50%;
}

.right-content img {
    width: 100%;
    border-radius: 10px;
}

/* FAQ Section */
.faq-container {
    width: 70%;
    margin: 50px auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #fff;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: all 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
    color: #cbd5e1;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
    /* Adjust based on content */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #fbbf24;
}

/* ___________testimonial */
.testimonial {
    width: 100%;
}

.tst-content {
    display: flex;
    width: 70%;
    margin: auto;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.slider-container {
    width: 90%;
    margin: auto;
    padding: 3% 0;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 20px;
}

.item {
    min-width: calc(33.333% - 14px);
    box-sizing: border-box;
    padding: 30px;
    text-align: left;
    margin-left: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.item h1 {
    font-size: 1.2rem;
    color: #fbbf24;
    margin-bottom: 10px;
}

.item p {
    font-style: italic;
    color: #cbd5e1;
}

.item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid #fbbf24;
}

.slider-btn {
    width: 70%;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.slider-btn button {
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
    color: #fbbf24;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn button:hover:not(:disabled) {
    background: #fbbf24;
    color: #000;
}

.slider-btn button:disabled {
    color: #475569;
    border-color: #1e293b;
    cursor: not-allowed;
}

/* _________account box  */
.container_3 {
    padding: 3% 0;
}

.box3 {
    margin: 3% auto;
    padding: 4rem 2rem;
    color: #000;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    /* Darker shadow */
    /* Updated gradient for a more premium look */
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.auth-input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.auth-input:focus {
    border-color: #fbbf24;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.2);
}

.box3 h1 {
    color: #fff;
    font-weight: 900;
    font-size: 2.5rem;
}

.box3 p {
    padding: 1rem 0;
    color: #cbd5e1;
    font-size: 1.1rem;
}

.btn3 {
    background: #fbbf24;
    color: #000;
    border: 2px solid #fbbf24;
    padding: 15px 40px;
}

.btn3:hover {
    background: transparent;
    color: #fbbf24;
}

/* ___________footer */
.footer {
    justify-content: space-between;
    width: 80%;
    margin: auto;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.f_left {
    width: 40%;
}

.f_left img {
    width: 150px;
}

.f_right {
    width: 40%;
    text-align: right;
}

.f_right i {
    font-size: 24px;
    margin: 0 10px;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.3s;
}

.f_right i:hover {
    color: #fbbf24;
}

.footer p {
    color: #64748b;
    font-size: 14px;
}

.f_right p {
    display: inline;
    padding-left: 20px;
}

/* Floating Button */
.float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: pulse 2s infinite;
}

.float-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* _________-responsive  */
@media only screen and (max-width:1035px) {
    .img img {
        width: 100%;
    }

    .box {
        width: 50%;
    }

    .content h1 {
        font-size: 2.6em;
    }

    .pricing-boxes {
        flex-direction: column;
    }

    .calculator-container {
        width: 90%;
    }
}

/* Fixed Navbar Mobile Adjustment */
@media only screen and (max-width:920px) {
    .navbar {
        background: #0f172a;
        padding: 1rem 2rem;
    }

    .nav-menu {
        display: flex;
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        margin-left: 0;
        text-align: center;
        transition: 0.3s;
        z-index: 10;
        padding: 2rem 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .navbar li {
        padding: 15px;
        margin: 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .main {
        flex-direction: column;
        justify-content: center;
        padding-top: 40px;
        gap: 40px;
    }

    .left,
    .right {
        width: 100%;
        text-align: center;
    }

    .right {
        justify-content: center;
        margin-bottom: 0px;
    }

    .img {
        right: 0;
        margin: auto;
    }

    .left {
        text-align: center;
    }

    .box {
        display: none;
    }

    .boxes {
        flex-wrap: wrap;
    }

    .sub_box {
        flex-basis: 45%;
        margin-bottom: 30px;
    }

    .item {
        min-width: calc(100% / 1);
    }

    .pricing-card.recommended {
        transform: scale(1);
    }

    .faq-container {
        width: 90%;
    }
}

@media only screen and (max-width:600px) {
    .header {
        height: auto;
    }

    .sub_box {
        flex-basis: 100%;
    }

    .box1 {
        flex-direction: column;
        padding: 1.5rem;
    }

    .left-content,
    .right-content {
        width: 100%;
        text-align: center;
    }

    .right-content {
        margin-top: 20px;
    }

    .rating h1 {
        font-size: 18px;
    }

    .sub-container {
        flex-wrap: wrap;
    }

    .rating {
        flex-basis: 50%;
        border: none;
        margin-bottom: 20px;
    }

    .content h1 {
        font-size: 2.2rem;
    }

    .box3 {
        width: 90%;
        padding: 2rem;
    }

    .box3 h1 {
        font-size: 1.8rem;
    }
}