*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}


/*=============================
Header
=============================*/

.header-area{

    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:999;
}

.navbar{

    padding:0;
}

.navbar-brand img{

    height:70px;
}

.navbar-nav .nav-link{

    color:#131111;
    font-weight:500;
    margin:0 10px;
    transition:.3s;
}

.navbar-nav .nav-link:hover{

    color:#f4b400;
}

.navbar-nav .active{

    color:#f4b400!important;
}

.quote-btn{

    background:#f4b400;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    margin-left:25px;
    font-weight:600;
    transition:.3s;
}

.quote-btn:hover{

    background:#0B5D3F;
    color:#fff;
}

.quote-btn i{

    margin-right:8px;
}

.navbar-toggler{

    background:#fff;
}

@media(max-width:991px){

.navbar-collapse{

background:#0B5D3F;
padding:20px;
margin-top:20px;
border-radius:10px;

}

.quote-btn{

display:inline-block;
margin-top:15px;
margin-left:0;

}

}
body{

font-family:'Poppins',sans-serif;

}


/*=========================
TOP BAR
==========================*/

.top-bar{

background:#0B5D3F;

padding:10px 0;

font-size:14px;

}

.top-left{

display:flex;

gap:25px;

}

.top-left a{

color:#fff;

text-decoration:none;

}

.top-left i{

color:#F4B400;

margin-right:8px;

}

.top-right{

text-align:right;

color:#fff;

}

.top-right i{

color:#F4B400;

margin-right:8px;

}


/*=========================
HEADER
==========================*/

.header-area{

position:absolute;

width:100%;

left:0;

top:42px;

z-index:999;

}

.navbar{

background:white;

backdrop-filter:blur(15px);

padding:0;

border-radius:15px;

}

.navbar-brand img{

height:75px;

}

.nav-link{

color:#fff;

font-weight:600;

margin:0 12px;

transition:.3s;

}

.nav-link:hover{

color:#F4B400;

}

.nav-link.active{

color:#F4B400;

}

.dropdown-menu{

border:none;

border-radius:15px;

padding:10px;

box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.dropdown-item{

padding:12px 18px;

border-radius:10px;

}

.dropdown-item:hover{

background:#0B5D3F;

color:#fff;

}

.quote-btn{

background:#F4B400;

padding:14px 32px;

border-radius:40px;

font-weight:600;

color:#fff;

text-decoration:none;

transition:.3s;

}

.quote-btn:hover{

background:#0B5D3F;

color:#fff;

transform:translateY(-3px);

}

.navbar-toggler{

background:#fff;

border:none;

padding:10px 15px;

}

.navbar-toggler i{

font-size:22px;

}


/*=========================
Sticky Header
==========================*/

.header-area.sticky{

position:fixed;

top:0;

background:#fff;

box-shadow:0 15px 30px rgba(0,0,0,.08);

animation:slideDown .5s;

}

.header-area.sticky .navbar{

background:#fff;

}

.header-area.sticky .nav-link{

color:#222;

}

.header-area.sticky .nav-link.active{

color:#0B5D3F;

}

@keyframes slideDown{

from{

transform:translateY(-100%);

}

to{

transform:translateY(0);

}

}


/*=========================
Responsive
==========================*/

@media(max-width:991px){

.top-bar{

display:none;

}

.header-area{

top:0;

}

.navbar{

background:#fff;

padding:15px;

}

.nav-link{

color:#222;

padding:12px;

}

.quote-btn{

display:block;

margin-top:20px;

text-align:center;

}

}

/*==================================
            FOOTER
===================================*/

.footer{

    background:#0B2F1F;

    color:#fff;

    padding:80px 0 20px;

    position:relative;

}

.footer-logo{

    width:170px;

}

.footer-text{

    color:#d9d9d9;

    line-height:30px;

    font-size:15px;

}

.footer h4{

    color:#fff;

    font-size:22px;

    font-weight:700;

    margin-bottom:30px;

    position:relative;

}

.footer h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:60px;

    height:3px;

    background:#F4B400;

}

.footer ul{

    padding:0;

    margin:0;

    list-style:none;

}

.footer ul li{

    margin-bottom:14px;

}

.footer ul li a{

    color:#d9d9d9;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#F4B400;

    padding-left:8px;

}

.footer-contact p{

    color:#d9d9d9;

    line-height:28px;

    margin-bottom:18px;

}

.footer-contact i{

    color:#F4B400;

    margin-right:10px;

    width:20px;

}

.footer-contact a{

    color:#d9d9d9;

    text-decoration:none;

}

.footer-contact a:hover{

    color:#F4B400;

}

.footer-social{

    margin-top:30px;

}

.footer-social a{

    display:inline-flex;

    width:45px;

    height:45px;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    color:#fff;

    margin-right:10px;

    transition:.4s;

}

.footer-social a:hover{

    background:#F4B400;

    color:#0B2F1F;

    transform:translateY(-5px);

}

.footer hr{

    border-color:rgba(255,255,255,.15);

    margin:50px 0 25px;

}

.copyright{

    color:#cfcfcf;

    margin:0;

}

.developer{

    color:#cfcfcf;

    margin:0;

}

@media(max-width:991px){

.footer{

text-align:center;

}

.footer h4::after{

left:50%;

transform:translateX(-50%);

}

.footer-social{

justify-content:center;

}

}

.hero-slider{

    position:relative;

}

.hero-slider .swiper-slide{

    min-height:100vh;

    background-size:cover;

    background-position:center;

    position:relative;

}

.slide1{

    background-image:url(../image/1.png);

}   

.slide2{

    background-image:url(../image/2.png);

}

.slide3{

    background-image:url(../image/3.png);

}

.overlay{

    position:absolute;

    width:100%;

    height:100%;

    background:linear-gradient(90deg,
    rgba(0,0,0,.80),
    rgba(0,0,0,.45));

}

.hero-content{

    position:relative;

    z-index:10;

    color:#fff;

}

.hero-content span{

    display:inline-block;

    background:#f4b400;

    color:#222;

    padding:10px 25px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:72px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:20px;

}

.hero-content strong{

    color:#f4b400;

}

.hero-content p{

    font-size:20px;

    line-height:34px;

    max-width:650px;

    margin-bottom:35px;

}

.theme-btn{

    display:inline-block;

    background:#0B5D3F;

    color:#fff;

    padding:16px 40px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.theme-btn:hover{

    background:#f4b400;

    color:#fff;

}

.hero-prev,
.hero-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;

    height:60px;

    background:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    z-index:100;

    transition:.4s;

}

.hero-prev{

    left:40px;

}

.hero-next{

    right:40px;

}

.hero-prev:hover,
.hero-next:hover{

    background:#f4b400;

    color:#fff;

}

.swiper-pagination-bullet{

    width:14px;

    height:14px;

    background:#fff;

    opacity:1;

}

.swiper-pagination-bullet-active{

    background:#f4b400;

}

@media(max-width:991px){

.hero-content{

text-align:center;

margin-top:80px;

}

.hero-content h1{

font-size:42px;

}

.hero-prev,
.hero-next{

display:none;

}

}

/*==========================
ABOUT SECTION
===========================*/

.about-section{

    background:#fff;
    padding:100px 0;
}

.section-title span{

    color:#0B8A4B;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{

    font-size:42px;
    font-weight:700;
    margin:15px 0 25px;
    color:#222;
}

.about-section p{

    color:#666;
    line-height:30px;
    margin-bottom:20px;
}

.about-image{

    position:relative;
}

.about-image img{

    width:100%;
    border-radius:20px;
}

.experience-box{

    position:absolute;
    right:-20px;
    bottom:30px;
    background:#0B8A4B;
    color:#fff;
    width:170px;
    height:170px;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.experience-box h2{

    font-size:50px;
    font-weight:700;
}

.about-feature{

    margin-bottom:18px;
    font-weight:600;
}

.about-feature i{

    color:#0B8A4B;
    margin-right:10px;
}

.about-btn{

    display:inline-block;
    margin-top:20px;
    background:#0B8A4B;
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.about-btn:hover{

    background:#F4B400;
    color:#fff;
}

@media(max-width:991px){

.experience-box{

right:20px;
bottom:20px;
width:130px;
height:130px;

}

.section-title h2{

font-size:34px;

}

}

/*==================================
        WHY CHOOSE US
===================================*/

.why-choose{

    padding:100px 0;
    background:#f8faf7;
}

.section-title span{

    display:inline-block;
    color:#0B5D3F;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-title h2{

    font-size:42px;
    font-weight:700;
    color:#222;
    margin-bottom:20px;
}

.section-title p{

    color:#666;
    max-width:750px;
    margin:auto;
    line-height:30px;
}

/* Card */

.choose-card{

    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
    border-bottom:4px solid transparent;
}

.choose-card:hover{

    transform:translateY(-10px);
    border-color:#F4B400;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.choose-card .icon{

    width:85px;
    height:85px;
    margin:auto;
    border-radius:50%;
    background:#0B5D3F;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:#fff;
    margin-bottom:25px;
    transition:.4s;
}

.choose-card:hover .icon{

    background:#F4B400;
    transform:rotateY(180deg);
}

.choose-card h4{

    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:#222;
}

.choose-card p{

    color:#666;
    line-height:28px;
    margin:0;
}

/* Responsive */

@media(max-width:991px){

.section-title h2{

font-size:34px;

}

}

@media(max-width:576px){

.section-title h2{

font-size:28px;

}

.choose-card{

padding:30px 20px;

}

}

/*==================================
        PRODUCT CATEGORY
===================================*/

.product-category{

    padding:100px 0;
    background:#ffffff;

}

.category-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;

}

.category-card:hover{

    transform:translateY(-10px);

}

.category-card img{

    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;

}

.category-card:hover img{

    transform:scale(1.08);

}

.category-content{

    padding:25px;

}

.category-content h4{

    font-size:24px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;

}

.category-content p{

    color:#666;
    line-height:28px;
    min-height:55px;

}

.category-content a{

    color:#0B5D3F;
    text-decoration:none;
    font-weight:600;

}

.category-content a i{

    margin-left:8px;
    transition:.3s;

}

.category-content a:hover i{

    margin-left:14px;

}

@media(max-width:768px){

.category-card img{

height:200px;

}

}

/*==============================
MANUFACTURING SECTION
===============================*/

.manufacturing-section{

    padding:100px 0;
    background:#f8faf8;

}

.manufacturing-img{

    position:relative;

}

.manufacturing-img img{

    width:100%;
    border-radius:20px;

}

.capacity-box{

    position:absolute;
    right:20px;
    bottom:20px;

    background:#0B5D3F;
    color:#fff;

    padding:25px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.2);

}

.capacity-box h3{

    font-size:40px;
    font-weight:700;
    margin-bottom:5px;

}

.facility-box{

    display:flex;
    align-items:center;

    gap:18px;

    background:#fff;

    padding:20px;

    border-radius:15px;

    margin-bottom:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.facility-box:hover{

    transform:translateY(-6px);

}

.facility-box i{

    width:65px;
    height:65px;

    background:#0B5D3F;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    font-size:26px;

}

.facility-box h5{

    font-weight:700;
    margin-bottom:6px;

}

.facility-box p{

    margin:0;
    color:#777;

}

.facility-btn{

    display:inline-block;

    padding:15px 35px;

    background:#0B5D3F;

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.facility-btn:hover{

    background:#F4B400;
    color:#fff;

}

/*==================================
        OUR PROCESS
===================================*/

.process-section{

    padding:100px 0;

    background:#ffffff;

}

.process-card{

    position:relative;

    text-align:center;

    background:#fff;

    padding:40px 20px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.process-icon{

    width:90px;

    height:90px;

    background:#0B5D3F;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    font-size:34px;

    margin-bottom:25px;

    transition:.4s;

}

.process-card:hover .process-icon{

    background:#F4B400;

    transform:rotateY(180deg);

}

.process-card span{

    position:absolute;

    top:18px;

    right:18px;

    font-size:42px;

    font-weight:700;

    color:#eeeeee;

}

.process-card h5{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}

.process-card p{

    color:#666;

    line-height:28px;

    margin:0;

}

@media(max-width:991px){

.process-card{

margin-bottom:25px;

}

}

/*==========================
GLOBAL PRESENCE
==========================*/

.counter-section{

    padding:100px 0;

    background:linear-gradient(135deg,#0B5D3F,#0A8A52);

}

.counter-content span{

    color:#F4B400;

    font-weight:600;

    letter-spacing:1px;

}

.counter-content h2{

    color:#fff;

    font-size:46px;

    font-weight:700;

    margin:20px 0;

}

.counter-content p{

    color:#d7e8df;

    line-height:30px;

    margin-bottom:35px;

}

.counter-btn{

    display:inline-block;

    background:#F4B400;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

}

.counter-btn:hover{

    background:#fff;

    color:#0B5D3F;

}

.counter-box{

    background:#fff;

    padding:40px 25px;

    border-radius:20px;

    text-align:center;

    height:100%;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.counter-box:hover{

    transform:translateY(-10px);

}

.counter-box i{

    width:80px;

    height:80px;

    background:#0B5D3F;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    font-size:30px;

    margin-bottom:25px;

}

.counter-box h2{

    color:#0B5D3F;

    font-size:42px;

    font-weight:700;

}

.counter-box h5{

    margin:15px 0;

    font-weight:600;

}

.counter-box p{

    color:#666;

    margin:0;

    line-height:28px;

}

@media(max-width:991px){

.counter-content{

text-align:center;

margin-bottom:50px;

}

.counter-content h2{

font-size:34px;

}

}

/*=============================
CALL TO ACTION
==============================*/

.cta-section{

    padding:100px 0;

    background:#f8f9fa;

}

.cta-box{

    background:linear-gradient(135deg,#0B5D3F,#11854f);

    border-radius:25px;

    padding:60px;

    color:#fff;

    position:relative;

    overflow:hidden;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-100px;

    right:-80px;

}

.cta-box span{

    color:#F4B400;

    font-weight:600;

    letter-spacing:1px;

}

.cta-box h2{

    font-size:44px;

    font-weight:700;

    margin:15px 0;

}

.cta-box p{

    color:#e8e8e8;

    line-height:30px;

    max-width:700px;

}

.cta-btn{

    display:inline-block;

    background:#F4B400;

    color:#fff;

    padding:16px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    margin-bottom:15px;

    transition:.3s;

}

.cta-btn:hover{

    background:#fff;

    color:#0B5D3F;

}

.cta-btn-outline{

    display:inline-block;

    border:2px solid #fff;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    margin-left:10px;

    transition:.3s;

}

.cta-btn-outline:hover{

    background:#fff;

    color:#0B5D3F;

}

@media(max-width:991px){

.cta-box{

text-align:center;

padding:40px 25px;

}

.cta-box h2{

font-size:32px;

}

.cta-btn,

.cta-btn-outline{

display:block;

margin:15px auto;

max-width:250px;

}

}   

.page-banner{

background:url(../image/2.png) center/cover;

padding:170px 0;

position:relative;

}

.page-banner .overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.55);

}

.banner-content{

position:relative;

z-index:2;

text-align:center;

color:#fff;

}

.banner-content h1{

font-size:60px;

font-weight:700;

margin-bottom:20px;

}

.banner-content nav a{

color:#fff;

text-decoration:none;

}

.banner-content nav span{

margin:0 10px;

color:#f4b400;

}

.feature{

margin-bottom:18px;

font-weight:600;

}

.feature i{

color:#0B5D3F;

margin-right:10px;

}

.product-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.product-card:hover{

transform:translateY(-10px);

}

.product-card img{

width:100%;

height:250px;

object-fit:cover;

}

.product-content{

padding:25px;

}

.product-content h3{

font-weight:700;

margin-bottom:15px;

}

.product-content ul{

padding-left:18px;

margin-top:20px;

}

.product-content li{

margin-bottom:10px;

}

.why-box{

background:#fff;

padding:35px 25px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.why-box:hover{

background:#0B5D3F;

color:#fff;

transform:translateY(-8px);

}

.why-box i{

font-size:45px;

color:#F4B400;

margin-bottom:20px;

}

/*==============================
CONTACT PAGE
==============================*/

.contact-section{
    padding:80px 0;
}

.contact-box{
    background:#fff;
    border-radius:15px;
    padding:35px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.contact-box h5{
    font-size:20px;
    font-weight:600;
    margin-bottom:8px;
    color:#222;
}

.contact-box p{
    margin:0;
    color:#666;
    line-height:28px;
}

.contact-box a{
    color:#666;
    text-decoration:none;
    transition:.3s;
}

.contact-box a:hover{
    color:#198754;
}

.contact-box i{
    width:60px;
    height:60px;
    background:#198754;
    color:#fff !important;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

/*==============================
CONTACT FORM
==============================*/

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.contact-form .form-control{
    height:55px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:12px 18px;
    box-shadow:none;
    transition:.3s;
}

.contact-form textarea.form-control{
    height:180px;
    resize:none;
}

.contact-form .form-control:focus{
    border-color:#198754;
    box-shadow:0 0 0 0.15rem rgba(25,135,84,.15);
}

.contact-form button{
    background:#198754;
    color:#fff;
    border:none;
    padding:14px 40px;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.contact-form button:hover{
    background:#146c43;
}

/*==============================
SECTION TITLE
==============================*/

.contact-section .section-title span{
    color:#198754;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.contact-section .section-title h2{
    font-size:38px;
    font-weight:700;
    margin:10px 0 20px;
    color:#222;
}

.contact-section .section-title p{
    color:#666;
    line-height:28px;
}

/*==============================
MAP
==============================*/

.map-section{
    margin-top:20px;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:0;
    display:block;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.contact-form,
.contact-box{
    padding:30px;
}

.contact-section .section-title h2{
    font-size:30px;
}

}

@media(max-width:767px){

.contact-section{
    padding:60px 0;
}

.contact-form,
.contact-box{
    padding:25px;
}

.contact-section .section-title h2{
    font-size:26px;
}

.contact-box i{
    width:50px;
    height:50px;
    font-size:18px;
}

.contact-form button{
    width:100%;
}

.map-section iframe{
    height:320px;
}

}

/*==================================
GALLERY
==================================*/

.gallery-section{
    padding:80px 0;
}

.gallery-item{
    overflow:hidden;
    border-radius:15px;
    position:relative;
    box-shadow:0 8px 25px rgba(0,0,0,.10);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
    display:block;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
    opacity:0;
    transition:.4s;
    z-index:1;
}

.gallery-item::after{
    content:"\f00e";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:60px;
    height:60px;
    border-radius:50%;
    background:#198754;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    opacity:0;
    transition:.4s;
    z-index:2;
}

.gallery-item:hover::before,
.gallery-item:hover::after{
    opacity:1;
}

@media(max-width:768px){

.gallery-item img{
    height:220px;
}

}