/*==================================================
    SERVICES PAGE - DIGITAL PEHAL
    Version : 1.0
==================================================*/


/*==================================================
    HERO SECTION
==================================================*/

.services-hero{
    background:#ffffff;
    padding:60px 0;
}

.services-hero-content{
    max-width:850px;
    margin:auto;
    text-align:center;
}

.services-hero h1{
    font-size:48px;
    font-weight:700;
    color:#222;
    line-height:1.25;
    margin:20px 0;
}

.services-hero p{
    max-width:760px;
    margin:0 auto;
    font-size:18px;
    line-height:1.8;
    color:#555;
}


/*==================================================
    SERVICE HIGHLIGHTS
==================================================*/

.service-highlights{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin:40px 0;
}


/*==================================================
    SERVICES GRID
==================================================*/

.services-grid{
    background:#F8F9FA;
    padding:80px 0;
}

.services-grid .section-heading{
    max-width:760px;
    margin:0 auto 60px;
}

.services-grid .section-heading p{
    margin-top:18px;
    font-size:18px;
    color:#666;
    line-height:1.8;
}


/*==================================================
    SERVICE CARDS
==================================================*/

.services-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{

    background:#ffffff;

    border:1px solid #E8E8E8;

    border-radius:18px;

    padding:35px 30px;

    transition:.35s ease;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    height:100%;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.10);

}


/*==================================================
    ICON
==================================================*/

.service-icon{

    width:72px;

    height:72px;

    margin-bottom:25px;

    border-radius:50%;

    background:#FFF4E8;

    display:flex;

    justify-content:center;

    align-items:center;

}

.service-icon i{

    font-size:30px;

    color:#FF8C00;

}


/*==================================================
    CARD CONTENT
==================================================*/

.service-card h3{

    font-size:24px;

    color:#222;

    margin-bottom:15px;

}

.service-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}

.service-card ul{

    list-style:none;

    padding:0;

    margin:0 0 25px;

}

.service-card ul li{

    position:relative;

    padding-left:22px;

    margin-bottom:12px;

    color:#444;

    font-size:15px;

}

.service-card ul li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#FF8C00;

    font-weight:700;

}


/*==================================================
    READ MORE LINK
==================================================*/

.service-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#0D4C92;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.service-link:hover{

    color:#FF8C00;

}

.service-link i{

    transition:.3s;

}

.service-link:hover i{

    transform:translateX(5px);

}


/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:992px){

.services-wrapper{

    grid-template-columns:repeat(2,1fr);

}

.services-hero h1{

    font-size:40px;

}

}


@media(max-width:768px){

.services-wrapper{

    grid-template-columns:1fr;

}

.services-hero{

    padding:50px 0;

}

.services-grid{

    padding:60px 0;

}

.services-hero h1{

    font-size:34px;

}

.services-hero p{

    font-size:16px;

}

}


@media(max-width:576px){

.services-hero h1{

    font-size:28px;

}

.service-card{

    padding:30px 25px;

}

.service-card h3{

    font-size:22px;

}

}