﻿/* ---------- BASE HEADER ---------- */
header {
    background: #fff; /* white background */
    color: #000; /* black text */
}

.header-content a,
.header-content button {
    color: #000; /* icons and links black */
}

.menu-btn svg path {
    fill: #000; /* mobile icon black */
}

.header-content img {
    filter: none; /* ensure logo shows normally */
}

.site-header {
    position: relative;
    z-index: 996;
}

.main-bar {
    background: #fff; /* white background */
    padding: 10px 0;
}

.logo-header img {
    transition: 0.3s;
}

/* ---------- NAVIGATION (Desktop) ---------- */
.header-nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    flex-direction:row;
}

    .header-nav ul li a {
        color: #000; /* black text on white background */
        font-weight: 500;
        text-decoration: none;
        transition: color 0.3s;
    }

        .header-nav ul li a:hover {
            color: #2563eb; /* hover accent color */
        }
.container.d-flex.justify-content-between.align-items-center {
    display: flex;
}
.header-nav.navbar-collapse.collapse {
    /* gap: 10px !important; */
    justify-content: center;
    display: flex;
}
    .header-nav.navbar-collapse.collapse.open {
        justify-content: start;
    }
.logo-header.mostion {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header-nav.navbar-collapse.collapse {
    /* gap: 10px !important; */
    justify-content: center;
    display: flex;
    width: 100%;
}

/* ---------- MOBILE MENU ---------- */
.navbar-toggler {
    display: none;
}


    @media (max-width: 991px) {
        .navbar-toggler {
            display: block;
            border: none;
            background: transparent;
            cursor: pointer;
            z-index: 1001;
            color: #000; /* black toggle icon */
        }

        .icon-bar {
            display: block;
            width: 26px;
            height: 3px;
            background: #000; /* black lines instead of white */
            margin: 5px 0;
            transition: all 0.3s ease-in-out;
        }

        .navbar-toggler.active .icon-bar:first-child {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .navbar-toggler.active .icon-bar:nth-child(2) {
            opacity: 0;
        }

        .navbar-toggler.active .icon-bar:last-child {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ✅ Drawer Menu */
        .header-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 260px;
            height: 100vh;
            background: #fff; /* white background */
            transition: left 0.4s ease-in-out;
            padding-top: 80px;
            z-index: 1000;
            box-shadow: 2px 0 8px rgba(0,0,0,0.1);
        }

            .header-nav.open {
                left: 0;
            }

            .header-nav ul {
                flex-direction: column;
                align-items: flex-start;
                padding-left: 20px;
            }

                .header-nav ul li {
                    margin: 15px 0;
                }

                    .header-nav ul li a {
                        color: #000; /* black text inside mobile drawer */
                        font-size: 16px;
                    }

        /* ✅ Align toggle + content */
        .main-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px 20px;
        }

        .logo-header.mostion > a {
            padding-left: 0px;
        }
    }
    /* Base style for both buttons */
    .nav-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        border-radius: 10px;
        padding: 10px 20px;
        transition: all 0.3s ease;
    }

    /* Login button (outline style) */
    .login-btn {
        color: #2563eb;
        border: 2px solid #2563eb;
        background: transparent;
    }

        .login-btn:hover {
            background: #2563eb;
            color: #fff;
            box-shadow: 0px 4px 14px rgba(37, 99, 235, 0.4);
        }

    /* Register button (filled style) */
    .register-btn {
        background: #2563eb;
        color: #fff;
        border: 2px solid #2563eb;
        margin-left: 10px;
    }

        .register-btn:hover {
            background: #1e40af;
            box-shadow: 0px 4px 14px rgba(37, 99, 235, 0.5);
            transform: translateY(-2px);
        }

    /* Icon styling */
    .nav-btn i {
        font-size: 14px;
    }

    /* Responsive tweaks for small screens */
    @media (max-width: 991px) {
        .nav-btn {
            display: block;
            width: 100%;
            text-align: center;
            margin-bottom: 10px;
        }
    }

header a {
    text-decoration: none !important;
    border: none !important;
}

    header a:hover {
        text-decoration: none !important;
        border: none !important;
    }
section#home {
    BACKGROUND-COLOR: aliceblue;
}
    /*about us*/
    .about-section {
        padding: 0px 8%;
        background: #f8fafc;
        color: #0f172a;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 50px;
        max-width: 1200px;
        margin: auto;
    }

    .about-text {
        flex: 1 1 500px;
    }

        .about-text h2 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

            .about-text h2 span {
                color: #2563eb;
                position: relative;
            }

        .about-text p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #334155;
        }

    .about-highlights {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }

        .about-highlights li {
            font-size: 1rem;
            margin: 10px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .about-highlights i {
            color: #2563eb;
            font-size: 1.1rem;
        }

    .about-btn {
        background: #2563eb;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        padding: 12px 28px;
        border-radius: 8px;
        transition: 0.3s;
        display: inline-block;
        margin-top: 15px;
    }

        .about-btn:hover {
            background: #1e40af;
            box-shadow: 0px 4px 14px rgba(37, 99, 235, 0.4);
        }

    .about-image {
        flex: 1 1 400px;
        text-align: center;
    }

        .about-image img {
            max-width: 100%;
            border-radius: 20px;
            transition: transform 0.3s ease;
        }

            .about-image img:hover {
                transform: scale(1.05);
            }

    @media (max-width: 900px) {
        .about-container {
            flex-direction: column-reverse;
            text-align: center;
        }

        .about-text h2 {
            font-size: 2.2rem;
        }

        .about-btn {
            margin: 0 auto;
        }
    }
/*feature*/
.features-section {
    background: #fff;
    color: #0f172a;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
}

    .section-title span {
        color: #2563eb;
        position: relative;
    }

        .section-title span::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 100%;
            height: 4px;
            border-radius: 2px;
            background: linear-gradient(90deg, #2563eb, #1e40af);
        }

.section-subtitle {
    color: #475569;
    max-width: 700px;
    margin: auto;
    font-size: 1.05rem;
}

.feature-card {
    background: #f8fafc;
    border-radius: 18px;
    padding: 40px 25px;
    transition: all 0.35s ease;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

    .feature-card i {
        font-size: 2.3rem;
        color: #2563eb;
        margin-bottom: 15px;
        transition: transform 0.3s ease;
    }

    .feature-card h4 {
        font-weight: 700;
        margin-bottom: 12px;
    }

    .feature-card p {
        color: #475569;
        font-size: 0.97rem;
        line-height: 1.6;
    }

    .feature-card:hover {
        background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
        color: #fff;
        transform: translateY(-5px);
        box-shadow: 0px 10px 25px rgba(37, 99, 235, 0.3);
    }

        .feature-card:hover i {
            color: #fff;
            transform: scale(1.2);
        }

        .feature-card:hover p {
            color: #e2e8f0;
        }

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 10px 20px;
    }
}


.opportunity-section {
    background: #f9fafc;
}

.text-gradient {
    background: linear-gradient(90deg, #007bff, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.opportunity-box {
    background: #fff;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .opportunity-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .opportunity-box .icon i {
        transition: transform 0.3s ease;
    }

    .opportunity-box:hover .icon i {
        transform: scale(1.1) rotate(5deg);
    }


/*mission vsion*/
.mission-vision-section {
    background: #f9fafc;
}

.mission-box, .vision-box {
    background: #fff;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .mission-box:hover, .vision-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.mission-vision-section .icon i {
    transition: transform 0.3s ease;
}

    .mission-vision-section .icon i:hover {
        transform: scale(1.1) rotate(5deg);
    }

.text-gradient {
    background: linear-gradient(90deg, #007bff, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blockchain-section {
    background: #f9fafc;
}

.blockchain-content {
    animation: fadeInUp 0.8s ease-in-out;
}

.blockchain-image img {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

    .blockchain-image img:hover {
        transform: scale(1.05);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

.text-gradient {
    background: linear-gradient(90deg, #007bff, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



#bitsgrap-faq {
    background: #fff;
    color: #0b1220;
}

.faq-heading {
    font-size: 2.1rem;
    font-weight: 800;
}

    .faq-heading span {
        color: #2563eb;
    }

/* Search */
.faq-search-wrap {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

    .faq-search-wrap input[type="search"] {
        width: 100%;
        padding: 12px 44px 12px 16px;
        border-radius: 12px;
        border: 1px solid rgba(13,19,32,0.06);
        background: #f8f9fb;
        font-size: 0.95rem;
        outline: none;
        transition: box-shadow .18s;
    }

    .faq-search-wrap input:focus {
        box-shadow: 0 6px 24px rgba(37,99,235,0.08);
    }

    .faq-search-wrap i {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: #8b97a7;
    }

/* Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 18px;
}

@media (max-width: 880px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Card */
.faq-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(13,19,32,0.04);
    box-shadow: 0 6px 20px rgba(11,18,32,0.04);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    background: #f8f9fa;
    border: none;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.98rem;
    color: #2563eb;
}

    .faq-q:focus {
        outline: none;
        box-shadow: 0 6px 24px rgba(37,99,235,0.12);
    }

.q-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.q-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #eef5ff;
    color: #2563eb;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.q-text {
    max-width: calc(100% - 60px);
    text-align: left;
    color: #071029;
}

.q-icon {
    color: #2563eb;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(37,99,235,0.06);
    transition: transform .25s ease;
}
#contact {
    position: relative;
}

/*    #contact::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 20%, rgba(37,99,235,0.1), transparent 50%);
        z-index: 0;
    }*/

    #contact .card {
        border-radius: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        #contact .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(37,99,235,0.2);
        }

    #contact .form-control:focus {
        border-color: #2563eb;
        box-shadow: 0 0 5px rgba(37,99,235,0.5);
    }
/* Answer panel */
.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    transition: max-height .36s cubic-bezier(.2,.9,.2,1), padding .2s;
}

    .faq-a p {
        margin: 14px 0 18px;
        color: #455569;
        line-height: 1.6;
    }

/* Open state */
.faq-card.open .faq-q {
    background: linear-gradient(90deg,#f7fbff,#eef7ff);
}

.faq-card.open .q-icon {
    transform: rotate(45deg);
    background: rgba(37,99,235,0.12);
}

.faq-card.open .faq-a {
    padding: 0 18px 18px;
    max-height: 400px;
}

/* CTA */
.faq-cta .btn {
    background: #2563eb;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    color: #fff;
}

    .faq-cta .btn:hover {
        background: #1e4fd0;
    }




.bitsgrap-footer {
    background: #fff;
    color: #1f2937;
    border-top: 5px solid;
    border-image: linear-gradient(90deg, #2563eb, #60a5fa) 1;
    margin-top: 60px;
    font-family: 'Inter', sans-serif;
}

.footer-top {
    padding: 60px 0 30px;
}

.footer-logo img {
    width: 160px;
    filter: brightness(0) saturate(100%) invert(30%) sepia(88%) saturate(2654%) hue-rotate(209deg) brightness(94%) contrast(98%);
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4b5563;
}

.footer-social {
    margin-top: 15px;
}

    .footer-social a {
        display: inline-flex;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        margin-right: 8px;
        background: rgba(37, 99, 235, 0.08);
        color: #2563eb;
        transition: 0.3s ease;
    }

        .footer-social a:hover {
            background: #2563eb;
            color: #fff;
            transform: translateY(-2px);
        }

.footer-title {
    font-weight: 700;
    margin-bottom: 18px;
    color: #2563eb;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #374151;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-links a:hover {
            color: #2563eb;
        }

/* Newsletter */
.footer-newsletter {
    display: flex;
    align-items: center;
    margin-top: 10px;
    position: relative;
}

    .footer-newsletter input {
        flex: 1;
        padding: 10px 12px;
        border-radius: 8px 0 0 8px;
        border: 1px solid rgba(37, 99, 235, 0.3);
        outline: none;
        font-size: 0.9rem;
    }

    .footer-newsletter button {
        background: #2563eb;
        color: #fff;
        border: none;
        padding: 10px 14px;
        border-radius: 0 8px 8px 0;
        cursor: pointer;
        transition: 0.3s ease;
    }

        .footer-newsletter button:hover {
            background: #1e4fd0;
        }

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    background: #f9fafb;
    font-size: 0.9rem;
}

    .footer-bottom span {
        color: #2563eb;
        font-weight: 600;
    }

.footer-legal a {
    color: #4b5563;
    margin-left: 18px;
    text-decoration: none;
    transition: 0.3s;
}

    .footer-legal a:hover {
        color: #2563eb;
    }

/* Responsive */
@media (max-width: 767px) {
    .footer-top {
        text-align: center;
    }

    .footer-social a {
        margin: 6px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-legal {
        width: 100%;
        margin-top: 8px;
    }
}


/*login*/
.signup-section {
    background: #0d0d0d url('https://www.transparenttextures.com/patterns/black-leather.png');
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.signup-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.3);
    backdrop-filter: blur(10px);
}

.signup-title {
    text-align: center;
    color: #2563eb;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.signup-form label {
    color: #ccc;
    font-weight: 500;
    margin-top: 10px;
    display: block;
}

.form-control {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 15px;
    margin-top: 5px;
    font-size: 15px;
}

.password-field {
    position: relative;
}

    .password-field .toggle-password {
        position: absolute;
        right: 15px;
        top: 14px;
        color: #555;
        cursor: pointer;
    }

.signup-btn {
    width: 100%;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px;
    font-size: 16px;
    margin-top: 25px;
    transition: 0.3s;
    font-weight: 600;
}

    .signup-btn:hover {
        box-shadow: 0 0 20px #2563eb;
        transform: translateY(-2px);
    }

.login-text {
    text-align: center;
    margin-top: 15px;
    color: #aaa;
}

    .login-text a {
        color: #2563eb;
        font-weight: 600;
        text-decoration: none;
    }

        .login-text a:hover {
            text-decoration: underline;
        }


/*login*/
.login-section {
    background: #0d0d0d url('https://www.transparenttextures.com/patterns/black-leather.png');
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 45px 40px;
    border-radius: 20px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.3);
    backdrop-filter: blur(10px);
}

.login-title {
    text-align: center;
    color: #2563eb;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

    .login-title span {
        color: #7b61ff;
    }

.login-subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 30px;
    font-size: 15px;
}

.login-form label {
    color: #ccc;
    font-weight: 500;
    margin-top: 10px;
    display: block;
}

.form-control {
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 15px;
    margin-top: 5px;
    font-size: 15px;
}

.password-field {
    position: relative;
}

    .password-field .toggle-password {
        position: absolute;
        right: 15px;
        top: 14px;
        color: #555;
        cursor: pointer;
    }

.form-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
    font-size: 14px;
    margin-top: 15px;
}

    .form-links a {
        color: #2563eb;
        text-decoration: none;
        transition: 0.3s;
    }

        .form-links a:hover {
            text-decoration: underline;
        }

.login-btnn {
    width: 100%;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px;
    font-size: 16px;
    margin-top: 25px;
    transition: 0.3s;
    font-weight: 600;
}

    .login-btnn:hover {
        box-shadow: 0 0 20px #2563eb;
        transform: translateY(-2px);
    }

.signup-text {
    text-align: center;
    margin-top: 20px;
    color: #aaa;
}

    .signup-text a {
        color: #2563eb;
        font-weight: 600;
        text-decoration: none;
    }

        .signup-text a:hover {
            text-decoration: underline;
        }


 .MainAdvantages_cardDescription__lFkFn {
    text-align: center;
    font-size: medium;
}



/* Section Background */
.advantages-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
}

    /* Container */
    .advantages-section .container {
        max-width: 1100px;
        margin: 0 auto;
    }

/* Title */
    .advantages-section{
        .container{
    .section-title {
        text-align: center;
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 50px;
        background: linear-gradient(90deg, #60a5fa, #a78bfa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}
}
/* Grid Layout */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card Style */
.adv-card {
    background: rgba(255, 255, 255, 0.07);
    padding: 35px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.3s ease;
    position: relative;
}

    /* Hover Effect */
    .adv-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    }

/* Icon */
.adv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Title */
.adv-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Text */
.adv-text {
    opacity: 0.8;
    line-height: 1.6;
    font-size: 15px;
}



/* Section */
.howuse-section {
    background: #fff;
    padding: 70px 20px;
    color: #000;
}

/* Container */
.howuse-container {
    max-width: 1100px;
    margin: auto;
}

/* Title */
.howuse-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 50px;
}

/* Steps Layout */
.howuse-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
}

/* Card */
.howuse-card {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    border: 1px solid #e5e7eb;
}

    /* Hover Animation */
    .howuse-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.10);
    }

/* Icon */
.howuse-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    font-size: 26px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* Card Title */
.howuse-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
}

/* Description */
.howuse-card-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}


.widget_bg {
    background: rgba(255, 255, 255, 0.05);
    padding: 45px 40px;
    border-radius: 20px;
    max-width: 100%;
    
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.3);
    backdrop-filter: blur(10px);
}