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

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f7fb;
    color:#333;
}

.navbar{
    position:fixed;
    top:0;
    width:100%;
    background:#003c8f;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    z-index:1000;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.logo{
    font-size:28px;
    font-weight:700;
}

.navbar ul{
    display:flex;
    list-style:none;
}

.navbar ul li{
    margin-left:25px;
}

.navbar ul li a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.navbar ul li a:hover{
    color:#ffcc00;
}

.hero{
    background-image:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url("../images/hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 100vh;

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

    color: white;
    padding: 0 20px;
}

.hero-content{
    max-width:850px;
}

.hero h1{
    font-size:54px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:35px;
    line-height:1.8;
}

.btn{
    display:inline-block;
    padding:15px 35px;
    background:#ff9800;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#e68900;
}

.about{
    padding:100px 8%;
    background:#fff;
}

.container{
    max-width:1100px;
    margin:auto;
}

.about h2{
    text-align:center;
    font-size:42px;
    color:#003c8f;
    margin-bottom:25px;
}

.about p{
    text-align:center;
    font-size:18px;
    line-height:1.9;
    color:#555;
}/* SERVICES */

.services{
    padding:100px 8%;
    background:#f5f7fb;
}

.services h2{
    text-align:center;
    font-size:42px;
    color:#003c8f;
    margin-bottom:50px;
}

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

.service-card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
    transition:0.3s ease;
}

.service-card i{
    font-size:45px;
    color:#003c8f;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
    color:#003c8f;
}

.service-card p{
    color:#666;
    line-height:1.7;
}/* WHY US */

.why-us{
    padding:100px 8%;
    background:#ffffff;
}

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

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

.why-card{
    background:#f5f7fb;
    padding:30px;
    border-radius:15px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

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

.why-card i{
    font-size:45px;
    color:#003c8f;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:10px;
    color:#003c8f;
}

.why-card p{
    color:#666;
}/* CONTACT */

.contact{
    padding:100px 8%;
    background:#f5f7fb;
}

.contact h2{
    text-align:center;
    font-size:42px;
    color:#003c8f;
    margin-bottom:50px;
}

.contact-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-info p{
    margin:18px 0;
    font-size:18px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

.contact-form textarea{
    height:150px;
}/* FOOTER */

.footer{
    background:#003c8f;
    color:#fff;
    text-align:center;
    padding:50px 20px;
}

.footer h2{
    margin-bottom:15px;
}

.footer p{
    margin:8px 0;
}/* WHATSAPP BUTTON */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:35px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
    z-index:999;
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.1);
}/* GOOGLE MAP */

.map{
    width:100%;
    margin:0;
    padding:0;
}

.map iframe{
    display:block;
}.stats{
    background:#003c8f;
    color:#fff;
    padding:70px 8%;
}

.stats .container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    text-align:center;
}

.stat-box h2{
    font-size:45px;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
}/* TESTIMONIALS */

.testimonials{
    padding:100px 8%;
    background:#f5f7fb;
}

.testimonials h2{
    text-align:center;
    font-size:42px;
    color:#003c8f;
    margin-bottom:50px;
}

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

.testimonial-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

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

.testimonial-card p{
    color:#555;
    font-style:italic;
    line-height:1.7;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#ffb400;
    font-size:22px;
    margin-bottom:10px;
}

.testimonial-card span{
    font-weight:600;
    color:#003c8f;
}

/* RESPONSIVE */

@media(max-width:768px){

.navbar{
    flex-direction:column;
    padding:15px;
}

.navbar ul{
    margin-top:15px;
    flex-wrap:wrap;
    justify-content:center;
}

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

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

.about h2,
.services h2,
.why-us h2,
.contact h2,
.testimonials h2{
    font-size:32px;
}

.contact-box{
    grid-template-columns:1fr;
}

.whatsapp{
    width:55px;
    height:55px;
    font-size:30px;
}

}.menu-toggle{
    display:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

@media(max-width:768px){

.menu-toggle{
    display:block;
}

.navbar{
    padding:15px 6%;
}

.navbar ul{
    display:none;
    flex-direction:column;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#003c8f;
    text-align:center;
    padding:20px 0;
}

.navbar ul.active{
    display:flex;
}

.navbar ul li{
    margin:15px 0;
}

}.testimonials{
    padding:100px 8%;
    background:#f8f9fc;
}

.testimonials h2{
    text-align:center;
    font-size:42px;
    color:#003c8f;
    margin-bottom:50px;
}

.testimonial-card{
    background:#fff;
    border-radius:15px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.testimonial-card:hover{
    transform:translateY(-10px);
    transition:.3s;
}.hero h4{
    font-size:24px;
    margin-bottom:20px;
    color:#ffcc00;
}

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

.btn2{
    background:#25D366;
}

.btn2:hover{
    background:#1da851;
}.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:30px;
}

.btn2{
    background:#25D366;
}

.btn2:hover{
    background:#1da851;
}.logo img{
    height:60px;
    width:auto;
    display:block;
}

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

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

.logo h2{
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}.hero-buttons{
    margin-top:25px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn2{
    background:#25D366;
}

.btn2:hover{
    background:#1ebc59;
}/* FAQ Section */

.faq{
    padding:100px 8%;
    background:#ffffff;
}

.faq h2{
    text-align:center;
    font-size:42px;
    color:#003c8f;
    margin-bottom:50px;
}

.faq-item{
    background:#f5f7fb;
    padding:25px;
    margin-bottom:20px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

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

.faq-item h3{
    color:#003c8f;
    margin-bottom:10px;
}

.faq-item p{
    color:#555;
    line-height:1.7;
}/* Google Reviews */

.reviews{
    padding:100px 8%;
    background:#f5f7fb;
}

.reviews h2{
    text-align:center;
    font-size:42px;
    color:#003c8f;
    margin-bottom:50px;
}/* Social Icons */

.social-icons{
    margin:20px 0;
}

.social-icons a{
    display:inline-block;
    width:45px;
    height:45px;
    line-height:45px;
    text-align:center;
    margin:0 8px;
    border-radius:50%;
    background:#ffffff;
    color:#003c8f;
    font-size:22px;
    transition:.3s;
}

.social-icons a:hover{
    background:#ff9800;
    color:#fff;
    transform:translateY(-5px);
}.service-category h3{
margin:40px 0 20px;
color:#0b5ed7;
font-size:28px;
font-weight:700;
}

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

.service-card{
background:#fff;
padding:20px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,.1);
text-align:center;
font-weight:600;
transition:.3s;
cursor:pointer;
}

.service-card:hover{
background:#0b5ed7;
color:#fff;
transform:translateY(-8px);
}.hero-badges{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:15px;
margin:25px 0;
}

.hero-badges span{
background:#ffffff;
color:#0b5ed7;
padding:12px 20px;
border-radius:50px;
font-weight:600;
box-shadow:0 5px 20px rgba(0,0,0,.15);
transition:.3s;
}

.hero-badges span:hover{
background:#0b5ed7;
color:#fff;
transform:translateY(-5px);
}.search-box{
width:100%;
max-width:500px;
display:block;
margin:25px auto;
padding:15px 20px;
border:2px solid #0b5ed7;
border-radius:50px;
font-size:16px;
outline:none;
box-shadow:0 5px 15px rgba(0,0,0,.1);
}/* Scroll To Top Button */

#topBtn{
position:fixed;
bottom:90px;
right:25px;
width:50px;
height:50px;
border:none;
border-radius:50%;
background:#0b5ed7;
color:#fff;
font-size:20px;
cursor:pointer;
display:none;
z-index:9999;
box-shadow:0 5px 15px rgba(0,0,0,.3);
transition:.3s;
}

#topBtn:hover{
background:#084298;
transform:translateY(-5px);
}