*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f7f9fc;
color:#222;
line-height:1.6;
}

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

header{
background:white;
box-shadow:0 2px 10px rgba(0,0,0,.1);
position:sticky;
top:0;
z-index:1000;
}

nav a:hover{
color:#16a34a;
}

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

.logo{
flex:0 1 auto;
display:flex;
align-items:center;
}

.logo img{
max-height:80px;
width:auto;
max-width:100%;
height:auto;
display:block;
}

nav ul{
display:flex;
list-style:none;
gap:25px;
}

nav a{
text-decoration:none;
font-weight:600;
color:#0a2f7a;
}

.call-box{
background:#16a34a;
color:white;
padding:12px 20px;
border-radius:10px;
font-weight:bold;
}

.hero{
display:grid;
grid-template-columns:minmax(320px, 1.2fr) minmax(320px, 0.8fr);
align-items:start;
padding:70px 8%;
gap:40px;
background:linear-gradient(135deg, #f4f8ff 0%, #eef7f0 100%);
border-radius:0 0 30px 30px;
}

.hero-left{
max-width:650px;
transform: translateY(-12px);
}

.hero-right{
display:flex;
justify-content:center;
align-items:center;
}

.hero-badge{
display:inline-block;
background:#e7f6eb;
color:#16a34a;
padding:8px 14px;
border-radius:999px;
font-size:14px;
font-weight:600;
margin-bottom:15px;
}

.hero h1{
font-size:56px;
color:#0a2f7a;
line-height:1.1;
}

.hero span{
color:#16a34a;
}

.hero p{
margin:20px 0;
font-size:18px;
}

.hero-right img{
width:100%;
max-width:520px;
border-radius:20px;
box-shadow:0 18px 40px rgba(10,47,122,.08);
display:block;
}

.hero-buttons{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-top:20px;
}

.btn{
display:inline-block;
background:#0a2f7a;
color:white;
padding:12px 25px;
border-radius:8px;
text-decoration:none;
transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(10,47,122,.2);
}

.green{
background:#16a34a;
}

.trust-section{
padding:50px 8%;
background:#eef4ff;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:18px;
}

@media (max-width:768px){
    .trust-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:480px){
    .trust-grid{
        grid-template-columns:1fr;
    }
}

.trust-card{
background:white;
padding:24px;
border-radius:18px;
box-shadow:0 12px 35px rgba(10,47,122,.08);
text-align:center;
min-height:170px;
}

.trust-card span{
font-size:24px;
display:inline-block;
margin-bottom:10px;
}

.trust-card h3{
margin:0 0 10px;
color:#0a2f7a;
font-size:18px;
}

.trust-card p{
color:#444;
line-height:1.6;
font-size:14px;
}


.feature:hover,
.card:hover,
.contact-box:hover,
.why-grid > div:hover{
transform:translateY(-4px);
box-shadow:0 12px 28px rgba(0,0,0,.12);
}

.services{
padding:70px 8%;
}

.services h2{
text-align:center;
margin-bottom:40px;
color:#0a2f7a;
}

.service-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

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

.card h3{
color:#16a34a;
margin-bottom:20px;
}

.card li{
margin-bottom:12px;
}

.benefits-list{
list-style:none;
padding:0;
margin:0;
}

.benefits-list li{
display:flex;
align-items:center;
gap:12px;
margin-bottom:12px;
}

.benefits-list img{
width:26px;
height:26px;
object-fit:contain;
flex-shrink:0;
}

.why-us{
padding:70px 8%;
background:#eef4ff;
}

.services h2,
.contact-section h2,
.why-us h2{
position:relative;
display:inline-block;
margin-bottom:25px;
padding-bottom:8px;
}

.services h2::after,
.contact-section h2::after,
.why-us h2::after{
content:'';
position:absolute;
left:0;
bottom:0;
width:60px;
height:3px;
background:#16a34a;
border-radius:999px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:30px;
}

.why-grid > div{
background:white;
padding:24px;
border-radius:16px;
box-shadow:0 8px 24px rgba(10,47,122,.08);
transition:transform .25s ease, box-shadow .25s ease;
position:relative;
overflow:hidden;
}

.why-grid > div::before{
content:"";
position:absolute;
inset:0;
background:linear-gradient(135deg, rgba(22,163,74,.12), transparent 60%);
opacity:0;
transition:opacity .25s ease;
}

.why-grid > div:hover::before{
opacity:1;
}

.why-grid h4{
color:#0a2f7a;
margin-bottom:8px;
}

.why-grid p{
color:#555;
}

.contact-section{
padding:70px 8%;
}

.contact-grid{
    display:grid;
    grid-template-columns: 1fr 380px; /* form + sidebar */
    gap:30px;
    align-items:start;
}

.contact-box{
    background:white;
    padding:22px;
    border-radius:14px;
    box-shadow:0 8px 30px rgba(9,30,66,.04);
    transition:transform .2s ease, box-shadow .2s ease;
}

/* Address card enhancements */
.address-box{
    overflow:hidden;
    position:relative;
    animation:cardEntrance .6s ease both;
}

.address-box address{
    display:block;
    font-style:normal;
    color:#111827;
    line-height:1.9;
    font-size:16px;
    margin-top:8px;
}

.address-actions{
    margin-top:18px;
    display:flex;
    gap:12px;
}

.btn.outline{
    background:transparent;
    color:#0a2f7a;
    border:1.25px solid rgba(10,47,122,.12);
    padding:10px 14px;
    border-radius:10px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition:background .18s ease, transform .12s ease;
}

.btn.outline:hover{ background:rgba(10,47,122,.04); transform:translateY(-2px); }

.btn.outline svg{ flex:0 0 18px; }

@keyframes cardEntrance{
    from{ transform:translateY(8px); opacity:0; }
    to{ transform:translateY(0); opacity:1; }
}

/* temporary feedback state for copy */
.copied{ background:#16a34a !important; color:#fff !important; border-color:transparent !important; }

/* Form controls styling */
input, select, button{ font:inherit; }

input, select{
    width:100%;
    padding:14px 16px;
    margin-top:8px;
    border:1px solid #e6edf6;
    border-radius:10px;
    background:#fff;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.6);
    transition:box-shadow .18s ease, border-color .18s ease, transform .12s ease;
}

input::placeholder{ color:#bfcbd9; }

input:focus, select:focus{
    outline:none;
    border-color:#0a2f7a;
    box-shadow:0 8px 24px rgba(10,47,122,.06);
    transform:translateY(-2px);
}

label{ display:block; color:#173a5a; margin-bottom:8px; font-weight:600; }

/* Primary submit button */
.btn.primary{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(90deg,#0a2f7a,#0a3f9a);
    color:#fff;
    padding:12px 18px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(10,47,122,.12);
    border:0;
}

.btn.primary svg{ transform:translateX(0); transition:transform .18s ease; }
.btn.primary:hover svg{ transform:translateX(4px); }

@media(max-width:900px){
    .contact-grid{ grid-template-columns:1fr; }
    .address-actions{ justify-content:flex-start; }
}

input,
select,
button{
font:inherit;
}

input,
select{
width:100%;
padding:12px 14px;
margin-top:8px;
border:1px solid #dbe4f0;
border-radius:8px;
background:#fdfefe;
}

input:focus,
select:focus{
outline:none;
border-color:#0a2f7a;
box-shadow:0 0 0 3px rgba(10,47,122,.12);
}

footer{
background:#0a2f7a;
color:white;
padding:30px;
}

.footer-content{
display:flex;
justify-content:space-between;
align-items:center;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#16a34a;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
text-decoration:none;
color:white;
}

@media(max-width:768px){

.hero,
.service-grid,
.contact-grid,
.why-grid,
.features{
grid-template-columns:1fr;
}

.nav{
flex-direction:column;
gap:15px;
}

.hero h1{
font-size:36px;
}

.footer-content{
flex-direction:column;
gap:15px;
}
}
.about-content{
    max-width:900px;
    margin:0 auto 50px;
    text-align:center;
}

.about-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

.about-content blockquote{
    margin:35px auto;
    padding:20px;
    max-width:700px;
    border-left:5px solid #28a745;
    background:#f8f9fa;
    font-size:20px;
    font-style:italic;
    color:#333;
}

.dynamic-quote{
    overflow:hidden;
    position:relative;
    border-radius:12px;
    box-shadow:0 6px 20px rgba(0,0,0,.06);
}

.dynamic-quote::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, transparent, rgba(22,163,74,.12), transparent);
    transform:translateX(-100%);
    animation:shine 3s infinite;
}

.quote-text{
    display:inline-block;
    animation:fadeSlide 2.5s ease-in-out infinite alternate;
}

@keyframes shine {
    100% { transform:translateX(100%); }
}

@keyframes fadeSlide {
    from { opacity:.8; transform:translateY(2px); }
    to { opacity:1; transform:translateY(-2px); }
}

.why-title{
    text-align:center;
    margin:50px 0 30px;
    color:#003366;
}