.header.scrolled {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}


.button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px ();
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: #000;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    cursor: pointer;
}


.icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}


a.text-white-50:hover {
    color: #ffffff !important;
}

.button:hover .icon {
    transform: translate(4px);
}

.btn-hero-secondary:hover svg {
    transform: translate(4px);
}

.button:hover::before {
    animation: shine 1.5s ease-out infinite;
}

.button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: #000;
    background: #fff;
    overflow-x: hidden;
}

.scroll-container {
    overflow: hidden;
    width: 100%;
    margin: 2rem 0;
}

.scroll-content {
    display: flex;
    width: max-content;
    gap: 2rem;
}

.scroll-content img {
    height: 180px;
    flex-shrink: 0;
}

/* Left scroll */
.scroll-left {
    animation: scroll-left 25s linear infinite;
}

/* Right scroll */
.scroll-right {
    animation: scroll-right 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

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

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

.btn-pill-dark {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    font-size: 1rem;
    border: none;
}

.circle-icon {
    /* Overlay */

    width: 24px;
    height: 24px;

    background: #05A799;
    border-radius: 9999px;

    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;

}

.circle-icon i {
    color: #000;
    font-size: 1.2rem;
}

/* Custom colors */
.text-primary-custom {
    color: #05A799 !important;
}

.bg-primary-custom {
    background-color: #05A799 !important;
}

.bg-dark-custom {
    background-color: #1E1B4B !important;
}

.bg-black {
    background-color: #000 !important;
}

/* Header  */
.header {
    position: fixed;
    top: 38px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 70px;
    background: #EEEEEE;
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 800px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #05A799;
    border-radius: 50%;
    margin-right: 8px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
}

.nav-menu a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #05A799;
}

/* Mobile Navigation  */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    width: 20px;
    height: 2px;
    background: #000;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    top: 6px;
}

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 50vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: right 0.3s ease;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
}

.mobile-nav.active {
    right: 0;
    visibility: visible;
    opacity: 1;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #EEEEEE;
    color: black;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    /* opacity: 0;
			visibility: hidden; */
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 6px 25px rgba(64, 89, 86, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .scroll-to-top.show {
			opacity: 1;
			visibility: visible;
			transform: translateY(0);
		} */

.scroll-to-top:hover {
    /* border: 2px solid #EEEEEE; */
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(64, 89, 86, 0.4);
}

.scroll-to-top:active {
    transform: translateY(0);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-1px);
}

/* Hero Section  */
.hero {
    /* padding: 10em 0 !important; */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(/assets/images/background.b407227d03bfa02075c3.svg.png);
    /* margin-bottom: 15rem !important; */
}

.hero-content {
    /* margin-top: 10rem; */
    /* top: 20px !important; */
    text-align: center;
    position: relative;
    max-width: 1200px;
    width: 100%;
    max-height: 516px !important;
    /* padding: 0 20px; */
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 80px;
    line-height: 90px;
    letter-spacing: -0.8px;
    text-align: center;
    color: #000;
    margin: 0 auto 32px;
    /* max-width: 854px; */
    width: 100%;
}

.hero-title .highlight {
    color: #05A799;
}

.highlight {
    color: #05A799;
}

.hero-subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #666;
    margin-bottom: 48px;
    max-width: 645px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    width: 181.03px;
    height: 44px;
    background: #141414;
    color: white;
    border: none;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    white-space: nowrap;
}

.btn-hero-primary:hover {
    transform: translateY(-1px);
    color: white;
    box-shadow: #666;
    text-decoration: none;
}

.btn-hero-secondary {
    width: 160px;
    height: 44px;
    background: white;
    color: #141414;
    border: 1px solid #e5e5e5;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;

    width: 152px;
    height: 48px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-hero-secondary:hover {
    border-color: #05A799;
    color: #05A799;
    text-decoration: none;
}

/* Dashboard Section */
.dashboard-section {
    height: 808px !important;
    padding: 80px 0;
    background: #fff;
}

.dashboard-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats {
    height: 100vh;
    padding: 180px 0;
    background: #fff;
}

.stats-title {
    font-size: 64px;
    font-weight: 700;
    color: #000;
    margin-bottom: 60px;
    line-height: 1.1;
}

.stat-item {
    border-right: 1px solid #e9ecef;
    padding: 32px 0;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    color: #000;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #05A799;
}

/* Why 5o section */
.whyfifty {
    /* Bootstrap variables */
    --bs-body-color: #1e2329;
    --bs-body-bg: rgb(255, 255, 255);

    /* Easy Frontend variables */
    --ezy-theme-color: rgb(13, 110, 253);
    --ezy-theme-color-rgb: 13, 110, 253;

    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    overflow: hidden;
    padding: 60px 0;
}

@media (min-width: 768px) {
    .whyfifty {
        padding: 100px 0;
    }
}

/* Gray Block Style */
.gray .whyfifty,
.whyfifty.gray {
    /* Bootstrap variables */
    --bs-body-bg: rgb(246, 246, 246);
}

/* Dark Gray Block Style */
.dark-gray .whyfifty,
.whyfifty.dark-gray {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(30, 39, 53);
}

/* Dark Block Style */
.dark .whyfifty,
.whyfifty.dark {
    /* Bootstrap variables */
    --bs-body-color: #ffffff;
    --bs-body-bg: rgb(11, 23, 39);
}

.whyfifty-heading {
    font-weight: 700;
    font-size: 64px;
    line-height: 45px;
}

.whyfifty-title {
    font-size: 40px;
    font-weight: 600px;
}

.whyfifty-subtitle {
    font-size: 18px !important;
    font-weight: 400px !important;
    color: #0A0915 !important;
    opacity: 0.6 !important;

}

.whyfifty-subtitleList li {
    font-size: 18px !important;
    font-weight: 400px !important;
    color: #0A0915 !important;
    margin: 0 10px 0 10px !important;
    opacity: 0.6 !important;


}

@media (min-width: 768px) {
    .whyfifty-heading {
        font-size: 50px;
        line-height: 70px;
    }
}

.whyfifty-sub-heading {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}

.whyfifty-banner {
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

.whyfifty-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.7;
}

.whyfifty img {
    border-radius: 15px;
}

/* Digital Section */
.digital .row {
    height: 887px !important;
}

.mandala {
    width: 250px;
    height: 250px;
}

.digital-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.digital-subtitle {
    font-size: 30px;
    color: #04CFBE;
    margin-bottom: 20px;
}

.digital-text {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #fff;
}

.features-title {
    font-size: 72px;
    font-weight: 700;
    color: #000;
    margin-bottom: 60px;
    line-height: 1.1;
}

.feature-preview {
    background: #fff;
    border-radius: 12px;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-title {
    font-size: 72px;
    font-weight: 600;
    color: #000;
}

.faq-item input[type="checkbox"] {
    display: none;
}

.faq-question {
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 24px;
    font-weight: 600;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-plus {
    transition: transform 0.3s ease;
    font-size: 24px;
    color: #000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item input[type="checkbox"]:checked+.faq-question .faq-plus {
    transform: rotate(45deg);
}

.faq-item input[type="checkbox"]:checked~.faq-answer {
    max-height: 200px;
    padding: 20px 0;
}

/* Footer */
.footer {
    /* height: 854px; */
    background: #000000;
    color: #fff;
    padding: 80px 0 10px;
}

.footer-logo::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #05A799;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

.footer-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.footer-subtitle {
    font-size: 20px;
    /* color: #05A799; */
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-hero-primary:hover {
    background-position: right center;
    background-size: 200% auto;
    -webkit-animation: pulse 2s infinite;
    animation: pulse512 1.5s infinite;
}

@keyframes pulse512 {
    0% {
        box-shadow: 0 0 0 0 #05bada66;
    }

    70% {
        box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
    }

    100% {
        box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
    }
}

.newbadge {
    position: relative;
    padding: 10px 22px;
    border-radius: 6px;
    border: none;
    color: #fff;
    cursor: pointer;
    background-image: linear-gradient(-60deg, #ff5858 0%, #f09819 100%);
    transition: all 0.2s ease;
}

.newbadge:active {
    transform: scale(0.96);
}

.newbadge:before,
.newbadge:after {
    position: absolute;
    content: "";
    width: 150%;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1000;
    background-repeat: no-repeat;
}

.newbadge:hover:before {
    top: -70%;
    background-image: radial-gradient(circle, #a89215 20%, transparent 20%),
        radial-gradient(circle, transparent 20%, #13a5be 20%, transparent 30%),
        radial-gradient(circle, #a3b82d 20%, transparent 20%),
        radial-gradient(circle, #590cbe 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, #bd1717 15%, transparent 20%),
        radial-gradient(circle, #2a7ce8 20%, transparent 20%),
        radial-gradient(circle, #30e82a 20%, transparent 20%),
        radial-gradient(circle, #e92c75 20%, transparent 20%),
        radial-gradient(circle, #914fe7 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
        10% 10%, 18% 18%;
    background-position: 50% 120%;
    animation: greentopBubbles 0.6s ease;
}

@keyframes greentopBubbles {
    0% {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
            40% 90%, 55% 90%, 70% 90%;
    }

    50% {
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
            50% 50%, 65% 20%, 90% 30%;
    }

    100% {
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
            50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

.newbadge:hover::after {
    bottom: -70%;
    background-image: radial-gradient(circle, #ff93db 20%, transparent 20%),
        radial-gradient(circle, #2ae8df 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, #71ffbd 15%, transparent 20%),
        radial-gradient(circle, #2a9ce8 20%, transparent 20%),
        radial-gradient(circle, #7814fc 20%, transparent 20%),
        radial-gradient(circle, #73e4f8 20%, transparent 20%),
        radial-gradient(circle, #f8d3a9 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
    background-position: 50% 0%;
    animation: greenbottomBubbles 0.6s ease;
}

@keyframes greenbottomBubbles {
    0% {
        background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
            70% -10%, 70% 0%;
    }

    50% {
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
            105% 0%;
    }

    100% {
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
            110% 10%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}


/* Responsive Design */
@media (max-width: 1024px) {
    .header {
        width: 90%;
        max-width: 584px;
    }

    .hero-title {
        font-size: 80px;
        line-height: 80px;
        letter-spacing: -0.6px;
    }

    .whyfifty-heading {
        font-size: 80px;
        line-height: 80px;
        letter-spacing: -0.6px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 7em 0 !important;
        height: auto;
    }

    .header {
        width: 95%;
        height: 50px;
        top: 20px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 48px;
        line-height: 48px;
        letter-spacing: -0.4px;
        max-width: 100%;
    }

    .whyfifty-heading {
        font-size: 48px;
        line-height: 48px;
        letter-spacing: -0.4px;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 200px;
    }

    .dashboard-img {
        max-width: 100%;
        width: 100%;
    }

    .stats-title,
    .features-title,
    .digital-title,
    .footer-title {
        font-size: 32px;
    }

    .scroll-content img {
        height: 100px;
    }

    .dashboard-section,
    .digital .row,
    .stats {
        height: auto !important;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding: 24px 0;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 40px;
    }

    .stats-title,
    .features-title,
    .digital-title,
    .footer-title {
        font-size: 32px;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-question {
        font-size: 18px;
    }
}

@media (max-width: 480px) {

    .hero-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 15px;
        line-height: 1.5;
        color: #555;
        margin-top: 8px;
    }

    .whyfifty-heading {
        font-size: 20px;
        line-height: 36px;
        letter-spacing: -0.2px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 22px;
    }

    .hero-content {
        margin-top: 0rem;
        text-align: center;
        position: relative;
        max-width: 1200px;
        width: 100%;
        padding: 0 20px;
    }

    h2,
    h3,
    h4 {
        font-size: 20px;
        font-weight: 600px;
    }

    .whyfifty-title {
        font-size: 20px;
        font-weight: 600px;
    }

    .whyfifty-subtitle {
        font-size: 14px !important;
        font-weight: 400px !important;
        color: #0A0915 !important;
        opacity: 0.6 !important;

    }

    .whyfifty-subtitleList li {
        font-size: 14px !important;
        font-weight: 400px !important;
        color: #0A0915 !important;
        margin: 0 10px 0 10px !important;
        opacity: 0.6 !important;


    }

    .dashboard-img {
        box-shadow: none;
    }

    .stat-number {
        font-size: 32px;
    }

    .scroll-content img {
        width: 80px;
        height: 80px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-plus {
        font-size: 20px;
    }

    .digital-title {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 16px;
    }

    .digital-subtitle {
        font-size: 16px;
        color: #04CFBE;
        margin-bottom: 20px;
    }

    .digital-text {
        font-size: 16px;
        color: #fff;
        line-height: 1.6;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 28px;
        line-height: 28px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 160px;
        height: 40px;
        font-size: 13px;
    }

    .faq-title {
        font-size: 24px;
    }
}
