@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================================
        RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

section{
    padding:90px 0;
}

.container{
    max-width:1200px;
}
.navbar{
    background: #f8fbff;
    padding: 10px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
}

.navbar .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand{
    padding: 0;
    margin: 0;
}

.navbar-brand img{
    width: 95px;
    height: auto;
    display: block;
}

.navbar-nav{
    display: flex;
    align-items: center;
    gap: 18px;
}

.navbar-nav .nav-item{
    margin-left: 0;
}

.nav-link{
    color: #0d2d62 !important;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-link:hover,
.nav-link.active{
    color: #F47C20 !important;
}

.contact-btn{
    background: #F47C20;
    color: #f8fbff !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-btn:hover{
    background: #df6d11;
    color: #f8fbff!important;
}

/* Mobile */

@media (max-width: 991px){

    .navbar{
        padding: 8px 0;
    }

    .navbar-brand img{
        width: 75px;
    }

    .navbar-nav{
        gap: 10px;
        padding-top: 15px;
    }

    .contact-btn{
        display: inline-block;
        margin-top: 10px;
    }
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Segoe UI,sans-serif;
}

.footer{
    background:#152d72;
    color:#fff;
    padding-top:50px;
}

.footer-container{
    width:90%;
    max-width:1450px;
    margin:auto;

    display:grid;
    grid-template-columns:2.5fr 1fr 1fr 1fr;
    column-gap:90px;
    align-items:start;
}

.footer-left .logo{
    width:125px;
    margin-bottom:28px;
}

.footer-left h2{
    font-size:22px;
    font-weight:400;
    margin-bottom:22px;
}

.footer-left p{
    color:#aeb7d1;
    font-size:17px;
    line-height:1.45;
    width:430px;
}

.footer-column h3{
    font-size:20px;
    font-weight:500;
    margin-bottom:28px;
}

.footer-column a,
.footer-column span{
    display:block;
    text-decoration:none;
    color:#aeb7d1;
    margin-bottom:18px;
    font-size:17px;
    transition:.3s;
}

.footer-column a:hover{
    color:#fff;
}

.footer-bottom{
    margin-top:45px;
    border-top:1px solid rgba(255,255,255,.25);

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 40px;
}

.footer-bottom p{
    color:#d5d8e6;
    font-size:16px;
}

.footer-bottom span{
    color:#d5d8e6;
    font-size:16px;
}

@media(max-width:992px){

.footer-container{
grid-template-columns:1fr;
row-gap:40px;
}

.footer-left p{
width:100%;
}

.footer-bottom{
flex-direction:column;
gap:10px;
text-align:center;
}

}
/*=========================
CREATIVE PROCESS
=========================*/

.creative-process{

    padding:100px 0;

    background:#f7f9fc;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.process-card{

    position:relative;

    background:#fff;

    padding:45px 30px;

    text-align:center;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-10px);

}

.number{

    position:absolute;

    top:-18px;

    left:25px;

    width:45px;

    height:45px;

    border-radius:50%;

    background:#f7941d;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

}

.process-card i{

    font-size:48px;

    color:#0d3d87;

    margin:20px 0;

}

.process-card h3{

    color:#0d3d87;

    margin-bottom:15px;

}

.process-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:992px){

.process-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.process-grid{

grid-template-columns:1fr;

}

}
/*=========================
CREATIVE SERVICES
=========================*/

.services{

    padding:100px 0;

    background:#fff;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:#fff;

    padding:40px 30px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card i{

    width:80px;

    height:80px;

    background:#0d3d87;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    margin-bottom:25px;

    font-size:32px;

}

.service-card:hover i{

    background:#f7941d;

}

.service-card h3{

    font-size:24px;

    color:#0d3d87;

    margin-bottom:15px;

}

.service-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:992px){

.service-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.service-grid{

grid-template-columns:1fr;

}

}
/*=========================
SECTION TITLE
=========================*/

.section-title{

    text-align:center;

    max-width:800px;

    margin:0 auto 60px;

}

.section-title span{

    display:block;

    color:#f7941d;

    font-size:15px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.section-title h2{

    font-size:42px;

    color:#0d3d87;

    font-weight:700;

    margin-bottom:20px;

}

.section-title p{

    color:#666;

    font-size:17px;

    line-height:1.8;

    margin:0 auto;

    max-width:700px;

}