*{
margin: 0;
    padding: 15px;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
    text-align: center;
}


body{
background:#f4f6fb;
color:#222;
}

.hero{
display:flex;
min-height:100vh;
}

.left{
width:100%;
padding:70px;
background:#fff;
display:flex;
flex-direction:column;
justify-content:center;
}

.right{
width:50%;
overflow:hidden;
}

.right img{
width:100%;
height:100%;
object-fit:cover;
}

.logo img{
height:70px;
margin-bottom:30px;
}

.hero h3{
color:#d62d2d;
letter-spacing:3px;
margin-bottom:15px;
}

.hero h1{
font-size:60px;
color:#0b2345;
margin-bottom:20px;
}

.hero p{
font-size:18px;
line-height:30px;
color:#666;
margin-bottom:40px;
}

.stats{
display:flex;
gap:20px;
margin-top:30px;
flex-wrap:wrap;
}
html{
    scroll-behavior:smooth;
}

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    z-index:999;

}

.container{

    max-width:1400px;
    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 60px;

}

.logo img{

    width:170px;

}

nav{

display:flex;

gap:40px;

}

nav a{

text-decoration:none;

font-size:17px;

font-weight:600;

color:#0B2345;

transition:.3s;

position:relative;

}

nav a:hover{

color:#2563eb;

}

nav a::after{

content:"";

position:absolute;

bottom:-8px;

left:0;

width:0;

height:3px;

background:#2563eb;

transition:.3s;

}

nav a:hover::after{

width:100%;

}

.quote-btn{

background:#2563eb;

color:#fff;

padding:14px 28px;

border-radius:8px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.quote-btn:hover{

background:#0B2345;

transform:translateY(-3px);

}
.box{
background:#0b2345;
color:#fff;
padding:30px;
flex:1;
min-width:170px;
text-align:center;
border-radius:15px;
transition:.3s;
}

.box:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.box h2{
font-size:42px;
color:#ff3b3b;
margin-bottom:10px;
}

.about,
.services,
.why,
.contact{
padding:90px 10%;
background:#fff;
}

.about h2,
.services h2,
.why h2,
.contact h2{
font-size:38px;
color:#0b2345;
margin-bottom:30px;
}

.about p{
font-size:18px;
line-height:34px;
color:#555;
max-width:900px;
}

.grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}

.card{
background:#fff;
padding:40px;
text-align:center;
border-radius:15px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.card i{
font-size:45px;
color:#d62d2d;
margin-bottom:20px;
}

.card h3{
font-size:22px;
color:#0b2345;
}

.why{
background:#f8f9fc;
}

.why ul{
list-style:none;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
font-size:20px;
margin-top:40px;
}

.why li{
padding:15px 0;
}

.contact-box{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}

.contact-box div{
background:#0b2345;
color:#fff;
padding:35px;
border-radius:15px;
text-align:center;
font-size:18px;
transition:.3s;
}

.contact-box div:hover{
transform:translateY(-8px);
}

.contact-box i{
font-size:30px;
margin-bottom:15px;
display:block;
color:#ff3b3b;
}

footer{
background:#0b2345;
color:#fff;
text-align:center;
padding:60px 20px;
}

footer h2{
margin-bottom:15px;
font-size:34px;
}

footer p{
margin-top:10px;
font-size:17px;
color:#ddd;
}

@media(max-width:991px){
.hero{

display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:60px;

padding:120px 8% 80px;

min-height:100vh;

background:#fff;

}

.left h1{

font-size:72px;

font-weight:800;

line-height:1.1;

color:#0B2345;

margin:20px 0;

}

.left p{

font-size:22px;

line-height:38px;

color:#666;

max-width:650px;

}

.tag{

display:inline-block;

background:#EAF2FF;

color:#2563EB;

padding:10px 25px;

border-radius:30px;

font-weight:700;

letter-spacing:2px;

}

.hero-btns{

display:flex;

gap:20px;

margin:40px 0;

}

.btn-primary{

background:#2563EB;

padding:16px 35px;

color:#fff;

text-decoration:none;

border-radius:8px;

font-weight:600;

transition:.3s;

}

.btn-primary:hover{

background:#0B2345;

}

.btn-secondary{

border:2px solid #2563EB;

padding:16px 35px;

color:#2563EB;

text-decoration:none;

border-radius:8px;

font-weight:600;

transition:.3s;

}

.btn-secondary:hover{

background:#2563EB;

color:#fff;

}

.stats{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-top:20px;

}

.box{

background:#0B2345;

padding:35px;

border-radius:18px;

text-align:center;

transition:.4s;

color:#fff;

}

.box:hover{

transform:translateY(-8px);

}

.box h2{

font-size:52px;

color:#FF4D4D;

margin-bottom:10px;

}

.box span{

font-size:18px;

}

.right{

display:flex;

justify-content:center;

}

.right img{

max-width:100%;

width:650px;

animation:float 4s ease-in-out infinite;

}
.hero-section{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:120px 8% 80px;

    background:linear-gradient(135deg,#ffffff,#f4f8ff);

}

.hero-content{

    max-width:1100px;

    width:100%;

}

.hero-logo{

    width:180px;

    margin:25px auto;

    display:block;

}

.hero-tag{

    display:inline-block;

    background:#edf4ff;

    color:#2563eb;

    padding:10px 24px;

    border-radius:40px;

    font-weight:700;

    letter-spacing:2px;

}

.hero-content h1{

    font-size:72px;

    font-weight:800;

    color:#0b2345;

    margin:20px 0;

}

.hero-content p{

    max-width:750px;

    margin:0 auto;

    font-size:22px;

    line-height:38px;

    color:#666;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin:45px 0;

}

.primary-btn{

    background:#2563eb;

    color:#fff;

    padding:16px 34px;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.primary-btn:hover{

    background:#0b2345;

}

.secondary-btn{

    border:2px solid #2563eb;

    color:#2563eb;

    padding:16px 34px;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.secondary-btn:hover{

    background:#2563eb;

    color:#fff;

}

.hero-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:40px;

}

.stat-card{

    background:#0b2345;

    color:#fff;

    padding:35px;

    border-radius:18px;

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.stat-card h2{

    font-size:50px;

    color:#ff4747;

    margin-bottom:10px;

}

.stat-card span{

    font-size:18px;

}

@media(max-width:992px){

.hero-content h1{

font-size:50px;

}

.hero-stats{

grid-template-columns:repeat(2,1fr);

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

}

@media(max-width:576px){

.hero-stats{

grid-template-columns:1fr;

}

.hero-content h1{

font-size:38px;

}

.hero-content p{

font-size:18px;

line-height:30px;

}

}
@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}

}

.left,
.right{
width:100%;
}

.left{
padding:40px;
}

.right{
height:400px;
}

.hero h1{
font-size:42px;
}

.stats{
flex-direction:column;
}

.grid{
grid-template-columns:1fr;
}

.why ul{
grid-template-columns:1fr;
}

.contact-box{
grid-template-columns:1fr;
}

.about,
.services,
.why,
.contact{
padding:60px 25px;
}

}
.process-section{

    padding:100px 8%;

    background:#f8fbff;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:#2563eb;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title h2{

    font-size:48px;

    margin:15px 0;

    color:#0B2345;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#666;

    font-size:18px;

    line-height:30px;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.process-card{

    background:#fff;

    padding:40px 30px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    position:relative;

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(37,99,235,.18);

}

.number{

    position:absolute;

    top:20px;

    right:20px;

    width:45px;

    height:45px;

    background:#2563eb;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

}

.process-card i{

    font-size:55px;

    color:#2563eb;

    margin:20px 0;

}

.process-card h3{

    font-size:24px;

    color:#0B2345;

    margin-bottom:15px;

}

.process-card p{

    color:#666;

    line-height:28px;

}

@media(max-width:992px){

.process-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.process-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:36px;

}

}
.cta-section{

    padding:100px 20px;

    background:linear-gradient(135deg,#0B2345,#1D4ED8);

    position:relative;

    overflow:hidden;

}

.cta-section::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-150px;

    left:-100px;

}

.cta-section::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:rgba(255,255,255,.06);

    border-radius:50%;

    right:-100px;

    bottom:-120px;

}

.cta-container{

    max-width:900px;

    margin:auto;

    text-align:center;

    position:relative;

    z-index:2;

}

.cta-tag{

    display:inline-block;

    color:#fff;

    background:rgba(255,255,255,.12);

    padding:10px 22px;

    border-radius:40px;

    font-size:14px;

    letter-spacing:2px;

    font-weight:600;

}

.cta-container h2{

    font-size:52px;

    color:#fff;

    margin:25px 0;

    line-height:1.2;

}

.cta-container p{

    font-size:20px;

    line-height:34px;

    color:#dbeafe;

    max-width:760px;

    margin:auto;

}

.cta-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-btn{

    background:#fff;

    color:#0B2345;

    padding:18px 38px;

    border-radius:10px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.cta-btn:hover{

    transform:translateY(-6px);

    background:#2563EB;

    color:#fff;

}

.call-btn{

    border:2px solid #fff;

    color:#fff;

    padding:18px 38px;

    border-radius:10px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.call-btn:hover{

    background:#fff;

    color:#0B2345;

}

.cta-btn i,
.call-btn i{

    margin-right:10px;

}

@media(max-width:768px){

.cta-container h2{

font-size:36px;

}

.cta-container p{

font-size:18px;

line-height:30px;

}

}
.portfolio{
    padding:100px 8%;
    background:#f8fbff;
}

.portfolio h2{
    text-align:center;
    font-size:46px;
    color:#0B2345;
    margin-bottom:60px;
}

.portfolio .card{
    background:#fff;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.portfolio .card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(37,99,235,.15);
}

.portfolio .card i{
    font-size:60px;
    color:#2563eb;
    margin-bottom:25px;
}

.portfolio .card h3{
    font-size:28px;
    color:#0B2345;
    margin-bottom:15px;
}

.portfolio .card p{
    color:#666;
    line-height:28px;
    font-size:16px;
}
footer{
    background:#0B2345;
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.footer-logo img{
    width:170px;
    margin-bottom:25px;
    background:#fff;
    padding:8px;
    border-radius:8px;
}

footer h2{
    font-size:36px;
    margin-bottom:20px;
}

.footer-services{
    color:#d1d5db;
    margin-bottom:35px;
    font-size:18px;
}

.footer-contact{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.footer-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:17px;
}

.footer-item i{
    color:#3b82f6;
    font-size:20px;
}

.footer-item a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-item a:hover{
    color:#60a5fa;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:20px;
    color:#cbd5e1;
    font-size:15px;
}

@media(max-width:768px){

.footer-contact{
    flex-direction:column;
    gap:20px;
}

footer h2{
    font-size:28px;
}

.footer-services{
    line-height:30px;
}

}