@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #F8FAFC;
    font-family: 'Inter',sans-serif;
}
nav{
    width: 100%;
}
.con1{
    width: 100%;
    height: 80px;
    border: 1px solid black;
    display: flex;
    justify-content: space-between;
}

.btn{
    font-weight: bold;
    padding-left: 32px;
    padding-top: 30px;
    padding-bottom: 32px;
    padding-right: 35.97px;
    font-size: medium;
}
.links{
    display: flex;
    padding-top: 30px;
    display: flex;
    gap: 40px;
} 
a{
    text-decoration: none;
    color: gray;
    font-weight: bold;
}
a:active{
    color: #003EC7;
    text-decoration: underline;
}
.btn1{
    height: 35px;
    width: 130px;
    background: linear-gradient(#003EC7,#0052FF);
    border-radius: 9px;
    color: white;
    font-size: small;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    margin-right:20px ;
}
.casestudy{
    width:100%;
    background-color:#F8FAFC;
    display:flex;
    justify-content:center;
}

.casewrap{
    width:1395px;
    padding-top:80px;
    padding-bottom:80px;
}
.smallcase{
    font-size:12px;
    letter-spacing:3px;
    color: #005A3C;
}

.caseheading{
    font-family:'Manrope';
    font-size:56px;
    margin-top:15px;
    width:650px;
}

.blue{
    color:#0052FF;
}

.casesub{
    margin-top:20px;
    width:600px;
    font-size:16px;
    color:#434656;
}
.casegrid{
    margin-top:60px;
    display:grid;
    grid-template-columns:1fr 1fr;
    column-gap:60px;
}

.citem img{
    width:100%;
    border-radius:12px;
}
#downimg{
    margin-top: 85px;
}
.projecttitle{
    margin-top:15px;
    font-size:45px;
    font-family: 'Manrope';
}
.subh{
    color: #6B7280;
    padding-top: 30px;
}
.projectdesc{
    margin-top:8px;
    font-size:25px;
    color:#6B7280;
    width:85%;
}
.number{
    margin-left: 105px;
    margin-top: 100px;
}
.man{
    margin-bottom:10px;
    width:750px;
    display: flex;
}
.man img{
    border-radius: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
}
.quote{
    font-size:18px;
    color:#131B2E;
    margin-top: 10px;
    font-weight: bolder;
    line-height:1.5 ;
}

.author{
    margin-top:-20px;
    font-size:14px;
    color:#6B7280;
    margin-left: 105px;
    margin-bottom: 85px;
}
.method{
    width:100%;
    height:420px;
    background-color:#EEF2F7;
    display:flex;
    justify-content:center;
    align-items:center;
}

.methodwrap{
    width:1395px;
    display:grid;
    grid-template-columns:1.2fr 1fr;
    column-gap:60px;
}
.methodtitle{
    font-family:'Manrope';
    font-size:36px;
}

.methoddesc{
    margin-top:15px;
    font-size:15px;
    color:#434656;
    width:420px;
}

.methodpoints{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.pointhead{
    font-weight:bold;
}

.pointtext{
    font-size:14px;
    color:#6B7280;
}
.methodright{
    display:grid;
    grid-template-columns:1fr 1fr;
    grid-template-rows:1fr 1fr;
    gap:20px;
}

.stat{
    background-color:white;
    border-radius:12px;
    padding:25px;
    font-size:28px;
    color:#0052FF;
    font-family:'Manrope';
}

.stat span{
    display:block;
    font-size:12px;
    color:#6B7280;
    margin-top:5px;
}
.cta2{
    width:100%;
    height:360px;
    display:flex;
    justify-content:center;
    align-items:center;
    background-color:#F8FAFC;
}

.cta2wrap{
    width:1395px;
    text-align:center;
}

.cta2title{
    font-family:'Manrope';
    font-size:65px;
    font-weight: 900;
    
}

.cta2title span{
    color:#003EC7;
}

.cta2buttons{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:20px;
}

.cta2btn1{
    width:170px;
    height:48px;
    background:linear-gradient(#003EC7,#0052FF);
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:8px;
}

.cta2btn2{
    width:170px;
    height:48px;
    background-color:#E2E7FF;
    color:#003EC7;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:8px;
}
.footer2{
    width:100%;
    height:140px;
    background-color:#F8FAFC;
    display:flex;
    justify-content:center;
    align-items:center;
}

.footerwrap{
    width:1395px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.fleft{
    font-weight:bold;
}

.fcenter{
    display:flex;
    gap:40px;
    color:gray;
    font-size:14px;
}
@media (max-width: 1024px) {
    .casegrid {
        grid-template-columns: 1fr;
    }
    .methodwrap {
        grid-template-columns: 1fr;
    }
    .methodright {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .con1 {
        flex-direction: column;
        height: auto;
        padding: 15px;
        gap: 15px;
    }
    .links {
        padding-top: 10px;
        gap: 20px;
    }
    .btn1 {
        margin: 0;
    }
    .casewrap {
        width: 100%;
        padding: 40px 20px;
    }
    .caseheading {
        font-size: 36px;
        width: 100%;
    }
    .casesub {
        width: 100%;
    }
    #downimg {
        margin-top: 40px;
    }
    .number {
        margin-left: 0;
        margin-top: 40px;
    }
    .number img {
        width: 100px;
    }
    .testimonial {
        width: 100%;
        flex-direction: column;
    }
    .testimonial img {
        width: 100%;
    }
    .author {
        margin-left: 0;
    }
    .method {
        height: auto;
        padding: 40px 20px;
    }
    .methodwrap {
        width: 100%;
    }
    .methodtitle {
        font-size: 28px;
    }
    .methoddesc {
        width: 100%;
    }
    .methodpoints {
        flex-direction: column;
    }
    .methodright {
        grid-template-columns: 1fr;
    }
    .cta2 {
        height: auto;
        padding: 40px 20px;
    }
    .cta2wrap {
        width: 100%;
    }
    .cta2title {
        font-size: 36px;
    }
    .cta2buttons {
        flex-direction: column;
        align-items: center;
    }
    .footer2 {
        height: auto;
        padding: 30px 20px;
    }
    .footerwrap {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .fcenter {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.fright{
    font-size:14px;
    color:gray;
}
