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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#08111F;
    color:#fff;
    line-height:1.6;
}

.top-bar{
    background:#1E88FF;
    color:#fff;
    text-align:center;
    padding:12px;
    font-weight:bold;
}

.top-bar a{
    color:#fff;
    text-decoration:none;
    margin-left:15px;
}

.logo{
    text-align:center;
    padding:20px;
}

.logo img{
    width:160px;
    max-width:90%;
    border-radius:18px;
    box-shadow:0 8px 30px rgba(0,0,0,.35);

}

.hero{
    min-height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:60px 20px;
    background:linear-gradient(135deg,#08111F,#10233D);
}

.hero-overlay{
    max-width:900px;
}

.hero h1{
    font-size:48px;
    color:#fff;
    margin-bottom:20px;
    line-height:1.1;
}

.hero h2{
    color:#1E88FF;
    font-size:26px;
    margin-bottom:30px;
}

.hero p{
    font-size:20px;
    color:#ddd;
    margin-bottom:40px;
    line-height:1.6;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.button{
    display:inline-block;
    background:#1E88FF;
    color:#fff;
    text-decoration:none;
    padding:18px 35px;
    border-radius:50px;
    font-size:20px;
    font-weight:bold;
    transition:.3s;
}

.button:hover{
    background:#0D6EFD;
}

.secondary{
    background:transparent;
    border:2px solid #1E88FF;
}

.why-us{
    padding:80px 20px;
}

.why-us h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    max-width:1200px;
    margin:auto;
}

.why-card{
    background:#10233D;
    border:1px solid #1E88FF;
    border-radius:15px;
    padding:30px;
    text-align:center;
    transition:0.3s;
}

.why-card h3{
    color:#fff;
    margin-bottom:15px;
}

.why-card p{
    color:#ccc;
}
.why-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.35);

}

.floating-call{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#1E88FF;
    color:#fff;
    text-decoration:none;
    padding:16px 26px;
    border-radius:50px;
    font-weight:bold;
    z-index:999;
    box-shadow:0 8px 20px rgba(0,0,0,.3);
}

.footer{
    background:#08111F;
    text-align:center;
    padding:50px 20px;
    color:#ccc;
}

.footer h2{
    color:#1E88FF;
    margin-bottom:15px;
}

@media(max-width:768px){

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

.hero h2{
    font-size:26px;
}

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

.button{
    width:100%;
    max-width:300px;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.logo img{
    width:170px;
}

}
.trust-badges{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
    margin-top:30px;
}

.trust-badges span{
    background:#10233D;
    padding:10px 16px;
    border-radius:30px;
    border:1px solid #1E88FF;
    font-size:15px;
}
.reviews{
    padding:80px 20px;
    text-align:center;
}

.reviews h2{
    font-size:40px;
    margin-bottom:40px;
}
.gallery{
    padding:80px 20px;
    text-align:center;
}

.gallery h2{
    font-size:42px;
    margin-bottom:15px;
}

.gallery p{
    color:#ccc;
    margin-bottom:40px;
}

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

.gallery-grid img{
    width:100%;
    border-radius:15px;
    border:2px solid #1E88FF;
    transition:0.3s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}
