/* Google Font */

/* ==============================
   GLOBAL DESIGN SYSTEM
================================= */

:root{

--primary:#0B1F4D;

--secondary:#D4AF37;

--white:#ffffff;

--light:#F7F9FC;

--text:#4B5563;

--radius:22px;

--shadow:0 20px 50px rgba(0,0,0,.08);

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

background:var(--white);

color:var(--text);

overflow-x:hidden;

}

section{

padding:110px 8%;

}

img{

max-width:100%;

display:block;

}

.container{

width:100%;

max-width:1400px;

margin:auto;

}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fa;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:9999;

background:rgba(11,31,77,.92);

backdrop-filter:blur(15px);

box-shadow:0 8px 30px rgba(0,0,0,.15);

}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:100px;
}

.logo img{
    height:75px;
    transition:.4s;
}

.logo img:hover{
    transform:rotate(-5deg) scale(1.05);
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:35px;
}

.navbar a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.navbar a:hover,
.navbar a.active{
    color:#d4af37;
}

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 36px;

background:var(--secondary);

color:var(--primary);

border-radius:50px;

font-weight:600;

text-decoration:none;

transition:.35s;

box-shadow:0 10px 25px rgba(212,175,55,.25);

}

.btn:hover{

transform:translateY(-4px);

background:#e5bd47;

}
.btn:hover{
    background:#fff;
}

/* ================= HERO ================= */

.hero{
    position:relative;
    display:flex;
    align-items:center;
    min-height:100vh;
    padding:120px 8%;
    background:url("../images/hero.jpg") center center/cover no-repeat;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(5,18,45,.80) 0%,
        rgba(5,18,45,.55) 45%,
        rgba(5,18,45,.20) 100%
    );
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

.hero h4{
    color:#D4AF37;
    letter-spacing:4px;
    margin-bottom:20px;
}

.hero h1{
    color:#fff;
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin:0 0 20px;
}

.hero h2{
    color:#D4AF37;
    font-size:30px;
    margin-bottom:25px;
}

.hero p{
    color:#fff;
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-btns{
    display:flex;
    gap:20px;
}

.btn-outline{

    border:2px solid #fff;

    padding:15px 35px;

    border-radius:50px;

    color:white;

    text-decoration:none;

    transition:.4s;

}

.btn-outline:hover{

    background:white;

    color:#0B1F4D;

}

.feature-strip{

    background:#0B1F4D;

    display:flex;

    justify-content:center;

    gap:40px;

    padding:35px;

    flex-wrap:wrap;

}

.feature-box{

    color:white;

    text-align:center;

    width:180px;

    transition:.4s;

}

.feature-box i{

    font-size:42px;

    color:#D4AF37;

    margin-bottom:20px;

}

.feature-box:hover{

    transform:translateY(-10px);

}

.feature-box h3{

    font-size:18px;

    font-weight:600;

}

/*================ ABOUT SECTION ================*/

.about{

    padding:120px 8%;

    background:#ffffff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.about-content span{

    color:#D4AF37;

    font-weight:700;

    letter-spacing:2px;

}

.about-content h2{

    font-size:48px;

    margin:20px 0;

    color:#0B1F4D;

    line-height:1.2;

}

.about-content p{

    font-size:18px;

    line-height:34px;

    color:#555;

}

.about-boxes{

    margin-top:45px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.box{

    background:#F7F9FC;

    padding:30px;

    border-radius:20px;

    transition:.35s;

    border:1px solid #ECECEC;

}

.box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);
    
    transform:translateY(-12px);

}

.box h3{

    color:#D4AF37;

    font-size:34px;

}

.box p{

    margin-top:10px;

    font-size:17px;

}

/*==========================
OUR EXPERTISE
==========================*/

.expertise{

padding:100px 8%;

background:#f8f9fc;

}

.section-title{

text-align:center;

max-width:850px;

margin:auto auto 70px;

}

.section-title span{

color:#d4af37;

font-weight:700;

letter-spacing:3px;

}

.section-title h2{

font-size:48px;

margin:15px 0;

color:#0B1F4D;

}

.section-title p{

font-size:19px;

color:#666;

line-height:1.8;

}

.expert-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:40px;

}

.expert-card{

background:#fff;

border-radius:22px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

}

.expert-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.expert-card img{

width:100%;

height:320px;

object-fit:cover;

display:block;

}

.expert-content{

padding:30px;

}

.expert-content h3{

font-size:34px;

margin-bottom:15px;

color:#0B1F4D;

}

.expert-content p{

font-size:18px;

line-height:1.8;

color:#555;

margin-bottom:20px;

}

.expert-content a{

color:#d4af37;

font-weight:700;

text-decoration:none;

}

.expert-content a:hover{

letter-spacing:1px;

}

@media(max-width:991px){

.expert-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:36px;

}

.expert-card img{

height:260px;

}

}


/*================ WHY US ================*/

.why-us{
    padding:120px 8%;
    background:#F7F9FC;
    }

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.why-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #ECECEC;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
    transform:translateY(-12px);
}

.why-card i{
    font-size:48px;
    color:#D4AF37;
    margin-bottom:20px;
}

.why-card h3{
    color:#0B1F4D;
    margin-bottom:15px;
    font-size:24px;
}

.why-card p{
    color:#666;
    line-height:28px;
}

/*================ STATS ================*/

.stats{
    padding:120px 8%;
    background:#0B1F4D;
    color:#fff;
}

.stats .section-title h2{
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.stat-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:45px 20px;
    text-align:center;
    transition:.35s;
}

.stat-card:hover{
    transform:translateY(-10px);
    background:#D4AF37;
    color:#0B1F4D;
}

.stat-card h3{
    font-size:52px;
    margin-bottom:15px;
}

.stat-card p{
    font-size:18px;
}

/*================ CLIENTS ================*/

.clients{

padding:120px 8%;

background:#fff;

}

.client-grid{

display:grid;

grid-template-columns:repeat(6,1fr);

gap:25px;

margin-top:60px;

}

.client-logo{

height:140px;

border-radius:18px;

background:#F7F9FC;

display:flex;

align-items:center;

justify-content:center;

font-weight:700;

color:#999;

transition:.35s;

border:1px solid #ECECEC;

}

.client-logo:hover{

transform:translateY(-8px);

box-shadow:0 18px 35px rgba(0,0,0,.08);

}

/*================ CTA ================*/

.cta{

padding:120px 8%;

background:linear-gradient(135deg,#0B1F4D,#123A82);

text-align:center;

color:#fff;

}

.cta h2{

font-size:52px;

margin-bottom:20px;

}

.cta p{

font-size:20px;

max-width:700px;

margin:auto auto 35px;

line-height:34px;

}

/*================ FOOTER ================*/

footer{

background:#08162F;

color:#fff;

padding:80px 8% 30px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:50px;

}

footer h3{

margin-bottom:20px;

font-size:28px;

}

footer h4{

margin-bottom:20px;

}

footer ul{

list-style:none;

}

footer li{

margin-bottom:12px;

color:#ccc;

}

footer p{

color:#ccc;

line-height:30px;

}

.copyright{

margin-top:60px;

padding-top:25px;

border-top:1px solid rgba(255,255,255,.08);

text-align:center;

color:#999;

}

/*========================================
        TABLET RESPONSIVE
========================================*/

@media (max-width:1024px){

.container{
    width:92%;
}

.hero{
    padding:120px 6%;
}

.hero h1{
    font-size:52px;
}

.hero h2{
    font-size:24px;
}

.hero-content{
    max-width:100%;
}

.about-grid,
.project-row,
.reverse{

    grid-template-columns:1fr;
    display:grid;
    gap:50px;

}

.project-image,
.project-info{
    width:100%;
}

.expertise-grid{
    grid-template-columns:1fr 1fr;
}

.why-grid{
    grid-template-columns:1fr 1fr;
}

.stats-grid{
    grid-template-columns:repeat(2,1fr);
}

.client-grid{
    grid-template-columns:repeat(3,1fr);
}

.footer-grid{
    grid-template-columns:1fr 1fr;
}

}

/*========================================
            MOBILE
========================================*/

@media (max-width:768px){

.header .container{

    height:80px;

}

.logo img{

    height:55px;

}

.navbar{

    display:none;

}

.btn{

    padding:12px 24px;

    font-size:15px;

}

.hero{

    text-align:center;

    justify-content:center;

    padding:120px 25px 80px;

}

.hero-content{

    text-align:center;

}

.hero h1{

    font-size:42px;

}

.hero h2{

    font-size:22px;

}

.hero p{

    font-size:17px;

    line-height:30px;

}

.hero-btns{

    justify-content:center;

    flex-wrap:wrap;

}

.section-title h2{

    font-size:34px;

}

.section-title p{

    font-size:16px;

}

.about-grid{

    grid-template-columns:1fr;

}

.about-image{

    order:1;

}

.about-content{

    order:2;

}

.about-boxes{

    grid-template-columns:1fr;

}

.expertise-grid{

    grid-template-columns:1fr;

}

.project-row{

    display:block;

}

.project-image{

    width:100%;

    margin-bottom:35px;

}

.project-info{

    width:100%;

}

.why-grid{

    grid-template-columns:1fr;

}

.stats-grid{

    grid-template-columns:1fr;

}

.client-grid{

    grid-template-columns:repeat(2,1fr);

}

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.cta h2{

    font-size:34px;

}

.cta p{

    font-size:17px;

}

}

/*================ MOBILE MENU ================*/

.menu-toggle{

display:none;

font-size:30px;

color:#fff;

cursor:pointer;

}

@media(max-width:768px){

.menu-toggle{

display:block;

}

.navbar{

position:fixed;

top:0;

right:-100%;

width:280px;

height:100vh;

background:#0B1F4D;

display:flex;

justify-content:center;

align-items:center;

transition:.4s;

z-index:9999;

}

.navbar.active{

right:0;

}

.navbar ul{

display:flex;

flex-direction:column;

gap:30px;

}

.navbar a{

color:#fff;

font-size:20px;

}

}


.project-row{
    display:flex;
    align-items:center;
    gap:60px;
    margin:80px 0;
}

.project-image{
    flex:1;
}

.project-info{
    flex:1;
}

.service-img{
    width:100%;
    border-radius:20px;
    display:block;
}


/*==========================
COUNTER
==========================*/

.counter-section{

padding:100px 8%;

background:#0B1F4D;

}

.counter-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.counter-box{

background:rgba(255,255,255,.06);

border:1px solid rgba(255,255,255,.08);

border-radius:20px;

padding:50px 20px;

text-align:center;

transition:.35s;

}

.counter-box:hover{

transform:translateY(-10px);

background:#d4af37;

}

.counter-box h2{

font-size:60px;

font-weight:800;

color:#d4af37;

margin-bottom:15px;

}

.counter-box:hover h2{

color:#fff;

}

.counter-box p{

font-size:20px;

color:#fff;

font-weight:600;

}

@media(max-width:991px){

.counter-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.counter-grid{

grid-template-columns:1fr;

}

.counter-box h2{

font-size:48px;

}

}