/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
}

/* Navigation */

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#003366;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 60px;
    z-index:1000;
    box-shadow:0 3px 10px rgba(0,0,0,0.2);
}

nav h2{
    font-size:30px;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:30px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-size:18px;
}

nav ul li a:hover{
    color:#FFD700;
}

/* Hero */

.hero{
    margin-top:80px;
    height:90vh;
    background:linear-gradient(to right,#003366,#0059b3);
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero-content{
    max-width:700px;
}

.hero h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:30px;
    line-height:1.6;
}

.btn{
    background:#FFD700;
    color:#003366;
    padding:15px 35px;
    text-decoration:none;
    font-weight:bold;
    border-radius:8px;
}

.btn:hover{
    background:white;
}
/* Services */

.services{
    padding:80px 50px;
    background:#f4f7fc;
    text-align:center;
}

.services h2{
    font-size:40px;
    color:#003366;
    margin-bottom:50px;
}

.service-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.card{
    width:250px;
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    color:#003366;
    margin-bottom:15px;
}
/* About Section */

.about{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;
    padding:100px 60px;
    background:white;
    flex-wrap:wrap;
}

.about-image img{
    width:450px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.about-text{
    max-width:550px;
}

.about-text h2{
    font-size:42px;
    color:#003366;
    margin-bottom:20px;
}

.about-text p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:20px;
}
/* Statistics */

.stats{
    background:#003366;
    color:white;
    padding:80px 40px;
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
    text-align:center;
}

.stat-box{
    width:220px;
}

.stat-box h2{
    font-size:55px;
    color:#FFD700;
    margin-bottom:10px;
}

.stat-box p{
    font-size:20px;
}
/* Testimonials */

.testimonials{
    padding:100px 50px;
    background:#f4f7fc;
    text-align:center;
}

.testimonials h2{
    font-size:42px;
    color:#003366;
    margin-bottom:50px;
}

.testimonial-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.testimonial-card{
    background:white;
    width:320px;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transition:0.3s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-card p{
    font-size:17px;
    line-height:1.7;
    color:#555;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#FFD700;
    font-size:24px;
    margin-bottom:10px;
}

.testimonial-card h3{
    color:#003366;
}
.whatsapp-btn{
    background:#25D366;
    color:white;
    margin-left:15px;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
}
.whatsapp-float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 4px 10px rgba(0,0,0,0.3);
    z-index:1000;
}

.whatsapp-float:hover{
    background:#1ebe5d;
}
/* Footer */

.footer{
    background:#003366;
    color:white;
    padding:60px 40px 20px;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:30px;
}

.footer-box{
    flex:1;
    min-width:220px;
}

.footer-box h3{
    margin-bottom:15px;
    color:#FFD700;
}

.footer-box p{
    margin-bottom:10px;
    line-height:1.6;
}

.footer-box a{
    color:white;
    text-decoration:none;
}

.footer-box a:hover{
    color:#FFD700;
}

.footer hr{
    margin:30px 0;
    border:0;
    border-top:1px solid rgba(255,255,255,0.2);
}

.copyright{
    text-align:center;
    font-size:14px;
}