/*====================================================
                GOOGLE FONT
====================================================*/

@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;

    font-family:'Poppins',sans-serif;

}

html{

    scroll-behavior:smooth;

}

body{

    background:#f7f9fc;

    overflow-x:hidden;

}

/*====================================================
                SERVICE SECTION
====================================================*/

.service-section{

    width:100%;

    padding:100px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

}

.service-section:nth-child(odd){

    background:#ffffff;

}

.service-section:nth-child(even){

    background:#f8fbff;

}

/*====================================================
                IMAGE
====================================================*/

.service-image{

    width:48%;

    position:relative;

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    transition:.5s;

}

.service-image img{

    width:100%;

    height:500px;

    object-fit:cover;

    transition:.6s;

}

.service-image:hover img{

    transform:scale(1.08);

}

.service-image:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.18);

}

/* Decorative Shape */

.service-image::before{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    background:#FFC107;

    border-radius:50%;

    top:-50px;

    right:-50px;

    opacity:.15;

}

/*====================================================
                CONTENT
====================================================*/

.service-content{

    width:48%;

}

.service-content{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*====================================================
                SERVICE NUMBER
====================================================*/

.service-number{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:80px;

    height:80px;

    border-radius:50%;

    background:#FFC107;

    color:#0B2D5C;

    font-size:28px;

    font-weight:700;

    margin-bottom:25px;

    box-shadow:0 15px 35px rgba(255,193,7,.35);

}

/*====================================================
                HEADING
====================================================*/

.service-content h2{

    font-size:46px;

    color:#0B2D5C;

    font-weight:700;

    margin-bottom:15px;

    line-height:58px;

}

/*====================================================
                YELLOW LINE
====================================================*/

.line{

    width:90px;

    height:5px;

    background:#FFC107;

    border-radius:30px;

    margin-bottom:30px;

}

/*====================================================
                PARAGRAPHS
====================================================*/

.service-content p{

    color:#666;

    font-size:18px;

    line-height:34px;

    text-align:justify;

    margin-bottom:25px;

}

/*====================================================
                BOTTOM INFO
====================================================*/

.service-bottom{

    display:flex;

    gap:25px;

    margin-top:40px;

}

/*====================================================
                EXPERIENCE CARD
====================================================*/

.experience{

    flex:1;

    background:#fff;

    border-radius:18px;

    padding:25px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    border-bottom:4px solid #FFC107;

}

.experience:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.experience h3{

    font-size:38px;

    color:#0B2D5C;

    font-weight:700;

    margin-bottom:10px;

}

.experience span{

    font-size:16px;

    color:#666;

    font-weight:500;

}

/*====================================================
                CONTENT HOVER
====================================================*/

.service-content:hover h2{

    color:#FFC107;

    transition:.4s;

}

.service-content:hover .line{

    width:130px;

    transition:.4s;

}

.service-content:hover .service-number{

    transform:rotate(360deg);

    transition:.8s;

}

/*====================================================
                RESPONSIVE
====================================================*/

@media(max-width:1200px){

    .service-section{

        gap:50px;

    }

    .service-content h2{

        font-size:40px;

        line-height:50px;

    }

    .service-image img{

        height:430px;

    }

}

@media(max-width:991px){

    .service-section{

        flex-direction:column;

        padding:80px 6%;

        gap:40px;

    }

    /* Reverse Layout */

    .service-section:nth-child(even){

        flex-direction:column-reverse;

    }

    .service-image,
    .service-content{

        width:100%;

    }

    .service-image img{

        height:400px;

    }

    .service-content{

        text-align:center;

    }

    .line{

        margin:25px auto;

    }

    .service-content p{

        text-align:center;

    }

    .service-bottom{

        justify-content:center;

    }

}

@media(max-width:768px){

    .service-section{

        padding:70px 20px;

    }

    .service-content h2{

        font-size:34px;

        line-height:45px;

    }

    .service-content p{

        font-size:16px;

        line-height:30px;

    }

    .service-image img{

        height:300px;

    }

    .service-number{

        width:70px;

        height:70px;

        font-size:24px;

    }

    .experience{

        padding:20px;

    }

    .experience h3{

        font-size:30px;

    }

}

@media(max-width:576px){

    .service-bottom{

        flex-direction:column;

    }

    .service-content h2{

        font-size:28px;

        line-height:38px;

    }

    .service-image{

        border-radius:18px;

    }

    .service-image img{

        height:250px;

    }

}

/*====================================================
                SCROLL BAR
====================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:#0B2D5C;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#FFC107;

}

/*====================================================
                AOS FIX
====================================================*/

[data-aos]{

    transition-duration:1.2s !important;

}

/*====================================================
                IMAGE EFFECT
====================================================*/

.service-image::after{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:linear-gradient(

        rgba(0,0,0,.05),

        rgba(0,0,0,.20)

    );

    opacity:0;

    transition:.5s;

}

.service-image:hover::after{

    opacity:1;

}

/*====================================================
                SMOOTH HOVER
====================================================*/

.service-content,
.service-image,
.experience{

    transition:.5s ease;

}