/*==================================================
    SITELOCK TABS
    HostingInIndia
===================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#222;
    background:#fff;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/*======================================
SECTION
=======================================*/

.sitelock-wrapper{
    padding:90px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    font-size:42px;
    font-weight:700;
    color:#0d3b66;
    margin-bottom:60px;
}

.section-title::after{
    content:'';
    width:80px;
    height:4px;
    background:#00a4ef;
    display:block;
    margin:20px auto 0;
    border-radius:20px;
}

/*======================================
TAB NAVIGATION
=======================================*/

.tab-navigation{

    display:flex;

    justify-content:center;

    align-items:stretch;

    gap:20px;

    flex-wrap:nowrap;

    margin-bottom:60px;

}

/*======================================
TAB CARD
=======================================*/

.tab-item{

    flex:1;

    min-width:170px;

    background:#fff;

    border-radius:15px;

    padding:25px 15px;

    cursor:pointer;

    position:relative;

    text-align:center;

    transition:.35s;

    border:1px solid #ececec;

    box-shadow:0 5px 15px rgba(0,0,0,.04);

}

.tab-item:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/*======================================
ICON
=======================================*/

.tab-item img{

    width:55px;

    height:55px;

    object-fit:contain;

    margin-bottom:18px;

    transition:.35s;

}

.tab-item:hover img{

    transform:scale(1.08);

}

/*======================================
TITLE
=======================================*/

.tab-item h4{

    font-size:15px;

    font-weight:600;

    color:#333;

    line-height:24px;

    text-transform:uppercase;

}

/*======================================
ACTIVE TAB
=======================================*/

.tab-item.active{

    box-shadow:0 25px 60px rgba(0,0,0,.15);

    transform:translateY(-8px);

}

.tab-item.active h4{

    color:#0b74d8;

}

.tab-item.active img{

    transform:scale(1.05);

}

/*======================================
BOTTOM ARROW
=======================================*/

.tab-arrow{

    position:absolute;

    left:50%;

    bottom:-18px;

    transform:translateX(-50%);

    width:0;

    height:0;

    border-left:15px solid transparent;

    border-right:15px solid transparent;

    border-top:18px solid #ffffff;

    display:none;

    filter:drop-shadow(0 4px 5px rgba(0,0,0,.08));

}

.tab-item.active .tab-arrow{

    display:block;

}

/*======================================
CONTENT WRAPPER
=======================================*/

.tab-content{

    position:relative;

}

/*======================================
CONTENT CARD
=======================================*/

.content-item{

    display:none;

    align-items:center;

    justify-content:space-between;

    gap:70px;

    background:#fff;

    border-radius:20px;

    padding:50px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    border:1px solid #edf2f7;

    animation:fadeContent .5s ease;

}

.content-item.active{

    display:flex;

}

/*======================================
LEFT
=======================================*/

.content-left{

    flex:1;

}

.content-left h2{

    font-size:38px;

    font-weight:700;

    color:#153e75;

    margin-bottom:25px;

}

.content-left p{

    font-size:17px;

    color:#555;

    line-height:32px;

    margin-bottom:35px;

}

/*======================================
BUTTON
=======================================*/

.btn-read{

    display:inline-flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    padding:14px 28px;

    background:#00a4ef;

    color:#fff;

    border-radius:40px;

    font-weight:600;

    transition:.35s;

}

.btn-read:hover{

    background:#007ad1;

    transform:translateY(-3px);

}

/*======================================
RIGHT
=======================================*/

.content-right{

    flex:1;

    text-align:right;

}

.content-right img{

    width:100%;

    max-width:480px;

    transition:.4s;

}

.content-item:hover img{

    transform:scale(1.03);

}

/*======================================
ANIMATION
=======================================*/

@keyframes fadeContent{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}