.traders_section {
    position: relative;
    padding: 30px 50px;
    background: #000;
    overflow: hidden;
}

.traders_section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 40%,
            rgba(214, 161, 40, 0.12),
            transparent 60%);
    pointer-events: none;
}

.traders_section>.container {
    position: relative;
    z-index: 2;
}

/* ==========================
   Left Content
========================== */

.traders_section .traders_content {
    max-width: 470px;
}

.traders_section .traders_content .sub_title {
    display: inline-block;
    color: #d6a128;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.traders_section .traders_content h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.traders_section .traders_content h2 span {
    display: block;
    color: #d6a128;
}

.traders_section .traders_content p {
    color: #c8c8c8;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 10px;
}
/* ==========================
   Feature List
========================== */

.traders_section .traders_content ul {
    list-style: none;
    margin: 0 0 35px;
    padding: 0;
}

.traders_section .traders_content ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 17px;
    margin-bottom: 3px;
}

.traders_section .traders_content ul li svg {
    color: #d6a128;
    font-size: 18px;
}

/* ==========================
   Button
========================== */

.traders_section .traders_content .learn_btn {
    background: linear-gradient(180deg, #ffd35a, #d6a128);
    color: #111;
    border: none;
    padding: 15px 36px;
    border-radius: 6px;
    font-weight: 700;
    transition: all .35s ease;
}

.traders_section .traders_content .learn_btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(214, 161, 40, .35);
}

/* ==========================
   Right Image
========================== */

.traders_section .traders_image {
    position: relative;
    text-align: right;
}

.traders_section .traders_image img {
    width: 100%;
    max-width: 820px;
    height: auto;
    animation: floatImage 6s ease-in-out infinite;
}

/* Bottom Glow */

.traders_section .traders_image::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 280px;
    height: 40px;
    background: radial-gradient(circle,
            rgba(255, 196, 0, .9),
            rgba(255, 196, 0, 0));
    filter: blur(18px);
}

/* ==========================
   Animation
========================== */

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}
/* ===========================
   GLOBAL ANIMATIONS
=========================== */

html{
    scroll-behavior:smooth;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeRight{
    from{
        opacity:0;
        transform:translateX(60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes zoomIn{
    from{
        opacity:0;
        transform:scale(.9);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

@keyframes glow{
    0%,100%{
        box-shadow:0 0 0 rgba(214,161,40,0);
    }
    50%{
        box-shadow:0 0 30px rgba(214,161,40,.35);
    }
}

@keyframes pulse{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.05);
    }
}

.blink_text {
    opacity: 0;
    animation: blinkReveal 2.5s ease forwards;
}

@keyframes blinkReveal {
    0% {
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    35% {
        opacity: 1;
    }
    45% {
        opacity: 0;
    }
    55% {
        opacity: 1;
    }
    70% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* ==========================
   Tablet
========================== */

@media (min-width:576px) and (max-width:991px) {

    .traders_section {
        padding: 70px 0;
    }

    .traders_section .traders_content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 50px;
    }

.traders_section .traders_content h2 {
    font-size: 28px;
}

    .traders_section .traders_content p {
        font-size: 16px;
    }

    .traders_section .traders_content ul {
        display: inline-block;
        text-align: left;
    }

    .traders_section .traders_image {
        text-align: center;
    }

    .traders_section .traders_image img {
        max-width: 650px;
    }

}

/* ==========================
   Mobile
========================== */

@media (min-width:0px) and (max-width:575px) {

    .traders_section {
        padding: 50px 0;
    }

  .traders_section .traders_content h2 {
    font-size: 19px;
}
    .traders_section .traders_content p {
        font-size: 15px;
    }

    .traders_section .traders_content ul li {
        font-size: 15px;
    }

    .traders_section .traders_content .learn_btn {
        width: 100%;
    }

    .traders_section .traders_image img {
        max-width: 100%;
    }

    .traders_section .traders_image::after {
        width: 180px;
    }

}