/* =========================================================
   MAIN SECTION
========================================================= */

.service-main-section{
    width:100%;
    background:#0f172a;
    padding:80px 20px;
    border-radius:30px;
    box-sizing:border-box;
}

/* =========================================================
   MAIN HEADING
========================================================= */

.main-service-heading{
    font-size:48px;
    line-height:1.2;
    font-weight:800;
    color:#ffffff;
    text-align:center;
    margin-bottom:50px;
    padding:0 20px;
}

/* =========================================================
   MAIN WRAPPER
========================================================= */

.custom-service-wrapper{
    display:flex;
    gap:40px;
    width:100%;
    padding:0;
    background:#0f172a;
    border-radius:30px;
    box-sizing:border-box;
}

/* =========================================================
   LEFT SIDE
========================================================= */

.custom-service-left{
    width:35%;
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* =========================================================
   BUTTONS
========================================================= */

.tab-btn{
    width:100%;
    border:none;
    outline:none;
    cursor:pointer;
    padding:22px 25px;
    border-radius:18px;
    background:#111827;
    color:#ffffff;
    text-align:left;
    font-size:16px;
    font-weight:600;
    transition:0.4s;
    border:1px solid rgba(255,255,255,0.08);
}

.tab-btn:hover{
    transform:translateY(-5px);

    background:linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );
}

.tab-btn.active{

    background:linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    transform:translateY(-5px);

    box-shadow:0 15px 40px rgba(37,99,235,0.35);
}

/* =========================================================
   RIGHT SIDE
========================================================= */

.custom-service-right{
    width:65%;
    background:#111827;
    border-radius:25px;
    padding:50px;
    color:#ffffff;
    box-sizing:border-box;
    position:relative;
    overflow:hidden;
}

/* =========================================================
   CONTENT
========================================================= */

.tab-content{
    display:none;
    animation:fadeEffect 0.4s ease;
}

.tab-content.active{
    display:block;
}

.tab-content h2{
    font-size:42px;
    line-height:1.3;
    margin-bottom:25px;
    color:#ffffff;
}

.tab-content p{
    font-size:18px;
    line-height:1.9;
    color:#d1d5db;
    margin-bottom:40px;
}

/* =========================================================
   BUTTON
========================================================= */

.service-btn{
    display:inline-block;
    padding:16px 32px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    color:#ffffff;
    text-decoration:none;
    border-radius:14px;
    font-weight:600;
    transition:0.4s;
}

.service-btn:hover{
    transform:translateY(-5px);
}

/* =========================================================
   ANIMATION
========================================================= */

@keyframes fadeEffect{

    from{
        opacity:0;
        transform:translateY(20px);
    }

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

}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media(max-width:991px){

    .service-main-section{
        padding:50px 15px;
    }

    .main-service-heading{
        font-size:34px;
        margin-bottom:30px;
    }

    .custom-service-wrapper{
        flex-direction:column;
        padding:0;
    }

    .custom-service-left,
    .custom-service-right{
        width:100%;
    }

    .custom-service-right{
        padding:30px;
    }

    .tab-content h2{
        font-size:28px;
    }

}