*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
}

.container{
    width:90%;
    margin:auto;
}

.top-bar{
    background:#001f4d;
    color:white;
    padding:10px;
}

header{
    background:white;
    padding:20px 0;
}

  
    
.navbar{;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav a{
    text-decoration:none;
    color:#333;
}


.btn{
    background:#ff7a00;
    color:white;
    padding:12px 25px;
    text-decoration:none;
    border-radius:5px;
}

.hero{
    height:90vh;

    background:url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
}

.overlay{
    width:100%;
    height:100%;

    background:rgba(0,0,0,0.5);

    display:flex;
    align-items:center;
}

.hero-content{
    color:white;
    margin-left:80px;
}

.hero-content h1{
    font-size:70px;
    margin:20px 0;
}


.hero-content span{
    color:#ffae00;
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-outline{
    border:2px solid white;
    color:white;
    text-decoration:none;
    padding:12px 25px;
}


.stats{
    width:90%;
    margin:auto;

    display:flex;
    justify-content:space-between;
    gap:20px;

    background:white;

    padding:40px;

    margin-top:-60px;

    border-radius:15px;

    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.stat-card{
    text-align:center;
    flex:1;
}

.stat-card h2{
    font-size:40px;
    color:#002147;
}

.stat-card h3{
    margin:10px 0;
}

.stat-card p{
    color:#666;
}

.services{
    width:90%;
    margin:100px auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h4{
    color:#ff9800;
    margin-bottom:10px;
}

.section-title h2{
    color:#002147;
    font-size:40px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.service-card{
    background:white;
    padding:40px 25px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card h3{
    margin-bottom:15px;
    color:#002147;
}

.service-card p{
    color:#666;
    line-height:1.6;
}

.brands{
    width:90%;
    margin:100px auto;
}

.brand-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.brand-card{
    background:white;
    height:150px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:28px;
    font-weight:bold;

    border-radius:12px;

    box-shadow:0 5px 15px rgba(0,0,0,0.08);

    transition:0.3s;
}

.brand-card:hover{
    transform:scale(1.05);
}

.process{
    width:90%;
    margin:100px auto;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-card{
    background:white;
    padding:40px 20px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.number{
    width:60px;
    height:60px;

    background:#ff7a00;
    color:white;

    margin:auto;
    margin-bottom:20px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:24px;
    font-weight:bold;
}

.process-card h3{
    margin-bottom:15px;
    color:#002147;
}

.process-card p{
    color:#666;
}

.testimonials{
    width:90%;
    margin:100px auto;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.testimonial-card{
    background:white;
    padding:35px;

    border-radius:12px;

    box-shadow:0 5px 15px rgba(0,0,0,0.08);

    transition:0.3s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.testimonial-card h3{
    color:#002147;
    margin-bottom:5px;
}

.testimonial-card span{
    color:#ff7a00;
}

.contact-section{
    width:90%;
    margin:100px auto;
}

.contact-form{
    max-width:700px;
    margin:auto;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{

    padding:15px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:16px;
}

.contact-form textarea{
    height:150px;
    resize:none;
}

.contact-form button{

    background:#ff7a00;

    color:white;

    border:none;

    padding:15px;

    border-radius:8px;

    font-size:18px;

    cursor:pointer;
}

.contact-form button:hover{
    opacity:0.9;
}

footer{
    background:#002147;
    color:white;
    margin-top:100px;
}

.footer-container{
    width:90%;
    margin:auto;

    display:grid;
    grid-template-columns:2fr 1fr 1fr;

    gap:40px;

    padding:60px 0;
}

.footer-box h3{
    margin-bottom:20px;
}

.footer-box p{
    line-height:1.8;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:10px;
}

.footer-box a{
    color:white;
    text-decoration:none;
}

.footer-box a:hover{
    color:#ff7a00;
}

.copyright{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,0.2);
}
@media (max-width:768px){

    .hero-content h1{
        font-size:38px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

}
