:root{
    --primary:#0a2141;
    --secondary:#bf8d2b;
    --dark:#000;
    --text:#555;
    --bg:#f8fafc;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    color:var(--dark);
    font-family: "Poppins", sans-serif;
}

/*=========================
 Header
==========================*/
/* Header */

.mh-header{
    position:sticky;
    top:0;
    left:0;
    background:#fff;
    z-index:9999;
    border-bottom:1px solid #eee;
}

.mh-navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;
}

.mh-logo img{
    max-height:70px;
}

.mh-nav ul{
    display:flex;
    list-style:none;
    margin:0;
    padding:0;
    gap:35px;
}

.mh-nav a{
    color:var(--dark);
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.mh-nav a:hover{
    color:var(--primary);
}

.mh-header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.mh-btn-primary{
    background:var(--primary);
    color:#fff;
    padding:12px 24px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

.mh-btn-primary:hover{
    color:#fff;
}

.mh-menu-toggle,
.mh-close{
    display:none;
    border:none;
    background:none;
    cursor:pointer;
}

.mh-menu-toggle{
    width:48px;
    height:48px;
    background:var(--primary);
    color:#fff;
    border-radius:8px;
    font-size:20px;
}

/* Overlay */

.mh-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:9997;
}

.mh-overlay.active{
    opacity:1;
    visibility:visible;
}

/* Mobile */

@media(max-width:991px){

    .mh-navbar{
        height:75px;
    }

    .mh-logo img{
        max-height:55px;
    }

    .mh-btn-primary{
        display:none;
    }

    .mh-menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .mh-nav{

        position:fixed;
        top:0;
        right:-100%;
        width:300px;
        max-width:85%;
        height:100%;
        background:#fff;
        transition:.4s;
        z-index:9998;
        padding:80px 25px 30px;
        overflow:auto;
    }

    .mh-nav.active{
        right:0;
    }

    .mh-close{
        display:block;
        position:absolute;
        right:20px;
        top:20px;
        font-size:24px;
    }

    .mh-nav ul{

        flex-direction:column;
        gap:0;

    }

    .mh-nav li{

        border-bottom:1px solid #eee;

    }

    .mh-nav a{

        display:block;
        padding:16px 0;

    }

    body.menu-open{

        overflow:hidden;

    }

}

/*---------------- banner start ------------*/

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.mh-hero{
    background:#f8fbff;
    padding:90px 0;
}

.mh-hero .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.mh-hero-content{
    flex:1;
}

.mh-subtitle{
    display:inline-block;
    color:var(--secondary);
    font-weight:700;
    margin-bottom:18px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.mh-hero h1{
    font-size: 45px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.mh-hero h1 span{
    color:var(--secondary);
}

.mh-hero p{
    color:var(--text);
    line-height:1.8;
    margin-bottom:35px;
    max-width:620px;
}

.mh-hero-btns{
    display:flex;
    gap:20px;
    margin-bottom:50px;
}

.mh-btn-primary,
.mh-btn-outline{
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
    width: 100%;
    text-align: center;
}

.mh-btn-primary{
    background:var(--primary);
    color:#fff;
}

.mh-btn-primary:hover{
    background:var(--secondary);
}

.mh-btn-outline{
    border:2px solid var(--primary);
    color:var(--primary);
}

.mh-btn-outline:hover{
    background:var(--primary);
    color:#fff;
}

.mh-hero-image{
    flex:1;
    text-align:right;
}

.mh-hero-image img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
}

/* ===========================
   Why Choose Us
=========================== */

.mh-why{
    padding:100px 0;
    background:#fff;
}

.mh-section-title{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.mh-section-title span{
    display:inline-block;
    color:var(--secondary);
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.mh-section-title h2{
    font-size:42px;
    color:var(--dark);
    margin-bottom:18px;
    line-height:1.25;
}

.mh-section-title p{
    color:#666;
    line-height:1.8;
}

.mh-why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.mh-why-card{
    position:relative;
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #edf1f6;
    transition:.4s;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
}

.mh-why-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:4px;
    background:var(--secondary);
    transition:.4s;
}

.mh-why-card:hover::before{
    width:100%;
}

.mh-why-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.mh-why-icon{
    width:72px;
    height:72px;
    border-radius:18px;
    background:#eef6ff;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
    transition:.4s;
}

.mh-why-card:hover .mh-why-icon{
    background:var(--primary);
    color:#fff;
    transform:rotate(-8deg) scale(1.08);
}

.mh-why-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:var(--dark);
}

.mh-why-card p{
    color:#666;
    line-height:1.8;
}
/* Animation */

.mh-why-card{
    animation:mhFadeUp .8s ease both;
}

.mh-why-card:nth-child(2){animation-delay:.1s;}
.mh-why-card:nth-child(3){animation-delay:.2s;}
.mh-why-card:nth-child(4){animation-delay:.3s;}
.mh-why-card:nth-child(5){animation-delay:.4s;}
.mh-why-card:nth-child(6){animation-delay:.5s;}

@keyframes mhFadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}



/*=========================
    Company Profile
=========================*/

.mh-about{
    padding:100px 0;
    background:#f8fbff;
}

.mh-about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.mh-about-images{
    position:relative;
}

.mh-about-main img {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.mh-about-small{
    position:absolute;
    right:-30px;
    bottom:40px;
    width:230px;
}

.mh-about-small img{
    width:100%;
    border-radius:18px;
    border:8px solid #fff;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.mh-section-subtitle{
    color:var(--secondary);
    font-weight:700;
    letter-spacing:2px;
    display:inline-block;
    margin-bottom:18px;
}

.mh-about-content h2{
    font-size:42px;
    line-height:1.25;
    margin-bottom:25px;
    color:var(--dark);
}

.mh-about-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
}
/*=========================
 Founder
==========================*/

.mh-founder{
    padding:100px 0;
    background:#fff;
}

.mh-founder-wrapper{
    display:grid;
    grid-template-columns:430px 1fr;
    gap:70px;
    align-items:center;
}

.mh-founder-image{
    position:relative;
}

.mh-founder-image img{
    width:100%;
    border-radius:25px;
    display:block;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.mh-founder-contact{
    position:absolute;
    left:20px;
    right:20px;
    bottom:20px;
    background:#fff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.mh-founder-contact a{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:#444;
    font-weight:600;
    margin:10px 0;
}

.mh-founder-contact i{
    color:var(--secondary);
    width:20px;
}

.mh-founder-content h2{
    font-size:42px;
    margin:20px 0;
    line-height:1.3;
}

.mh-founder-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
}

.mh-founder-quote{
    font-size:45px;
    color:var(--secondary);
    margin-bottom:10px;
}

.mh-founder-info{
    margin-top:35px;
    padding-top:25px;
    border-top:1px solid #eee;
}

.mh-founder-info h3{
    font-size:28px;
    margin-bottom:6px;
}

.mh-founder-info span{
    color:var(--secondary);
    font-weight:600;
}

/*=========================
 Vision Mission
==========================*/

.mh-vm{
    padding:100px 0;
    background:#f8fbff;
}

.mh-vm-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-top:60px;
}

.mh-vm-card{
    background:#fff;
    padding:50px 40px;
    border-radius:22px;
    box-shadow:0 15px 45px rgba(0,0,0,.06);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.mh-vm-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background:var(--secondary);
}

.mh-vm-card:hover{
    transform:translateY(-10px);
}

.mh-vm-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(248,156,28,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:var(--secondary);
    margin-bottom:25px;
}

.mh-vm-card h3{
    font-size:28px;
    margin-bottom:18px;
}

.mh-vm-card p{
    line-height:1.9;
    color:#666;
}

/* Hover */

.mh-founder-image img,
.mh-vm-card,
.mh-founder-contact{
    transition:.35s;
}

.mh-founder-image:hover img{
    transform:scale(1.03);
}

.mh-founder-contact:hover{
    transform:translateY(-5px);
}

.mh-vm-card:hover .mh-vm-icon{
    background:var(--primary);
    color:#fff;
}

/*=========================
 Responsive
==========================*/

@media(max-width:991px){

    .mh-founder,
    .mh-vm{
        padding:80px 0;
    }

    .mh-founder-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .mh-founder-image{
        max-width:500px;
        margin:auto;
    }

    .mh-founder-content{
        text-align:center;
    }

    .mh-vm-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:767px){

    .mh-founder-content h2{
        font-size:32px;
    }

    .mh-founder-info h3{
        font-size:24px;
    }

    .mh-vm-card{
        padding:35px 25px;
    }

    .mh-vm-card h3{
        font-size:24px;
    }

}

@media(max-width:480px){

    .mh-founder,
    .mh-vm{
        padding:60px 0;
    }

    .mh-founder-content h2{
        font-size:26px;
    }

    .mh-founder-contact{
        position:relative;
        left:auto;
        right:auto;
        bottom:auto;
        margin-top:20px;
    }

    .mh-vm-icon{
        width:65px;
        height:65px;
        font-size:28px;
    }

}


/*==========================
 Key Features
===========================*/

.mh-features{
    padding:100px 0;
    background:#fff;
}

.mh-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-top:60px;
}

.mh-feature-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #eee;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
}

.mh-feature-card:hover{
    transform:translateY(-10px);
}

.mh-feature-card i{
    font-size:45px;
    color:var(--secondary);
    margin-bottom:20px;
}

.mh-feature-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.mh-feature-card p{
    color:#666;
    line-height:1.8;
}

/*==========================
 Categories
===========================*/

.mh-category{
    padding:100px 0;
    background:#f8fbff;
}

.mh-category-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-top:60px;
}
.mh-category-card{
    overflow:hidden;
    border-radius:20px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}
.mh-category-card img{
    width: 100%;
    height: 185px;
    object-fit: contain;
    transition: .5s;
    padding-top: 15px;
}
.category-grid-img {
    background: #fceaad;
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}
.mh-category-card:hover img{
    transform:scale(1.05);
}

.mh-category-content{
    padding:25px;
}

.mh-category-content h3{
    margin-bottom: 0;
    font-size: 18px;
    text-align: center;
}

/*==========================
 Products
===========================*/

.mh-products{
    padding:100px 0;
}

.mh-product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:60px;
}

.mh-product-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    transition:.35s;
}

.mh-product-card:hover{
    transform:translateY(-10px);
}

.mh-product-image{
    overflow:hidden;
}

.mh-product-image img{
    width:100%;
    height:215px;
    object-fit:cover;
    transition:.5s;
}

.mh-product-card:hover img{
    transform:scale(1.08);
}

.mh-product-content {
    padding: 20px;
}
.mh-product-content span{
    display:inline-block;
    color:var(--secondary);
    font-weight:700;
    margin-bottom:10px;
}

.mh-product-content h3{
    font-size: 18px;
    margin-bottom: 0;
    text-align: center;
}

.mh-product-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.mh-product-btn{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:14px 28px;
    border-radius:40px;
    text-decoration:none;
    transition:.3s;
}

.mh-product-btn:hover{
    background:var(--secondary);
}


/*==========================
 Responsive
===========================*/

@media(max-width:991px){

    .mh-features,
    .mh-category,
    .mh-products{
        padding:80px 0;
    }

    .mh-feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .mh-category-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .mh-product-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:767px){

    .mh-feature-grid,
    .mh-category-grid{
        grid-template-columns:1fr;
    }

    .mh-feature-card,
    .mh-category-card,
    .mh-product-card{
        border-radius:18px;
    }

    .mh-product-image img{
        height:250px;
    }

    .mh-product-content{
        padding:25px;
    }

    .mh-product-content h3{
        font-size:24px;
    }

}

@media(max-width:480px){

    .mh-features,
    .mh-category,
    .mh-products{
        padding:60px 0;
    }

    .mh-feature-card{
        padding:30px 20px;
    }

    .mh-category-card img{
        height:220px;
    }

    .mh-product-image img{
        height:220px;
    }

    .mh-product-btn{
        width:100%;
        text-align:center;
    }

}



/*=========================
 CTA
=========================*/

.mh-cta{
    padding:90px 0;
    background:#f8fbff;
}

.mh-cta-box{
    background:linear-gradient(135deg,var(--primary),#1f5f93);
    color:#fff;
    border-radius:25px;
    padding:60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    overflow:hidden;
    position:relative;
}

.mh-cta-box::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    right:-120px;
    top:-120px;
}

.mh-cta-content{
    max-width:650px;
}

.mh-cta-content span{
    color:#ffd77d;
    font-weight:700;
    letter-spacing:2px;
}

.mh-cta-content h2{
    font-size:42px;
    margin:18px 0;
}

.mh-cta-content p{
    opacity:.9;
    line-height:1.8;
}

.mh-cta-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.mh-cta .mh-btn-outline{
    border-color:#fff;
    color:#fff;
}

.mh-cta .mh-btn-outline:hover{
    background:#fff;
    color:var(--primary);
}

/*=========================
 Footer
=========================*/

.mh-footer{
    background:#071a2d;
    color:#fff;
}

.mh-footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:50px;
    padding:80px 0;
}

.mh-footer-logo{
    width:180px;
    margin-bottom:20px;
}

.mh-footer p{
    color:#bfc8d5;
    line-height:1.9;
}

.mh-footer h3{
    margin-bottom:22px;
    font-size:22px;
}

.mh-footer ul{
    list-style:none;
    padding:0;
}

.mh-footer li{
    margin-bottom:14px;
}

.mh-footer a{
    color:#bfc8d5;
    text-decoration:none;
    transition:.3s;
}

.mh-footer a:hover{
    color:var(--secondary);
}

.mh-contact-list li{
    display:flex;
    gap:12px;
    line-height:1.7;
}

.mh-contact-list i{
    color:var(--secondary);
    margin-top:5px;
}

.mh-social{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.mh-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
}

.mh-social a:hover{
    background:var(--secondary);
    color:#fff;
}

.mh-footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:22px 0;
}

/*=========================
 Scroll Top
=========================*/

.mh-scroll-top{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.mh-scroll-top:hover{
    background:var(--primary);
}

/*--------------- Mobile Responsive Start ---------------*/
@media(max-width:991px) {

    .mh-hero .container {
        gap: 20px;
        flex-direction: column;
    }
    .mh-hero h1 {
        font-size: 40px;
    }
    .mh-section-title h2 {
        font-size: 34px;
        margin-bottom: 15px;
    }
    .mh-why-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }











}
/*--------------- Mobile Responsive End ---------------*/