.logo{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    font-family:'Poppins',sans-serif;
    font-weight:700;
    font-size:42px;
    letter-spacing:1px;
    transition:.4s ease;
}

.logo .wa{
    color:#00A651;
    text-shadow:0 2px 10px rgba(0,166,81,.25);
}

.logo .exim{
    color:#2E3192;
    text-shadow:0 2px 10px rgba(46,49,146,.25);
}

.logo:hover{
    transform:translateY(-2px);
}

.logo:hover .wa{
    color:#009245;
}

.logo:hover .exim{
    color:#1D2088;
}
/*==============================
      Google Font
===============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#2E3192;
    --primary-dark:#20267A;
    --primary-light:#E9ECFF;

    --secondary:#00A651;
    --secondary-dark:#008E45;
    --secondary-light:#E9FFF3;

    --dark:#1E293B;
    --text:#64748B;
    --light:#F8FAFC;
    --white:#FFFFFF;

    --border:#E5E7EB;

    --shadow:0 10px 35px rgba(46,49,146,.08);

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
background:#fff;
color:var(--text);
overflow-x:hidden;

}

a{
text-decoration:none;
transition:.4s;
}

img{
max-width:100%;
}

/*==============================
      Top Bar
===============================*/
html{

scroll-behavior:smooth;

}

.top-header{

background:#2E3192;
color:#fff;
font-size:14px;

}

.top-contact{

display:flex;
gap:25px;
flex-wrap:wrap;

}

.top-contact a{

color:#fff;
text-decoration:none;

}

.top-contact i{

color:#00A651;
margin-right:8px;

}

.company-text{

font-weight:600;
color:#fff;

}

.navbar{

background:#fff;
box-shadow:0 10px 30px rgba(0,0,0,.08);
padding:15px 0;

}

.nav-link{

font-weight:600;
margin-left:18px;
position:relative;

}

.nav-link::after{

content:'';
position:absolute;
left:0;
bottom:-8px;
width:0;
height:3px;
background:#00A651;
transition:.4s;

}

.nav-link:hover::after{

width:100%;

}

.nav-link:hover{

color:#2E3192;

}

.quote-btn{

background:#00A651;
color:#fff;
padding:12px 28px;
border-radius:50px;
font-weight:600;

}

.quote-btn:hover{

background:#2E3192;
color:#fff;

}

/*==============================
      Buttons
===============================*/

.btn-main{

background:linear-gradient(135deg,#00A651,#2E3192);

color:#fff;

padding:13px 30px;

border-radius:40px;

font-weight:600;

border:none;

box-shadow:0 15px 30px rgba(46,49,146,.2);

transition:.4s;

}

.btn-main:hover{

transform:translateY(-5px);

color:#fff;

box-shadow:0 20px 40px rgba(0,166,81,.35);

}

/*==============================
      Hero
===============================*/

.hero{

padding:120px 0;

background:linear-gradient(rgba(8,22,60,.75),rgba(8,22,60,.75)),
url(images/banner.jpg);

background-size:cover;

background-position:center;

color:#fff;

}

.hero h1{

font-size:58px;

font-weight:800;

line-height:1.2;

}

.hero p{

font-size:20px;

margin:25px 0;

color:#ddd;

}

/*==============================
      Section
===============================*/



.section-title{


margin-bottom:60px;

}

.section-title span{

color:var(--secondary);

font-weight:600;

text-transform: ;

letter-spacing:2px;

}

.section-title h2{

font-size:42px;

font-weight:800;

color:var(--dark);

margin-top:10px;

}

.section-title p{

max-width:700px;

margin:auto;

margin-top:15px;

}

/*==============================
      Cards
===============================*/

.card{

border:none;

border-radius:18px;

overflow:hidden;

box-shadow:var(--shadow);

transition:.4s;

}

.card:hover{

transform:translateY(-12px);

}

.card-body{

padding:35px;

}

.card i{

font-size:50px;

background:linear-gradient(135deg,#00A651,#2E3192);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

margin-bottom:20px;

}

.card h4{

font-weight:700;

color:#222;

margin-bottom:15px;

}

/*==============================
      About Image
===============================*/

.about-img img{

border-radius:20px;

box-shadow:var(--shadow);

}

/*==============================
      Feature Box
===============================*/

.feature-box{

padding:35px;

border-radius:20px;

background:#fff;

box-shadow:var(--shadow);

transition:.4s;

}

.feature-box:hover{

background:linear-gradient(135deg,#00A651,#2E3192);

color:#fff;

transform:translateY(-10px);

}

.feature-box:hover h4{

color:#fff;

}

/*==============================
      Counter
===============================*/

.counter{

background:linear-gradient(135deg,#00A651,#2E3192);

color:#fff;

padding:60px 20px;

border-radius:20px;

text-align:center;

}

.counter h2{

font-size:48px;

font-weight:800;

}

.counter p{

margin:0;

}

/*==============================
      CTA
===============================*/

.cta{

background:linear-gradient(135deg,#2E3192,#00A651);

padding:90px 0;

text-align:center;

color:#fff;

}

.cta h2{

font-size:44px;

font-weight:700;

margin-bottom:20px;

}

/*==============================
      Footer
===============================*/
.footer{

background:#081B3A;
color:#C7D2FE;
padding:80px 0 25px;
position:relative;

}

.footer::before{

content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(90deg,#00A651,#2E3192);

}

.footer h5{

color:#fff;
font-weight:700;
margin-bottom:25px;
position:relative;

}

.footer h5::after{

content:'';
position:absolute;
left:0;
bottom:-10px;
width:45px;
height:3px;
background:#00A651;

}

.footer p{

line-height:1.9;

}

.footer ul{

list-style:none;
padding:0;
margin:0;

}

.footer ul li{

margin-bottom:15px;

}

.footer ul li a{

color:#C7D2FE;
text-decoration:none;
transition:.3s;

}

.footer ul li a:hover{

color:#00A651;
padding-left:8px;

}

.footer ul li i{

color:#00A651;
margin-right:10px;
width:20px;

}

.social-links a{

width:45px;
height:45px;
display:inline-flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,.08);
color:#fff;
border-radius:50%;
margin-right:10px;
transition:.4s;

}

.social-links a:hover{

background:#00A651;
transform:translateY(-5px);

}

.contact-info li{

display:flex;
align-items:flex-start;
gap:12px;

}

.contact-info li i{

margin-top:5px;

}

.tagline{

display:inline-block;
background:rgba(0,166,81,.15);
color:#00A651;
padding:10px 18px;
border-radius:30px;
margin-top:10px;
font-weight:600;

}

.footer hr{

border-color:rgba(255,255,255,.12);
margin:40px 0 25px;

}

.footer .text-danger{

color:#ff4d4d !important;

}

@media(max-width:768px){

.footer{

text-align:center;

}

.footer h5::after{

left:50%;
transform:translateX(-50%);

}

.contact-info li{

justify-content:center;

}

.social-links{

margin-top:20px;

}

}
.social a{

width:45px;

height:45px;

display:inline-flex;

justify-content:center;

align-items:center;

background:#142B4C;

border-radius:50%;

margin-right:8px;

font-size:18px;

}

.social a:hover{

background:linear-gradient(135deg,#00A651,#2E3192);

transform:translateY(-5px);

}

/*==============================
      Forms
===============================*/

.form-control{

height:55px;

border-radius:12px;

box-shadow:none;

}

textarea.form-control{

height:160px;

}

/*==============================
      Scroll Top
===============================*/

.scroll-top{

position:fixed;

right:20px;

bottom:20px;

width:50px;

height:50px;

background:linear-gradient(135deg,#00A651,#2E3192);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:20px;

}

/*==============================
      Responsive
===============================*/

@media(max-width:992px){

.hero{

padding:80px 0;

text-align:center;

}

.hero h1{

font-size:42px;

}

.section-title h2{

font-size:34px;

}

}

@media(max-width:768px){

.navbar-brand{

font-size:32px;

}

.hero h1{

font-size:34px;

}

.hero p{

font-size:17px;

}

section{

padding:70px 0;

}

}

.hero-slide{

    position:relative;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    min-height:100vh;
    display:flex;
    align-items:center;

}

.hero-slide .overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(17,34,68,.85) 0%,
        rgba(17,34,68,.65) 45%,
        rgba(0,0,0,.35) 100%
    );

}

.hero-slide .container{

    position:relative;
    z-index:2;

}

.hero-tag{

    display:inline-block;
    background:#00A651;
    color:#fff;
    padding:8px 20px;
    border-radius:50px;
    margin-bottom:20px;
    font-weight:600;

}

.hero-slide h1{

    color:#fff;
    font-size:64px;
    font-weight:800;
    line-height:1.2;

}

.hero-slide h1 span{

    color:#00A651;

}

.hero-slide p{

    color:#f1f1f1;
    font-size:20px;
    line-height:1.8;
    margin:30px 0;

}

.btn-main{

    background:#00A651;
    color:#fff;
    border-radius:50px;
    padding:14px 35px;
    font-weight:600;
    transition:.3s;

}

.btn-main:hover{

    background:#2E3192;
    color:#fff;

}

.carousel-item{

    transition:transform 1s ease-in-out;

}

.carousel-control-prev,
.carousel-control-next{

    width:70px;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    width:55px;
    height:55px;
    border-radius:50%;
    background-color:rgba(255,255,255,.2);
    backdrop-filter:blur(10px);

}

.carousel-indicators button{

    width:14px;
    height:14px;
    border-radius:50%;
    background:#fff;

}

.carousel-indicators .active{

    background:#00A651;

}

@media(max-width:992px){

.hero-slide{

text-align:center;

}

.hero-slide h1{

font-size:42px;

}

.hero-slide p{

font-size:17px;

}

}
.mission-vision{

    background:#f8fbff;

}

.section-subtitle{

    color:#00A651;
    font-weight:600;
    text-transform: ;
    letter-spacing:2px;

}

.section-title{

    font-size:42px;
    font-weight:800;
    color:#2E3192;
    margin-top:10px;

}

.mv-card{

    position:relative;
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    overflow:hidden;
    transition:.4s;

}

.mv-card::before{

    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#00A651,#2E3192);

}

.mv-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.mv-icon{

    width:85px;
    height:85px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    color:#fff;
    margin-bottom:25px;

}

.mission-icon{

    background:linear-gradient(135deg,#00A651,#0dbd65);

}

.vision-icon{

    background:linear-gradient(135deg,#2E3192,#4857d8);

}

.mv-card h3{

    color:#2E3192;
    font-weight:700;
    margin-bottom:20px;

}

.mv-card p{

    color:#666;
    line-height:1.9;
    margin-bottom:15px;

}

.mv-card:hover .mv-icon{

    transform:rotate(360deg);
    transition:1s;

}

@media(max-width:768px){

.section-title{

font-size:30px;

}

.mv-card{

padding:30px;

}

}

.why-us{

    background:#e4ebe7;

}

.sub-title{

    color:#00A651;
    font-weight:600;
    text-transform: ;
    letter-spacing:2px;

}

.main-title{

    font-size:42px;
    font-weight:800;
    color:#2E3192;
    margin:10px 0;

}

.main-title span{

    color:#00A651;

}

.choose-card{

    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
    height:100%;

}

.choose-card::before{

    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#00A651,#2E3192);

}

.choose-card:hover{

    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.choose-icon{

    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#00A651,#2E3192);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    transition:.5s;

}

.choose-card:hover .choose-icon{

    transform:rotateY(360deg);

}

.choose-card h4{

    color:#2E3192;
    font-weight:700;
    margin-bottom:15px;

}

.choose-card p{

    color:#666;
    line-height:1.8;
    margin:0;

}

@media(max-width:768px){

.main-title{

font-size:30px;

}

.choose-card{

padding:25px;

}

}
.waff-section{

    background:linear-gradient(135deg,#eef7ff,#f8fffb);

}

.waff-section .section-title{

    font-size:42px;
    font-weight:800;
    color:#2E3192;

}

.waff-section .section-title span{

    color:#00A651;

}

.waff-card{

    background:#fff;
    padding:40px 25px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
    position:relative;
    overflow:hidden;

}

.waff-card::before{

    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#00A651,#2E3192);

}

.waff-card:hover{

    transform:translateY(-12px);
    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.waff-icon{

    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:linear-gradient(135deg,#00A651,#2E3192);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:38px;
    transition:.6s;

}

.waff-card:hover .waff-icon{

    transform:rotateY(360deg) scale(1.1);

}

.waff-card h3{

    color:#00A651;
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;

}

.waff-card h5{

    color:#2E3192;
    font-weight:700;
    margin-bottom:15px;

}

.waff-card p{

    color:#666;
    line-height:1.8;
    margin:0;

}

@media(max-width:768px){

.waff-section .section-title{

font-size:30px;

}

.waff-card{

padding:30px 20px;

}

}

.counter-section{

background:#f8fbff;

}

.counter-box{

background:#fff;
padding:40px 25px;
border-radius:20px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;
height:100%;

}

.counter-box:hover{

transform:translateY(-12px);

}

.counter-icon{

width:85px;
height:85px;
margin:auto;
margin-bottom:20px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#00A651,#2E3192);
color:#fff;
font-size:34px;

}

.counter-box h2{

font-size:50px;
font-weight:800;
color:#2E3192;
margin-bottom:10px;

}

.counter-box h5{

font-weight:600;
color:#555;

}.cta-section{

position:relative;

padding:120px 0;

background:url(images/cta-bg.jpg) center center;

background-size:cover;

overflow:hidden;

}

.cta-section .overlay{

position:absolute;

inset:0;

background:linear-gradient(135deg,
rgba(46,49,146,.90),
rgba(0,166,81,.85));

}

.cta-section .container{

position:relative;
z-index:2;

}

.cta-tag{

display:inline-block;

padding:10px 25px;

background:#fff;

color:#00A651;

font-weight:700;

border-radius:50px;

margin-bottom:25px;

}

.cta-section h2{

font-size:52px;

font-weight:800;

color:#fff;

margin-bottom:25px;

}

.cta-section h2 span{

color:#FFD54F;

}

.cta-section p{

font-size:18px;

color:#eee;

max-width:750px;

margin:auto;

margin-bottom:35px;

line-height:1.9;

}

.cta-btn{

background:#fff;

color:#2E3192;

padding:16px 40px;

border-radius:50px;

font-weight:700;

font-size:17px;

transition:.4s;

}

.cta-btn:hover{

background:#FFD54F;

color:#2E3192;

transform:translateY(-5px);

}

.cta-btn i{

margin-right:10px;

}

@media(max-width:768px){

.cta-section{

padding:80px 0;

}

.cta-section h2{

font-size:34px;

}

}

.business-section{

    background:#e4ebe7;

}

.business-card{

    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;

}

.business-card:hover{

    transform:translateY(-12px);

}

.business-img{

    position:relative;
    overflow:hidden;

}

.business-img img{

    width:100%;
    height:260px;
    object-fit:cover;
    transition:.6s;

}

.business-card:hover img{

    transform:scale(1.12);

}

.business-overlay{

    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(46,49,146,.85),
    rgba(0,166,81,.25));

}

.business-icon{

    position:absolute;
    left:30px;
    bottom:25px;

    width:75px;
    height:75px;

    background:#fff;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#00A651;

    font-size:32px;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

    transition:.4s;

}

.business-card:hover .business-icon{

    background:#00A651;
    color:#fff;
    transform:rotate(360deg);

}

.business-content{

    padding:30px;

}

.business-content h4{

    color:#2E3192;
    font-weight:700;
    margin-bottom:18px;

}

.business-content p{

    color:#666;
    line-height:1.8;

}

.read-btn{

    display:inline-block;
    margin-top:15px;

    color:#00A651;

    font-weight:600;

    text-decoration:none;

}

.read-btn i{

    margin-left:8px;
    transition:.3s;

}

.read-btn:hover{

    color:#2E3192;

}

.read-btn:hover i{

    margin-left:15px;

}

@media(max-width:768px){

.business-img img{

height:220px;

}

}

.about-section{

background:#fff;

}

.about-image{

position:relative;

}

.about-image img{

border-radius:25px;
box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.experience-box{

position:absolute;
bottom:30px;
right:-20px;

background:linear-gradient(135deg,#00A651,#2E3192);

padding:25px;

border-radius:20px;

text-align:center;

color:#fff;

box-shadow:0 15px 30px rgba(0,0,0,.20);

}

.experience-box h2{

font-size:40px;
font-weight:800;
margin-bottom:5px;

}

.about-section .section-title{

font-size:42px;
font-weight:800;
color:#2E3192;
margin:15px 0;

}

.about-section .section-title span{

color:#00A651;

}

.about-section p{

color:#666;
line-height:1.9;

}

.about-feature{

display:flex;
align-items:flex-start;
gap:18px;

}

.about-feature i{

width:60px;
height:60px;

background:linear-gradient(135deg,#00A651,#2E3192);

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

color:#fff;

font-size:24px;

flex-shrink:0;

}

.about-feature h5{

color:#2E3192;
font-weight:700;
margin-bottom:6px;

}

.about-feature p{

margin:0;

}

.about-btn{

background:#00A651;

color:#fff;

padding:14px 35px;

border-radius:50px;

font-weight:600;

}

.about-btn:hover{

background:#2E3192;

color:#fff;

}

@media(max-width:991px){

.experience-box{

position:relative;
right:0;
bottom:0;
margin-top:20px;

}



.about-feature{

justify-content:center;
text-align:left;

}

.about-section .section-title{

font-size:34px;

}

}




.page-banner .overlay{

position:absolute;

inset:0;

background:rgba(8,27,58,.75);

}

.page-banner .container{

position:relative;

z-index:2;

}

.contact-section{

background:#f8fbff;

}

.contact-info-box{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

height:100%;

}

.contact-item{

display:flex;

gap:20px;

margin-top:30px;

}

.contact-item .icon{

width:60px;

height:60px;

background:linear-gradient(135deg,#00A651,#2E3192);

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:22px;

flex-shrink:0;

}

.contact-item h5{

font-weight:700;

color:#2E3192;

}

.contact-item a{

color:#555;

text-decoration:none;

}

.contact-form{

background:#fff;

padding:40px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.form-control{

height:55px;

border-radius:12px;

border:1px solid #ddd;

}

textarea.form-control{

height:auto;

}

.form-control:focus{

border-color:#00A651;

box-shadow:none;

}

.submit-btn{

background:#00A651;

color:#fff;

padding:14px 35px;

border-radius:50px;

font-weight:600;

}

.submit-btn:hover{

background:#2E3192;

color:#fff;

}

/* Dropdown */

.navbar .dropdown-menu{

    border-radius:15px;
    min-width:280px;
    padding:12px 0;
    margin-top:18px;
    border:none;
    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.navbar .dropdown-item{

    padding:12px 20px;
    font-weight:500;
    transition:.3s;

}

.navbar .dropdown-item:hover{

    background:#f4f9ff;
    color:#2E3192;
    padding-left:28px;

}

.navbar .dropdown-item i{

    width:25px;

}

/* Hover Dropdown (Desktop Only) */

@media(min-width:992px){

.nav-item.dropdown:hover .dropdown-menu{

display:block;
margin-top:0;

}

}
.export-products{
    background:#f7fafc;
}

.product-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    height:100%;
}

.product-card:hover{

    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.product-img{

    position:relative;
    overflow:hidden;
    height:250px;

}

.product-img img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.1);

}

.product-badge{

    position:absolute;
    top:18px;
    left:18px;
    background:#0d6efd;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;

}

.product-badge.green{

    background:#00b894;

}

.product-badge.orange{

    background:#ff9800;

}

.product-content{

    padding:30px;

}

.product-content h4{

    font-weight:700;
    margin-bottom:15px;

}

.product-content p{

    color:#666;
    line-height:1.8;

}

.product-content ul{

    list-style:none;
    padding:0;
    margin:20px 0;

}

.product-content ul li{

    padding:8px 0;
    color:#444;
    border-bottom:1px solid #eee;

}

.product-btn{

    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;

}

.product-btn:hover{

    background:#0b5ed7;
    color:#fff;

}

.spec-card{
background:#fff;
padding:30px;
border-radius:15px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
height:100%;
transition:.3s;
}

.spec-card:hover{
transform:translateY(-8px);
}

.benefit-card{
background:#fff;
padding:35px 20px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.benefit-card i{
font-size:45px;
color:#28a745;
margin-bottom:20px;
}

.benefit-card:hover{
background:#28a745;
color:#fff;
transform:translateY(-10px);
}

.benefit-card:hover i{
color:#fff;
}

.banner-tag{
display:inline-block;
background:#28a745;
padding:8px 20px;
border-radius:30px;
margin-bottom:20px;
font-weight:600;
}

/*=========================================
DEHYDRATED PRODUCTS PAGE CSS
=========================================*/

.page-banner{
    position:relative;
    padding:140px 0;
    background:url("image/b2.webp") center/cover no-repeat;
    overflow:hidden;
}

.page-banner .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.60);
}

.page-banner .container{
    position:relative;
    z-index:2;
}

.banner-tag{
    display:inline-block;
    padding:8px 22px;
    background:#28a745;
    color:#fff;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
    letter-spacing:.5px;
}

.page-banner h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:15px;
}

.page-banner p{
    font-size:18px;
    opacity:.95;
}

/*=========================================
SECTION TITLE
=========================================*/

.section-subtitle{
    color:#28a745;
    font-weight:700;
    text-transform: ;
    letter-spacing:1px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    margin:15px 0 25px;
}

.section-title span{
    color:#28a745;
}

/*=========================================
PRODUCT CARD
=========================================*/

.product-box{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;

}

.product-box:hover{

    transform:translateY(-12px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.product-box img{

    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;

}

.product-box:hover img{

    transform:scale(1.08);

}

.product-box h3{

    font-size:28px;
    font-weight:700;
    margin-bottom:15px;

}

.product-box p{

    color:#666;
    line-height:1.8;

}

.product-box ul{

    list-style:none;
    margin:20px 0 0;
    padding:0;

}

.product-box ul li{

    padding:10px 0;
    border-bottom:1px solid #eee;
    color:#555;

}

.product-box ul li:last-child{

    border:none;

}

/*=========================================
SPECIFICATION CARD
=========================================*/

.spec-card{

    background:#fff;
    text-align:center;
    padding:35px 20px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;

}

.spec-card:hover{

    background:#28a745;
    color:#fff;
    transform:translateY(-8px);

}

.spec-card h5{

    font-weight:700;
    margin-bottom:15px;

}

/*=========================================
APPLICATION CARD
=========================================*/

.benefit-card{

    background:#fff;
    border-radius:18px;
    text-align:center;
    padding:40px 25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;

}

.benefit-card i{

    font-size:55px;
    color:#28a745;
    margin-bottom:20px;
    transition:.3s;

}

.benefit-card h5{

    font-weight:700;
    margin:0;

}

.benefit-card:hover{

    background:#28a745;
    color:#fff;
    transform:translateY(-10px);

}

.benefit-card:hover i{

    color:#fff;

}

/*=========================================
WHY CHOOSE US
=========================================*/

.choose-card{

    background:#fff;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;

}

.choose-card i{

    font-size:52px;
    color:#28a745;
    margin-bottom:20px;
    transition:.3s;

}

.choose-card h4{

    font-weight:700;
    margin-bottom:15px;

}

.choose-card p{

    color:#666;
    line-height:1.8;
    margin:0;

}

.choose-card:hover{

    background:#28a745;
    color:#fff;
    transform:translateY(-10px);

}

.choose-card:hover p{

    color:#fff;

}

.choose-card:hover i{

    color:#fff;

}

/*=========================================
BUTTON
=========================================*/

.btn-warning{

    padding:14px 40px;
    border-radius:50px;
    font-weight:600;
    font-size:18px;
    transition:.3s;

}

.btn-warning:hover{

    transform:translateY(-3px);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.page-banner{

padding:110px 0;

}

.page-banner h1{

font-size:40px;

}

.section-title{

font-size:34px;

}

}

@media(max-width:767px){

.page-banner{

padding:90px 0;

}

.page-banner h1{

font-size:32px;

}

.page-banner p{

font-size:16px;

}

.section-title{

font-size:28px;

}

.product-box img{

height:220px;

}

}
/* Jaggery Theme */



.section-subtitle{
    color:#00A651;
}

.section-title span{
    color:#00A651;
}

.product-box h3{
    color:#7b4b00;
}

.spec-card:hover{
    background:#00A651;
}

.benefit-card i{
    color:#00A651;
}

.benefit-card:hover{
    background:#00A651;
}

.choose-card i{
    color:#00A651;
}

.choose-card:hover{
    background:#00A651;
}

.btn-warning{
    background:#d89c1d;
    border:none;
}

.btn-warning:hover{
    background:#00A651;
}

.gallery-section{

background:#fafafa;

}

.gallery-card{

position:relative;
overflow:hidden;
border-radius:18px;
box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.gallery-card img{

width:100%;
height:300px;
object-fit:cover;
transition:.5s;

}

.gallery-card:hover img{

transform:scale(1.1);

}

.gallery-overlay{

position:absolute;
inset:0;
background:rgba(0,0,0,.55);

display:flex;
justify-content:center;
align-items:center;

opacity:0;
transition:.4s;

}

.gallery-card:hover .gallery-overlay{

opacity:1;

}

.gallery-overlay div{

text-align:center;
color:#fff;

}

.gallery-overlay i{

font-size:42px;
margin-bottom:15px;

}

.gallery-overlay h5{

font-weight:600;

}

@media(max-width:768px){

.gallery-card img{

height:230px;

}

}