/*
Home Page CSS
Anwar Services Pro
*/


/*==========================
        HERO SECTION
==========================*/


.hero-section{

    padding:80px 0;
    background:linear-gradient(135deg,#ffffff 0%,#f5f9ff 100%);
    overflow:hidden;

}


.hero-wrapper{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;

}


.hero-text{

    flex:1;

}


.hero-badge{

    display:inline-block;
    background:#0d5cab;
    color:#fff;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:20px;
    font-weight:700;

}


.hero-text h1{

    font-size:52px;
    line-height:1.3;
    color:#0c2f57;
    margin-bottom:20px;
    font-weight:800;

}


.hero-text p{

    font-size:18px;
    line-height:2;
    color:#666;
    margin-bottom:35px;

}


.hero-buttons{

    display:flex;
    gap:15px;
    flex-wrap:wrap;

}



.btn-primary,
.btn-secondary{

    padding:16px 32px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;

}



.btn-primary{

    background:#0d5cab;
    color:#fff;

}



.btn-primary:hover{

    background:#083f77;
    color:#fff;

}



.btn-secondary{

    background:#fff;
    color:#0d5cab;
    border:2px solid #0d5cab;

}



.btn-secondary:hover{

    background:#0d5cab;
    color:#fff;

}



.hero-image{

    flex:1;
    text-align:center;

}



.hero-image img{

    width:100%;
    max-width:520px;
    animation:floatHero 4s ease-in-out infinite;

}



@keyframes floatHero{

    0%{
        transform:translateY(0);
    }


    50%{
        transform:translateY(-12px);
    }


    100%{
        transform:translateY(0);
    }

}





/*==========================
        GENERAL TITLES
==========================*/


.section-title{

    text-align:center;
    color:#0c2f57;
    font-size:42px;
    font-weight:800;
    margin-bottom:60px;
    position:relative;

}



.section-title::after{

    content:"";
    width:80px;
    height:4px;
    background:#d4af37;
    display:block;
    margin:18px auto 0;
    border-radius:50px;

}





/*==========================
        SERVICES
==========================*/


.services-section{

    padding:90px 0;
    background:#fff;

}



.services-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}



.service-card{

    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    text-align:center;
    transition:.35s;
    border:1px solid #eef2f6;

}



.service-card:hover{

    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,.10);

}



.service-icon{

    width:75px;
    height:75px;
    background:#f1f7ff;
    color:#0d5cab;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 20px;
    font-size:32px;
    transition:.3s;

}



.service-card:hover .service-icon{

    background:#0d5cab;
    color:#fff;

}



.service-card h3{

    color:#0b2d5c;
    font-size:24px;
    margin-bottom:15px;

}



.service-card p{

    color:#555;
    line-height:1.9;
    margin-bottom:20px;

}



.service-card a{

    color:#c9a227;
    font-weight:700;
    text-decoration:none;

}





/*==========================
        STATS
==========================*/


.stats-section{

    padding:90px 0;
    background:#0d5cab;

}



.stats-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}



.stat-box{

    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    padding:35px 20px;
    border-radius:18px;
    text-align:center;
    color:#fff;
    border:1px solid rgba(255,255,255,.25);
    transition:.3s;

}



.stat-box:hover{

    transform:translateY(-8px);

}



.stat-box i{

    font-size:35px;
    margin-bottom:15px;

}



.stat-box h3{

    font-size:42px;
    margin:10px 0;
    font-weight:800;

}



.stat-box p{

    font-size:18px;

}

/*==========================
        WHY CHOOSE US
==========================*/


.about-section{

    padding:90px 0;
    background:#f8fbff;

}



.features{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}



.feature-box{

    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s;

}



.feature-box:hover{

    transform:translateY(-8px);

}



.feature-box i{

    font-size:38px;
    color:#0d5cab;
    margin-bottom:20px;

}



.feature-box h3{

    color:#0b2d5c;
    font-size:24px;
    margin-bottom:15px;

}



.feature-box p{

    color:#555;
    line-height:1.9;

}





/*==========================
        AREAS SECTION
==========================*/


.areas-section{

    padding:90px 0;
    background:#fff;

}



.areas-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}



.area-box{

    background:#fff;
    padding:30px 20px;
    border-radius:18px;
    text-align:center;
    border:1px solid #eef2f6;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s;

}



.area-box:hover{

    transform:translateY(-8px);
    background:#0d5cab;

}



.area-box i{

    font-size:35px;
    color:#d4af37;
    margin-bottom:15px;

}



.area-box h3{

    color:#0b2d5c;
    font-size:22px;

}



.area-box:hover h3{

    color:#fff;

}





/*==========================
        TESTIMONIALS
==========================*/


.testimonials-section{

    padding:90px 0;
    background:#f8fbff;

}



.testimonials-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}



.testimonial-box{

    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.06);

}



.client-icon{

    width:65px;
    height:65px;
    background:#0d5cab;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 20px;
    font-size:25px;

}



.testimonial-box p{

    color:#555;
    line-height:1.9;

}



.testimonial-box h3{

    color:#0b2d5c;
    margin-top:20px;

}





/*==========================
        FAQ SECTION
==========================*/


.faq-section{

    padding:90px 0;
    background:#fff;

}



.faq-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;

}



.faq-box{

    background:#f8fbff;
    padding:30px;
    border-radius:16px;
    border-right:4px solid #0d5cab;

}



.faq-box h3{

    color:#0b2d5c;
    font-size:22px;
    margin-bottom:15px;

}



.faq-box p{

    color:#555;
    line-height:1.9;

}





/*==========================
        LATEST POSTS
==========================*/


.latest-section{

    padding:90px 0;
    background:#f7f9fc;

}





/*==========================
        CTA SECTION
==========================*/


.cta-section{

    padding:80px 0;

}



.cta-box{

    background:#0d5cab;
    padding:55px;
    border-radius:25px;
    text-align:center;
    color:#fff;

}



.cta-box h2{

    font-size:38px;
    margin-bottom:20px;

}



.cta-box p{

    font-size:18px;
    margin-bottom:30px;

}



.cta-buttons{

    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;

}



.cta-box .btn-secondary{

    background:#fff;

}





/*==========================
        RESPONSIVE
==========================*/


@media(max-width:1100px){


    .services-grid,
    .areas-grid{

        grid-template-columns:repeat(2,1fr);

    }


    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }


}



@media(max-width:768px){


    .hero-wrapper{

        flex-direction:column;

    }



    .hero-text h1{

        font-size:34px;

    }



    .services-grid,
    .features,
    .areas-grid,
    .testimonials-grid,
    .stats-grid,
    .faq-grid{

        grid-template-columns:1fr;

    }



    .section-title{

        font-size:32px;

    }



    .cta-box{

        padding:35px 20px;

    }



    .cta-box h2{

        font-size:28px;

    }


}