/* ======================================================
   KINGKRAFT WEBSITE STYLESHEET
====================================================== */

body{
    font-family: 'Open Sans', sans-serif;
    color: #222;
    overflow-x: hidden;
    background: #fff;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

img{
    max-width: 100%;
}

/* ======================================================
   NAVBAR
====================================================== */

.navbar{
    background: #ffffff;
    z-index: 999;
}

.navbar-brand img{
    max-height: 60px;
}

.navbar .nav-link{
    color: #222;
    font-weight: 600;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.navbar .nav-link:hover{
    color: #0E9A43;
}

/* ======================================================
   HERO SECTION
====================================================== */

.hero-section{
    background: #f7f7f7;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-section h1{
    line-height: 1.2;
}

.hero-section .lead{
    color: #555;
}

/* ======================================================
   BUTTONS
====================================================== */

.btn-success{
    background: #0E9A43;
    border-color: #0E9A43;
}

.btn-success:hover{
    background: #06682D;
    border-color: #06682D;
}

.btn-dark{
    background: #111;
    border-color: #111;
}

.btn-dark:hover{
    background: #000;
}

/* ======================================================
   SECTION TITLE
====================================================== */

.section-title{
    margin-bottom: 50px;
}

.section-title h2{
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p{
    color: #666;
}

/* ======================================================
   PRODUCT CARDS
====================================================== */

.product-card{
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s ease;
    background: #fff;
}

.product-card:hover{
    transform: translateY(-5px);
}

.product-card img{
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.product-card .card-body{
    padding: 20px;
}

.product-card h4,
.product-card h6{
    margin-bottom: 15px;
}

/* ======================================================
   CLIENT LOGOS
====================================================== */

.client-logo{
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    transition: 0.3s ease;
}

.client-logo:hover{
    transform: translateY(-5px);
}

.client-logo img{
    max-height: 80px;
    object-fit: contain;
}

/* ======================================================
   CONTACT PAGE
====================================================== */

.contact-form-box,
.contact-info-box{
    border-radius: 15px;
}

.form-control{
    height: 50px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

textarea.form-control{
    height: auto;
}

.form-control:focus{
    box-shadow: none;
    border-color: #0E9A43;
}

/* ======================================================
   FOOTER
====================================================== */

.footer-section{
    background: #111;
}

.footer-links{
    padding-left: 0;
}

.footer-links li{
    list-style: none;
    margin-bottom: 12px;
}

.footer-links a{
    color: #ccc;
    text-decoration: none;
}

.footer-links a:hover{
    color: #fff;
}

/* ======================================================
   WHATSAPP FLOAT BUTTON
====================================================== */

.whatsapp-float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ======================================================
   SCROLLBAR
====================================================== */

::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-track{
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb{
    background: #0E9A43;
    border-radius: 10px;
}

/* ======================================================
   GLOBAL SPACING
====================================================== */

section{
    position: relative;
}

a,
button{
    transition: 0.3s ease;
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:991px){

    .hero-section{
        text-align: center;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero-section h1{
        font-size: 38px;
    }

    .navbar .btn{
        width: 100%;
        margin-top: 10px;
    }

}

@media(max-width:767px){

    .hero-section h1{
        font-size: 30px;
    }

    .product-card img{
        height: 220px;
    }

}

/* FOUNDER SECTION */

.founder-img{
    max-height: 420px;
    object-fit: cover;
    border-radius: 20px;
}