*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Manrope',sans-serif;
    background:#ffffff;
    color:#222;
}nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 8%;
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(15px);
    box-shadow:0 12px 40px rgba(0,0,0,.08);
    z-index:1000;
}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo h2{

    color:#0B3C6D;

    font-size:30px;

    margin:0;

    line-height:1;

}

.logo p{

    margin:0;

    font-size:12px;

    color:#777;

    letter-spacing:2px;

    text-transform:uppercase;

}

.logo-icon{

    width:55px;

    height:55px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#00B67A;

    color:white;

    border-radius:14px;

    font-size:28px;

}

nav ul{
    display:flex;
    gap:45px;
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    color:#444;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

nav ul li a:hover{
    color:#00B67A;
}
.hero{

    height:100vh;

    background:linear-gradient(rgba(11,60,109,.75),rgba(11,60,109,.75)),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1800&q=80");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

}

.hero-content{

    width:800px;

    max-width:90%;

}

.hero h1{
    font-size:72px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:30px;
    letter-spacing:-2px;
}

.hero p{
    font-size:24px;
    max-width:750px;
    margin:0 auto 45px;
    line-height:1.8;
    opacity:.9;
}

.hero-button{

    display:inline-block;

    padding:18px 38px;

    border-radius:100px;

    background:#00B67A;

    color:white;

    text-decoration:none;

    font-weight:700;

    letter-spacing:.5px;

    transition:.35s;

    box-shadow:0 20px 40px rgba(0,182,122,.25);

}

.hero-button:hover{

    transform:translateY(-5px);

    background:#00A56F;

    box-shadow:0 30px 60px rgba(0,182,122,.35);

}

.services{

    padding:120px 8%;

    background:#f8fafc;

    text-align:center;

}

.services h2{

    font-size:48px;

    color:#0B3C6D;

    margin-bottom:20px;

}

.services p{

    font-size:20px;

    color:#666;

    max-width:700px;

    margin:auto auto 70px;

    line-height:1.7;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.card{

    background:white;

    padding:45px;

    border-radius:24px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

    border:1px solid rgba(0,0,0,.05);

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.card h3{

    color:#0B3C6D;

    margin-bottom:20px;

    font-size:26px;

}

.card p{

    font-size:17px;

    color:#666;

    line-height:1.7;

}.why-us{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    padding:120px 8%;

    align-items:center;

    background:white;

}

.small-title{

    color:#00B67A;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

}

.why-left h2{

    font-size:52px;

    color:#0B3C6D;

    margin:20px 0;

    line-height:1.2;

}

.why-left p{

    font-size:20px;

    color:#666;

    line-height:1.8;

    margin-bottom:40px;

}

.why-right{

    display:grid;

    gap:25px;

}

.feature{

    background:#f8fafc;

    padding:30px;

    border-radius:18px;

    font-size:20px;

    font-weight:600;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

    transition:.3s;

}

.feature:hover{

    transform:translateX(10px);

}.how-it-works{

    padding:120px 8%;

    background:#f8fafc;

}

.section-title{

    text-align:center;

    margin-bottom:80px;

}

.section-title span{

    color:#00B67A;

    font-weight:700;

    letter-spacing:3px;

    font-size:14px;

}

.section-title h2{

    font-size:52px;

    color:#0B3C6D;

    margin:20px 0;

}

.section-title p{

    font-size:20px;

    color:#666;

}

.steps{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.step{

    background:white;

    padding:45px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.05);

    transition:.3s;

}

.step:hover{

    transform:translateY(-10px);

}

.number{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    background:#00B67A;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:bold;

    margin-bottom:30px;

}

.step h3{

    color:#0B3C6D;

    margin-bottom:20px;

    font-size:24px;

}

.step p{

    color:#666;

    line-height:1.8;

}.about{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    padding:120px 8%;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 30px 60px rgba(0,0,0,.10);

}

.about-text span{

    color:#00B67A;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

}

.about-text h2{

    font-size:50px;

    color:#0B3C6D;

    margin:20px 0;

    line-height:1.2;

}

.about-text p{

    font-size:19px;

    line-height:1.9;

    color:#666;

    margin-bottom:25px;

}.contact{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    padding:120px 8%;

    background:#0B3C6D;

    color:white;

}

.contact span{

    color:#00B67A;

    letter-spacing:3px;

    font-weight:700;

    font-size:14px;

}

.contact h2{

    font-size:52px;

    margin:20px 0;

}

.contact p{

    font-size:19px;

    line-height:1.8;

}

.contact-info{

    margin-top:40px;

}

.contact-info p{

    margin-bottom:18px;

}

.contact form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact input,
.contact textarea,
.contact select{

    padding:18px;

    border:none;

    border-radius:12px;

    font-size:16px;

    font-family:inherit;

}

.contact textarea{

    min-height:160px;

    resize:vertical;

}footer{

    background:#081F3A;

    color:white;

    padding:80px 8% 30px;

}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

    margin-bottom:40px;

}

footer h3{

    font-size:28px;

    margin-bottom:20px;

}

footer h4{

    margin-bottom:20px;

}

footer ul{

    list-style:none;

}

footer li{

    margin-bottom:12px;

    color:#ccc;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.1);

    padding-top:25px;

    text-align:center;

    color:#aaa;

}html{

    scroll-behavior:smooth;

}section{

    animation:fadeIn 1s ease;

}

@keyframes fadeIn{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}.card i{

    font-size:42px;

    color:#00B67A;

    display:block;

    margin-bottom:20px;

}