/*===============================
    GOOGLE FONT
================================*/

@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=block");
@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@500;600&display=block");

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#333;
    line-height:1.6;
}

/*===============================
    CONTAINER
================================*/

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/*===============================
    MAIN SECTION
================================*/

.sitelock-section{
    padding:70px 0;
}

/*===============================
    HEADER
================================*/

.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:45px;
}

.section-header h2{
    font-size:38px;
    font-weight:700;
    color:#23395d;
}

.read-more{
    text-decoration:none;
    color:#0095ff;
    font-weight:600;
    position:relative;
    transition:.3s;
}

.read-more::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-3px;
    width:0;
    height:2px;
    background:#0095ff;
    transition:.3s;
}

.read-more:hover::after{
    width:100%;
}

.read-more:hover{
    color:#005bb5;
}

/*===============================
    FEATURE GRID
================================*/

.feature-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    border:1px solid #e8edf5;
    border-right:none;
    border-bottom:none;
}

/*===============================
    FEATURE BOX
================================*/

.feature-box{

    padding:35px 20px;

    border-right:1px solid #e8edf5;
    border-bottom:1px solid #e8edf5;

    text-align:center;

    transition:.35s;

    background:#fff;

    position:relative;

    overflow:hidden;

}

.feature-box::before{

content:'';

position:absolute;

left:0;
top:0;

width:100%;
height:0;

background:#f4faff;

transition:.4s;

z-index:0;

}

.feature-box:hover::before{

height:100%;

}

.feature-box>*{

position:relative;

z-index:2;

}

.feature-box:hover{

transform:translateY(-8px);

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.feature-box i{

font-size:52px;

color:#00a4ff;

margin-bottom:18px;

transition:.3s;

}

.feature-box:hover i{

transform:scale(1.1);

color:#0076d6;

}

.feature-box h3{

font-size:19px;

font-weight:600;

margin-bottom:12px;

color:#23395d;

}

.feature-box p{

font-size:15px;

color:#666;

}

/*===============================
    PRICING SECTION
================================*/

.pricing-section{

padding:70px 0;

background:#f7fbff;

}

.pricing-wrapper{

display:flex;

align-items:center;

justify-content:space-between;

gap:60px;

padding:45px;

border:1px solid #dcecff;

border-radius:18px;

background:#fff;

box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.pricing-content{

flex:1;

}

.pricing-content h2{

font-size:36px;

color:#23395d;

margin-bottom:20px;

}

.pricing-content p{

margin-bottom:18px;

color:#666;

font-size:16px;

}

.pricing-image{

flex:0 0 420px;

text-align:right;

}

.pricing-image img{

width:100%;

max-width:400px;

}

/*===============================
    TABLE
================================*/

.pricing-table{

margin-top:35px;

overflow-x:auto;

}

.pricing-table table{

width:100%;

border-collapse:collapse;

min-width:600px;

}

.pricing-table th{

background:#0095ff;

color:#fff;

padding:15px;

font-weight:600;

}

.pricing-table td{

padding:14px;

border:1px solid #dbe8f7;

text-align:center;

}

.pricing-table tr:nth-child(even){

background:#f5faff;

}

/*===============================
    TABLET
================================*/

@media(max-width:1100px){

.feature-grid{

grid-template-columns:repeat(3,1fr);

}

.pricing-wrapper{

flex-direction:column;

text-align:center;

}

.pricing-image{

text-align:center;

}

}

/*===============================
    MOBILE
================================*/

@media(max-width:768px){

.section-header{

flex-direction:column;

gap:20px;

text-align:center;

}

.section-header h2{

font-size:30px;

}

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

.pricing-content h2{

font-size:28px;

}

}

/*===============================
    SMALL MOBILE
================================*/

@media(max-width:576px){

.container{

width:95%;

}

.feature-grid{

grid-template-columns:1fr;

}

.feature-box{

padding:28px 20px;

}

.section-header h2{

font-size:26px;

}

.pricing-wrapper{

padding:25px;

}

.pricing-content h2{

font-size:24px;

}

.pricing-content p{

font-size:15px;

}

.pricing-table table{

min-width:500px;

}

}