
/*===================================
        WHY CHOOSE US
====================================*/

.choose-us{
    padding:50px 0;
    background:#fafafa;
    overflow:hidden;
}

.choose-container{
    width:90%;
    max-width:1300px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

/* LEFT */

.choose-images{
    flex:1;
    position:relative;
    min-height:560px;
}

.img-card{
    position:absolute;
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.img-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.img-card:hover img{
    transform:scale(1.08);
}

.img1{
    width:250px;
    height:320px;
    right:60px;
    top:0;
}

.img2{
    width:320px;
    height:250px;
    left:0;
    top:190px;
}

.img3{
    width:120px;
    height:120px;
    right:90px;
    bottom:10px;
}

.shape{
    position:absolute;
    border-radius:50%;
    filter:blur(20px);
    opacity:.18;
    background:#4a6cf7;
}

.shape1{
    width:150px;
    height:150px;
    left:-40px;
    top:80px;
}

.shape2{
    width:180px;
    height:180px;
    right:0;
    bottom:0;
}

/* RIGHT */

.choose-content{
    flex:1;
    padding-left:20px;
}

.sub-title{

    display:inline-block;
    padding:8px 18px;

    background:#edf3ff;

    color:#4676eb;

    border-radius:30px;

    font-weight:600;

    margin-bottom:20px;

}

.choose-content h2{

    font-size:40px;

    line-height:1.2;

    color:#1d2d5d;

    margin-bottom:20px;

}

.desc{

    color:#666;

    line-height:1.9;

    margin-bottom:40px;

}

.feature{

    display:flex;

    align-items:flex-start;

    gap:20px;

    background:#fff;

    border-radius:20px;

    padding:25px;

    margin-bottom:25px;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    transition:.4s;

}

.feature:hover{

    transform:translateY(-8px);

}

.icon{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#4676eb;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    flex-shrink:0;

}

.feature h3{

    margin-bottom:10px;

    color:#1d2d5d;

}

.feature p{

    color:#666;

    line-height:1.8;

}

/* Floating */

.img1{
    animation:float1 5s ease infinite;
}

.img2{
    animation:float2 6s ease infinite;
}

.img3{
    animation:float3 4s ease infinite;
}

@keyframes float1{

0%,100%{transform:translateY(0);}
50%{transform:translateY(-15px);}

}

@keyframes float2{

0%,100%{transform:translateY(0);}
50%{transform:translateY(18px);}

}

@keyframes float3{

0%,100%{transform:translateY(0);}
50%{transform:translateY(-12px);}

}

/* Fade */

.fade{

    opacity:0;

    transform:translateY(60px);

    transition:1s;

}

.fade.active{

    opacity:1;

    transform:translateY(0);

}

/* Tablet */

@media(max-width:991px){

.choose-container{

    flex-direction:column;

}

.choose-images{

    width:100%;

    height:520px;

}

.choose-content{

    width:100%;

    padding-left:0;

}

.choose-content h2{

    font-size:36px;

}

}

/* Mobile */

@media(max-width:768px){

.choose-us{

    padding:70px 20;

}

.choose-images{

    height:420px;

}

.img1{

    width:180px;

    height:220px;

    right:20px;

}

.img2{

    width:220px;

    height:180px;

    top:150px;

}
.img3{
    width:220px;
    height:220px;

    right:20px;
    bottom:0;

    z-index:3;
}

.choose-content h2{

    font-size:30px;

}

.feature{

    padding:18px;

}

}

/* Small Mobile */

@media(max-width:480px){

.choose-images{

    height:320px;

}

.img1{

    width:140px;

    height:170px;

}

.img2{

    width:180px;

    height:140px;

}

.img3{

    display:none;

}

.choose-content h2{

    font-size:24px;

}

}


/*  */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

background:#f6f9ff;

}

.work-section{

padding:50px 20px;

background:linear-gradient(180deg,#f8fbff,#edf4ff);

overflow:hidden;

position:relative;

}

.work-section::before{

content:"";

position:absolute;

width:500px;
height:500px;

background:rgba(41,98,255,.08);

border-radius:50%;

left:-220px;
top:-200px;

filter:blur(40px);

}

.work-section::after{

content:"";

position:absolute;

width:450px;
height:450px;

background:rgba(0,170,255,.08);

border-radius:50%;

right:-180px;
bottom:-150px;

filter:blur(40px);

}

.work-container{

max-width:1200px;

margin:auto;

position:relative;

z-index:2;

}

.work-heading{

text-align:center;

margin-bottom:70px;

}

.work-heading span{

display:inline-block;

padding:10px 22px;

background:#dce8ff;

color:#2962ff;

border-radius:40px;

font-weight:600;

letter-spacing:1px;

margin-bottom:20px;

}

.work-heading h2{

font-size:40px;

font-weight:800;

color:#16325c;

margin-bottom:15px;

}

.work-heading p{

max-width:650px;

margin:auto;

font-size:16px;

line-height:1.8;

color:#666;

}

.work-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.work-card{

position:relative;

background:#fff;

padding:45px 30px;

border-radius:25px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.45s;

transform-style:preserve-3d;

animation:float 5s ease-in-out infinite;

overflow:hidden;

}

.work-card:nth-child(2){

animation-delay:.4s;

}

.work-card:nth-child(3){

animation-delay:.8s;

}

.work-card:hover{

transform:
perspective(1000px)
rotateX(8deg)
rotateY(-8deg)
translateY(-15px);

box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.work-card::before{

content:"";

position:absolute;

width:220px;
height:220px;

background:linear-gradient(45deg,#2962ff,#5db9ff);

border-radius:50%;

top:-130px;
right:-110px;

opacity:.08;

}

.work-number{

font-size:70px;

font-weight:800;

color:#2962ff20;

position:absolute;

top:15px;
left:20px;

}

.work-icon{

width:90px;
height:90px;

margin:auto;

border-radius:50%;

background:linear-gradient(135deg,#2962ff,#53b8ff);

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-size:36px;

box-shadow:0 15px 30px rgba(41,98,255,.35);

margin-bottom:25px;

transition:.4s;

}

.work-card:hover .work-icon{

transform:rotateY(360deg) scale(1.15);

}

.work-card h3{

font-size:26px;

color:#16325c;

margin-bottom:15px;

}

.work-card p{

font-size:16px;

line-height:1.8;

color:#666;

}

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0px);

}

}

/* Tablet */

@media(max-width:991px){

.work-grid{

grid-template-columns:repeat(2,1fr);

}

.work-heading h2{

font-size:38px;

}

}

/* Mobile */

@media(max-width:650px){

.work-grid{

grid-template-columns:1fr;

}

.work-heading h2{

font-size:30px;

}

.work-heading p{

font-size:15px;

}

.work-card{

padding:35px 25px;

}

.work-icon{

width:75px;
height:75px;

font-size:30px;

}

}