/* ==========================================
   CENIT Website
   Main Stylesheet
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fb;
    color:#222;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* =========================
        HEADER
========================= */

header{
    background:#fff;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}

.navbar {
    padding: 15px 0;
}

.navbar-nav{    
    margin-right: 0 !important;
}
.navbar .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: .3s;
}

.navbar .nav-link:hover {
    color: #0b8734 !important;
}

.navbar .nav-link.active {
    color: #0b8734 !important;
    font-weight: 600;
}
.logo img{
    height:60px;
}

.menu{
    display:flex;
    gap:35px;
}

.menu li a{
    color:#222;
    font-size:16px;
    font-weight:500;
    transition:.3s;
    position:relative;
}

.menu li a:hover,
.menu li a.active{
    color:#0c8d36;
}

.menu li a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:3px;
    background:#0c8d36;
}

.right-nav{
    display:flex;
    align-items:center;
    gap:25px;
}

.right-nav i{
    font-size:20px;
    cursor:pointer;
}

.dealer-btn{
    background:#0c8d36;
    color:#fff;
    padding:14px 28px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.dealer-btn:hover{
    background:#067229;
}

/* =========================
        HERO
========================= */

.hero{
    padding:0px 0;
    background:#ffffff;
}

.hero .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-left{
    flex:1;
}

.hero-right{
    flex:1.2;
}

.hero-left h3{
    font-size:58px;
    color:#111;
    font-weight:700;
}

.hero-left h1{
    font-size:82px;
    color:#118d39;
    line-height:1;
    font-weight:800;
}

.hero-left h2{
    font-size:64px;
    color:#111;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-left p{
    font-size:20px;
    color:#555;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn{
    padding:15px 35px;
    border-radius:8px;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

.green{
    background:#118d39;
    color:#fff;
}

.green:hover{
    background:#0a6b2a;
}

.white{
    border:2px solid #f3b11d;
    color:#222;
    background:#fff;
}

.white:hover{
    background:#f3b11d;
}

/* =========================
      PRODUCT SECTION
========================= */

.categories{
    padding:60px 0;
}

.categories .container{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    overflow:hidden;
}

.card:hover{
    transform:translateY(-8px);
}

.card h2{
    color:#0b8734;
    font-size:28px;
    margin-bottom:12px;
}

.card p{
    color:#666;
    margin-bottom:18px;
}

.card img{
    height:auto;
    margin:auto;
    object-fit:contain;
}

/* =========================
     WHY CHOOSE
========================= */

.why{
    padding:80px 0;
}

.why h2{
    text-align:center;
    font-size:42px;
    margin-bottom:45px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
}

.why-box{
    background:#fff;
    border-radius:16px;
    text-align:center;
    padding:35px 20px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.why-box:hover{
    transform:translateY(-8px);
}

.why-box i{
    font-size:45px;
    color:#118d39;
    margin-bottom:18px;
}

.why-box h4{
    font-size:18px;
}

/* =========================
      ABOUT
========================= */

.about{
    padding:70px 0;
}

.about .container{
    display:flex;
    align-items:center;
    gap:60px;
}

.about-left{
    flex:1;
}

.about-right{
    flex:1;
}

.about-left h2{
    font-size:46px;
    color:#118d39;
    margin-bottom:20px;
}

.about-left p{
    font-size:18px;
    color:#555;
    margin-bottom:30px;
}

.about-right img{
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* =========================
        FOOTER
========================= */

footer{
    background:#0b8734;
    color:#fff;
    padding:28px 0;
    /* text-align:center; */
}

/* =========================
      HOVER EFFECTS
========================= */

.card,
.why-box,
.btn,
.dealer-btn,
.menu a{
    transition:all .35s ease;
}

/*==========================
        HERO SLIDER
==========================*/

.hero{
    width:100%;
    position:relative;
}

.slider{
    position:relative;
    overflow:hidden;
    height:650px;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s;
}

.slide.active{
    opacity:1;
    z-index:1;
}

.slide img{
    width:100%;
    height:650px;
    object-fit:cover;
}

.caption{
    position:absolute;
    left:8%;
    top:50%;
    transform:translateY(-50%);
    color:white;
    max-width:550px;
}

.caption h4{
    font-size:40px;
}

.caption h1{
    font-size:80px;
    font-weight:800;
}
.caption h2{
    font-size:60px;
    margin-bottom:20px;
}
.caption p{
    font-size:22px;
    margin-bottom:30px;
}

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    background:rgba(255,255,255,.6);
    cursor:pointer;
    border-radius:50%;
    font-size:30px;
    transition:.3s;
    z-index:100;
}
.prev:hover,
.next:hover{
    background:#0b8734;
    color:white;
}
.prev{
    left:30px;
}
.next{
    right:30px;
}


footer {

    background: #111;

}

footer h5 {

    margin-bottom: 20px;

    font-weight: 600;

}

footer p,
footer li {

    color: #d6d6d6;

    line-height: 1.9;

}

footer a {

    color: #fff;

    text-decoration: none;

    transition: .3s;

}

footer a:hover {

    color: #ffc107;

}

.social{
    padding:30px;
}

.social i {
    font-size:30px;
    padding-top: 4px;
}
