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

body{
    font-family: Arial, Helvetica, sans-serif;
    line-height:1.6;
    color:#333;
    background:#f7f9fc;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    background:#ffffff;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    height:100px;
    width:auto;
}


.logo span{
    font-size:1.4rem;
    font-weight:700;
    color:#13284d;
}

nav a{
    text-decoration:none;
    color:#333;
    margin-left:25px;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#2E5CB8;
}

.hero{
    background:#f7f9fc;
    padding:80px 0;
}


.hero h1{
    font-size:4rem;
    font-weight:800;
    line-height:1.1;
}


.hero p{
    font-size:1.2rem;
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    background:#2E5CB8;
    color:white;
    padding:15px 30px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-2px);
}

section{
    padding:80px 0;
}

h2{
    text-align:center;
    margin-bottom:40px;
    color:#2E5CB8;
    font-size:2rem;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
}

#about{
    background:#f1f3f5;
    padding:80px 40px;
    border-radius:20px;

}

#about p{
    max-width:800px;
    margin:auto;
}

form{
    background:white;
    max-width:800px;
    margin:0 auto;
    padding:50px;
    border-radius:24px;
    box-shadow:
    0 10px 30px rgba(0,0,0,.08),
    0 1px 3px rgba(0,0,0,.05);

    display:grid;
    gap:18px;
}
input,
select,
textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #dce3ea;
    border-radius:12px;
    background:#fafafa;
    font-size:16px;
    transition:.25s ease;
}

input:focus,
select:focus,
textarea:focus{
    outline:none;
    border-color:#2E5CB8;
    background:white;
    box-shadow:0 0 0 4px rgba(46,92,184,.12);
}

textarea{
    min-height:140px;
}

button{
    background:#2E5CB8;
    color:white;
    border:none;
    padding:18px;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.25s ease;
}

button:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(46,92,184,.25);
}


#contact{
    text-align:center;
}

footer{
    background:#13284d;
    color:white;
    text-align:center;
    padding:30px;
    margin-top:60px;
}

.call-button{
    position:fixed;
    right:25px;
    bottom:25px;
    background:#2E5CB8;
    color:white;
    text-decoration:none;
    padding:16px 22px;
    border-radius:50px;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(0,0,0,.25);
}

@media(max-width:768px){

.hero h1{
    font-size:2.2rem;
}

nav{
    display:none;
}

.logo img{
    height:65px;
}
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero{
    background:#f7f9fc;
    padding:80px 0;
}

.hero h1{
    color:#13284d;
    font-size:3.5rem;
    line-height:1.1;
}

.hero p{
    color:#555;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.secondary-btn{
    background:white;
    color:#2E5CB8;
    border:2px solid #2E5CB8;
}

.hero-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.trust-bar{
    background:#2E5CB8;
    color:white;
    text-align:center;
    padding:20px;
    font-weight:700;
}

@media(max-width:768px){

.hero-content{
    grid-template-columns:1fr;
}

.hero h1{
    font-size:2.3rem;
}

.hero{
    text-align:center;
}
    
}
#quote{
    background:#e9ecef;
    padding:100px 20px;
    margin-top:80px;
}

#why-us{
    background:#e9ecef;
    padding:80px 40px;
    border-radius:20px;
}

.quote-subtitle{
    text-align:center;
    max-width:650px;
    margin:0 auto 40px;
    color:#666;
    font-size:1.05rem;
}

#quote{
    background:#e9ecef;
    padding:100px 0;
}

.quote-wrapper{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;
    align-items:start;
}

.quote-info{
    padding-top:20px;
}

.quote-info h2{
    text-align:left;
    margin-bottom:20px;
}

.quote-info p{
    margin-bottom:30px;
    color:#555;
    line-height:1.8;
}

.contact-item{
    background:white;
    padding:16px 20px;
    border-radius:12px;
    margin-bottom:15px;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
}

#quote form{
    background:white;
    padding:40px;
    border-radius:24px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

#quote button{
    margin-top:10px;
}

@media(max-width:768px){

.quote-wrapper{
    grid-template-columns:1fr;
}

.quote-info h2{
    text-align:center;
}

.quote-info{
    text-align:center;
}
}

#why-us .grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
}
#why-us .card{
    padding:25px 20px;
    text-align:center;
}
@media(max-width:768px){

#why-us .grid{
    grid-template-columns:1fr;
}

}
#why-us{
    max-width:1100px;
    margin:0 auto;
}
.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:40px;
}

.trust-card{
    background:white;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;

    box-shadow:
    0 4px 20px rgba(0,0,0,.06);

    transition:.25s ease;
}

.trust-card:hover{
    transform:translateY(-5px);
}

.trust-icon{
    font-size:2rem;
    color:#2E5CB8;
    margin-bottom:15px;
}


.trust-card h3{
    color:#13284d;
    margin-bottom:10px;
    font-size:1.1rem;
}

.trust-card p{
    color:#666;
    font-size:.95rem;
}

@media(max-width:768px){

.trust-grid{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:500px){

.trust-grid{
    grid-template-columns:1fr;
}

}
#why-us{
    background:#f1f3f5;
    padding:100px 40px;
    border-radius:30px;
}
.trust-icon{
    width:70px;
    height:70px;

    margin:0 auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#eef4ff;
    color:#2E5CB8;

    font-size:1.8rem;
}

.fa-check-double{
    font-size:1.6rem;
}
.hero{
    background:#f7f8fa;
    padding:120px 0;
}

.hero-content{
    max-width:1200px;
    margin:auto;
}

.hero-text{
    max-width:700px;
}

.hero h1{
    font-size:4rem;
    line-height:1.1;
    font-weight:800;
    color:#13284d;
    margin-bottom:25px;
}

.hero p{
    font-size:1.2rem;
    color:#555;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}
.btn-secondary{
    background:white;
    color:#13284d;
    border:2px solid #13284d;

    padding:14px 30px;
    border-radius:10px;

    text-decoration:none;
    font-weight:600;

    transition:.3s;
}

.btn-secondary:hover{
    background:#13284d;
    color:white;
}
@media(max-width:768px){

.hero{
    padding:80px 0;
}

.hero h1{
    font-size:2.5rem;
}

.hero-buttons{
    flex-direction:column;
}

.hero-buttons a{
    text-align:center;
}

}

footer{
    background:#2f343b;
    color:white;
    margin-top:100px;
}

.footer-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;

    padding:70px 20px 50px;
}

.footer-brand img{
    height:70px;
    margin-bottom:15px;
}

.footer-brand h3{
    margin-bottom:15px;
    color:white;
}

.footer-brand p{
    color:#c7c7c7;
    line-height:1.8;
}

.footer-contact h4,
.footer-services h4{
    margin-bottom:20px;
    color:white;
}

.footer-contact p,
.footer-services p{
    color:#c7c7c7;
    margin-bottom:12px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding:25px;
    color:#a0a0a0;
}

@media(max-width:768px){

.footer-container{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-brand img{
    margin:auto auto 15px;
}

}
.footer-contact i{
    color:#2E5CB8;
    width:20px;
    margin-right:8px;
}
.footer-contact a{
    color:#c7c7c7;
    text-decoration:none;
    transition:.3s;
}

.footer-contact a:hover{
    color:#ffffff;
}
.contact-item{
    background:white;
    padding:18px 22px;
    border-radius:12px;
    margin-bottom:15px;

    display:flex;
    align-items:center;
    gap:12px;

    box-shadow:0 2px 8px rgba(0,0,0,.05);
}
.contact-item i{
    color:#2E5CB8;
    width:20px;
    font-size:1rem;
}
.contact-item a{
    color:#333;
    text-decoration:none;
    font-weight:500;
}

.contact-item a:hover{
    color:#2E5CB8;
}

