*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
}

.container{
    width:90%;
    margin:auto;
}

.top-bar{
    background:#002147;
    color:white;
    padding:10px 0;
}

.topbar-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.welcome-text{
    font-size:14px;
}

.social-links{
    display:flex;
    gap:15px;
}

.social-links a{
    color:white;
    text-decoration:none;
    font-size:14px;
}

.social-links a:hover{
    color:#ff7a00;
}

header{
    background:white;
    padding:20px 0;
}

.logo img{
    height:60px;
    width:auto;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

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;
}
.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
}
.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);
}

.about-hero{
    height:50vh;
    background:#002147;
}

.about-overlay{
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.about-content{
    text-align:center;
    color:white;
}

.about-content h1{
    font-size:50px;
    margin-bottom:20px;
}

.about-content p{
    font-size:22px;
}

.about-company{
    width:90%;
    margin:100px auto;
}

.about-text{
    max-width:900px;
    margin:auto;
    text-align:center;
    line-height:1.8;
    color:#555;
    font-size:18px;
}

.mission-vision{
    width:90%;
    margin:100px auto;
}

.mv-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.mv-card{
    background:white;
    padding:40px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.mv-card h2{
    color:#002147;
    margin-bottom:20px;
}

.mv-card p{
    line-height:1.8;
}
.products-section,
.featured-products{
    width:90%;
    margin:100px auto;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.product-card{
    background:white;
    padding:25px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.product-card img{
    width:100%;
    border-radius:10px;
    margin-bottom:20px;
}

.product-card h3{
    color:#002147;
    margin-bottom:15px;
}

.product-card p{
    color:#666;
    margin-bottom:20px;
}
.blog-section{
    width:90%;
    margin:100px auto;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.blog-card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.blog-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.blog-card h3{
    padding:20px 20px 10px;
    color:#002147;
}

.blog-card p{
    padding:0 20px 20px;
    color:#666;
    line-height:1.6;
}

.blog-card .btn{
    display:inline-block;
    margin:0 20px 20px;
}

.contact-info{
    width:90%;
    margin:100px auto;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.contact-card{
    background:white;
    padding:35px;
    text-align:center;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.contact-card h3{
    margin-bottom:15px;
    color:#002147;
}

.contact-card p{
    color:#666;
    line-height:1.8;
}

.map-section{
    width:90%;
    margin:100px auto;
}
.whatsapp-btn{
    position:fixed;
    bottom:20px;
    right:20px;

    width:60px;
    height:60px;

    background:#25D366;
    color:white;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:30px;

    text-decoration:none;

    box-shadow:0 5px 15px rgba(0,0,0,0.3);

    z-index:9999;
}
.menu-toggle{
    display:none;
}

.map-section{
    width:90%;
    margin:100px auto;
}

.map-container{
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.map-container iframe{
    width:100%;
    display:block;
}
.page-banner{
    background:#002147;
    color:white;
    text-align:center;
    padding:80px 20px;
}

.page-banner h1{
    font-size:48px;
    margin-bottom:10px;
}

.page-banner p{
    font-size:18px;
}

.privacy-page{
    width:90%;
    max-width:1100px;
    margin:80px auto;
    line-height:1.9;
}

.privacy-page h2{
    color:#002147;
    margin-bottom:20px;
}

.privacy-page h3{
    color:#002147;
    margin-top:35px;
    margin-bottom:15px;
}

.privacy-page p{
    color:#555;
    margin-bottom:15px;
}

.privacy-page ul{
    margin-left:20px;
    margin-bottom:20px;
}

.privacy-page li{
    margin-bottom:10px;
}

@media screen and (max-width:768px){

    .logo img{
        height:45px;
    }

    .navbar{
        display:flex;
        justify-content:space-between;
        align-items:center;
        flex-wrap:wrap;
    }

    .menu-toggle{
        display:block;
        font-size:30px;
        cursor:pointer;
    }

    #nav-menu{
        display:none;
        width:100%;
    }

    #nav-menu.active{
        display:block;
    }

    #nav-menu ul{
        display:flex;
        flex-direction:column;
        gap:15px;
        text-align:center;
        margin-top:20px;
        width:100%;
    }

    #nav-menu ul li{
        padding:12px 0;
        border-bottom:1px solid #ddd;
    }

    .hero-content{
        margin:20px;
        text-align:center;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .stats{
        flex-direction:column;
    }

    .service-grid,
    .brand-grid,
    .process-grid,
    .testimonial-grid,
    .product-grid,
    .blog-grid,
    .contact-grid,
    .mv-grid,
    .footer-container{
        grid-template-columns:1fr;
    }

    .footer-container{
        text-align:center;
    }

    .topbar-content{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .social-links{
        justify-content:center;
    }
}

  .page-banner{
        padding:60px 20px;
    }

    .page-banner h1{
        font-size:34px;
    }

    .privacy-page{
        width:95%;
    }

}