.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list li {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-list li i {
    color: #6cc832;
    font-size: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.hero-section {
    color: white;
    overflow-x: hidden;

    background:
        linear-gradient(rgba(0, 0, 0, .75),
            rgba(0, 0, 0, .75)),
        url("../images/bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    padding: 70px 8%;
    gap: 50px;
}

/* LEFT */

.hero-left {
    flex: 1;
    margin-top: 24px;
    animation: fadeLeft .9s ease;
}

.hero-left h1 {
    font-size: 58px;
    margin-top: 30px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-left h1 span {
    color: #6cc832;
    text-shadow:
        0 0 12px rgba(0, 210, 160, .5),
        0 0 30px rgba(0, 210, 160, .05);
}

.hero-left p {
    font-size: 25px;
    font-family: Mulish, sans-serif;
    color: #bdbdbd;
    margin-bottom: 45px;
}

.verify-btn {
    border: none;
    background: white;
    color: black;
    border-radius: 999px;
    font-family: Mulish, sans-serif;

    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .35s;
}

.verify-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, .15);
}

/* RIGHT */

.hero-right {
    width: 360px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    animation: fadeRight .9s ease;
}

.glass-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 22px;
    transition: .4s;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: #6cc832;
}

.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 14px;
}

.hot {
    color: white;
    font-weight: 700;
}

.coin-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    transition: .3s;
    cursor: pointer;
    padding: 8px;
    border-radius: 14px;
}

.coin-row:hover {
    background: rgba(255, 255, 255, .05);
    transform: scale(1.03);
}

.coin-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coin-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* background: #111; */
    font-family: Mulish, sans-serif;

    background: #3e3d3d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.coin-name h4 {
    font-size: 16px;
    font-family: Mulish, sans-serif;

}

.coin-name span {
    color: #888;
    font-family: Mulish, sans-serif;

    font-size: 13px;
}

.coin-price {
    text-align: right;
}

.coin-price h4 {
    font-size: 15px;
    font-family: Mulish, sans-serif;

}

.loss {
    color: #ff4d4d;
    font-family: Mulish, sans-serif;

    font-size: 13px;
}

.feed-card h3 {
    margin-bottom: 20px;
    font-size: 16px;
    font-family: Mulish, sans-serif;

    font-family: Mulish, sans-serif;

}

.feed-card ul {
    padding-left: -10px;
}

.feed-card li {
    color: #bdbdbd;
    font-size: 13px;
    font-family: Mulish, sans-serif;
    margin-bottom: 14px;
    line-height: 1.6;
    transition: .3s;
}

.feed-card li:hover {
    color: white;

    transform: translateX(5px);
}

/* SUPPORT BUTTON */
.support-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 62px;
    height: 62px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    font-family: Mulish, sans-serif;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(20px);
    cursor: pointer;
    transition: .3s;
}

.support-btn:hover {
    transform: scale(1.1);
}

/* ANIMATION */
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE */
@media(max-width:991px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-section {
        color: white;
        overflow-x: hidden;
        background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../images/bg.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 100vh;
        display: flex;
        justify-content: space-between;
        padding: 18px 1%;
        gap: 28px;
    }

    .hero-left h1 {
        font-size: 52px;
    }

    .hero-left p {
        font-size: 22px;
    }

    .hero-right {
        width: 100%;
        max-width: 500px;
    }
}

@media(max-width:576px) {
    .hero-left h1 {
        font-size: 33px;
        text-align: left;
        margin-left: 20px;
    }

    .hero-left p {
        margin-left: 20px;
        font-size: 18px;
        text-align: left;

    }

    .verify-btn {
        width: 100%;
    }
}

/* box */
.glass-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #0b111d;
    border: 1px solid rgba(255, 255, 255, .08);
}

.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(90deg,
            transparent,
            #6cc832,
            #fff,
            transparent);
    background-size: 300% 300%;
    animation: movingBorder 4s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes movingBorder {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.signup-box {
    margin-top: 100px;
    max-width: 520px;
}

.reward-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8f8f8f;
    font-size: 18px;
    font-family: Mulish, sans-serif;
    margin-bottom: 20px;
}

.reward-text span {
    color: #6cc832;
    font-weight: 700;
    font-family: Mulish, sans-serif;

}

.reward-text i {
    color: #6cc832;
}

/* Input Box */
.signup-form {
    display: flex;
    align-items: center;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    overflow: hidden;
    padding: 0px;
}

.signup-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: Mulish, sans-serif;

    font-size: 18px;
    padding: 13px 25px;
}

.signup-form input::placeholder {
    color: #7a7a7a;
    font-family: Mulish, sans-serif;

}

.signup-form button {
    margin-right: 7px;
    border: none;
    background: #f2f2f2;
    color: #111;
    font-family: Mulish, sans-serif;
    font-size: 20px;
    font-weight: 700;
    padding: 4px 27px;
    border-radius: 50px;
    cursor: pointer;
    transition: .3s;
}

.signup-form button:hover {
    background: #6cc832;
    color: #fff;
}

/* Social Icons */
.signup-icons {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
}

.signup-icons a {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 26px;
    transition: .3s;
}

.signup-icons a:hover {
    border-color: #6cc832;
    transform: translateY(-5px);
}

.divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .2);
}

/* Responsive */
@media(max-width:768px) {

    .signup-form {
        flex-direction: column;
        border-radius: 25px;
        padding: 15px;
        gap: 15px;
    }

    .signup-form button {
        width: 48%;
        padding: 9px;
    }

    .signup-icons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 21px;
        margin-top: 19px;
    }

    .reward-text {
        margin-left: 20px;
        justify-content: left;
        text-align: left;
        font-size: 16px;
    }

    .signup-box {
        margin-top: 91px;
        max-width: 520px;
    }
}

@media (max-width: 768px) {

    .signup-form {
        max-width: 100%;
        height: 52px;
    }

    .signup-form input {
        font-size: 13px;
        padding: 0 12px;
    }

    .signup-form button {
        padding: 10px 18px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {

    .signup-form {
        flex-direction: column;
        height: 105px;
        padding: 10px;
        border-radius: 20px;
        gap: 10px;
    }

    .signup-form input {
        width: 100%;
        height: 45px;
        border-bottom: 1px solid #222;
        text-align: center;
    }

    .signup-form button {
        width: 100%;
        height: 45px;
        border-radius: 12px;
    }
}

/* -------crypto-section--------------- */
.crypto-section {
    background: #050505;
    padding: 40px 6%;
    overflow: hidden;
}

.crypto-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.crypto-video {
    flex: 1;
    position: relative;
}

.crypto-video video {
    width: 100%;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    /* box-shadow: 0 0 40px #6cc832; */
}

.crypto-content {
    flex: 1;
    color: #fff;
}

.section-tag {
    padding: 10px;
    color: #6cc832;
    font-family: Mulish, sans-serif;
    font-size: 12px;
    border-radius: 24px;
    border: 1px solid #6cc832;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.crypto-content h2 {
    font-size: 30px;
    font-family: Mulish, sans-serif;
    line-height: 1.2;
    margin: 15px 0 20px;
    font-weight: 700;
}

.crypto-content p {
    color: #b8b8b8;
    line-height: 1.8;
    font-family: Mulish, sans-serif;
    font-size: 16px;
}

.features-list {
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-family: Mulish, sans-serif;
    gap: 12px;
    color: #fff;
    font-size: 16px;
}

.feature-item i {
    color: #6cc832;
    font-size: 20px;
}

.bottom-text {
    margin-top: 15px;
}

.crypto-btn {
    display: inline-block;
    margin-top: 30px;
    background: #fff;
    color: #111;
    font-family: Mulish, sans-serif;

    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.crypto-btn:hover {
    transform: translateY(-3px);
}

@media(max-width:991px) {

    .crypto-container {
        flex-direction: column;
    }

    .crypto-content h2 {
        font-size: 28px;

    }

    .crypto-btn {
        display: inline-block;
        margin-top: 2px;
        background: #fff;
        color: #111;
        font-family: Mulish, sans-serif;
        padding: 16px 40px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    }

    .features-section {
        margin-top: -18px;
        background: #050505;
        padding: 33px 6%;
    }

    .crypto-video {
        flex: 1;
        margin-bottom: -27px;
        position: relative;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}


/* service */

.features-section {
    background: #050505;
    padding: 40px 6%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header span {
    padding: 10px;
    color: #6cc832;
    font-family: Mulish, sans-serif;
    font-size: 12px;

    border-radius: 24px;
    border: 1px solid #6cc832;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-header h2 {
    color: #fff;
    font-size: 35px;
    font-family: Mulish, sans-serif;
    margin-top: 15px;
    max-width: 800px;
    margin-inline: auto;
    line-height: 1.2;
}

.section-header .spn {
    color: #6cc832;
    font-family: Mulish, sans-serif;

    text-shadow:
        0 0 12px #6cc832,
        0 0 30px rgba(0, 210, 160, .05);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    position: relative;
    border-radius: 28px;
    padding: 35px;
    min-height: 420px;
    overflow: hidden;
    transition: .4s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h3 {
    color: #fff;
    font-size: 23px;
    font-family: Mulish, sans-serif;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-card p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
    font-family: Mulish, sans-serif;
    font-size: 15px;
}

/* Card 1 */
.card1 {
    background: linear-gradient(180deg, #6cc832, #6cc832);
}

.card-badge {
    margin-top: 40px;
    background: rgba(255, 255, 255, .12);
    padding: 25px;
    border-radius: 20px;
}

.card-badge h4 {
    font-size: 45px;
    font-family: Mulish, sans-serif;
    color: #fff;
}

.card-badge span {
    color: #fff;
    font-family: Mulish, sans-serif;
}

/* Card 2 */
.card2 {
    background: linear-gradient(145deg, #111, #232323);
}

.card2 img {
    width: 120px;
    position: absolute;
    bottom: 25px;
    right: 25px;
}

/* Card 3 */
.card3 {
    background: linear-gradient(145deg, #141414, #282828);
}

.card4 {
    background: linear-gradient(145deg, #101010, #242424);
}

.stats-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, .08);
    padding: 20px 25px;
    border-radius: 18px;
}

.stats-box h4 {
    color: #6cc832;
    font-size: 40px;
    font-family: Mulish, sans-serif;

    margin-bottom: 5px;
}

.stats-box span {
    color: #fff;
    font-family: Mulish, sans-serif;

}

/* Hover Glow */
.feature-card::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(108, 200, 50, .12);
    border-radius: 50%;
    top: -120px;
    right: -120px;
    transition: .5s;
}

.feature-card:hover::before {
    transform: scale(1.4);
}

/* Tablet */
@media(max-width:992px) {

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 40px;
    }
}

/* Mobile */
@media(max-width:768px) {
    .section-header {
        text-align: left;
        margin-bottom: 36px;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .feature-card {
        min-height: auto;
    }
}


/* faq */

.spnss {
    color: #6cc832;

    font-family: Mulish, sans-serif;

    text-shadow:
        0 0 12px #6cc832,
        0 0 30px rgba(0, 210, 160, .05);
}

.container {
    max-width: 95%;
    position: relative;
    padding: 50px 30px;
    background-image: url("../images/shap-.png");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 700px;
    margin: auto;
    padding: 20px 20px;
}

.faq-title {
    color: #fff;
    font-size: 35px;
    font-family: Mulish, sans-serif;

    margin-bottom: 30px;
}

.faq-item {
    background: #111;
    font-family: Mulish, sans-serif;

    border-radius: 18px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 35px;
    cursor: pointer;
}

.faq-question span {
    color: #fff;
    font-family: Mulish, sans-serif;
    font-size: 19px;
    font-weight: 500;
}

.faq-icon {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    font-family: Mulish, sans-serif;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #ccc;
    font-family: Mulish, sans-serif;
    line-height: 1.8;
    padding: 0 35px;
    transition: all .4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 35px 25px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}



/* contact us */

.contact-crypto-section {
    background: #000;
    padding: 30px 20px;
    height: 680px;
}

.contact-crypto-wrapper {
    max-width: 95%;
    margin: auto;
    height: 615px;
    border: 1px solid #222;
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #090909;
}

.contact-crypto-left {
    position: relative;
    min-height: 700px;
}

.contact-crypto-left img {
    width: 100%;
    border-radius: 25px;
    height: 100%;
    object-fit: cover;
}

.contact-crypto-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.contact-crypto-content {
    position: absolute;
    top: 45px;
    left: 33px;
    z-index: 2;
    max-width: 500px;
}

.contact-crypto-subtitle {
    color: #6cc832;
    font-size: 15px;
    font-family: Mulish, sans-serif;
    font-weight: 500;
}

.contact-crypto-content h2 {
    color: #fff;
    font-size: 36px;
    line-height: 1.1;
    margin: 8px 0;
    font-family: Mulish, sans-serif;
    font-weight: 700;
}

.contact-crypto-content h2 span {
    color: #6cc832;
    font-family: Mulish, sans-serif;

}

.contact-crypto-content p {
    color: #cfcfcf;
    font-family: Mulish, sans-serif;

    line-height: 1.8;
    font-size: 15px;
}

/* .contact-crypto-info {
    display: flex;
    gap: 50px;
    margin-top: 60px;
} */
.contact-crypto-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.contact-crypto-info h4 {
    color: #fff;
    font-size: 22px;
    font-family: Mulish, sans-serif;

    margin-bottom: 10px;
}

.contact-crypto-info p {
    color: #ddd;
    font-size: 14px;
    font-family: Mulish, sans-serif;

}

/* RIGHT SIDE */

.contact-crypto-right {
    position: relative;
    padding: 80px 60px;

    background: url(../images/contact-shape-1-1.png) center center;
    background-size: cover;

    display: flex;
    align-items: center;
}

.contact-crypto-right form {
    width: 100%;
    z-index: 2;
}

.contact-crypto-row {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

.contact-crypto-info {
    display: flex;
    gap: 20px;
    margin-top: 49px;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    width: 45px;
    height: 45px;
    border: 1px solid #6cc832;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6cc832;
    font-size: 18px;
    flex-shrink: 0;
}

.info-box h4 {
    color: #fff;
    font-family: Mulish, sans-serif;
    font-size: 20px;
    margin-bottom: 5px;
}

.info-box p {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.6;
    font-family: Mulish, sans-serif;
}

.contact-crypto-row input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 15px 0;
    color: #fff;
    font-family: Mulish, sans-serif;

    font-size: 15px;
    outline: none;
}

.contact-crypto-row input::placeholder,
.contact-crypto-textarea::placeholder {
    color: #999;
}

.contact-crypto-textarea {
    width: 100%;
    height: 140px;
    resize: none;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    font-family: Mulish, sans-serif;

    color: #fff;
    padding-top: 15px;
    outline: none;
    font-size: 15px;
}

.contact-crypto-btn {
    margin-top: 40px;
    border: none;
    font-family: Mulish, sans-serif;

    background: #6cc832;
    color: #fff;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    gap: 15px;

    transition: 0.3s;
}

.contact-crypto-btn:hover {
    background: #6cc832;
    font-family: Mulish, sans-serif;

}

.contact-crypto-btn span {
    width: 32px;
    height: 32px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    font-family: Mulish, sans-serif;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* ROTATING SHAPE */

.contact-crypto-shape {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 180px;
    opacity: 0.9;
    animation: cryptoRotate 12s linear infinite;
}

@keyframes cryptoRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ====================================
   CONTACT SECTION RESPONSIVE
==================================== */

@media (max-width: 1024px) {

    .contact-crypto-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-crypto-left {
        min-height: 600px;
    }

    .contact-crypto-content h2 {
        font-size: 48px;
    }

    .contact-crypto-right {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {

    .contact-crypto-section {
        padding: 50px 15px;
    }

    .contact-crypto-section {
        background: #000;
        padding: 30px 20px;
        height: auto;
    }

    .contact-crypto-wrapper {
        border-radius: 20px;
        max-width: 100%;
        height: 1029px;


    }

    .contact-crypto-left {
        min-height: 500px;
    }

    .contact-crypto-content {
        left: 25px;
        right: 25px;
        top: 40px;
        max-width: 100%;
    }

    .contact-crypto-content h2 {
        font-size: 34px;
        line-height: 1.2;
    }

    .contact-crypto-content p {
        font-size: 14px;
    }

    .contact-crypto-info {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .contact-crypto-right {
        padding: 40px 20px;
    }

    .contact-crypto-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }

    .contact-crypto-btn {
        width: 100%;
        justify-content: center;
    }

    .info-box {
        gap: 12px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {

    .contact-crypto-left {
        min-height: 450px;
    }

    .contact-crypto-content {
        left: 20px;
        right: 20px;
        top: 25px;
    }

    .contact-crypto-subtitle {
        font-size: 13px;
    }

    .contact-crypto-content h2 {
        font-size: 28px;
    }

    .contact-crypto-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .contact-crypto-right {
        padding: 30px 15px;
    }

    .contact-crypto-row input,
    .contact-crypto-textarea {
        font-size: 14px;
    }

    .contact-crypto-btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .info-box h4 {
        font-size: 16px;
    }

    .info-box p {
        font-size: 13px;
    }

}


/* ====================================
   FAQ SECTION RESPONSIVE
==================================== */

@media (max-width: 1024px) {

    .container {
        max-width: 95%;
        background-size: 500px;
    }

    .faq-title {
        font-size: 34px;
        text-align: left;

    }

    .faq-question span {
        font-size: 18px;
    }
}

@media (max-width: 768px) {

    .container {
        max-width: 100%;
        padding: 20px 15px;
        background-size: 300px;
    }

    .faq-title {
        font-size: 28px;
        text-align: left;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question span {
        font-size: 15px;
        line-height: 1.6;
        flex: 1;
        padding-right: 10px;
    }

    .faq-icon {
        font-size: 22px;
    }

    .faq-answer {
        padding: 0 20px;
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {

    .container {
        padding: 15px 20px;
        background-size: 180px;
    }

    .faq-title {
        font-size: 24px;
        text-align: left;

        line-height: 1.3;
    }

    .faq-item {
        border-radius: 12px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question span {
        font-size: 14px;
    }

    .faq-icon {
        font-size: 20px;
    }

    .faq-answer {
        font-size: 13px;
        line-height: 1.7;
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
}
















/* why choose us  */

.brand-expertise-section {
    background: #000;
    padding: 40px 40px;
    overflow: hidden;
}

.brand-expertise-container {
    max-width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.brand-expertise-left {
    width: 48%;
}

.brand-expertise-subtitle {
    padding: 10px;
    color: #6cc832;
    font-family: Mulish, sans-serif;
    font-size: 12px;
    border-radius: 24px;
    border: 1px solid #6cc832;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.brand-expertise-left h2 {
    color: #fff;
    font-size: 35px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: Mulish, sans-serif;

}

.brand-expertise-left h2 span {
    color: #6cc832;
    font-family: Mulish, sans-serif;

}

.brand-expertise-left p {
    color: #9c9c9c;
    font-size: 16px;
    font-family: Mulish, sans-serif;

    line-height: 1.9;
    max-width: 550px;
}

/* Feature Box */

.brand-expertise-box {
    margin-top: 24px;
    border: 1px solid #242424;
    border-radius: 24px;
    overflow: hidden;
    background: #080808;
}

.brand-expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 32px;
}

.brand-expertise-item:first-child {
    border-bottom: 1px solid #242424;
}

.brand-expertise-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border: 1px solid #6cc832;
    border-radius: 12px;
    font-family: Mulish, sans-serif;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #6cc832;
    font-size: 28px;
}

.brand-expertise-item h4 {
    color: #fff;
    font-family: Mulish, sans-serif;
    margin-top: 17px;

    font-size: 21px;
    margin-bottom: 10px;
}

.brand-expertise-item p {
    color: #8d8d8d;
    font-size: 15px;
    font-family: Mulish, sans-serif;

    line-height: 1.8;
}

/* Right Side */

.brand-expertise-right {
    width: 42%;
    display: flex;
    justify-content: center;
}

.brand-expertise-image {
    width: 430px;
    height: 610px;
    border-radius: 220px;
    overflow: hidden;
    position: relative;
    background: #111;
}

.brand-expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-expertise-image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(to top,
            #6cc832,
            rgba(255, 106, 0, 0));
}

/* Circle */

.brand-expertise-circle {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    background: #000;
    border-radius: 50%;
    z-index: 5;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-expertise-circle h3 {
    color: #6cc832;
    font-family: Mulish, sans-serif;

    font-size: 58px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.brand-expertise-circle p {
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-family: Mulish, sans-serif;

    line-height: 1.5;
    font-weight: 600;
}

/* Responsive */

/* =========================
   Laptop / Tablet
========================= */

@media (max-width: 1024px) {

    .brand-expertise-container {
        gap: 50px;
    }

    .brand-expertise-left h2 {
        font-size: 42px;
    }

    .brand-expertise-image {
        width: 360px;
        height: 520px;
    }
}


/* =========================
   Tablet
========================= */

@media (max-width: 991px) {

    .brand-expertise-section {
        padding: 60px 20px;
    }

    .brand-expertise-container {
        flex-direction: column;
        gap: 40px;
    }

    .brand-expertise-left,
    .brand-expertise-right {
        width: 100%;
    }

    .brand-expertise-left {
        text-align: left;
    }

    .brand-expertise-left p {
        max-width: 100%;
    }

    .brand-expertise-image {
        width: 340px;
        height: 500px;
    }

    .brand-expertise-left h2 {
        font-size: 42px;
    }
}


/* =========================
   Mobile
========================= */

@media (max-width: 768px) {

    .brand-expertise-section {
        padding: 50px 15px;
    }

    .brand-expertise-container {
        gap: 30px;
    }

    .brand-expertise-subtitle {
        font-size: 11px;
        padding: 8px 12px;
    }

    .brand-expertise-left h2 {
        font-size: 34px;
        line-height: 1.2;
        margin-top: 20px;
    }

    .brand-expertise-left p {
        font-size: 14px;
        line-height: 1.8;
    }

    .brand-expertise-item {
        padding: 22px;
        gap: 15px;
    }

    .brand-expertise-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 22px;
    }

    .brand-expertise-item h4 {
        font-size: 18px;
        margin-top: 10px;
    }

    .brand-expertise-item p {
        font-size: 13px;
    }

    .brand-expertise-image {
        width: 300px;
        height: 450px;
    }

    .brand-expertise-circle {
        width: 140px;
        height: 140px;
    }

    .brand-expertise-circle h3 {
        font-size: 42px;
    }

    .brand-expertise-circle p {
        font-size: 12px;
    }
}


/* =========================
   Small Mobile
========================= */

@media (max-width: 480px) {

    .brand-expertise-section {
        padding: 42px 23px;

    }

    .brand-expertise-container {
        max-width: 100%;
    }

    .brand-expertise-left h2 {
        font-size: 28px;
    }

    .brand-expertise-left p {
        font-size: 13px;
    }

    .brand-expertise-box {
        border-radius: 16px;
    }

    .brand-expertise-item {
        padding: 18px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .brand-expertise-icon {
        margin-bottom: 10px;
    }

    .brand-expertise-item h4 {
        margin-top: 0;
        font-size: 17px;
    }

    .brand-expertise-image {
        width: 342px;
        height: 381px;
        border-radius: 33px;
    }

    .brand-expertise-image::after {
        height: 150px;
    }

    .brand-expertise-circle {
        width: 110px;
        height: 110px;
        bottom: 20px;
    }

    .brand-expertise-circle h3 {
        font-size: 32px;
        margin-bottom: 5px;
    }

    .brand-expertise-circle p {
        font-size: 10px;
        line-height: 1.4;
    }
}

.tabs{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    background: #1b1b1b;
    padding: 10px;
    border-radius: 10px;
}

.tab{
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #aaa;
    background: #2a2a2a;
    font-size: 14px;
    transition: 0.3s;
}

.tab:hover{
    background: #333;
    color: #fff;
}

.tab.active{
    background: #41d42f;
    color: #fff;
    font-weight: 600;
}