/*==================================================
    SERVICES PAGE - DIGITAL PEHAL
    Version : 1.0
==================================================*/


/*==================================================
    HERO SECTION
==================================================*/

.services-hero{
    background:#ffffff;
    padding:20px 0;
}

.services-hero-content{
    max-width:850px;
    margin:auto;
    padding:10px 0;
    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:20px 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;

    margin: 0 auto 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;

}

}

/*==================================================
    SERVICES CTA
==================================================*/

.services-cta{
    padding:80px 0;
    background:#ffffff;
}

.services-cta-box{

    max-width:900px;
    margin:auto;

    text-align:center;

    background:linear-gradient(135deg,#0D4C92,#1A66C9);

    color:#ffffff;

    padding:70px 50px;

    border-radius:24px;

    box-shadow:0 20px 50px rgba(13,76,146,.18);

}

.services-cta .section-tag{

    background:rgba(255,255,255,.15);

    color:#ffffff;

    margin-bottom:20px;

}

.services-cta h2{

    font-size:42px;

    margin-bottom:20px;

    color:#ffffff;

}

.services-cta p{

    max-width:700px;

    margin:0 auto 35px;

    font-size:18px;

    line-height:1.8;

    color:rgba(255,255,255,.90);

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/* White Button */

.services-cta .btn-primary{

    background:#ffffff;

    color:#0D4C92;

}

.services-cta .btn-primary:hover{

    background:#FF8C00;

    color:#ffffff;

}

/* Transparent Button */

.services-cta .btn-outline{

    background:transparent;

    color:#ffffff;

    border:2px solid rgba(255,255,255,.7);

}

.services-cta .btn-outline:hover{

    background:#ffffff;

    color:#0D4C92;

}


/*==================================================
    RESPONSIVE
==================================================*/

@media (max-width:768px){

.services-cta{

    padding:60px 0;

}

.services-cta-box{

    padding:50px 30px;

}

.services-cta h2{

    font-size:32px;

}

.services-cta p{

    font-size:16px;

}

.cta-buttons{

    flex-direction:column;

    align-items:center;

}

.cta-buttons .btn{

    width:100%;
    max-width:280px;

}

}

@media (max-width:576px){

.services-cta h2{

    font-size:28px;

}

.services-cta-box{

    padding:40px 25px;

}

}