*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;

}
.menu-toggle{
    display:none;
}
img{

    width:100%;
    display:block;

}

section{

    padding:90px 8%;

}

h1{

    font-size:48px;
    color:#0B2A5B;

}

h2{

    font-size:40px;
    color:#0B2A5B;
    text-align:center;
    margin-bottom:40px;

}

h3{

    color:#C8931A;

}

p{

    color:#555;
    line-height:1.8;

}



.btn{
    
    background:#0B2A5B;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;

}

.btn:hover{

    background:#C8931A;

}

.btn-outline{

    border:2px solid #0B2A5B;
    color:#0B2A5B;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    margin-left:15px;

}



/*========================================
        PAGE HEADER
========================================*/

.page-header{
/*  */
    background:#0B2A5B;

    background-size:cover;
    background-position:center;

    color:#fff;

    text-align:center;

    padding:120px 8% 90px;

}

.page-header h1{

    font-size:56px;

    color:#fff;

    margin-bottom:20px;

}

.page-header p{

    color:#E5E7EB;

    max-width:700px;

    margin:auto;

    line-height:1.8;

    font-size:18px;

}



/*========================================
        PROJECTS PAGE
========================================*/

.projects-page{

    padding:100px 8%;

    background:#F8FAFC;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(420px,1fr));

    gap:45px;

}



/*========================================
        PROJECT CARD
========================================*/

.project-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

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

    transition:.35s ease;

}

.project-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.project-image{

    overflow:hidden;

}

.project-image img{

    width:100%;

    height:450px;

    object-fit:cover;

    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.08);

}



/*========================================
        PROJECT DETAILS
========================================*/

.project-details{

    padding:35px;

}

.project-details h2{

    text-align:left;

    margin-bottom:10px;

    font-size:32px;

    color:#0B2A5B;

}

.location{

    color:#C8931A;

    font-weight:600;

    margin-bottom:18px;

}

.project-details p{

    margin-bottom:28px;

    color:#555;

    line-height:1.8;

}

.project-details .btn{

    display:inline-block;

}



/*========================================
        COMING SOON
========================================*/

.coming-soon-card{

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:720px;

    background:linear-gradient(135deg,#0B2A5B,#173F80);

    position:relative;

    overflow:hidden;

}

.coming-soon-card::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-100px;

    right:-80px;

}

.coming-soon-card::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-60px;

    left:-60px;

}

.coming-soon-content{

    position:relative;

    z-index:2;

    text-align:center;

    padding:40px;

}

.coming-soon-content h2{

    color:#fff;

    margin-bottom:20px;

}

.coming-soon-content p{

    color:#E5E7EB;

    line-height:1.8;

    margin-bottom:35px;

}

.coming-soon-content span{

    display:inline-block;

    padding:12px 28px;

    background:#C8931A;

    color:#fff;

    border-radius:40px;

    font-weight:600;

    letter-spacing:1px;

}



