.thirteenMay-service-area-section{
    width:100%;
    padding:80px 5%;
    background:linear-gradient(180deg,#f8fbff,#eef5ff);
    font-family:Arial,sans-serif;
}

.thirteenMay-service-heading{
    text-align:center;
    max-width:1100px;
    margin:auto;
    margin-bottom:50px;
}

.thirteenMay-service-heading h2{
    font-size:38px;
    line-height:1.4;
    color:#0f172a;
    margin-bottom:20px;
}

.thirteenMay-service-heading p{
    font-size:17px;
    line-height:1.9;
    color:#475569;
}

.thirteenMay-service-wrapper{
    display:flex;
    gap:35px;
}

.thirteenMay-left-panel{
    width:32%;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.thirteenMay-tab-button{
    position:relative;
    padding:24px;
    border:none;
    border-radius:18px;
    background:rgba(255,255,255,0.8);
    backdrop-filter:blur(10px);
    cursor:pointer;
    text-align:left;
    font-size:16px;
    font-weight:600;
    line-height:1.5;
    transition:0.4s ease;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    overflow:hidden;
}

.thirteenMay-tab-button:hover{
    transform:translateY(-5px);
    background:linear-gradient(135deg,#0f172a,#2563eb);
    color:#ffffff;
}

.thirteenMay-tab-button.active{
    background:linear-gradient(135deg,#2563eb,#0f172a);
    color:#ffffff;
}

.thirteenMay-right-panel{
    width:68%;
    background:#ffffff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.thirteenMay-tab-content{
    display:none;
    animation:thirteenMayFade 0.4s ease;
}

.thirteenMay-tab-content.active{
    display:block;
}

@keyframes thirteenMayFade{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.thirteenMay-tab-content h3{
    font-size:30px;
    margin-bottom:20px;
    color:#0f172a;
}

.thirteenMay-tab-content p{
    font-size:17px;
    line-height:1.9;
    color:#475569;
    margin-bottom:30px;
}

.thirteenMay-list-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.thirteenMay-list-grid span{
    padding:18px;
    background:#f8fafc;
    border-radius:14px;
    font-size:15px;
    font-weight:600;
    border:1px solid #e2e8f0;
    transition:0.3s ease;
}

.thirteenMay-list-grid span:hover{
    transform:translateY(-4px);
    background:#2563eb;
    color:#ffffff;
}

@media(max-width:991px){

    .thirteenMay-service-wrapper{
        flex-direction:column;
    }

    .thirteenMay-left-panel,
    .thirteenMay-right-panel{
        width:100%;
    }

    .thirteenMay-list-grid{
        grid-template-columns:1fr;
    }

    .thirteenMay-service-heading h2{
        font-size:30px;
    }

}

@media(max-width:600px){

    .thirteenMay-service-area-section{
        padding:60px 20px;
    }

    .thirteenMay-service-heading h2{
        font-size:24px;
    }

    .thirteenMay-tab-content h3{
        font-size:22px;
    }

}