    /* ===================================================
   Whitelion Case Study - Custom Modern UI Theme
   =================================================== */
    .wl-case-study-section {
        padding: 60px;
    }

    /* The Main Card Wrapper */
    .wl-card-wrapper {
        background: #ffffff;
        border-radius: 24px;
        padding: 50px;
        box-shadow: 0 0 0 1px rgba(0, 137, 255, 0.07),
            0 8px 24px rgba(0, 137, 255, 0.10),
            0 12px 40px rgba(0, 137, 255, 0.12),
            0 2px 6px rgba(0, 0, 0, 0.04);
        border: 1px solid #f1f5f9;
    }

    /* ----------------------------------
   Modern "Segmented Control" Tabs
----------------------------------- */
    .wl-tabs-nav {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        list-style: none;
        margin: 0 auto 40px auto;
        background: #f1f5f9;
        border-radius: 16px;
        max-width: 100%;
        gap: 25px;
    }

    .wl-tab-item {
        margin: 0;
    }

    .wl-tab-btn {
        background: transparent;
        border: none;
        color: #64748b;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 8px 24px;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        white-space: nowrap;
    }

    .wl-tab-btn:hover {
        color: #0f172a;
    }

    .wl-tab-btn.active {
        color: #0089ff;

    }

    /* ----------------------------------
   Tab Content Area
----------------------------------- */
    .wl-tab-content-area {
        position: relative;
    }

    .wl-tab-panel {
        display: none;
        animation: wlFadeInUp 0.4s ease forwards;
    }

    .wl-tab-panel.active {
        display: block;
    }

    @keyframes wlFadeInUp {
        from {
            opacity: 0;
            transform: translateY(15px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Typography inside tabs */
    .wl-tab-panel p {
        color: #475569;
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 24px;
        text-align: justify;
    }

    .wl-tab-panel strong {
        color: #0f172a;
        font-weight: 700;
    }

    /* Custom Lists */
    .wl-custom-list {
        list-style: none;
        padding: 0;
        margin: 0 0 24px 0;
    }

    .wl-custom-list li {
        position: relative;
        padding-left: 32px;
        margin-bottom: 16px;
        color: #475569;
        font-size: 1.2rem;
        line-height: 1.7;
    }

    /* Nice Blue Checkmark Bullet */
    .wl-custom-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 6px;
        width: 20px;
        height: 20px;
        background-color: #e0f2fe;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wl-custom-list li::after {
        content: '✓';
        position: absolute;
        left: 5px;
        top: 6px;
        color: #1a6bbf;
        font-size: 12px;
        font-weight: bold;
    }

      @media (max-width: 1200px) {
       

        .wl-tabs-nav {
            justify-content: flex-start;
            overflow-x: auto;
            border-radius: 12px;
            padding: 6px;
            width: 100%;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

       
    }

    /* ----------------------------------
   Mobile Responsiveness
----------------------------------- */
    @media (max-width: 768px) {
        .wl-card-wrapper {
            padding: 30px 20px;
            border-radius: 20px;
        }

       

        .wl-tabs-nav::-webkit-scrollbar {
            display: none;
        }

        .wl-tab-btn {
            padding: 10px 18px;
            font-size: 0.95rem;
        }
    }

    /* 1. Clean & Spacious Top Section */
    .gradiant-bg-section {
        background-color: #fdfdfd;
        padding: 80px 0 40px 0;
    }

    .case-studies-parapgraph p {
        color: #4a5568;
        font-size: 1.25rem;
        line-height: 1.8;
        max-width: 80%;
        margin: 0 auto;
        text-align: center;
    }

    .case-studies-parapgraph strong {
        color: #1a202c;
        font-weight: 700;
    }