/* ================= GLOBAL ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    color:#222;
    background:#fff;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}



/* ================= HEADER ================= */


.header{

    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:18px 8%;

    background:#ffffff;

    position:sticky;
    top:0;

    z-index:1000;

    box-shadow:0 5px 20px rgba(0,0,0,0.08);

}



.logo{

    font-size:32px;

    font-weight:800;

    color:#0b1f3a;

    letter-spacing:1px;

}



.nav{

    display:flex;

    align-items:center;

    gap:35px;

}



.nav a{

    font-size:16px;

    font-weight:600;

    color:#333;

    transition:0.3s;

}



.nav a:hover{

    color:#c89b3c;

}



.header-btn{

    background:#c89b3c;

    color:white;

    padding:12px 28px;

    border-radius:30px;

    font-weight:600;

    display:inline-block;

    transition:0.3s;

}



.header-btn:hover{

    background:#0b1f3a;

}



.menu-toggle{

    display:none;

    border:none;

    background:none;

    font-size:30px;

    cursor:pointer;

}






/* ================= HOME HERO ================= */


.hero{

    min-height:600px;

    display:flex;

    align-items:center;

    padding:0 8%;

    background:

    linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.65)
    ),

    url("../images/hero.jpg");

    background-size:cover;

    background-position:center;

}



.hero-content{

    max-width:700px;

    color:white;

}



.hero h1{

    font-size:55px;

    line-height:1.2;

    margin-bottom:20px;

}



.hero p{

    font-size:20px;

    margin-bottom:35px;

    color:#eee;

}



.button{

    background:#c89b3c;

    color:white;

    padding:15px 35px;

    border-radius:30px;

    font-weight:600;

    display:inline-block;

    transition:0.3s;

}



.button:hover{

    background:#ffffff;

    color:#0b1f3a;

}





/* ================= INNER PAGE HERO ================= */


.page-hero{

    padding:100px 8%;

    text-align:center;

    background:#0b1f3a;

    color:white;

}



.page-hero h1{

    font-size:48px;

    margin-bottom:15px;

}



.page-hero p{

    max-width:700px;

    margin:auto;

    font-size:18px;

    color:#ddd;

}






/* ================= COMMON SECTION ================= */


.about,
.products,
.process,
.why-us,
.contact-page,
.form-section{

    padding:80px 8%;

}



h2{

    font-size:38px;

    color:#0b1f3a;

    text-align:center;

    margin-bottom:20px;

}



h3{

    font-size:22px;

}



.section-text{

    max-width:800px;

    margin:0 auto;

    text-align:center;

    font-size:18px;

    color:#555;

    line-height:1.7;

}
/* ================= PRODUCTS ================= */


.product-grid{

    margin-top:40px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



.product-card{

    background:white;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

    transition:0.3s;

}



.product-card:hover{

    transform:translateY(-8px);

}



.product-card img{

    width:100%;

    height:250px;

    object-fit:cover;

}



.product-card h3{

    color:#0b1f3a;

    padding:20px 20px 10px;

}



.product-card p{

    padding:0 20px 25px;

    color:#555;

}





/* ================= WHY CHOOSE ================= */


.why-us{

    background:#f8f9fa;

    text-align:center;

}



.why-grid{

    margin-top:40px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.why-card{

    background:white;

    padding:35px 25px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

}



.why-card h3{

    color:#c89b3c;

    margin-bottom:15px;

}



.why-card p{

    color:#555;

}






/* ================= PROCESS ================= */


.process{

    text-align:center;

}



.process-grid{

    margin-top:40px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.process-card{

    padding:35px 25px;

    border-radius:15px;

    background:white;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

}



.process-card span{

    display:block;

    font-size:32px;

    font-weight:800;

    color:#c89b3c;

}



.process-card h3{

    margin:15px 0;

    color:#0b1f3a;

}



.process-card p{

    color:#555;

}






/* ================= PARTNER SECTION ================= */


.partner{

    padding:90px 8%;

    background:#0b1f3a;

    color:white;

    text-align:center;

}



.partner h2{

    color:white;

}



.partner p{

    max-width:750px;

    margin:20px auto 35px;

    font-size:18px;

}



.partner-btn{

    background:#c89b3c;

    color:white;

    padding:15px 35px;

    border-radius:30px;

    font-weight:600;

    display:inline-block;

}



.partner-btn:hover{

    background:white;

    color:#0b1f3a;

}





/* ================= CONTACT PAGE ================= */


.contact-page{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

}



.contact-box{

    background:white;

    padding:40px;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

}



.contact-box h2{

    text-align:left;

    font-size:28px;

}



.contact-box p{

    color:#555;

    margin-bottom:20px;

    font-size:17px;

}



.contact-box .header-btn{

    margin-top:15px;

}
/* ================= PARTNER FORM ================= */


.form-section{

    background:#f8f9fa;

}



.form-container{

    max-width:750px;

    margin:auto;

    background:white;

    padding:45px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,0.08);

}



.form-container h2{

    text-align:center;

}



.form-container p{

    text-align:center;

    color:#555;

    margin-bottom:30px;

}



.form-container label{

    display:block;

    font-weight:600;

    margin:15px 0 8px;

    color:#0b1f3a;

}



.form-container input,
.form-container select,
.form-container textarea{


    width:100%;

    padding:14px;

    border:1px solid #ddd;

    border-radius:8px;

    font-size:16px;

}



.form-container textarea{

    resize:vertical;

}



.form-container button{

    margin-top:25px;

    width:100%;

    padding:15px;

    background:#c89b3c;

    border:none;

    border-radius:30px;

    color:white;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

}



.form-container button:hover{

    background:#0b1f3a;

}






/* ================= FOOTER ================= */


.footer{

    background:#0b1f3a;

    color:white;

    padding:60px 8% 20px;

}



.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

}



.footer h3{

    color:#c89b3c;

    margin-bottom:20px;

}



.footer p{

    color:#ddd;

    line-height:1.8;

}



.footer-bottom{

    margin-top:40px;

    padding-top:20px;

    border-top:1px solid rgba(255,255,255,0.2);

    display:flex;

    justify-content:space-between;

}



.footer-bottom a{

    color:white;

}



.footer-bottom a:hover{

    color:#c89b3c;

}







/* ================= MOBILE RESPONSIVE ================= */



@media(max-width:900px){


.product-grid{

    grid-template-columns:1fr 1fr;

}



.why-grid,
.process-grid{

    grid-template-columns:1fr 1fr;

}



.footer-container{

    grid-template-columns:1fr 1fr;

}



.contact-page{

    grid-template-columns:1fr;

}



}




@media(max-width:768px){



.header{

    padding:15px 5%;

}



.logo{

    font-size:28px;

}



.menu-toggle{

    display:block;

}



.nav{

    position:fixed;

    top:0;

    left:-100%;

    width:100%;

    height:100vh;

    background:#0b1f3a;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:35px;

    transition:0.4s;

}



.nav.active{

    left:0;

}



.nav a{

    color:white;

    font-size:24px;

}



.header-btn{

    display:none;

}



.hero{

    min-height:500px;

}



.hero h1{

    font-size:38px;

}



.page-hero h1{

    font-size:36px;

}



.about,
.products,
.process,
.why-us,
.contact-page,
.form-section{

    padding:60px 5%;

}



.product-grid,
.why-grid,
.process-grid{

    grid-template-columns:1fr;

}



.form-container{

    padding:25px;

}



.footer-container{

    grid-template-columns:1fr;

}



.footer-bottom{

    flex-direction:column;

    text-align:center;

    gap:15px;

}



}
